diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/bosses/Balok/BalokWarzone.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/bosses/Balok/BalokWarzone.java index ee556703b4..4cdab61a70 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/bosses/Balok/BalokWarzone.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/bosses/Balok/BalokWarzone.java @@ -280,7 +280,7 @@ public final class BalokWarzone extends AbstractInstance world.getAliveNpcs(MINION, HELL_DISCIPLE, HELLS_GATE).forEach(guard -> guard.doDie(null)); world.removeNpcs(); world.finishInstance(); - world.broadcastPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 5.0D)); + world.broadcastPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 5.0D)); } else { diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java index 79134a9873..3440c05d5a 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java @@ -91,9 +91,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -120,9 +120,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -172,9 +172,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -329,9 +329,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return; } final ClanHall playerClanHall = ClanHallData.getInstance().getClanHallByClan(clan); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/TrainingCamp/TrainingCamp.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/TrainingCamp/TrainingCamp.java index 18896f7566..eedcb73e08 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/TrainingCamp/TrainingCamp.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/others/TrainingCamp/TrainingCamp.java @@ -150,7 +150,7 @@ public final class TrainingCamp extends AbstractNpcAI } else { - player.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MINUTE); + player.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MIN); } } else @@ -187,7 +187,7 @@ public final class TrainingCamp extends AbstractNpcAI } else { - player.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MINUTE); + player.sendPacket(SystemMessageId.YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MIN); } player.setTraingCampDuration(player.getTraingCampDuration() + holder.getTrainingTime(TimeUnit.SECONDS)); player.removeTraingCampInfo(); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/FreyaCelebration/FreyaCelebration.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/FreyaCelebration/FreyaCelebration.java index 4f7c4036a3..1927c16085 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/FreyaCelebration/FreyaCelebration.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/FreyaCelebration/FreyaCelebration.java @@ -93,7 +93,7 @@ public final class FreyaCelebration extends LongTimeEvent final long remainingTime = (_reuse_time - System.currentTimeMillis()) / 1000; final int hours = (int) (remainingTime / 3600); final int minutes = (int) ((remainingTime % 3600) / 60); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HOUR_S_S3_MINUTE_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HR_S3_MIN); sm.addItemName(FREYA_POTION); sm.addInt(hours); sm.addInt(minutes); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/GiftOfVitality/GiftOfVitality.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/GiftOfVitality/GiftOfVitality.java index 172f468e83..0cbcd618b1 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/GiftOfVitality/GiftOfVitality.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/GiftOfVitality/GiftOfVitality.java @@ -99,7 +99,7 @@ public final class GiftOfVitality extends LongTimeEvent final long remainingTime = (reuse - System.currentTimeMillis()) / 1000; final int hours = (int) (remainingTime / 3600); final int minutes = (int) ((remainingTime % 3600) / 60); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HOUR_S_S3_MINUTE_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HR_S3_MIN); sm.addSkillName(23179); sm.addInt(hours); sm.addInt(minutes); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/HappyHours/HappyHours.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/HappyHours/HappyHours.java index bdb9d72fae..70f5d92f6d 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/HappyHours/HappyHours.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/HappyHours/HappyHours.java @@ -80,7 +80,7 @@ public class HappyHours extends LongTimeEvent { _lastRewardTime = System.currentTimeMillis(); final ExShowScreenMessage screenMsg = new ExShowScreenMessage("You obtained 20 Sibi's coins.", ExShowScreenMessage.TOP_CENTER, 7000, 0, true, true); - final SystemMessage systemMsg = SystemMessage.getSystemMessage(SystemMessageId.YOU_OBTAINED_S1_SIBIS_COINS); + final SystemMessage systemMsg = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_SIBI_S_COINS); systemMsg.addInt(20); for (L2PcInstance plr : L2World.getInstance().getPlayers()) { diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/LoveYourGatekeeper/LoveYourGatekeeper.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/LoveYourGatekeeper/LoveYourGatekeeper.java index 31705a7955..143846118b 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/LoveYourGatekeeper/LoveYourGatekeeper.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/LoveYourGatekeeper/LoveYourGatekeeper.java @@ -63,7 +63,7 @@ public final class LoveYourGatekeeper extends LongTimeEvent final long remainingTime = (reuse - System.currentTimeMillis()) / 1000; final int hours = (int) (remainingTime / 3600); final int minutes = (int) ((remainingTime % 3600) / 60); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HOUR_S_S3_MINUTE_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HR_S3_MIN); sm.addItemName(GATEKEEPER_TRANSFORMATION_STICK); sm.addInt(hours); sm.addInt(minutes); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java index f90f95264b..a0e922a4c7 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java @@ -120,7 +120,7 @@ public final class MasterOfEnchanting extends LongTimeEvent final int minutes = ((int) remainingTime % 3600) / 60; if (hours > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_HR_AND_S2_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED_AGAIN); sm.addInt(hours); sm.addInt(minutes); player.sendPacket(sm); @@ -128,7 +128,7 @@ public final class MasterOfEnchanting extends LongTimeEvent } else if (minutes > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED_AGAIN); sm.addInt(minutes); player.sendPacket(sm); htmltext = "32599-scroll24.htm"; diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatAlliance.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatAlliance.java index e3c183f553..5a3132a696 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatAlliance.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatAlliance.java @@ -45,7 +45,7 @@ public final class ChatAlliance implements IChatHandler if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatClan.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatClan.java index 12445b8b50..42691ad28c 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatClan.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatClan.java @@ -46,7 +46,7 @@ public final class ChatClan implements IChatHandler if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java index ca9dd2fabb..b4858cc654 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java @@ -77,13 +77,13 @@ public final class ChatGeneral implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_USE_GENERAL_CHAT_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.GENERAL_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatHeroVoice.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatHeroVoice.java index a9d5d88690..af6bd76377 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatHeroVoice.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatHeroVoice.java @@ -48,7 +48,7 @@ public final class ChatHeroVoice implements IChatHandler if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatParty.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatParty.java index 87e97fb389..58aea14d56 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatParty.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatParty.java @@ -46,7 +46,7 @@ public final class ChatParty implements IChatHandler if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyMatchRoom.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyMatchRoom.java index 2b0aec19e7..6d98fb3578 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyMatchRoom.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyMatchRoom.java @@ -44,7 +44,7 @@ public class ChatPartyMatchRoom implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomAll.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomAll.java index d9945b4b98..97ca4a8fb9 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomAll.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomAll.java @@ -44,7 +44,7 @@ public final class ChatPartyRoomAll implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomCommander.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomCommander.java index ba0034b22d..9f93fb25fc 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomCommander.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPartyRoomCommander.java @@ -44,7 +44,7 @@ public final class ChatPartyRoomCommander implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPetition.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPetition.java index 8a17f6ef89..17fb6ae8f6 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPetition.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatPetition.java @@ -41,7 +41,7 @@ public final class ChatPetition implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatShout.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatShout.java index 0f1ff46dac..76a7725a52 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatShout.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatShout.java @@ -44,7 +44,7 @@ public final class ChatShout implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) @@ -54,7 +54,7 @@ public final class ChatShout implements IChatHandler } if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_SHOUT_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.SHOUT_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java index 1aec497bbc..b3955409d1 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java @@ -44,7 +44,7 @@ public final class ChatTrade implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) @@ -54,7 +54,7 @@ public final class ChatTrade implements IChatHandler } if (activeChar.getLevel() < 20) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_USE_TRADE_CHAT_AFTER_LV_S1).addInt(20)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.TRADE_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(20)); return; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java index 89e768c78d..02c41e3f9b 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java @@ -45,7 +45,7 @@ public final class ChatWhisper implements IChatHandler { if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); return; } @@ -109,7 +109,7 @@ public final class ChatWhisper implements IChatHandler } if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.getWhisperers().contains(receiver.getObjectId()) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_A_WHISPER_UNTIL_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NON_PREMIUM_USERS_LV_S1_OR_LOWER_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_IT).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } if (!BlockList.isBlocked(receiver, activeChar)) diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java index e56fad0938..dc0ed66053 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java @@ -67,7 +67,7 @@ public final class ChatWorld implements IChatHandler } else if (activeChar.isChatBanned() && Config.BAN_CHAT_CHANNELS.contains(type)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); } else if (Config.JAIL_DISABLE_CHAT && activeChar.isJailed() && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { @@ -76,7 +76,7 @@ public final class ChatWorld implements IChatHandler } else if (activeChar.getWorldChatUsed() >= activeChar.getWorldChatPoints()) { - activeChar.sendPacket(SystemMessageId.YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_A_NEW_DAY_STARTS_EVERY_DAY_AT_18_30); + activeChar.sendPacket(SystemMessageId.YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_THE_WORLD_CHAT_QUOTA_RESETS_AT_7AM_EVERYDAY); } else { diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java index fb13b89a3e..420192d12e 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java @@ -108,7 +108,7 @@ public final class ConvertItem extends AbstractEffect final SystemMessage sm; if (unequippedItem.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequippedItem.getEnchantLevel()); sm.addItemName(unequippedItem); } @@ -153,7 +153,7 @@ public final class ConvertItem extends AbstractEffect } else { - msg = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + msg = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); msg.addItemName(newItem); } player.sendPacket(msg); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java index 8fb26ea974..61b368b2db 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java @@ -81,7 +81,7 @@ public final class Disarmor extends AbstractEffect SystemMessage sm = null; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -129,7 +129,7 @@ public final class Disarmor extends AbstractEffect } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(item); } player.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/itemhandlers/ItemSkillsTemplate.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/itemhandlers/ItemSkillsTemplate.java index 3e8856d465..a75c746426 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/itemhandlers/ItemSkillsTemplate.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/itemhandlers/ItemSkillsTemplate.java @@ -207,7 +207,7 @@ public class ItemSkillsTemplate implements IItemHandler SystemMessage sm = null; if (hours > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HOUR_S_S3_MINUTE_S_AND_S4_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HR_S3_MIN_AND_S4_SEC_REMAINING_IN_S1_S_RE_USE_TIME); if ((skill == null) || skill.isStatic()) { sm.addItemName(item); @@ -221,7 +221,7 @@ public class ItemSkillsTemplate implements IItemHandler } else if (minutes > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MINUTE_S_S3_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MIN_S3_SEC_REMAINING_IN_S1_S_RE_USE_TIME); if ((skill == null) || skill.isStatic()) { sm.addItemName(item); @@ -234,7 +234,7 @@ public class ItemSkillsTemplate implements IItemHandler } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SEC_REMAINING_IN_S1_S_RE_USE_TIME); if ((skill == null) || skill.isStatic()) { sm.addItemName(item); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/ChamberOfProphecies/ChamberOfProphecies.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/ChamberOfProphecies/ChamberOfProphecies.java index 5a9eed907e..f19778a667 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/ChamberOfProphecies/ChamberOfProphecies.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/ChamberOfProphecies/ChamberOfProphecies.java @@ -377,7 +377,7 @@ public final class ChamberOfProphecies extends AbstractInstance case "exit": { startQuestTimer("finish", 3000, npc, player); - player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 1.0D)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 1.0D)); final QuestState qs = player.getQuestState(Q10753_WindsOfFateChoices.class.getSimpleName()); if (qs != null) { diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/NornilsGarden/NornilsGarden.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/NornilsGarden/NornilsGarden.java index fc2be4cd7a..4fedafef80 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/NornilsGarden/NornilsGarden.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/instances/NornilsGarden/NornilsGarden.java @@ -268,7 +268,7 @@ public class NornilsGarden extends AbstractInstance world.getAliveNpcs(BOZ_STAGE4).forEach(boz -> boz.doDie(null)); world.spawnGroup("wave_4"); world.finishInstance(); - world.broadcastPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 5.0D)); + world.broadcastPacket(SystemMessage.getSystemMessage(SystemMessageId.THIS_DUNGEON_WILL_EXPIRE_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES).addInt((int) 5.0D)); } break; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java index 81aa580e7e..3464fd30b7 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java @@ -93,7 +93,7 @@ public class Q10521_QueenNavarisLetterVarkaSilenosBarracks extends LetterQuest { addExpAndSp(player, 1277640, 306); giveStoryQuestReward(npc, player); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_ALL_OF_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(QuestType.ONE_TIME, true); htmltext = event; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java index 4a4a71dddb..6048256fc9 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java @@ -92,7 +92,7 @@ public class Q10525_QueenNavarisLetterKetraOrcOutpost extends LetterQuest { addExpAndSp(player, 1277640, 306); giveStoryQuestReward(npc, player); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_ALL_OF_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(QuestType.ONE_TIME, true); htmltext = event; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java index 91d595b696..c2471a7721 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java @@ -91,7 +91,7 @@ public class Q10798_LettersFromTheQueenDragonValley extends LetterQuest giveItems(player, EWS, 2); giveStoryQuestReward(npc, player); addExpAndSp(player, 1277640, 306); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_ALL_OF_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(false, true); htmltext = event; } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatGludinRune.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatGludinRune.java index 7edfc605df..93692a17ff 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatGludinRune.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatGludinRune.java @@ -139,28 +139,28 @@ public class BoatGludinRune implements Runnable _boat = boat; ARRIVED_AT_GLUDIN = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_HAS_ARRIVED_AT_GLUDIN_HARBOR); - ARRIVED_AT_GLUDIN_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_AFTER_ANCHORING_FOR_TEN_MINUTES); - LEAVE_GLUDIN5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MINUTES); - LEAVE_GLUDIN1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_ONE_MINUTE); + ARRIVED_AT_GLUDIN_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_AFTER_ANCHORING_FOR_TEN_MIN); + LEAVE_GLUDIN5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MIN); + LEAVE_GLUDIN1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_ONE_MIN); LEAVE_GLUDIN0 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.MAKE_HASTE_WE_WILL_BE_DEPARTING_FOR_GLUDIN_HARBOR_SHORTLY_2); LEAVING_GLUDIN = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.WE_ARE_NOW_DEPARTING_FOR_GLUDIN_HARBOR_HOLD_ON_AND_ENJOY_THE_RIDE); ARRIVED_AT_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.WELCOME_TO_RUNE_HARBOR); - ARRIVED_AT_RUNE_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_AFTER_ANCHORING_FOR_TEN_MINUTES); - LEAVE_RUNE5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MINUTES); - LEAVE_RUNE1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_ONE_MINUTE); + ARRIVED_AT_RUNE_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_AFTER_ANCHORING_FOR_TEN_MIN); + LEAVE_RUNE5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MIN); + LEAVE_RUNE1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_ONE_MIN); LEAVE_RUNE0 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.MAKE_HASTE_WE_WILL_BE_DEPARTING_FOR_GLUDIN_HARBOR_SHORTLY); LEAVING_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.WE_ARE_NOW_DEPARTING_FOR_GLUDIN_HARBOR_HOLD_ON_AND_ENJOY_THE_RIDE); BUSY_GLUDIN = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_TO_GLUDIN_HARBOR_HAS_BEEN_DELAYED); BUSY_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_TO_RUNE_HARBOR_HAS_BEEN_DELAYED); - ARRIVAL_RUNE15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_15_MINUTES); - ARRIVAL_RUNE10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_10_MINUTES); - ARRIVAL_RUNE5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_5_MINUTES); - ARRIVAL_RUNE1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_1_MINUTE); - ARRIVAL_GLUDIN15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_15_MINUTES); - ARRIVAL_GLUDIN10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MINUTES); - ARRIVAL_GLUDIN5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MINUTES); - ARRIVAL_GLUDIN1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MINUTE); + ARRIVAL_RUNE15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_15_MIN); + ARRIVAL_RUNE10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_10_MIN); + ARRIVAL_RUNE5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_5_MIN); + ARRIVAL_RUNE1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_1_MIN); + ARRIVAL_GLUDIN15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_15_MIN); + ARRIVAL_GLUDIN10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MIN); + ARRIVAL_GLUDIN5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MIN); + ARRIVAL_GLUDIN1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MIN); GLUDIN_SOUND = new PlaySound(0, "itemsound.ship_arrival_departure", 1, _boat.getObjectId(), GLUDIN_DOCK[0].getX(), GLUDIN_DOCK[0].getY(), GLUDIN_DOCK[0].getZ()); RUNE_SOUND = new PlaySound(0, "itemsound.ship_arrival_departure", 1, _boat.getObjectId(), RUNE_DOCK[0].getX(), RUNE_DOCK[0].getY(), RUNE_DOCK[0].getZ()); diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatInnadrilTour.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatInnadrilTour.java index fea42bcaa9..3241447d7d 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatInnadrilTour.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatInnadrilTour.java @@ -94,17 +94,17 @@ public class BoatInnadrilTour implements Runnable { _boat = boat; - ARRIVED_AT_INNADRIL = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_HAS_ARRIVED_IT_WILL_ANCHOR_FOR_TEN_MINUTES); - LEAVE_INNADRIL5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_FIVE_MINUTES); - LEAVE_INNADRIL1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_ONE_MINUTE); + ARRIVED_AT_INNADRIL = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_HAS_ARRIVED_IT_WILL_ANCHOR_FOR_TEN_MIN); + LEAVE_INNADRIL5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_FIVE_MIN); + LEAVE_INNADRIL1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_ONE_MIN); LEAVE_INNADRIL0 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_BE_LEAVING_SOON); LEAVING_INNADRIL = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_IS_LEAVING); - ARRIVAL20 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_20_MINUTES); - ARRIVAL15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_15_MINUTES); - ARRIVAL10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_10_MINUTES); - ARRIVAL5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_5_MINUTES); - ARRIVAL1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_1_MINUTE); + ARRIVAL20 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_20_MIN); + ARRIVAL15 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_15_MIN); + ARRIVAL10 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_10_MIN); + ARRIVAL5 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_5_MIN); + ARRIVAL1 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_1_MIN); INNADRIL_SOUND = new PlaySound(0, "itemsound.ship_arrival_departure", 1, _boat.getObjectId(), DOCK.getX(), DOCK.getY(), DOCK.getZ()); } diff --git a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatRunePrimeval.java b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatRunePrimeval.java index 1e62f23d02..6f619b6ee5 100644 --- a/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatRunePrimeval.java +++ b/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/vehicles/BoatRunePrimeval.java @@ -91,10 +91,10 @@ public class BoatRunePrimeval implements Runnable _boat = boat; ARRIVED_AT_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.WELCOME_TO_RUNE_HARBOR); - ARRIVED_AT_RUNE_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_PRIMEVAL_ISLE_AFTER_ANCHORING_FOR_THREE_MINUTES); + ARRIVED_AT_RUNE_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_PRIMEVAL_ISLE_AFTER_ANCHORING_FOR_THREE_MIN); LEAVING_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_IS_NOW_DEPARTING_RUNE_HARBOR_FOR_PRIMEVAL_ISLE); ARRIVED_AT_PRIMEVAL = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_HAS_ARRIVED_AT_PRIMEVAL_ISLE); - ARRIVED_AT_PRIMEVAL_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_RUNE_HARBOR_AFTER_ANCHORING_FOR_THREE_MINUTES); + ARRIVED_AT_PRIMEVAL_2 = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_WILL_LEAVE_FOR_RUNE_HARBOR_AFTER_ANCHORING_FOR_THREE_MIN); LEAVING_PRIMEVAL = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_IS_NOW_DEPARTING_PRIMEVAL_ISLE_FOR_RUNE_HARBOR); BUSY_RUNE = new CreatureSay(0, ChatType.BOAT, 801, SystemMessageId.THE_FERRY_FROM_PRIMEVAL_ISLE_TO_RUNE_HARBOR_HAS_BEEN_DELAYED); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/Shutdown.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/Shutdown.java index ec983b9153..72f3a8f039 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/Shutdown.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/Shutdown.java @@ -78,7 +78,7 @@ public class Shutdown extends Thread */ private void SendServerQuit(int seconds) { - final SystemMessage sysm = SystemMessage.getSystemMessage(SystemMessageId.THE_SERVER_WILL_BE_COMING_DOWN_IN_S1_SECOND_S_PLEASE_FIND_A_SAFE_PLACE_TO_LOG_OUT); + final SystemMessage sysm = SystemMessage.getSystemMessage(SystemMessageId.THE_SERVER_WILL_BE_COMING_DOWN_IN_S1_SEC_PLEASE_FIND_A_SAFE_PLACE_TO_LOG_OUT); sysm.addInt(seconds); Broadcast.toAllOnlinePlayers(sysm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/datatables/BotReportTable.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/datatables/BotReportTable.java index 5bf2038134..e94816d554 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/datatables/BotReportTable.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/datatables/BotReportTable.java @@ -293,7 +293,7 @@ public final class BotReportTable final long reuse = (System.currentTimeMillis() - rcdRep.getLastReporTime()); if (reuse < Config.BOTREPORT_REPORT_DELAY) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MINUTE_S_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MIN_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT); sm.addInt((int) (reuse / 60000)); sm.addInt(rcdRep.getPointsLeft()); reporter.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java index e808c70557..c7ee5dc7b9 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java @@ -261,7 +261,7 @@ public class CeremonyOfChaosManager extends AbstractEventManager= Config.PC_CAFE_MAX_POINTS) { - final SystemMessage message = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PC_POINTS); + final SystemMessage message = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PA_POINTS); player.sendPacket(message); return; } @@ -67,11 +67,11 @@ public final class PcCafePointsManager if (Config.PC_CAFE_ENABLE_DOUBLE_POINTS && (Rnd.get(100) < Config.PC_CAFE_DOUBLE_POINTS_CHANCE)) { points *= 2; - message = SystemMessage.getSystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_EARNED_S1_PC_POINT_S); + message = SystemMessage.getSystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_EARNED_S1_PA_POINT_S); } else { - message = SystemMessage.getSystemMessage(SystemMessageId.YOU_EARNED_S1_PC_POINT_S); + message = SystemMessage.getSystemMessage(SystemMessageId.YOU_EARNED_S1_PA_POINT_S); } if ((player.getPcCafePoints() + points) > Config.PC_CAFE_MAX_POINTS) { diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ClanWar.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ClanWar.java index a6624e5179..14c0197750 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ClanWar.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ClanWar.java @@ -133,7 +133,7 @@ public final class ClanWar sm.addString(killerClan.getName()); victimClan.broadcastToOtherOnlineMembers(sm, victim); - sm = SystemMessage.getSystemMessage(SystemMessageId.BECAUSE_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2_CLAN_REPUTATION_INCREASED_BY_1); + sm = SystemMessage.getSystemMessage(SystemMessageId.BECAUSE_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2_CLAN_REPUTATION_INCREASED_BY_1_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2); sm.addString(victimClan.getName()); sm.addPcName(killer); killerClan.broadcastToOtherOnlineMembers(sm, killer); @@ -155,11 +155,11 @@ public final class ClanWar { _state = ClanWarState.MUTUAL; - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(victimClan.getName()); killerClan.broadcastToOnlineMembers(sm); - sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(killerClan.getName()); victimClan.broadcastToOnlineMembers(sm); @@ -234,11 +234,11 @@ public final class ClanWar { _state = ClanWarState.MUTUAL; - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(attacker.getName()); attacked.broadcastToOnlineMembers(sm); - sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(attacked.getName()); attacker.broadcastToOnlineMembers(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CombatFlag.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CombatFlag.java index 6bb59c8fba..89abcb268d 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CombatFlag.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CombatFlag.java @@ -79,7 +79,7 @@ public class CombatFlag // Equip with the weapon _item = item; _player.getInventory().equipItem(_item); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(_item); _player.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CursedWeapon.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CursedWeapon.java index 1f6ab1c29a..85377186ff 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CursedWeapon.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/CursedWeapon.java @@ -307,7 +307,7 @@ public class CursedWeapon implements INamable CursedWeaponsManager.announce(msg); final CursedWeapon cw = CursedWeaponsManager.getInstance().getCursedWeapon(_player.getCursedWeaponEquippedId()); - final SystemMessage msg2 = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_S2_MINUTE_S_OF_USAGE_TIME_REMAINING); + final SystemMessage msg2 = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_S2_MIN_OF_USAGE_TIME_REMAINING); final int timeLeft = (int) (cw.getTimeLeft() / 60000); msg2.addItemName(_player.getCursedWeaponEquippedId()); msg2.addInt(timeLeft); @@ -436,7 +436,7 @@ public class CursedWeapon implements INamable _item = item; // L2ItemInstance[] items = _player.getInventory().equipItem(_item); - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(_item); _player.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/Fishing.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/Fishing.java index 8556a75cae..6c11402a26 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/Fishing.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/Fishing.java @@ -146,7 +146,7 @@ public class Fishing { if (minPlayerLevel == 85) { - _player.sendPacket(SystemMessageId.FISHING_IS_AVAILABLE_TO_CHARACTERS_LV_85_OR_ABOVE); + _player.sendPacket(SystemMessageId.FISHING_IS_AVAILABLE_TO_PREMIUM_USERS_ONLY); } else // In case of custom fishing level. { diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/L2Clan.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/L2Clan.java index 4f1d797d6f..32e8787555 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/L2Clan.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/L2Clan.java @@ -2252,7 +2252,7 @@ public class L2Clan implements IIdentifiable, INamable } else { - activeChar.sendPacket(SystemMessageId.THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME); + activeChar.sendPacket(SystemMessageId.THIS_CLAN_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME); } return false; } @@ -2746,7 +2746,7 @@ public class L2Clan implements IIdentifiable, INamable } // notify all the members about it - broadcastToOnlineMembers(SystemMessage.getSystemMessage(SystemMessageId.YOUR_CLAN_S_LEVEL_HAS_INCREASED)); + broadcastToOnlineMembers(SystemMessage.getSystemMessage(SystemMessageId.YOUR_CLAN_LEVEL_HAS_RISEN)); broadcastToOnlineMembers(new PledgeShowInfoUpdate(this)); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index 5f3eda0c11..b404e03e9d 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -2186,7 +2186,7 @@ public final class L2PcInstance extends L2Playable { if (item.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } @@ -2222,7 +2222,7 @@ public final class L2PcInstance extends L2Playable } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(item); } sendPacket(sm); @@ -2362,7 +2362,7 @@ public final class L2PcInstance extends L2Playable } setLvlJoinedAcademy(0); // oust pledge member from the academy, cuz he has finished his 2nd class transfer - final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.CLAN_MEMBER_S1_HAS_BEEN_EXPELLED); + final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_BEEN_DISMISSED); msg.addPcName(this); _clan.broadcastToOnlineMembers(msg); _clan.broadcastToOnlineMembers(new PledgeShowMemberListDelete(getName())); @@ -5958,7 +5958,7 @@ public final class L2PcInstance extends L2Playable final SystemMessage sm; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -5998,7 +5998,7 @@ public final class L2PcInstance extends L2Playable SystemMessage sm = null; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -6064,21 +6064,21 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden when dead sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_WHILE_DEAD); return false; } else if (pet.isDead()) { // A dead strider cannot be ridden. sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_DEAD_STRIDER_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_DEAD_MOUNT); return false; } else if (pet.isInCombat() || pet.isRooted()) { // A strider in battle cannot be ridden sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_THAT_IS_IN_BATTLE); return false; } @@ -6086,14 +6086,14 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden while in battle sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_WHILE_IN_BATTLE); return false; } else if (_waitTypeSitting) { // A strider can be ridden only when standing sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING); + sendPacket(SystemMessageId.YOU_MUST_BE_STANDING_TO_USE_A_MOUNT); return false; } else if (isFishing()) @@ -6119,7 +6119,7 @@ public final class L2PcInstance extends L2Playable else if (pet.isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY); return false; } else if (!Util.checkIfInRange(200, this, pet, true)) @@ -6148,7 +6148,7 @@ public final class L2PcInstance extends L2Playable else if (isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY); return false; } else @@ -8455,20 +8455,20 @@ public final class L2PcInstance extends L2Playable final int seconds = (remainingTime % 60); if (hours > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HOUR_S_S3_MINUTE_S_AND_S4_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HR_S3_MIN_AND_S4_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addSkillName(skill); sm.addInt(hours); sm.addInt(minutes); } else if (minutes > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MINUTE_S_S3_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MIN_S3_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addSkillName(skill); sm.addInt(minutes); } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addSkillName(skill); } @@ -10296,7 +10296,7 @@ public final class L2PcInstance extends L2Playable } final long restoreExp = Math.round(((_expBeforeDeath - getExp()) * _revivePower) / 100); - final ConfirmDlg dlg = new ConfirmDlg(SystemMessageId.C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT.getId()); + final ConfirmDlg dlg = new ConfirmDlg(SystemMessageId.C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_YOUR_XP_S2_S3_ACCEPT.getId()); dlg.addPcName(reviver); dlg.addLong(restoreExp); dlg.addInt(power); @@ -11726,7 +11726,7 @@ public final class L2PcInstance extends L2Playable if (equippedItem.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(equippedItem.getEnchantLevel()); sm.addItemName(equippedItem); } @@ -14082,7 +14082,7 @@ public final class L2PcInstance extends L2Playable } if (oldLevel < getFactionLevel(faction)) { - sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THE_FACTION_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK).addFactionName(faction.getId())); + sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THE_AMITY_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK).addFactionName(faction.getId())); } } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PetInstance.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PetInstance.java index 2a22ce6fa1..3d678c28d7 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PetInstance.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2PetInstance.java @@ -658,7 +658,7 @@ public class L2PetInstance extends L2Summon return false; } stopFeed(); - sendPacket(SystemMessageId.THE_PET_HAS_BEEN_KILLED_IF_YOU_DON_T_RESURRECT_IT_WITHIN_24_HOURS_THE_PET_S_BODY_WILL_DISAPPEAR_ALONG_WITH_ALL_THE_PET_S_ITEMS); + sendPacket(SystemMessageId.THE_PET_HAS_BEEN_KILLED_IF_YOU_DON_T_RESURRECT_IT_WITHIN_24_HR_THE_PET_S_BODY_WILL_DISAPPEAR_ALONG_WITH_ALL_THE_PET_S_ITEMS); DecayTaskManager.getInstance().add(this); // do not decrease exp if is in duel, arena return true; diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2RaceManagerInstance.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2RaceManagerInstance.java index 5f41fba2bd..4960743ddc 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2RaceManagerInstance.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2RaceManagerInstance.java @@ -110,21 +110,21 @@ public class L2RaceManagerInstance extends L2Npc ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.NOW_SELLING_TICKETS_FOR_MONSTER_RACE_S1), 30 * SECOND, 10 * MINUTE); ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKETS_ARE_NOW_AVAILABLE_FOR_MONSTER_RACE_S1), MINUTE, 10 * MINUTE); ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.NOW_SELLING_TICKETS_FOR_MONSTER_RACE_S1), MINUTE + (30 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S), 2 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S), 3 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S), 4 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S), 5 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S), 6 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN), 2 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN), 3 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN), 4 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN), 5 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN), 6 * MINUTE, 10 * MINUTE); ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.TICKETS_SALES_ARE_CLOSED_FOR_MONSTER_RACE_S1_ODDS_ARE_POSTED), 7 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MINUTE_S), 7 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MINUTE_S), 8 * MINUTE, 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S1_WILL_BEGIN_IN_30_SECONDS), (8 * MINUTE) + (30 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S1_IS_ABOUT_TO_BEGIN_COUNTDOWN_IN_FIVE_SECONDS), (8 * MINUTE) + (50 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SECOND_S), (8 * MINUTE) + (55 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SECOND_S), (8 * MINUTE) + (56 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SECOND_S), (8 * MINUTE) + (57 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SECOND_S), (8 * MINUTE) + (58 * SECOND), 10 * MINUTE); - ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SECOND_S), (8 * MINUTE) + (59 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MIN), 7 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MIN), 8 * MINUTE, 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S1_WILL_BEGIN_IN_30_SEC), (8 * MINUTE) + (30 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.MONSTER_RACE_S1_IS_ABOUT_TO_BEGIN_COUNTDOWN_IN_FIVE_SEC), (8 * MINUTE) + (50 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SEC), (8 * MINUTE) + (55 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SEC), (8 * MINUTE) + (56 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SEC), (8 * MINUTE) + (57 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SEC), (8 * MINUTE) + (58 * SECOND), 10 * MINUTE); + ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THE_RACE_WILL_BEGIN_IN_S1_SEC), (8 * MINUTE) + (59 * SECOND), 10 * MINUTE); ThreadPool.scheduleAtFixedRate(new Announcement(SystemMessageId.THEY_RE_OFF), 9 * MINUTE, 10 * MINUTE); } _managers.add(this); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java index f8ecc45647..69506f563b 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java @@ -308,7 +308,7 @@ public class L2VillageMasterInstance extends L2NpcInstance final L2Clan clan = player.getClan(); if (clan.getAllyId() != 0) { - player.sendPacket(SystemMessageId.YOU_CANNOT_DISPERSE_THE_CLANS_IN_YOUR_ALLIANCE); + player.sendPacket(SystemMessageId.THE_OPPOSING_CLAN_HAS_REQUESTED_TO_DISSOLVE); return; } if (clan.isAtWar()) diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/tasks/player/WarnUserTakeBreakTask.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/tasks/player/WarnUserTakeBreakTask.java index 7f98a7555e..5d8f511435 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/tasks/player/WarnUserTakeBreakTask.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/actor/tasks/player/WarnUserTakeBreakTask.java @@ -43,7 +43,7 @@ public final class WarnUserTakeBreakTask implements Runnable if (_player.isOnline()) { final long hours = TimeUnit.MILLISECONDS.toHours(_player.getUptime()); - _player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_PLAYED_FOR_S1_HOUR_S_PLEASE_TAKE_A_BREAK).addLong(hours)); + _player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_PLAYED_FOR_S1_HR_PLEASE_TAKE_A_BREAK).addLong(hours)); } else { diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ceremonyofchaos/CeremonyOfChaosEvent.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ceremonyofchaos/CeremonyOfChaosEvent.java index f1005786df..d9f2410c78 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ceremonyofchaos/CeremonyOfChaosEvent.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/ceremonyofchaos/CeremonyOfChaosEvent.java @@ -523,7 +523,7 @@ public class CeremonyOfChaosEvent extends AbstractEvent { final int time = params.getInt("time", 0); - final SystemMessage countdown = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SECOND_S); + final SystemMessage countdown = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SEC); countdown.addByte(time); broadcastPacket(countdown); @@ -549,7 +549,7 @@ public class CeremonyOfChaosEvent extends AbstractEvent case "match_end_countdown": { final int time = params.getInt("time", 0); - final SystemMessage countdown = SystemMessage.getSystemMessage(SystemMessageId.IN_S1_SECOND_S_YOU_WILL_BE_MOVED_TO_WHERE_YOU_WERE_BEFORE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS); + final SystemMessage countdown = SystemMessage.getSystemMessage(SystemMessageId.IN_S1_SEC_YOU_WILL_BE_MOVED_TO_WHERE_YOU_WERE_BEFORE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS); countdown.addByte(time); broadcastPacket(countdown); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Duel.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Duel.java index c54b1b3fd0..3385f16552 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Duel.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Duel.java @@ -771,7 +771,7 @@ public class Duel SystemMessage sm = null; if (_countdown > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_DUEL_WILL_BEGIN_IN_S1_SECOND_S); + sm = SystemMessage.getSystemMessage(SystemMessageId.THE_DUEL_WILL_BEGIN_IN_S1_SEC); sm.addInt(_countdown); } else diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/FortSiege.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/FortSiege.java index d558045fab..99a22ffc79 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/FortSiege.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/FortSiege.java @@ -116,49 +116,49 @@ public class FortSiege implements Siegable else if (_time == 600) // 10min remains { _fort.despawnSuspiciousMerchant(); - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(10); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(300), 300000); // Prepare task for 5 minutes left. } else if (_time == 300) // 5min remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(5); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(60), 240000); // Prepare task for 1 minute left. } else if (_time == 60) // 1min remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(1); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(30), 30000); // Prepare task for 30 seconds left. } else if (_time == 30) // 30seconds remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SECOND_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SEC_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(30); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(10), 20000); // Prepare task for 10 seconds left. } else if (_time == 10) // 10seconds remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SECOND_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SEC_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(10); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(5), 5000); // Prepare task for 5 seconds left. } else if (_time == 5) // 5seconds remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SECOND_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SEC_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(5); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(1), 4000); // Prepare task for 1 seconds left. } else if (_time == 1) // 1seconds remains { - sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SECOND_S_UNTIL_THE_FORTRESS_BATTLE_STARTS); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_SEC_UNTIL_THE_FORTRESS_BATTLE_STARTS); sm.addInt(1); announceToPlayer(sm); ThreadPool.schedule(new ScheduleStartSiegeTask(0), 1000); // Prepare task start siege. diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Siege.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Siege.java index f20c39da7f..1bd14c61d5 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Siege.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/entity/Siege.java @@ -102,35 +102,35 @@ public class Siege implements Siegable final long timeRemaining = _siegeEndDate.getTimeInMillis() - Calendar.getInstance().getTimeInMillis(); if (timeRemaining > 3600000) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_HOUR_S_UNTIL_CASTLE_SIEGE_CONCLUSION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_HR_UNTIL_CASTLE_SIEGE_CONCLUSION); sm.addInt(2); announceToPlayer(sm, true); ThreadPool.schedule(new ScheduleEndSiegeTask(_castleInst), timeRemaining - 3600000); // Prepare task for 1 hr left. } else if ((timeRemaining <= 3600000) && (timeRemaining > 600000)) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_CASTLE_SIEGE_CONCLUSION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_CASTLE_SIEGE_CONCLUSION); sm.addInt((int) timeRemaining / 60000); announceToPlayer(sm, true); ThreadPool.schedule(new ScheduleEndSiegeTask(_castleInst), timeRemaining - 600000); // Prepare task for 10 minute left. } else if ((timeRemaining <= 600000) && (timeRemaining > 300000)) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_CASTLE_SIEGE_CONCLUSION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_CASTLE_SIEGE_CONCLUSION); sm.addInt((int) timeRemaining / 60000); announceToPlayer(sm, true); ThreadPool.schedule(new ScheduleEndSiegeTask(_castleInst), timeRemaining - 300000); // Prepare task for 5 minute left. } else if ((timeRemaining <= 300000) && (timeRemaining > 10000)) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MINUTE_S_UNTIL_CASTLE_SIEGE_CONCLUSION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_MIN_UNTIL_CASTLE_SIEGE_CONCLUSION); sm.addInt((int) timeRemaining / 60000); announceToPlayer(sm, true); ThreadPool.schedule(new ScheduleEndSiegeTask(_castleInst), timeRemaining - 10000); // Prepare task for 10 seconds count down } else if ((timeRemaining <= 10000) && (timeRemaining > 0)) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_CASTLE_SIEGE_WILL_END_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_CASTLE_SIEGE_WILL_END_IN_S1_SEC); sm.addInt((int) timeRemaining / 1000); announceToPlayer(sm, true); ThreadPool.schedule(new ScheduleEndSiegeTask(_castleInst), timeRemaining); // Prepare task for second count down diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/Instance.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/Instance.java index 0ca6b6c469..44eea9a38f 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/Instance.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/Instance.java @@ -898,7 +898,7 @@ public final class Instance implements IIdentifiable, INamable if (!player.isOnCustomEvent() && (_template.getEjectTime() > 0)) { // Send message - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MIN_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE); sm.addInt(_template.getEjectTime()); player.sendPacket(sm); @@ -1147,7 +1147,7 @@ public final class Instance implements IIdentifiable, INamable */ private void sendWorldDestroyMessage(int delay) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES); sm.addInt(delay); broadcastPacket(sm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java index 08fabd97c3..f316b3d320 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java @@ -33,7 +33,7 @@ public final class ConditionGroupMin extends Condition public ConditionGroupMin(InstanceTemplate template, StatsSet parameters, boolean onlyLeader, boolean showMessageAndHtml) { super(template, parameters, true, showMessageAndHtml); - setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE, (msg, player) -> msg.addInt(getLimit())); + setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE, (msg, player) -> msg.addInt(getLimit())); } @Override diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/itemauction/ItemAuction.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/itemauction/ItemAuction.java index 4865f4c0b2..7d178581b2 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/itemauction/ItemAuction.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/itemauction/ItemAuction.java @@ -348,7 +348,7 @@ public final class ItemAuction { _auctionEndingExtendState = ItemAuctionExtendState.EXTEND_BY_5_MIN; _endingTime += ENDING_TIME_EXTEND_5; - broadcastToAllBidders(SystemMessage.getSystemMessage(SystemMessageId.BIDDER_EXISTS_THE_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_5_MINUTES)); + broadcastToAllBidders(SystemMessage.getSystemMessage(SystemMessageId.BIDDER_EXISTS_THE_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_5_MIN)); break; } case EXTEND_BY_5_MIN: @@ -357,7 +357,7 @@ public final class ItemAuction { _auctionEndingExtendState = ItemAuctionExtendState.EXTEND_BY_3_MIN; _endingTime += ENDING_TIME_EXTEND_3; - broadcastToAllBidders(SystemMessage.getSystemMessage(SystemMessageId.BIDDER_EXISTS_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_3_MINUTES)); + broadcastToAllBidders(SystemMessage.getSystemMessage(SystemMessageId.BIDDER_EXISTS_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_3_MIN)); } break; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/olympiad/OlympiadGameTask.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/olympiad/OlympiadGameTask.java index c45255a32e..0844e29d2f 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/olympiad/OlympiadGameTask.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/olympiad/OlympiadGameTask.java @@ -193,7 +193,7 @@ public final class OlympiadGameTask implements Runnable { if (_countDown > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_MOVED_TO_THE_OLYMPIAD_STADIUM_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_MOVED_TO_THE_OLYMPIAD_STADIUM_IN_S1_SEC); sm.addInt(_countDown); _game.broadcastPacket(sm); } @@ -236,7 +236,7 @@ public final class OlympiadGameTask implements Runnable } else { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SEC); sm.addInt(_countDown); _stadium.broadcastPacket(sm); } @@ -260,7 +260,7 @@ public final class OlympiadGameTask implements Runnable { if (_countDown > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_MATCH_WILL_START_IN_S1_SEC); sm.addInt(_countDown); _stadium.broadcastPacket(sm); } @@ -293,7 +293,7 @@ public final class OlympiadGameTask implements Runnable { if (announceTime == remaining) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_WILL_END_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_GAME_WILL_END_IN_S1_SEC); sm.addInt(announceTime); _stadium.broadcastPacket(sm); break; @@ -320,7 +320,7 @@ public final class OlympiadGameTask implements Runnable { if (_countDown > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_MOVED_BACK_TO_TOWN_IN_S1_SECOND_S); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_WILL_BE_MOVED_BACK_TO_TOWN_IN_S1_SEC); sm.addInt(_countDown); _game.broadcastPacket(sm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java index a3280b6e6e..10c5f6a51a 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java @@ -355,7 +355,7 @@ public class SkillCaster implements Runnable { if (player.getFame() < _skill.getFamePointConsume()) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } player.setFame(player.getFame() - _skill.getFamePointConsume()); @@ -1057,7 +1057,7 @@ public class SkillCaster implements Runnable if (player.getFame() < skill.getFamePointConsume()) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/NpcStringId.java index f4c2f04068..5fa7ba429d 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/NpcStringId.java @@ -43,8 +43,8 @@ public final class NpcStringId @ClientString(id = 4, message = "none") public static NpcStringId NONE_2; - @ClientString(id = 5, message = "Withdraw the fee for the next time at $s1/$s2 $s3") - public static NpcStringId WITHDRAW_THE_FEE_FOR_THE_NEXT_TIME_AT_S1_S2_S3; + @ClientString(id = 5, message = "Next payment on $s1/$s2 at $s3") + public static NpcStringId NEXT_PAYMENT_ON_S1_S2_AT_S3; @ClientString(id = 6, message = "($s1 Adena/$s2 Day(s))") public static NpcStringId FONT_COLOR_FFAABB_S1_FONT_ADENA_S2_DAY_S; @@ -2665,17 +2665,17 @@ public final class NpcStringId @ClientString(id = 9367, message = "You deal in darkness, $s1! I'll pay you back.") public static NpcStringId YOU_DEAL_IN_DARKNESS_S1_I_LL_PAY_YOU_BACK; - @ClientString(id = 9401, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR; + @ClientString(id = 9401, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR; - @ClientString(id = 9402, message = "|Lv. 104+| Undying Honor (In progress)") - public static NpcStringId LV_104_UNDYING_HONOR_IN_PROGRESS; + @ClientString(id = 9402, message = "|Lv. 104+| Immortal Honor (In progress)") + public static NpcStringId LV_104_IMMORTAL_HONOR_IN_PROGRESS; - @ClientString(id = 9403, message = "|Lv. 104+| Undying Honor (Completed)") - public static NpcStringId LV_104_UNDYING_HONOR_COMPLETED; + @ClientString(id = 9403, message = "|Lv. 104+| Immortal Honor (Completed)") + public static NpcStringId LV_104_IMMORTAL_HONOR_COMPLETED; - @ClientString(id = 9404, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_2; + @ClientString(id = 9404, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_2; @ClientString(id = 9450, message = "You're $s1? I won't be like Hindemith!") public static NpcStringId YOU_RE_S1_I_WON_T_BE_LIKE_HINDEMITH; @@ -4189,10 +4189,10 @@ public final class NpcStringId @ClientString(id = 18567, message = "Go on an adventure! Sing with the winds with the Ertheia, children of the wind!") public static NpcStringId GO_ON_AN_ADVENTURE_SING_WITH_THE_WINDS_WITH_THE_ERTHEIA_CHILDREN_OF_THE_WIND; - @ClientString(id = 18568, message = " ") + @ClientString(id = 18568, message = "") public static NpcStringId EMPTY; - @ClientString(id = 18569, message = " ") + @ClientString(id = 18569, message = "") public static NpcStringId EMPTY_2; @ClientString(id = 18601, message = "|Lv. 41+| Contract Execution") @@ -7246,89 +7246,89 @@ public final class NpcStringId @ClientString(id = 49251, message = "Thanks again for today's work. I will see you tomorrow.") public static NpcStringId THANKS_AGAIN_FOR_TODAY_S_WORK_I_WILL_SEE_YOU_TOMORROW; - @ClientString(id = 49301, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS; + @ClientString(id = 49301, message = "|Lv. 94 - 104| Kicking Out Unwelcome Guests") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS; - @ClientString(id = 49302, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests (In progress)") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_IN_PROGRESS; + @ClientString(id = 49302, message = "|Lv. 94 - 104| Kicking Out Unwelcome Guests (In progress)") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_IN_PROGRESS; - @ClientString(id = 49303, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests (Completed)") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_COMPLETED; + @ClientString(id = 49303, message = "|Lv. 94 - 104| Kicking Out Unwelcome Guests (Completed)") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_COMPLETED; - @ClientString(id = 49304, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_2; + @ClientString(id = 49304, message = "|Lv. 94 - 104| Kicking Out Unwelcome Guests") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_2; - @ClientString(id = 49401, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA; + @ClientString(id = 49401, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY; - @ClientString(id = 49402, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (In progress)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS; + @ClientString(id = 49402, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party) (In progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_IN_PROGRESS; - @ClientString(id = 49403, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Completed)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_COMPLETED; + @ClientString(id = 49403, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party) (Completed)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_COMPLETED; - @ClientString(id = 49404, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_2; + @ClientString(id = 49404, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_2; - @ClientString(id = 49501, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE; + @ClientString(id = 49501, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY; - @ClientString(id = 49502, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (In progress)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS; + @ClientString(id = 49502, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party) (In progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_IN_PROGRESS; - @ClientString(id = 49503, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Completed)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_COMPLETED; + @ClientString(id = 49503, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party) (Completed)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_COMPLETED; - @ClientString(id = 49504, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_2; + @ClientString(id = 49504, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_2; - @ClientString(id = 49601, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS; + @ClientString(id = 49601, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY; - @ClientString(id = 49602, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (In progress)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS; + @ClientString(id = 49602, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party) (In progress)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_IN_PROGRESS; - @ClientString(id = 49603, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Completed)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_COMPLETED; + @ClientString(id = 49603, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party) (Completed)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_COMPLETED; - @ClientString(id = 49604, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_2; + @ClientString(id = 49604, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_2; - @ClientString(id = 49701, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_3; + @ClientString(id = 49701, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Solo)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO; - @ClientString(id = 49702, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (In progress)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS_2; + @ClientString(id = 49702, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Solo) (In progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_IN_PROGRESS; - @ClientString(id = 49703, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Completed)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_COMPLETED_2; + @ClientString(id = 49703, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Solo) (Completed)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_COMPLETED; - @ClientString(id = 49704, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_4; + @ClientString(id = 49704, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Solo)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_2; - @ClientString(id = 49801, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_3; + @ClientString(id = 49801, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Solo)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO; - @ClientString(id = 49802, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (In progress)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS_2; + @ClientString(id = 49802, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Solo) (In progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_IN_PROGRESS; - @ClientString(id = 49803, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Completed)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_COMPLETED_2; + @ClientString(id = 49803, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Solo) (Completed)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_COMPLETED; - @ClientString(id = 49804, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_4; + @ClientString(id = 49804, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Solo)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_2; - @ClientString(id = 49901, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_3; + @ClientString(id = 49901, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Solo)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO; - @ClientString(id = 49902, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (In progress)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS_2; + @ClientString(id = 49902, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Solo) (In progress)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_IN_PROGRESS; - @ClientString(id = 49903, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Completed)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_COMPLETED_2; + @ClientString(id = 49903, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Solo) (Completed)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_COMPLETED; - @ClientString(id = 49904, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_4; + @ClientString(id = 49904, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Solo)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_2; @ClientString(id = 50001, message = "|Lv. 85+| Brothers Bound in Chains") public static NpcStringId LV_85_BROTHERS_BOUND_IN_CHAINS; @@ -7519,6 +7519,561 @@ public final class NpcStringId @ClientString(id = 55304, message = "|Lv. 85+| Olympiad Undefeated") public static NpcStringId LV_85_OLYMPIAD_UNDEFEATED_2; + @ClientString(id = 56101, message = "|Lv. 85 - 87| Basic Mission: Harnak Underground Ruins") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS; + + @ClientString(id = 56102, message = "|Lv. 85 - 87| Basic Mission: Harnak Underground Ruins (In progress)") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_IN_PROGRESS; + + @ClientString(id = 56103, message = "|Lv. 85 - 87| Basic Mission: Harnak Underground Ruins (Completed)") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_COMPLETED; + + @ClientString(id = 56104, message = "|Lv. 85 - 87| Basic Mission: Harnak Underground Ruins") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_2; + + @ClientString(id = 56111, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION; + + @ClientString(id = 56112, message = "Talk to Elisa") + public static NpcStringId TALK_TO_ELISA; + + @ClientString(id = 56113, message = "Talk to Milia") + public static NpcStringId TALK_TO_MILIA; + + @ClientString(id = 56114, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL; + + @ClientString(id = 56115, message = "Complete the quest 'Beyond the Memories'") + public static NpcStringId COMPLETE_THE_QUEST_BEYOND_THE_MEMORIES; + + @ClientString(id = 56116, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY; + + @ClientString(id = 56120, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL_2; + + @ClientString(id = 56201, message = "|Lv. 85 - 88| Basic Mission: Altar of Evil") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL; + + @ClientString(id = 56202, message = "|Lv. 85 - 88| Basic Mission: Altar of Evil (In progress)") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_IN_PROGRESS; + + @ClientString(id = 56203, message = "|Lv. 85 - 88| Basic Mission: Altar of Evil (Completed)") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_COMPLETED; + + @ClientString(id = 56204, message = "|Lv. 85 - 88| Basic Mission: Altar of Evil") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_2; + + @ClientString(id = 56211, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_2; + + @ClientString(id = 56212, message = "Talk to Elisa") + public static NpcStringId TALK_TO_ELISA_2; + + @ClientString(id = 56213, message = "Talk to Bella") + public static NpcStringId TALK_TO_BELLA; + + @ClientString(id = 56214, message = "Use the Teleport Device") + public static NpcStringId USE_THE_TELEPORT_DEVICE; + + @ClientString(id = 56215, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA; + + @ClientString(id = 56216, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_2; + + @ClientString(id = 56220, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_2; + + @ClientString(id = 56221, message = "Complete the quest 'The Purification Ritual'") + public static NpcStringId COMPLETE_THE_QUEST_THE_PURIFICATION_RITUAL; + + @ClientString(id = 56222, message = "Complete the quest 'Wash Blood with Blood'") + public static NpcStringId COMPLETE_THE_QUEST_WASH_BLOOD_WITH_BLOOD; + + @ClientString(id = 56301, message = "|Lv. 86 - 90| Basic Mission: Bloody Swampland") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND; + + @ClientString(id = 56302, message = "|Lv. 86 - 90| Basic Mission: Bloody Swampland (In progress)") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_IN_PROGRESS; + + @ClientString(id = 56303, message = "|Lv. 86 - 90| Basic Mission: Bloody Swampland (Completed)") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_COMPLETED; + + @ClientString(id = 56304, message = "|Lv. 86 - 90| Basic Mission: Bloody Swampland") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_2; + + @ClientString(id = 56311, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS; + + @ClientString(id = 56312, message = "Carry out Vollodos' mission") + public static NpcStringId CARRY_OUT_VOLLODOS_MISSION; + + @ClientString(id = 56313, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_3; + + @ClientString(id = 56321, message = "Complete the quest 'Meaning of Survival'") + public static NpcStringId COMPLETE_THE_QUEST_MEANING_OF_SURVIVAL; + + @ClientString(id = 56322, message = "Complete the quest 'Never Say Good Bye'") + public static NpcStringId COMPLETE_THE_QUEST_NEVER_SAY_GOOD_BYE; + + @ClientString(id = 56401, message = "|Lv. 85 - 94| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_94_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO; + + @ClientString(id = 56402, message = "|Lv. 85 - 94| Basic Mission: Kartia's Labyrinth (Solo) (In progress)") + public static NpcStringId LV_85_94_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_IN_PROGRESS; + + @ClientString(id = 56403, message = "|Lv. 85 - 94| Basic Mission: Kartia's Labyrinth (Solo) (Completed)") + public static NpcStringId LV_85_94_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_COMPLETED; + + @ClientString(id = 56404, message = "|Lv. 85 - 94| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_94_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_2; + + @ClientString(id = 56411, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_3; + + @ClientString(id = 56412, message = "Talk to Kartia Researcher") + public static NpcStringId TALK_TO_KARTIA_RESEARCHER; + + @ClientString(id = 56413, message = "Carry out Kartia Researcher's mission") + public static NpcStringId CARRY_OUT_KARTIA_RESEARCHER_S_MISSION; + + @ClientString(id = 56414, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_4; + + @ClientString(id = 56501, message = "|Lv. 88 - 91| Basic Mission: Fairy Settlement - West") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST; + + @ClientString(id = 56502, message = "|Lv. 88 - 91| Basic Mission: Fairy Settlement - West (In progress)") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_IN_PROGRESS; + + @ClientString(id = 56503, message = "|Lv. 88 - 91| Basic Mission: Fairy Settlement - West (Completed)") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_COMPLETED; + + @ClientString(id = 56504, message = "|Lv. 88 - 91| Basic Mission: Fairy Settlement - West") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_2; + + @ClientString(id = 56511, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_4; + + @ClientString(id = 56512, message = "Talk to Lada") + public static NpcStringId TALK_TO_LADA; + + @ClientString(id = 56513, message = "Complete the quest 'Shadow of Terror: Blackish Red Fog'") + public static NpcStringId COMPLETE_THE_QUEST_SHADOW_OF_TERROR_BLACKISH_RED_FOG; + + @ClientString(id = 56514, message = "Talk to Fairy Citizen") + public static NpcStringId TALK_TO_FAIRY_CITIZEN; + + @ClientString(id = 56515, message = "Complete Fairy Citizen's mission") + public static NpcStringId COMPLETE_FAIRY_CITIZEN_S_MISSION; + + @ClientString(id = 56516, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_5; + + @ClientString(id = 56521, message = "Complete the quest 'To Calm the Flood'") + public static NpcStringId COMPLETE_THE_QUEST_TO_CALM_THE_FLOOD; + + @ClientString(id = 56522, message = "Complete the quest 'Can't Go Against the Time'") + public static NpcStringId COMPLETE_THE_QUEST_CAN_T_GO_AGAINST_THE_TIME; + + @ClientString(id = 56601, message = "|Lv. 90 - 94| Basic Mission: Fairy Settlement - East") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST; + + @ClientString(id = 56602, message = "|Lv. 90 - 94| Basic Mission: Fairy Settlement - East (In progress)") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_IN_PROGRESS; + + @ClientString(id = 56603, message = "|Lv. 90 - 94| Basic Mission: Fairy Settlement - East (Completed)") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_COMPLETED; + + @ClientString(id = 56604, message = "|Lv. 90 - 94| Basic Mission: Fairy Settlement - East") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_2; + + @ClientString(id = 56611, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_5; + + @ClientString(id = 56612, message = "Talk to Lada") + public static NpcStringId TALK_TO_LADA_2; + + @ClientString(id = 56613, message = "Complete the quest 'Shadow of Terror: Blackish Red Fog'") + public static NpcStringId COMPLETE_THE_QUEST_SHADOW_OF_TERROR_BLACKISH_RED_FOG_2; + + @ClientString(id = 56614, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA; + + @ClientString(id = 56615, message = "Carry out Nerupa's mission") + public static NpcStringId CARRY_OUT_NERUPA_S_MISSION; + + @ClientString(id = 56616, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_6; + + @ClientString(id = 56621, message = "Complete the quest 'Dreaming of Peace'") + public static NpcStringId COMPLETE_THE_QUEST_DREAMING_OF_PEACE; + + @ClientString(id = 56622, message = "Complete the quest 'Mutated Creatures'") + public static NpcStringId COMPLETE_THE_QUEST_MUTATED_CREATURES; + + @ClientString(id = 56701, message = "|Lv. 93 - 94| Basic Mission: Isle of Souls") + public static NpcStringId LV_93_94_BASIC_MISSION_ISLE_OF_SOULS; + + @ClientString(id = 56702, message = "|Lv. 93 - 94| Basic Mission: Isle of Souls (In progress)") + public static NpcStringId LV_93_94_BASIC_MISSION_ISLE_OF_SOULS_IN_PROGRESS; + + @ClientString(id = 56703, message = "|Lv. 93 - 94| Basic Mission: Isle of Souls (Completed)") + public static NpcStringId LV_93_94_BASIC_MISSION_ISLE_OF_SOULS_COMPLETED; + + @ClientString(id = 56704, message = "|Lv. 93 - 94| Basic Mission: Isle of Souls") + public static NpcStringId LV_93_94_BASIC_MISSION_ISLE_OF_SOULS_2; + + @ClientString(id = 56711, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_6; + + @ClientString(id = 56712, message = "Talk to Tapoy") + public static NpcStringId TALK_TO_TAPOY; + + @ClientString(id = 56713, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY; + + @ClientString(id = 56714, message = "Talk to Hesed") + public static NpcStringId TALK_TO_HESED; + + @ClientString(id = 56715, message = "Carry out Hesed's mission") + public static NpcStringId CARRY_OUT_HESED_S_MISSION; + + @ClientString(id = 56716, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_7; + + @ClientString(id = 56721, message = "Complete the quest 'Uncover the Secret'") + public static NpcStringId COMPLETE_THE_QUEST_UNCOVER_THE_SECRET; + + @ClientString(id = 56722, message = "Complete the quest 'More Aggressive Operation'") + public static NpcStringId COMPLETE_THE_QUEST_MORE_AGGRESSIVE_OPERATION; + + @ClientString(id = 56801, message = "|Lv. 93 - 95| Special Mission: Nornil's Cave") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE; + + @ClientString(id = 56802, message = "|Lv. 93 - 95| Special Mission: Nornil's Cave (In progress)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_IN_PROGRESS; + + @ClientString(id = 56803, message = "|Lv. 93 - 95| Special Mission: Nornil's Cave (Completed)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_COMPLETED; + + @ClientString(id = 56804, message = "|Lv. 93 - 95| Special Mission: Nornil's Cave") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_2; + + @ClientString(id = 56811, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_7; + + @ClientString(id = 56812, message = "Talk to Tapoy") + public static NpcStringId TALK_TO_TAPOY_2; + + @ClientString(id = 56813, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY_2; + + @ClientString(id = 56814, message = "Talk to Verna") + public static NpcStringId TALK_TO_VERNA; + + @ClientString(id = 56815, message = "Carry out Verna's mission") + public static NpcStringId CARRY_OUT_VERNA_S_MISSION; + + @ClientString(id = 56816, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_8; + + @ClientString(id = 56821, message = "Complete the quest 'Reacting to a Crisis'") + public static NpcStringId COMPLETE_THE_QUEST_REACTING_TO_A_CRISIS; + + @ClientString(id = 56822, message = "Complete the quest 'Head-on Crash'") + public static NpcStringId COMPLETE_THE_QUEST_HEAD_ON_CRASH; + + @ClientString(id = 56901, message = "|Lv. 94 - 96| Basic Mission: Seal of Shilen") + public static NpcStringId LV_94_96_BASIC_MISSION_SEAL_OF_SHILEN; + + @ClientString(id = 56902, message = "|Lv. 94 - 96| Basic Mission: Seal of Shilen (In progress)") + public static NpcStringId LV_94_96_BASIC_MISSION_SEAL_OF_SHILEN_IN_PROGRESS; + + @ClientString(id = 56903, message = "|Lv. 94 - 96| Basic Mission: Seal of Shilen (Completed)") + public static NpcStringId LV_94_96_BASIC_MISSION_SEAL_OF_SHILEN_COMPLETED; + + @ClientString(id = 56904, message = "|Lv. 94 - 96| Basic Mission: Seal of Shilen") + public static NpcStringId LV_94_96_BASIC_MISSION_SEAL_OF_SHILEN_2; + + @ClientString(id = 56911, message = "Talk to Agent Georgio") + public static NpcStringId TALK_TO_AGENT_GEORGIO; + + @ClientString(id = 56912, message = "Complete the quest 'Kicking Out Unwelcome Guests'") + public static NpcStringId COMPLETE_THE_QUEST_KICKING_OUT_UNWELCOME_GUESTS; + + @ClientString(id = 56913, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_9; + + @ClientString(id = 57001, message = "|Lv. 87 - 94| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_94_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY; + + @ClientString(id = 57002, message = "|Lv. 87 - 94| Special Mission: Kartia's Labyrinth (Party) (In progress)") + public static NpcStringId LV_87_94_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_IN_PROGRESS; + + @ClientString(id = 57003, message = "|Lv. 87 - 94| Special Mission: Kartia's Labyrinth (Party) (Completed)") + public static NpcStringId LV_87_94_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_COMPLETED; + + @ClientString(id = 57004, message = "|Lv. 87 - 94| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_94_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_2; + + @ClientString(id = 57011, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_8; + + @ClientString(id = 57012, message = "Talk to Kartia Researcher") + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_2; + + @ClientString(id = 57013, message = "Carry out Kartia Researcher's mission") + public static NpcStringId CARRY_OUT_KARTIA_RESEARCHER_S_MISSION_2; + + @ClientString(id = 57014, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_10; + + @ClientString(id = 57101, message = "|Lv. 86 - 88| Special Mission: Proof of Unity (Field Raid)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID; + + @ClientString(id = 57102, message = "|Lv. 86 - 88| Special Mission: Proof of Unity (Field Raid) (In progress) ") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57103, message = "|Lv. 86 - 88| Special Mission: Proof of Unity (Field Raid) (Completed)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_COMPLETED; + + @ClientString(id = 57104, message = "|Lv. 86 - 88| Special Mission: Proof of Unity (Field Raid)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_2; + + @ClientString(id = 57112, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_11; + + @ClientString(id = 57201, message = "|Lv. 88 - 92| Special Mission: Proof of Courage (Field Raid)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID; + + @ClientString(id = 57202, message = "|Lv. 88 - 92| Special Mission: Proof of Courage (Field Raid) (In progress)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57203, message = "|Lv. 88 - 92| Special Mission: Proof of Courage (Field Raid) (Completed)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_COMPLETED; + + @ClientString(id = 57204, message = "|Lv. 88 - 92| Special Mission: Proof of Courage (Field Raid)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_2; + + @ClientString(id = 57212, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_12; + + @ClientString(id = 57301, message = "|Lv. 92 - 95| Special Mission: Proof of Strength (Field Raid)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID; + + @ClientString(id = 57302, message = "|Lv. 92 - 95| Special Mission: Proof of Strength (Field Raid) (In progress)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57303, message = "|Lv. 92 - 95| Special Mission: Proof of Strength (Field Raid) (Completed)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_COMPLETED; + + @ClientString(id = 57304, message = "|Lv. 92 - 95| Special Mission: Proof of Strength (Field Raid)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_2; + + @ClientString(id = 57312, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_13; + + @ClientString(id = 57401, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN; + + @ClientString(id = 57402, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden (In progress)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_IN_PROGRESS; + + @ClientString(id = 57403, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden (Completed)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_COMPLETED; + + @ClientString(id = 57404, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_2; + + @ClientString(id = 57411, message = "Clear Nornil's Garden") + public static NpcStringId CLEAR_NORNIL_S_GARDEN; + + @ClientString(id = 57412, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_14; + + @ClientString(id = 57501, message = "|Lv. 90 - 94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA; + + @ClientString(id = 57502, message = "|Lv. 90 - 94| Special Mission: Fortuna (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_IN_PROGRESS; + + @ClientString(id = 57503, message = "|Lv. 90 - 94| Special Mission: Fortuna (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_COMPLETED; + + @ClientString(id = 57504, message = "|Lv. 90 - 94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_2; + + @ClientString(id = 57511, message = "Clear Fortuna") + public static NpcStringId CLEAR_FORTUNA; + + @ClientString(id = 57512, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_15; + + @ClientString(id = 57601, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION; + + @ClientString(id = 57602, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_IN_PROGRESS; + + @ClientString(id = 57603, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_COMPLETED; + + @ClientString(id = 57604, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_2; + + @ClientString(id = 57611, message = "Defeat Spezion") + public static NpcStringId DEFEAT_SPEZION; + + @ClientString(id = 57612, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_16; + + @ClientString(id = 58001, message = "|Lv. 85 - 95| Beyond the Memories") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES; + + @ClientString(id = 58002, message = "|Lv. 85 - 95| Beyond the Memories (In progress)") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_IN_PROGRESS; + + @ClientString(id = 58003, message = "|Lv. 85 - 95| Beyond the Memories (Completed)") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_COMPLETED; + + @ClientString(id = 58004, message = "|Lv. 85 - 95| Beyond the Memories") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_2; + + @ClientString(id = 58011, message = "Defeat monsters in the Underground Ruins") + public static NpcStringId DEFEAT_MONSTERS_IN_THE_UNDERGROUND_RUINS; + + @ClientString(id = 58012, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL_3; + + @ClientString(id = 58101, message = "|Lv. 85 - 95| The Purification Ritual") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL; + + @ClientString(id = 58102, message = "|Lv. 85 - 95| The Purification Ritual (In progress)") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_IN_PROGRESS; + + @ClientString(id = 58103, message = "|Lv. 85 - 95| The Purification Ritual (Completed)") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_COMPLETED; + + @ClientString(id = 58104, message = "|Lv. 85 - 95| The Purification Ritual") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_2; + + @ClientString(id = 58111, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_3; + + @ClientString(id = 58201, message = "|Lv. 85 - 95| Wash Blood with Blood") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD; + + @ClientString(id = 58202, message = "|Lv. 85 - 95| Wash Blood with Blood (In progress)") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_IN_PROGRESS; + + @ClientString(id = 58203, message = "|Lv. 85 - 95| Wash Blood with Blood (Completed)") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_COMPLETED; + + @ClientString(id = 58204, message = "|Lv. 85 - 95| Wash Blood with Blood") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_2; + + @ClientString(id = 58211, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_4; + + @ClientString(id = 58301, message = "|Lv. 86 - 96| Meaning of Survival") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL; + + @ClientString(id = 58302, message = "|Lv. 86 - 96| Meaning of Survival (In progress)") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_IN_PROGRESS; + + @ClientString(id = 58303, message = "|Lv. 86 - 96| Meaning of Survival (Completed)") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_COMPLETED; + + @ClientString(id = 58304, message = "|Lv. 86 - 96| Meaning of Survival") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_2; + + @ClientString(id = 58311, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS_2; + + @ClientString(id = 58401, message = "|Lv. 86 - 96| Never Say Good Bye") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE; + + @ClientString(id = 58402, message = "|Lv. 86 - 96| Never Say Good Bye (In progress)") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_IN_PROGRESS; + + @ClientString(id = 58403, message = "|Lv. 86 - 96| Never Say Good Bye (Completed)") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_COMPLETED; + + @ClientString(id = 58404, message = "|Lv. 86 - 96| Never Say Good Bye") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_2; + + @ClientString(id = 58411, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS_3; + + @ClientString(id = 58501, message = "|Lv. 88 - 98| Can't Go Against the Time") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME; + + @ClientString(id = 58502, message = "|Lv. 88 - 98| Can't Go Against the Time (In progress)") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_IN_PROGRESS; + + @ClientString(id = 58503, message = "|Lv. 88 - 98| Can't Go Against the Time (Completed)") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_COMPLETED; + + @ClientString(id = 58504, message = "|Lv. 88 - 98| Can't Go Against the Time") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_2; + + @ClientString(id = 58511, message = "Talk to Fairy Citizen") + public static NpcStringId TALK_TO_FAIRY_CITIZEN_2; + + @ClientString(id = 58601, message = "|Lv. 90 - 100| Mutated Creatures") + public static NpcStringId LV_90_100_MUTATED_CREATURES; + + @ClientString(id = 58602, message = "|Lv. 90 - 100| Mutated Creatures (In progress)") + public static NpcStringId LV_90_100_MUTATED_CREATURES_IN_PROGRESS; + + @ClientString(id = 58603, message = "|Lv. 90 - 100| Mutated Creatures (Completed)") + public static NpcStringId LV_90_100_MUTATED_CREATURES_COMPLETED; + + @ClientString(id = 58604, message = "|Lv. 90 - 100| Mutated Creatures") + public static NpcStringId LV_90_100_MUTATED_CREATURES_2; + + @ClientString(id = 58611, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_2; + + @ClientString(id = 58701, message = "|Lv. 93 - 103| More Aggressive Operation") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION; + + @ClientString(id = 58702, message = "|Lv. 93 - 103| More Aggressive Operation (In progress)") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_IN_PROGRESS; + + @ClientString(id = 58703, message = "|Lv. 93 - 103| More Aggressive Operation (Completed)") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_COMPLETED; + + @ClientString(id = 58704, message = "|Lv. 93 - 103| More Aggressive Operation") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_2; + + @ClientString(id = 58711, message = "Defeat monsters around the tent") + public static NpcStringId DEFEAT_MONSTERS_AROUND_THE_TENT; + + @ClientString(id = 58712, message = "Talk to Hesed") + public static NpcStringId TALK_TO_HESED_2; + + @ClientString(id = 58801, message = "|Lv. 93 - 103| Head-on Crash") + public static NpcStringId LV_93_103_HEAD_ON_CRASH; + + @ClientString(id = 58802, message = "|Lv. 93 - 103| Head-on Crash (In progress)") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_IN_PROGRESS; + + @ClientString(id = 58803, message = "|Lv. 93 - 103| Head-on Crash (Completed)") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_COMPLETED; + + @ClientString(id = 58804, message = "|Lv. 93 - 103| Head-on Crash") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_2; + + @ClientString(id = 58811, message = "Defeated Spicula Larva") + public static NpcStringId DEFEATED_SPICULA_LARVA; + + @ClientString(id = 58812, message = "Talk to Verna") + public static NpcStringId TALK_TO_VERNA_2; + @ClientString(id = 60000, message = "I'll start the furnace mechanism. Watch for the pattern.") public static NpcStringId I_LL_START_THE_FURNACE_MECHANISM_WATCH_FOR_THE_PATTERN; @@ -8248,32 +8803,32 @@ public final class NpcStringId @ClientString(id = 66605, message = "Defeat Giant Monster") public static NpcStringId DEFEAT_GIANT_MONSTER; - @ClientString(id = 66701, message = "|Lv. 85+| Covering Shilen's Eye") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE; + @ClientString(id = 66701, message = "|Lv. 85+| How to Cover Shilen's Eyes") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES; - @ClientString(id = 66702, message = "|Lv. 85+| Covering Shilen's Eye (In progress)") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_IN_PROGRESS; + @ClientString(id = 66702, message = "|Lv. 85+| How to Cover Shilen's Eyes (In progress)") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_IN_PROGRESS; - @ClientString(id = 66703, message = "|Lv. 85+| Covering Shilen's Eye (Completed)") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_COMPLETED; + @ClientString(id = 66703, message = "|Lv. 85+| How to Cover Shilen's Eyes (Completed)") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_COMPLETED; - @ClientString(id = 66704, message = "|Lv. 85+| Covering Shilen's Eye") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_2; + @ClientString(id = 66704, message = "|Lv. 85+| How to Cover Shilen's Eyes") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_2; @ClientString(id = 66705, message = "Defeat Lilith or Anakim.") public static NpcStringId DEFEAT_LILITH_OR_ANAKIM; - @ClientString(id = 66801, message = "|Lv. 85+| Battle against the Giants") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS; + @ClientString(id = 66801, message = "|Lv. 85+| Fight with Giants") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS; - @ClientString(id = 66802, message = "|Lv. 85+| Battle against the Giants (In progress)") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_IN_PROGRESS; + @ClientString(id = 66802, message = "|Lv. 85+| Fight with Giants (In progress)") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_IN_PROGRESS; - @ClientString(id = 66803, message = "|Lv. 85+| Battle against the Giants (Completed)") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_COMPLETED; + @ClientString(id = 66803, message = "|Lv. 85+| Fight with Giants (Completed)") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_COMPLETED; - @ClientString(id = 66804, message = "|Lv. 85+| Battle against the Giants") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_2; + @ClientString(id = 66804, message = "|Lv. 85+| Fight with Giants") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_2; @ClientString(id = 66805, message = "Defeat Giants' Boss") public static NpcStringId DEFEAT_GIANTS_BOSS; @@ -8353,6 +8908,66 @@ public final class NpcStringId @ClientString(id = 67305, message = "Defeat Beleth") public static NpcStringId DEFEAT_BELETH; + @ClientString(id = 67401, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree ") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 67402, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 67403, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 67404, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree ") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_2; + + @ClientString(id = 67411, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE; + + @ClientString(id = 67412, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_3; + + @ClientString(id = 67501, message = "|Lv. 103+| What the Thread of the Past Shows") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS; + + @ClientString(id = 67502, message = "|Lv. 103+| What the Thread of the Past Shows (In progress)") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_IN_PROGRESS; + + @ClientString(id = 67503, message = "|Lv. 103+| What the Thread of the Past Shows (Completed)") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_COMPLETED; + + @ClientString(id = 67504, message = "|Lv. 103+| What the Thread of the Past Shows") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_2; + + @ClientString(id = 67511, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_2; + + @ClientString(id = 67512, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_4; + + @ClientString(id = 67602, message = "|Lv. 96 - 106| Hunter Guild Request – Wasteland West (In progress)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_WEST_IN_PROGRESS; + + @ClientString(id = 67603, message = "|Lv. 96 - 106| Hunter Guild Request – Wasteland West (Completed)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_WEST_COMPLETED; + + @ClientString(id = 67702, message = "|Lv. 96 - 106| Hunter Guild Request – Wasteland East (In progress)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_EAST_IN_PROGRESS; + + @ClientString(id = 67703, message = "|Lv. 96 - 106| Hunter Guild Request – Wasteland East (Completed)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_EAST_COMPLETED; + + @ClientString(id = 67802, message = "|Lv. 100 - 110| Hunter Guild Request – Forest of the Dead (In progress)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_FOREST_OF_THE_DEAD_IN_PROGRESS; + + @ClientString(id = 67803, message = "|Lv. 100 - 110| Hunter Guild Request – Forest of the Dead (Completed)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_FOREST_OF_THE_DEAD_COMPLETED; + + @ClientString(id = 67902, message = "|Lv. 100 - 110| Hunter Guild Request – Swamp of Screams (In progress)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_SWAMP_OF_SCREAMS_IN_PROGRESS; + + @ClientString(id = 67903, message = "|Lv. 100 - 110| Hunter Guild Request – Swamp of Screams (Completed)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_SWAMP_OF_SCREAMS_COMPLETED; + @ClientString(id = 68801, message = "|Lv. 75 - 85| Defeat the Elrokian Raiders!") public static NpcStringId LV_75_85_DEFEAT_THE_ELROKIAN_RAIDERS; @@ -8464,6 +9079,15 @@ public final class NpcStringId @ClientString(id = 69707, message = "Good work. I've finished crafting the parts for the Keucereus Defense Battery.") public static NpcStringId GOOD_WORK_I_VE_FINISHED_CRAFTING_THE_PARTS_FOR_THE_KEUCEREUS_DEFENSE_BATTERY; + @ClientString(id = 69710, message = "Protect Ishuma") + public static NpcStringId PROTECT_ISHUMA; + + @ClientString(id = 69711, message = "Talk to Ishuma") + public static NpcStringId TALK_TO_ISHUMA; + + @ClientString(id = 69712, message = "Protect Ishuma again") + public static NpcStringId PROTECT_ISHUMA_AGAIN; + @ClientString(id = 69801, message = "Block the Lord's Escape") public static NpcStringId BLOCK_THE_LORD_S_ESCAPE; @@ -9238,6 +9862,24 @@ public final class NpcStringId @ClientString(id = 73662, message = "You weakened the enemy's magic!") public static NpcStringId YOU_WEAKENED_THE_ENEMY_S_MAGIC; + @ClientString(id = 73701, message = "|Lv. 102+| A Sword Hidden in a Smile") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE; + + @ClientString(id = 73702, message = "|Lv. 102+| A Sword Hidden in a Smile (In progress)") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_IN_PROGRESS; + + @ClientString(id = 73703, message = "|Lv. 102+| A Sword Hidden in a Smile (Completed)") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_COMPLETED; + + @ClientString(id = 73704, message = "|Lv. 102+| A Sword Hidden in a Smile") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_2; + + @ClientString(id = 73711, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_3; + + @ClientString(id = 73712, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE; + @ClientString(id = 73751, message = "Defeat $s1 healers and buffers.") public static NpcStringId DEFEAT_S1_HEALERS_AND_BUFFERS; @@ -9247,6 +9889,21 @@ public final class NpcStringId @ClientString(id = 73762, message = "You have weakened the enemy's support!") public static NpcStringId YOU_HAVE_WEAKENED_THE_ENEMY_S_SUPPORT; + @ClientString(id = 73801, message = "|Lv. 95 - 106| Dimensional Exploration of the Unworldly Visitors") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS; + + @ClientString(id = 73802, message = "|Lv. 95 - 106| Dimensional Exploration of the Unworldly Visitors (In progress)") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_IN_PROGRESS; + + @ClientString(id = 73803, message = "|Lv. 95 - 106| Dimensional Exploration of the Unworldly Visitors (Completed)") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_COMPLETED; + + @ClientString(id = 73804, message = "|Lv. 95 - 106| Dimensional Exploration of the Unworldly Visitors") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_2; + + @ClientString(id = 73805, message = "Talk to Tarti") + public static NpcStringId TALK_TO_TARTI; + @ClientString(id = 73851, message = "Defeat $s1 warsmiths and overlords.") public static NpcStringId DEFEAT_S1_WARSMITHS_AND_OVERLORDS; @@ -9286,6 +9943,21 @@ public final class NpcStringId @ClientString(id = 74252, message = "You and your comrades have completed a great feat!") public static NpcStringId YOU_AND_YOUR_COMRADES_HAVE_COMPLETED_A_GREAT_FEAT; + @ClientString(id = 74301, message = "|Lv. 102+| At the Altar of Oblivion") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION; + + @ClientString(id = 74302, message = "|Lv. 102+| At the Altar of Oblivion (In progress)") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_IN_PROGRESS; + + @ClientString(id = 74303, message = "|Lv. 102+| At the Altar of Oblivion (Completed)") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_COMPLETED; + + @ClientString(id = 74304, message = "|Lv. 102+| At the Altar of Oblivion") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_2; + + @ClientString(id = 74310, message = "Talk to Ferin") + public static NpcStringId TALK_TO_FERIN; + @ClientString(id = 74401, message = "|Lv. 40 - 45| The Alligator Hunter Returns") public static NpcStringId LV_40_45_THE_ALLIGATOR_HUNTER_RETURNS; @@ -9361,6 +10033,27 @@ public final class NpcStringId @ClientString(id = 74812, message = "Speak with Mathias") public static NpcStringId SPEAK_WITH_MATHIAS; + @ClientString(id = 74901, message = "|Lv. 88 - 100| Ties with Guardians") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS; + + @ClientString(id = 74902, message = "|Lv. 88 - 100| Ties with Guardians (In progress)") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_IN_PROGRESS; + + @ClientString(id = 74903, message = "|Lv. 88 - 100| Ties with Guardians (Completed)") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_COMPLETED; + + @ClientString(id = 74904, message = "|Lv. 88 - 100| Ties with Guardians") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_2; + + @ClientString(id = 74911, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_4; + + @ClientString(id = 74912, message = "Solve issue in the Fairy Settlement") + public static NpcStringId SOLVE_ISSUE_IN_THE_FAIRY_SETTLEMENT; + + @ClientString(id = 74913, message = "Talk to Rafini") + public static NpcStringId TALK_TO_RAFINI; + @ClientString(id = 75001, message = "|Lv. 95+| Seven Flowers") public static NpcStringId LV_95_SEVEN_FLOWERS; @@ -9583,38 +10276,38 @@ public final class NpcStringId @ClientString(id = 75950, message = "$s1 has received $s2 as a reward from Head Priest of the Earth Daichir.") public static NpcStringId S1_HAS_RECEIVED_S2_AS_A_REWARD_FROM_HEAD_PRIEST_OF_THE_EARTH_DAICHIR; - @ClientString(id = 75951, message = "Amaranthine Shaper Fragment") - public static NpcStringId AMARANTHINE_SHAPER_FRAGMENT; + @ClientString(id = 75951, message = "Helios Shaper Fragment") + public static NpcStringId HELIOS_SHAPER_FRAGMENT; - @ClientString(id = 75952, message = "Amaranthine Cutter Fragment") - public static NpcStringId AMARANTHINE_CUTTER_FRAGMENT; + @ClientString(id = 75952, message = "Helios Cutter Fragment") + public static NpcStringId HELIOS_CUTTER_FRAGMENT; - @ClientString(id = 75953, message = "Amaranthine Slasher Fragment") - public static NpcStringId AMARANTHINE_SLASHER_FRAGMENT; + @ClientString(id = 75953, message = "Helios Slasher Fragment") + public static NpcStringId HELIOS_SLASHER_FRAGMENT; - @ClientString(id = 75954, message = "Amaranthine Avenger Fragment") - public static NpcStringId AMARANTHINE_AVENGER_FRAGMENT; + @ClientString(id = 75954, message = "Helios Avenger Fragment") + public static NpcStringId HELIOS_AVENGER_FRAGMENT; - @ClientString(id = 75955, message = "Amaranthine Fighter Fragment") - public static NpcStringId AMARANTHINE_FIGHTER_FRAGMENT; + @ClientString(id = 75955, message = "Helios Fighter Fragment") + public static NpcStringId HELIOS_FIGHTER_FRAGMENT; - @ClientString(id = 75956, message = "Amaranthine Stormer Fragment") - public static NpcStringId AMARANTHINE_STORMER_FRAGMENT; + @ClientString(id = 75956, message = "Helios Stormer Fragment") + public static NpcStringId HELIOS_STORMER_FRAGMENT; - @ClientString(id = 75957, message = "Amaranthine Thrower Fragment") - public static NpcStringId AMARANTHINE_THROWER_FRAGMENT; + @ClientString(id = 75957, message = "Helios Thrower Fragment") + public static NpcStringId HELIOS_THROWER_FRAGMENT; - @ClientString(id = 75958, message = "Amaranthine Shooter Fragment") - public static NpcStringId AMARANTHINE_SHOOTER_FRAGMENT; + @ClientString(id = 75958, message = "Helios Shooter Fragment") + public static NpcStringId HELIOS_SHOOTER_FRAGMENT; - @ClientString(id = 75959, message = "Amaranthine Buster Fragment") - public static NpcStringId AMARANTHINE_BUSTER_FRAGMENT; + @ClientString(id = 75959, message = "Helios Buster Fragment") + public static NpcStringId HELIOS_BUSTER_FRAGMENT; - @ClientString(id = 75960, message = "Amaranthine Caster Fragment") - public static NpcStringId AMARANTHINE_CASTER_FRAGMENT; + @ClientString(id = 75960, message = "Helios Caster Fragment") + public static NpcStringId HELIOS_CASTER_FRAGMENT; - @ClientString(id = 75961, message = "Amaranthine Retributer Fragment") - public static NpcStringId AMARANTHINE_RETRIBUTER_FRAGMENT; + @ClientString(id = 75961, message = "Helios Retributer Fragment") + public static NpcStringId HELIOS_RETRIBUTER_FRAGMENT; @ClientString(id = 75962, message = "Earth Wyrm Heart Necklace") public static NpcStringId EARTH_WYRM_HEART_NECKLACE_2; @@ -9856,6 +10549,9 @@ public final class NpcStringId @ClientString(id = 77405, message = "Defeat the violent monsters") public static NpcStringId DEFEAT_THE_VIOLENT_MONSTERS; + @ClientString(id = 77406, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_5; + @ClientString(id = 77501, message = "|Lv. 99+| Retrieving the Chaos Fragment") public static NpcStringId LV_99_RETRIEVING_THE_CHAOS_FRAGMENT; @@ -10102,17 +10798,17 @@ public final class NpcStringId @ClientString(id = 78904, message = "|Lv. 97+| Waiting for Pa'agrio") public static NpcStringId LV_97_WAITING_FOR_PA_AGRIO_2; - @ClientString(id = 79001, message = "|Lv. 100+| Obtaining Ferin's Trust") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST; + @ClientString(id = 79001, message = "|Lv. 102+| Obtaining Ferin's Trust") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST; - @ClientString(id = 79002, message = "|Lv. 100+| Obtaining Ferin's Trust (In progress)") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_IN_PROGRESS; + @ClientString(id = 79002, message = "|Lv. 102+| Obtaining Ferin's Trust (In progress)") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_IN_PROGRESS; - @ClientString(id = 79003, message = "|Lv. 100+| Obtaining Ferin's Trust (Completed)") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_COMPLETED; + @ClientString(id = 79003, message = "|Lv. 102+| Obtaining Ferin's Trust (Completed)") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_COMPLETED; - @ClientString(id = 79004, message = "|Lv. 100+| Obtaining Ferin's Trust") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_2; + @ClientString(id = 79004, message = "|Lv. 102+| Obtaining Ferin's Trust") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_2; @ClientString(id = 79011, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_3; @@ -10153,8 +10849,11 @@ public final class NpcStringId @ClientString(id = 79204, message = "|Lv. 102+| The Superion Giants") public static NpcStringId LV_102_THE_SUPERION_GIANTS_2; - @ClientString(id = 79210, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE; + @ClientString(id = 79211, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_5; + + @ClientString(id = 79212, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_2; @ClientString(id = 79301, message = "|Lv. 100+| A Clue Amidst Despair") public static NpcStringId LV_100_A_CLUE_AMIDST_DESPAIR; @@ -11305,8 +12004,8 @@ public final class NpcStringId @ClientString(id = 89604, message = "|Above Lv 85| Another Side of the Festival – 2") public static NpcStringId ABOVE_LV_85_ANOTHER_SIDE_OF_THE_FESTIVAL_2_2; - @ClientString(id = 89605, message = "Instanced Zone Dungeon Complete") - public static NpcStringId INSTANCED_ZONE_DUNGEON_COMPLETE; + @ClientString(id = 89605, message = "Instance Zone Dungeon Complete") + public static NpcStringId INSTANCE_ZONE_DUNGEON_COMPLETE; @ClientString(id = 89610, message = "Talk to Bliss") public static NpcStringId TALK_TO_BLISS_2; @@ -11434,8 +12133,8 @@ public final class NpcStringId @ClientString(id = 91111, message = "90") public static NpcStringId NINETY_2; - @ClientString(id = 91112, message = "The Forbidden Gateway") - public static NpcStringId THE_FORBIDDEN_GATEWAY; + @ClientString(id = 91112, message = "Seal of Shilen") + public static NpcStringId SEAL_OF_SHILEN; @ClientString(id = 91201, message = "|Lv. 95 - 101| Red Libra Request - Monsters from Three Areas") public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_MONSTERS_FROM_THREE_AREAS; @@ -11476,8 +12175,8 @@ public final class NpcStringId @ClientString(id = 91311, message = "95") public static NpcStringId NINETY_FIVE_3; - @ClientString(id = 91312, message = "Raider's Crossroad") - public static NpcStringId RAIDER_S_CROSSROAD; + @ClientString(id = 91312, message = "Raider's Crossroads") + public static NpcStringId RAIDER_S_CROSSROADS; @ClientString(id = 91401, message = "|Lv. 97 - 103| Red Libra Request - Hellbound") public static NpcStringId LV_97_103_RED_LIBRA_REQUEST_HELLBOUND; @@ -11674,23 +12373,23 @@ public final class NpcStringId @ClientString(id = 92411, message = "Eliminate the Giant") public static NpcStringId ELIMINATE_THE_GIANT; - @ClientString(id = 92502, message = "|Lv. 98 - 108| Hunter Guild Request - Garden of Spirits (In progress)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_IN_PROGRESS; + @ClientString(id = 92502, message = "|Lv. 100 - 110| Hunter Guild Request - Garden of Spirits (In progress)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_IN_PROGRESS; - @ClientString(id = 92503, message = "|Lv. 98 - 108| Hunter Guild Request - Garden of Spirits (Completed)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_COMPLETED; + @ClientString(id = 92503, message = "|Lv. 100 - 110| Hunter Guild Request - Garden of Spirits (Completed)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_COMPLETED; - @ClientString(id = 92601, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION; + @ClientString(id = 92601, message = "|Lv. 95 - 102| Exploring the Dimension - 30-day Search Operation") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION; - @ClientString(id = 92602, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation (In progress)") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_IN_PROGRESS; + @ClientString(id = 92602, message = "|Lv. 95 - 102| Exploring the Dimension - 30-day Search Operation (In progress)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_IN_PROGRESS; - @ClientString(id = 92603, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation (Completed)") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_COMPLETED; + @ClientString(id = 92603, message = "|Lv. 95 - 102| Exploring the Dimension - 30-day Search Operation (Completed)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_COMPLETED; - @ClientString(id = 92604, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_2; + @ClientString(id = 92604, message = "|Lv. 95 - 102| Exploring the Dimension - 30-day Search Operation") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_2; @ClientString(id = 92801, message = "|Lv. 100+| 100-day Subjugation Operation") public static NpcStringId LV_100_100_DAY_SUBJUGATION_OPERATION; @@ -11710,23 +12409,23 @@ public final class NpcStringId @ClientString(id = 92810, message = "Speak with Lias") public static NpcStringId SPEAK_WITH_LIAS; - @ClientString(id = 92901, message = "|Lv. 99+| Commando Rescue") - public static NpcStringId LV_99_COMMANDO_RESCUE; + @ClientString(id = 92901, message = "|Lv. 99+| Seeker Rescue") + public static NpcStringId LV_99_SEEKER_RESCUE; - @ClientString(id = 92902, message = "|Lv. 99+| Commando Rescue (In progress)") - public static NpcStringId LV_99_COMMANDO_RESCUE_IN_PROGRESS; + @ClientString(id = 92902, message = "|Lv. 99+| Seeker Rescue (In progress)") + public static NpcStringId LV_99_SEEKER_RESCUE_IN_PROGRESS; - @ClientString(id = 92903, message = "|Lv. 99+| Commando Rescue (Completed)") - public static NpcStringId LV_99_COMMANDO_RESCUE_COMPLETED; + @ClientString(id = 92903, message = "|Lv. 99+| Seeker Rescue (Completed)") + public static NpcStringId LV_99_SEEKER_RESCUE_COMPLETED; - @ClientString(id = 92904, message = "|Lv. 99+| Commando Rescue") - public static NpcStringId LV_99_COMMANDO_RESCUE_2; + @ClientString(id = 92904, message = "|Lv. 99+| Seeker Rescue") + public static NpcStringId LV_99_SEEKER_RESCUE_2; @ClientString(id = 92911, message = "Speak with Masa") public static NpcStringId SPEAK_WITH_MASA; - @ClientString(id = 92912, message = "Commando Rescue") - public static NpcStringId COMMANDO_RESCUE; + @ClientString(id = 92912, message = "Seeker Rescue") + public static NpcStringId SEEKER_RESCUE; @ClientString(id = 92913, message = "Speak with Sporcha") public static NpcStringId SPEAK_WITH_SPORCHA; @@ -11749,17 +12448,17 @@ public final class NpcStringId @ClientString(id = 93012, message = "Speak with Sporcha") public static NpcStringId SPEAK_WITH_SPORCHA_2; - @ClientString(id = 93101, message = "|Lv. 100+| Memories of the Wind") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND; + @ClientString(id = 93101, message = "|Lv. 102+| Memories of the Wind") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND; - @ClientString(id = 93102, message = "|Lv. 100+| Memories of the Wind (In progress)") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_IN_PROGRESS; + @ClientString(id = 93102, message = "|Lv. 102+| Memories of the Wind (In progress)") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_IN_PROGRESS; - @ClientString(id = 93103, message = "|Lv. 100+| Memories of the Wind (Completed)") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_COMPLETED; + @ClientString(id = 93103, message = "|Lv. 102+| Memories of the Wind (Completed)") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_COMPLETED; - @ClientString(id = 93104, message = "|Lv. 100+| Memories of the Wind") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_2; + @ClientString(id = 93104, message = "|Lv. 102+| Memories of the Wind") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_2; @ClientString(id = 93111, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_14; @@ -11767,17 +12466,17 @@ public final class NpcStringId @ClientString(id = 93112, message = "Speak with Cyphona") public static NpcStringId SPEAK_WITH_CYPHONA; - @ClientString(id = 93201, message = "|Lv. 100+| Sayha's Energy") - public static NpcStringId LV_100_SAYHA_S_ENERGY; + @ClientString(id = 93201, message = "|Lv. 102+| Sayha's Energy") + public static NpcStringId LV_102_SAYHA_S_ENERGY; - @ClientString(id = 93202, message = "|Lv. 100+| Sayha's Energy (In progress)") - public static NpcStringId LV_100_SAYHA_S_ENERGY_IN_PROGRESS; + @ClientString(id = 93202, message = "|Lv. 102+| Sayha's Energy (In progress)") + public static NpcStringId LV_102_SAYHA_S_ENERGY_IN_PROGRESS; - @ClientString(id = 93203, message = "|Lv. 100+| Sayha's Energy (Completed)") - public static NpcStringId LV_100_SAYHA_S_ENERGY_COMPLETED; + @ClientString(id = 93203, message = "|Lv. 102+| Sayha's Energy (Completed)") + public static NpcStringId LV_102_SAYHA_S_ENERGY_COMPLETED; - @ClientString(id = 93204, message = "|Lv. 100+| Sayha's Energy") - public static NpcStringId LV_100_SAYHA_S_ENERGY_2; + @ClientString(id = 93204, message = "|Lv. 102+| Sayha's Energy") + public static NpcStringId LV_102_SAYHA_S_ENERGY_2; @ClientString(id = 93211, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_15; @@ -11821,11 +12520,11 @@ public final class NpcStringId @ClientString(id = 93810, message = "Conversation with Santiago") public static NpcStringId CONVERSATION_WITH_SANTIAGO; - @ClientString(id = 94002, message = "|Lv. 98 - 108| Hunter Guild Request - Atelia Fortress (In progress)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_IN_PROGRESS; + @ClientString(id = 94002, message = "|Lv. 100 - 110| Hunter Guild Request - Atelia Fortress (In progress)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_IN_PROGRESS; - @ClientString(id = 94003, message = "|Lv. 98 - 108| Hunter Guild Request - Atelia Fortress (Completed)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_COMPLETED; + @ClientString(id = 94003, message = "|Lv. 100 - 110| Hunter Guild Request - Atelia Fortress (Completed)") + public static NpcStringId LV_100_110_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_COMPLETED; @ClientString(id = 94301, message = "|Lv. 90+| Filling the Energy of Destruction") public static NpcStringId LV_90_FILLING_THE_ENERGY_OF_DESTRUCTION; @@ -11986,8 +12685,8 @@ public final class NpcStringId @ClientString(id = 99702, message = "What are you looking at?") public static NpcStringId WHAT_ARE_YOU_LOOKING_AT; - @ClientString(id = 99703, message = "If you give me nectar, this little Wintermelon will grow up quickly!") - public static NpcStringId IF_YOU_GIVE_ME_NECTAR_THIS_LITTLE_WINTERMELON_WILL_GROW_UP_QUICKLY; + @ClientString(id = 99703, message = "If you give me nectar, this little Snowy Squash will grow up quickly!") + public static NpcStringId IF_YOU_GIVE_ME_NECTAR_THIS_LITTLE_SNOWY_SQUASH_WILL_GROW_UP_QUICKLY; @ClientString(id = 99704, message = "Are you my mommy?") public static NpcStringId ARE_YOU_MY_MOMMY; @@ -12265,8 +12964,8 @@ public final class NpcStringId @ClientString(id = 99795, message = "Nectar will make me grow quickly!") public static NpcStringId NECTAR_WILL_MAKE_ME_GROW_QUICKLY; - @ClientString(id = 99796, message = "Don't you want a bigger wintermelon? Give me some Nectar and I'll grow much larger!") - public static NpcStringId DON_T_YOU_WANT_A_BIGGER_WINTERMELON_GIVE_ME_SOME_NECTAR_AND_I_LL_GROW_MUCH_LARGER; + @ClientString(id = 99796, message = "Don't you want a bigger Snowy Squash? Give me some Nectar and I'll grow much larger!") + public static NpcStringId DON_T_YOU_WANT_A_BIGGER_SNOWY_SQUASH_GIVE_ME_SOME_NECTAR_AND_I_LL_GROW_MUCH_LARGER; @ClientString(id = 99797, message = "If you raise me well, you'll get prizes! Or not...") public static NpcStringId IF_YOU_RAISE_ME_WELL_YOU_LL_GET_PRIZES_OR_NOT; @@ -12274,8 +12973,8 @@ public final class NpcStringId @ClientString(id = 99798, message = "You are here for the stuff, eh? Well it's mine, all mine!") public static NpcStringId YOU_ARE_HERE_FOR_THE_STUFF_EH_WELL_IT_S_MINE_ALL_MINE; - @ClientString(id = 99799, message = "Trust me, give me some Nectar and I'll become a giant Wintermelon!") - public static NpcStringId TRUST_ME_GIVE_ME_SOME_NECTAR_AND_I_LL_BECOME_A_GIANT_WINTERMELON; + @ClientString(id = 99799, message = "Trust me, give me some Nectar and I'll become a giant Snowy Squash!") + public static NpcStringId TRUST_ME_GIVE_ME_SOME_NECTAR_AND_I_LL_BECOME_A_GIANT_SNOWY_SQUASH; @ClientString(id = 526701, message = "Journey to Gracia") public static NpcStringId JOURNEY_TO_GRACIA; @@ -12745,6 +13444,12 @@ public final class NpcStringId @ClientString(id = 530404, message = "|Lv. 90+| For the Forgotten Heroes") public static NpcStringId LV_90_FOR_THE_FORGOTTEN_HEROES_2; + @ClientString(id = 530411, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL; + + @ClientString(id = 530412, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL_2; + @ClientString(id = 530501, message = "|Lv. 88+| Unstoppable Futile Efforts") public static NpcStringId LV_88_UNSTOPPABLE_FUTILE_EFFORTS; @@ -13282,17 +13987,17 @@ public final class NpcStringId @ClientString(id = 535404, message = "|Lv. 95+| Resurrected Owner of Hall") public static NpcStringId LV_95_RESURRECTED_OWNER_OF_HALL_2; - @ClientString(id = 535501, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1; + @ClientString(id = 535501, message = "|Lv. 99+| Blacksmiths Soul - 1") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1; - @ClientString(id = 535502, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_IN_PROGRESS; + @ClientString(id = 535502, message = "|Lv. 99+| Blacksmiths Soul - 1 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_IN_PROGRESS; - @ClientString(id = 535503, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_COMPLETED; + @ClientString(id = 535503, message = "|Lv. 99+| Blacksmiths Soul - 1 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_COMPLETED; - @ClientString(id = 535504, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_2; + @ClientString(id = 535504, message = "|Lv. 99+| Blacksmiths Soul - 1") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_2; @ClientString(id = 535505, message = "Talk with Tafoi.") public static NpcStringId TALK_WITH_TAFOI; @@ -13312,17 +14017,17 @@ public final class NpcStringId @ClientString(id = 535510, message = "Defeat monsters in the Enchanted Valley.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_ENCHANTED_VALLEY_2; - @ClientString(id = 535601, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2; + @ClientString(id = 535601, message = "|Lv. 99+| Blacksmiths Soul - 2") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2; - @ClientString(id = 535602, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_IN_PROGRESS; + @ClientString(id = 535602, message = "|Lv. 99+| Blacksmiths Soul - 2 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_IN_PROGRESS; - @ClientString(id = 535603, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_COMPLETED; + @ClientString(id = 535603, message = "|Lv. 99+| Blacksmiths Soul - 2 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_COMPLETED; - @ClientString(id = 535604, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_2; + @ClientString(id = 535604, message = "|Lv. 99+| Blacksmiths Soul - 2") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_2; @ClientString(id = 535605, message = "Bring Shadow Weapon.") public static NpcStringId BRING_SHADOW_WEAPON; @@ -13609,17 +14314,20 @@ public final class NpcStringId @ClientString(id = 537251, message = "If what you say is true, this must be very serious.") public static NpcStringId IF_WHAT_YOU_SAY_IS_TRUE_THIS_MUST_BE_VERY_SERIOUS; - @ClientString(id = 537301, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION; + @ClientString(id = 537301, message = "|Lv. 95 - 102| Exploring the Dimension - Sealing the Dimension") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION; - @ClientString(id = 537302, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension (In progress)") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_IN_PROGRESS; + @ClientString(id = 537302, message = "|Lv. 95 - 102| Exploring the Dimension - Sealing the Dimension (In progress)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_IN_PROGRESS; - @ClientString(id = 537303, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension (Completed)") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_COMPLETED; + @ClientString(id = 537303, message = "|Lv. 95 - 102| Exploring the Dimension - Sealing the Dimension (Completed)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_COMPLETED; - @ClientString(id = 537304, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_2; + @ClientString(id = 537304, message = "|Lv. 95 - 102| Exploring the Dimension - Sealing the Dimension") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_2; + + @ClientString(id = 537310, message = "A message has arrived from the Dimensional Rift.\\nClick the question-mark icon to read.") + public static NpcStringId A_MESSAGE_HAS_ARRIVED_FROM_THE_DIMENSIONAL_RIFT_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @ClientString(id = 537401, message = "|Lv. 80+| That Place Succubus") public static NpcStringId LV_80_THAT_PLACE_SUCCUBUS; @@ -15385,17 +16093,17 @@ public final class NpcStringId @ClientString(id = 553405, message = "Speak with Stena") public static NpcStringId SPEAK_WITH_STENA; - @ClientString(id = 553501, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3; + @ClientString(id = 553501, message = "|Lv. 99+| Blacksmiths Soul - 3") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3; - @ClientString(id = 553502, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_IN_PROGRESS; + @ClientString(id = 553502, message = "|Lv. 99+| Blacksmiths Soul - 3 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_IN_PROGRESS; - @ClientString(id = 553503, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_COMPLETED; + @ClientString(id = 553503, message = "|Lv. 99+| Blacksmiths Soul - 3 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_COMPLETED; - @ClientString(id = 553504, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_2; + @ClientString(id = 553504, message = "|Lv. 99+| Blacksmiths Soul - 3") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_2; @ClientString(id = 553601, message = "|Lv. 100+| For True Independence") public static NpcStringId LV_100_FOR_TRUE_INDEPENDENCE; @@ -15586,6 +16294,741 @@ public final class NpcStringId @ClientString(id = 554408, message = "Speak with Trevor") public static NpcStringId SPEAK_WITH_TREVOR; + @ClientString(id = 555201, message = "Challenge! Balthus Knight!") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT; + + @ClientString(id = 555202, message = "Challenge! Balthus Knight! (In progress)") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_IN_PROGRESS; + + @ClientString(id = 555203, message = "Challenge! Balthus Knight! (Completed)") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_COMPLETED; + + @ClientString(id = 555204, message = "Challenge! Balthus Knight!") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_2; + + @ClientString(id = 555210, message = "Talk to Stig Mach") + public static NpcStringId TALK_TO_STIG_MACH; + + @ClientString(id = 555301, message = "What Matters More Than Ability") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY; + + @ClientString(id = 555302, message = "What Matters More Than Ability (In progress)") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_IN_PROGRESS; + + @ClientString(id = 555303, message = "What Matters More Than Ability (Completed)") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_COMPLETED; + + @ClientString(id = 555304, message = "What Matters More Than Ability") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_2; + + @ClientString(id = 555310, message = "Talk to McCoy") + public static NpcStringId TALK_TO_MCCOY; + + @ClientString(id = 555311, message = "Uses skills to defeat") + public static NpcStringId USES_SKILLS_TO_DEFEAT; + + @ClientString(id = 555401, message = "Gift for You") + public static NpcStringId GIFT_FOR_YOU; + + @ClientString(id = 555402, message = "Gift for You (In progress)") + public static NpcStringId GIFT_FOR_YOU_IN_PROGRESS; + + @ClientString(id = 555403, message = "Gift for You (Completed)") + public static NpcStringId GIFT_FOR_YOU_COMPLETED; + + @ClientString(id = 555404, message = "Gift for You") + public static NpcStringId GIFT_FOR_YOU_2; + + @ClientString(id = 555410, message = "Deliver to Camcud") + public static NpcStringId DELIVER_TO_CAMCUD; + + @ClientString(id = 555411, message = "Talk to Sibi") + public static NpcStringId TALK_TO_SIBI; + + @ClientString(id = 555412, message = "Deliver to Tarti") + public static NpcStringId DELIVER_TO_TARTI; + + @ClientString(id = 555413, message = "Deliver to Stig Mach") + public static NpcStringId DELIVER_TO_STIG_MACH; + + @ClientString(id = 555501, message = "Charge at Antharas") + public static NpcStringId CHARGE_AT_ANTHARAS; + + @ClientString(id = 555502, message = "Charge at Antharas (In progress)") + public static NpcStringId CHARGE_AT_ANTHARAS_IN_PROGRESS; + + @ClientString(id = 555503, message = "Charge at Antharas (Completed)") + public static NpcStringId CHARGE_AT_ANTHARAS_COMPLETED; + + @ClientString(id = 555504, message = "Charge at Antharas") + public static NpcStringId CHARGE_AT_ANTHARAS_2; + + @ClientString(id = 555510, message = "Join the Antharas battle") + public static NpcStringId JOIN_THE_ANTHARAS_BATTLE; + + @ClientString(id = 555511, message = "Talk to Roien") + public static NpcStringId TALK_TO_ROIEN; + + @ClientString(id = 555512, message = "Talk to Brome") + public static NpcStringId TALK_TO_BROME; + + @ClientString(id = 555513, message = "Talk to Mion") + public static NpcStringId TALK_TO_MION; + + @ClientString(id = 555514, message = "Talk to Kayleen") + public static NpcStringId TALK_TO_KAYLEEN; + + @ClientString(id = 555515, message = "Talk to Elias") + public static NpcStringId TALK_TO_ELIAS; + + @ClientString(id = 555516, message = "Talk to Takhun") + public static NpcStringId TALK_TO_TAKHUN; + + @ClientString(id = 555517, message = "Talk to Elena") + public static NpcStringId TALK_TO_ELENA; + + @ClientString(id = 555518, message = "Talk to Ultrian") + public static NpcStringId TALK_TO_ULTRIAN; + + @ClientString(id = 555519, message = "Talk to Tariah") + public static NpcStringId TALK_TO_TARIAH; + + @ClientString(id = 555520, message = "Talk to Narita") + public static NpcStringId TALK_TO_NARITA; + + @ClientString(id = 555521, message = "Talk to Stig Mach") + public static NpcStringId TALK_TO_STIG_MACH_2; + + @ClientString(id = 555522, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH; + + @ClientString(id = 555601, message = "Forgotten Power: Start of Fate") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE; + + @ClientString(id = 555602, message = "Forgotten Power: Start of Fate (In progress)") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_IN_PROGRESS; + + @ClientString(id = 555603, message = "Forgotten Power: Start of Fate (Completed)") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_COMPLETED; + + @ClientString(id = 555604, message = "Forgotten Power: Start of Fate") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_2; + + @ClientString(id = 555610, message = "Sigel Knight's Awakening") + public static NpcStringId SIGEL_KNIGHT_S_AWAKENING; + + @ClientString(id = 555611, message = "Tyrr Warrior's Awakening") + public static NpcStringId TYRR_WARRIOR_S_AWAKENING; + + @ClientString(id = 555612, message = "Othell Rogue's Awakening") + public static NpcStringId OTHELL_ROGUE_S_AWAKENING; + + @ClientString(id = 555613, message = "Yul Archer's Awakening") + public static NpcStringId YUL_ARCHER_S_AWAKENING; + + @ClientString(id = 555614, message = "Wynn Summoner's Awakening") + public static NpcStringId WYNN_SUMMONER_S_AWAKENING; + + @ClientString(id = 555615, message = "Iss Enchanter's Awakening") + public static NpcStringId ISS_ENCHANTER_S_AWAKENING; + + @ClientString(id = 555616, message = "Feoh Wizard's Awakening") + public static NpcStringId FEOH_WIZARD_S_AWAKENING; + + @ClientString(id = 555617, message = "Aeore Healer's Awakening") + public static NpcStringId AEORE_HEALER_S_AWAKENING; + + @ClientString(id = 555701, message = "New Power, Winds of Fate") + public static NpcStringId NEW_POWER_WINDS_OF_FATE; + + @ClientString(id = 555702, message = "New Power, Winds of Fate (In progress)") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_IN_PROGRESS; + + @ClientString(id = 555703, message = "New Power, Winds of Fate (Completed)") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_COMPLETED; + + @ClientString(id = 555704, message = "New Power, Winds of Fate") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_2; + + @ClientString(id = 555710, message = "Unlocking the Mass Ripper's Power") + public static NpcStringId UNLOCKING_THE_MASS_RIPPER_S_POWER; + + @ClientString(id = 555711, message = "Unlocking the Seer's Power") + public static NpcStringId UNLOCKING_THE_SEER_S_POWER; + + @ClientString(id = 555801, message = "Hidden in Chaos") + public static NpcStringId HIDDEN_IN_CHAOS; + + @ClientString(id = 555802, message = "Hidden in Chaos (In progress)") + public static NpcStringId HIDDEN_IN_CHAOS_IN_PROGRESS; + + @ClientString(id = 555803, message = "Hidden in Chaos (Completed)") + public static NpcStringId HIDDEN_IN_CHAOS_COMPLETED; + + @ClientString(id = 555804, message = "Hidden in Chaos") + public static NpcStringId HIDDEN_IN_CHAOS_2; + + @ClientString(id = 555810, message = "Talk to the Monk of Chaos") + public static NpcStringId TALK_TO_THE_MONK_OF_CHAOS; + + @ClientString(id = 555811, message = "You can learn '2 Revelation Skills' by using '2 Chaos Pomanders'.") + public static NpcStringId YOU_CAN_LEARN_2_REVELATION_SKILLS_BY_USING_2_CHAOS_POMANDERS; + + @ClientString(id = 555901, message = "Before the Guide") + public static NpcStringId BEFORE_THE_GUIDE; + + @ClientString(id = 555902, message = "Before the Guide (In progress)") + public static NpcStringId BEFORE_THE_GUIDE_IN_PROGRESS; + + @ClientString(id = 555903, message = "Before the Guide (Completed)") + public static NpcStringId BEFORE_THE_GUIDE_COMPLETED; + + @ClientString(id = 555904, message = "Before the Guide") + public static NpcStringId BEFORE_THE_GUIDE_2; + + @ClientString(id = 555910, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_2; + + @ClientString(id = 556001, message = "|Lv. 85 - 95| Way of Wandering Knight") + public static NpcStringId LV_85_95_WAY_OF_WANDERING_KNIGHT; + + @ClientString(id = 556002, message = "|Lv. 85 - 95| Way of Wandering Knight (In progress)") + public static NpcStringId LV_85_95_WAY_OF_WANDERING_KNIGHT_IN_PROGRESS; + + @ClientString(id = 556003, message = "|Lv. 85 - 95| Way of Wandering Knight (Completed)") + public static NpcStringId LV_85_95_WAY_OF_WANDERING_KNIGHT_COMPLETED; + + @ClientString(id = 556004, message = "|Lv. 85 - 95| Way of Wandering Knight") + public static NpcStringId LV_85_95_WAY_OF_WANDERING_KNIGHT_2; + + @ClientString(id = 556010, message = "A message has arrived from Herphah.\\nClick the question-mark icon to read.") + public static NpcStringId A_MESSAGE_HAS_ARRIVED_FROM_HERPHAH_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; + + @ClientString(id = 556011, message = "Hear about Clans") + public static NpcStringId HEAR_ABOUT_CLANS; + + @ClientString(id = 556012, message = "Talk to Adventurers' Guide") + public static NpcStringId TALK_TO_ADVENTURERS_GUIDE; + + @ClientString(id = 556013, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_3; + + @ClientString(id = 556014, message = "Hear about Factions") + public static NpcStringId HEAR_ABOUT_FACTIONS; + + @ClientString(id = 556015, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_17; + + @ClientString(id = 556016, message = "Reach Faction Amity Level 1") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_1; + + @ClientString(id = 556017, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_4; + + @ClientString(id = 556101, message = "|Lv. 85 - 95| Across the Death Line") + public static NpcStringId LV_85_95_ACROSS_THE_DEATH_LINE; + + @ClientString(id = 556102, message = "|Lv. 85 - 95| Across the Death Line (In progress)") + public static NpcStringId LV_85_95_ACROSS_THE_DEATH_LINE_IN_PROGRESS; + + @ClientString(id = 556103, message = "|Lv. 85 - 95| Across the Death Line (Completed)") + public static NpcStringId LV_85_95_ACROSS_THE_DEATH_LINE_COMPLETED; + + @ClientString(id = 556104, message = "|Lv. 85 - 95| Across the Death Line") + public static NpcStringId LV_85_95_ACROSS_THE_DEATH_LINE_2; + + @ClientString(id = 556111, message = "Hear about the Death Penalty") + public static NpcStringId HEAR_ABOUT_THE_DEATH_PENALTY; + + @ClientString(id = 556112, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_18; + + @ClientString(id = 556113, message = "Reach Faction Amity Level 2") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_2; + + @ClientString(id = 556114, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH; + + @ClientString(id = 556201, message = "|Lv. 85 - 95| Take Up Arms") + public static NpcStringId LV_85_95_TAKE_UP_ARMS; + + @ClientString(id = 556202, message = "|Lv. 85 - 95| Take Up Arms (In progress)") + public static NpcStringId LV_85_95_TAKE_UP_ARMS_IN_PROGRESS; + + @ClientString(id = 556203, message = "|Lv. 85 - 95| Take Up Arms (Completed)") + public static NpcStringId LV_85_95_TAKE_UP_ARMS_COMPLETED; + + @ClientString(id = 556204, message = "|Lv. 85 - 95| Take Up Arms") + public static NpcStringId LV_85_95_TAKE_UP_ARMS_2; + + @ClientString(id = 556211, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY; + + @ClientString(id = 556212, message = "Reach Faction Amity Level 3 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_3_OR_HIGHER; + + @ClientString(id = 556213, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_2; + + @ClientString(id = 556301, message = "|Lv. 85 - 95| Control of Power") + public static NpcStringId LV_85_95_CONTROL_OF_POWER; + + @ClientString(id = 556302, message = "|Lv. 85 - 95| Control of Power (In progress)") + public static NpcStringId LV_85_95_CONTROL_OF_POWER_IN_PROGRESS; + + @ClientString(id = 556303, message = "|Lv. 85 - 95| Control of Power (Completed)") + public static NpcStringId LV_85_95_CONTROL_OF_POWER_COMPLETED; + + @ClientString(id = 556304, message = "|Lv. 85 - 95| Control of Power") + public static NpcStringId LV_85_95_CONTROL_OF_POWER_2; + + @ClientString(id = 556311, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_2; + + @ClientString(id = 556312, message = "Reach Faction Amity Level 4 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_4_OR_HIGHER; + + @ClientString(id = 556313, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_3; + + @ClientString(id = 556401, message = "|Lv. 85 - 95| Prove Progress") + public static NpcStringId LV_85_95_PROVE_PROGRESS; + + @ClientString(id = 556402, message = "|Lv. 85 - 95| Prove Progress (In progress)") + public static NpcStringId LV_85_95_PROVE_PROGRESS_IN_PROGRESS; + + @ClientString(id = 556403, message = "|Lv. 85 - 95| Prove Progress (Completed)") + public static NpcStringId LV_85_95_PROVE_PROGRESS_COMPLETED; + + @ClientString(id = 556404, message = "|Lv. 85 - 95| Prove Progress") + public static NpcStringId LV_85_95_PROVE_PROGRESS_2; + + @ClientString(id = 556411, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_3; + + @ClientString(id = 556412, message = "Reach Faction Amity Level 5 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_5_OR_HIGHER; + + @ClientString(id = 556413, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_4; + + @ClientString(id = 556501, message = "|Lv. 85 - 95| Nothing Is Impossible") + public static NpcStringId LV_85_95_NOTHING_IS_IMPOSSIBLE; + + @ClientString(id = 556502, message = "|Lv. 85 - 95| Nothing Is Impossible (In progress)") + public static NpcStringId LV_85_95_NOTHING_IS_IMPOSSIBLE_IN_PROGRESS; + + @ClientString(id = 556503, message = "|Lv. 85 - 95| Nothing Is Impossible (Completed)") + public static NpcStringId LV_85_95_NOTHING_IS_IMPOSSIBLE_COMPLETED; + + @ClientString(id = 556504, message = "|Lv. 85 - 95| Nothing Is Impossible") + public static NpcStringId LV_85_95_NOTHING_IS_IMPOSSIBLE_2; + + @ClientString(id = 556511, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_4; + + @ClientString(id = 556512, message = "Reach Faction Amity Level 6 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_6_OR_HIGHER; + + @ClientString(id = 556513, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_5; + + @ClientString(id = 556601, message = "|Lv. 95+| Best Choice") + public static NpcStringId LV_95_BEST_CHOICE; + + @ClientString(id = 556602, message = "|Lv. 95+| Best Choice (In progress)") + public static NpcStringId LV_95_BEST_CHOICE_IN_PROGRESS; + + @ClientString(id = 556603, message = "|Lv. 95+| Best Choice (Completed)") + public static NpcStringId LV_95_BEST_CHOICE_COMPLETED; + + @ClientString(id = 556604, message = "|Lv. 95+| Best Choice") + public static NpcStringId LV_95_BEST_CHOICE_2; + + @ClientString(id = 556611, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_5; + + @ClientString(id = 556701, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_3; + + @ClientString(id = 556702, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden (In progress)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_IN_PROGRESS_2; + + @ClientString(id = 556703, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden (Completed)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_COMPLETED_2; + + @ClientString(id = 556704, message = "|Lv. 93 - 95| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_GARDEN_4; + + @ClientString(id = 556711, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_9; + + @ClientString(id = 556712, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY_3; + + @ClientString(id = 556713, message = "Carry out Tapoy's mission") + public static NpcStringId CARRY_OUT_TAPOY_S_MISSION; + + @ClientString(id = 556714, message = "Talk to Hesed") + public static NpcStringId TALK_TO_HESED_3; + + @ClientString(id = 556715, message = "Complete the quest 'Soulless One'") + public static NpcStringId COMPLETE_THE_QUEST_SOULLESS_ONE; + + @ClientString(id = 556716, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_19; + + @ClientString(id = 556801, message = "|Lv. 102+| Kamael's Technological Advancement") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT; + + @ClientString(id = 556802, message = "|Lv. 102+| Kamael's Technological Advancement (In progress)") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_IN_PROGRESS; + + @ClientString(id = 556803, message = "|Lv. 102+| Kamael's Technological Advancement (Completed)") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_COMPLETED; + + @ClientString(id = 556804, message = "|Lv. 102+| Kamael's Technological Advancement") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_2; + + @ClientString(id = 556805, message = "Defeat the Hunter") + public static NpcStringId DEFEAT_THE_HUNTER; + + @ClientString(id = 556810, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_3; + + @ClientString(id = 556901, message = "|Lv. 102+| Declaration of War") + public static NpcStringId LV_102_DECLARATION_OF_WAR; + + @ClientString(id = 556902, message = "|Lv. 102+| Declaration of War (In progress)") + public static NpcStringId LV_102_DECLARATION_OF_WAR_IN_PROGRESS; + + @ClientString(id = 556903, message = "|Lv. 102+| Declaration of War (Completed)") + public static NpcStringId LV_102_DECLARATION_OF_WAR_COMPLETED; + + @ClientString(id = 556904, message = "|Lv. 102+| Declaration of War") + public static NpcStringId LV_102_DECLARATION_OF_WAR_2; + + @ClientString(id = 556905, message = "Defeat the Hunter") + public static NpcStringId DEFEAT_THE_HUNTER_2; + + @ClientString(id = 556906, message = "Eliminate the Giant at the Superion Fortress") + public static NpcStringId ELIMINATE_THE_GIANT_AT_THE_SUPERION_FORTRESS; + + @ClientString(id = 556910, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_4; + + @ClientString(id = 556911, message = "Talk to Kekropus") + public static NpcStringId TALK_TO_KEKROPUS_5; + + @ClientString(id = 557001, message = "|Lv. 102+| Hurrah for Kamael's Independence") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE; + + @ClientString(id = 557002, message = "|Lv. 102+| Hurrah for Kamael's Independence (In progress)") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_IN_PROGRESS; + + @ClientString(id = 557003, message = "|Lv. 102+| Hurrah for Kamael's Independence (Completed)") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_COMPLETED; + + @ClientString(id = 557004, message = "|Lv. 102+| Hurrah for Kamael's Independence") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_2; + + @ClientString(id = 557005, message = "Defeat Helios") + public static NpcStringId DEFEAT_HELIOS; + + @ClientString(id = 557006, message = "Eliminate the Enchant Type Giant") + public static NpcStringId ELIMINATE_THE_ENCHANT_TYPE_GIANT; + + @ClientString(id = 557010, message = "Talk to Kekropus") + public static NpcStringId TALK_TO_KEKROPUS_6; + + @ClientString(id = 557101, message = "|Lv. 95 - 106| Strategic Reconciliation") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION; + + @ClientString(id = 557102, message = "|Lv. 95 - 106| Strategic Reconciliation (In progress)") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_IN_PROGRESS; + + @ClientString(id = 557103, message = "|Lv. 95 - 106| Strategic Reconciliation (Completed)") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_COMPLETED; + + @ClientString(id = 557104, message = "|Lv. 95 - 106| Strategic Reconciliation") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_2; + + @ClientString(id = 557105, message = "Talk to Tarti") + public static NpcStringId TALK_TO_TARTI_2; + + @ClientString(id = 557201, message = "|Lv. 101+| To Expel the Embryo's Forces") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES; + + @ClientString(id = 557202, message = "|Lv. 101+| To Expel the Embryo's Forces (In progress)") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_IN_PROGRESS; + + @ClientString(id = 557203, message = "|Lv. 101+| To Expel the Embryo's Forces (Completed)") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_COMPLETED; + + @ClientString(id = 557204, message = "|Lv. 101+| To Expel the Embryo's Forces") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_2; + + @ClientString(id = 557205, message = "Defeat the Embryo's Apostle") + public static NpcStringId DEFEAT_THE_EMBRYO_S_APOSTLE; + + @ClientString(id = 557210, message = "Talk to Logart Van Dyke") + public static NpcStringId TALK_TO_LOGART_VAN_DYKE; + + @ClientString(id = 557401, message = "|Lv. 90 - 94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_3; + + @ClientString(id = 557402, message = "|Lv. 90 - 94| Special Mission: Fortuna (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_IN_PROGRESS_2; + + @ClientString(id = 557403, message = "|Lv. 90 - 94| Special Mission: Fortuna (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_COMPLETED_2; + + @ClientString(id = 557404, message = "|Lv. 90 - 94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_4; + + @ClientString(id = 557411, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL_3; + + @ClientString(id = 557412, message = "Complete the quest 'For the Forgotten Heroes'") + public static NpcStringId COMPLETE_THE_QUEST_FOR_THE_FORGOTTEN_HEROES; + + @ClientString(id = 557413, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_20; + + @ClientString(id = 557501, message = "|Lv. 95+| Let's Go Fishing") + public static NpcStringId LV_95_LET_S_GO_FISHING; + + @ClientString(id = 557502, message = "|Lv. 95+| Let's Go Fishing (In progress)") + public static NpcStringId LV_95_LET_S_GO_FISHING_IN_PROGRESS; + + @ClientString(id = 557503, message = "|Lv. 95+| Let's Go Fishing (Completed)") + public static NpcStringId LV_95_LET_S_GO_FISHING_COMPLETED; + + @ClientString(id = 557504, message = "|Lv. 95+| Let's Go Fishing") + public static NpcStringId LV_95_LET_S_GO_FISHING_2; + + @ClientString(id = 557511, message = "Hear about fishing") + public static NpcStringId HEAR_ABOUT_FISHING_2; + + @ClientString(id = 557512, message = "Catch Practice Fish") + public static NpcStringId CATCH_PRACTICE_FISH; + + @ClientString(id = 557513, message = "Talk to Santiago") + public static NpcStringId TALK_TO_SANTIAGO; + + @ClientString(id = 557601, message = "|Lv. 95+| Glittering Weapons") + public static NpcStringId LV_95_GLITTERING_WEAPONS; + + @ClientString(id = 557602, message = "|Lv. 95+| Glittering Weapons (In progress)") + public static NpcStringId LV_95_GLITTERING_WEAPONS_IN_PROGRESS; + + @ClientString(id = 557603, message = "|Lv. 95+| Glittering Weapons (Completed)") + public static NpcStringId LV_95_GLITTERING_WEAPONS_COMPLETED; + + @ClientString(id = 557604, message = "|Lv. 95+| Glittering Weapons") + public static NpcStringId LV_95_GLITTERING_WEAPONS_2; + + @ClientString(id = 557611, message = "Hear about Enchanting") + public static NpcStringId HEAR_ABOUT_ENCHANTING; + + @ClientString(id = 557612, message = "+7 Enhancement Practice Long Sword") + public static NpcStringId SEVEN_ENHANCEMENT_PRACTICE_LONG_SWORD; + + @ClientString(id = 557613, message = "+3 Enhancement Practice Long Sword") + public static NpcStringId THREE_ENHANCEMENT_PRACTICE_LONG_SWORD; + + @ClientString(id = 557614, message = "Talk to Rupio") + public static NpcStringId TALK_TO_RUPIO; + + @ClientString(id = 557701, message = "|Lv. 95+| Temper a Rusting Blade ") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE; + + @ClientString(id = 557702, message = "|Lv. 95+| Temper a Rusting Blade (In progress)") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_IN_PROGRESS; + + @ClientString(id = 557703, message = "|Lv. 95+| Temper a Rusting Blade (Completed)") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_COMPLETED; + + @ClientString(id = 557704, message = "|Lv. 95+| Temper a Rusting Blade ") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_2; + + @ClientString(id = 557711, message = "Hear about Augmenting") + public static NpcStringId HEAR_ABOUT_AUGMENTING; + + @ClientString(id = 557712, message = "Practice Augmenting") + public static NpcStringId PRACTICE_AUGMENTING; + + @ClientString(id = 557713, message = "Talk to Flutter") + public static NpcStringId TALK_TO_FLUTTER_2; + + @ClientString(id = 557801, message = "|Lv. 95+| The Soul of a Sword") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD; + + @ClientString(id = 557802, message = "|Lv. 95+| The Soul of a Sword (In progress)") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_IN_PROGRESS; + + @ClientString(id = 557803, message = "|Lv. 95+| The Soul of a Sword (Completed)") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_COMPLETED; + + @ClientString(id = 557804, message = "|Lv. 95+| The Soul of a Sword") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_2; + + @ClientString(id = 557811, message = "Hear about Soul Crystal Enhancing") + public static NpcStringId HEAR_ABOUT_SOUL_CRYSTAL_ENHANCING; + + @ClientString(id = 557812, message = "Practice Soul Crystal Enhancing") + public static NpcStringId PRACTICE_SOUL_CRYSTAL_ENHANCING; + + @ClientString(id = 557813, message = "Talk to Vincenz") + public static NpcStringId TALK_TO_VINCENZ; + + @ClientString(id = 557901, message = "|Lv. 95+| Containing the Attribute Power") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER; + + @ClientString(id = 557902, message = "|Lv. 95+| Containing the Attribute Power (In progress)") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_IN_PROGRESS; + + @ClientString(id = 557903, message = "|Lv. 95+| Containing the Attribute Power (Completed)") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_COMPLETED; + + @ClientString(id = 557904, message = "|Lv. 95+| Containing the Attribute Power") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_2; + + @ClientString(id = 557911, message = "Hear about Attributes") + public static NpcStringId HEAR_ABOUT_ATTRIBUTES; + + @ClientString(id = 557912, message = "Choose supplies") + public static NpcStringId CHOOSE_SUPPLIES; + + @ClientString(id = 557913, message = "Practice Attributes") + public static NpcStringId PRACTICE_ATTRIBUTES; + + @ClientString(id = 557914, message = "Talk to Ferris") + public static NpcStringId TALK_TO_FERRIS; + + @ClientString(id = 558001, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_3; + + @ClientString(id = 558002, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_IN_PROGRESS_2; + + @ClientString(id = 558003, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_COMPLETED_2; + + @ClientString(id = 558004, message = "|Lv. 90 - 94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_4; + + @ClientString(id = 558011, message = "Talk to Opera") + public static NpcStringId TALK_TO_OPERA; + + @ClientString(id = 558012, message = "Complete the quest 'Undecaying Memory of the Past'") + public static NpcStringId COMPLETE_THE_QUEST_UNDECAYING_MEMORY_OF_THE_PAST; + + @ClientString(id = 558013, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_21; + + @ClientString(id = 559401, message = "|Lv. 97+| Fergason's Scheme") + public static NpcStringId LV_97_FERGASON_S_SCHEME; + + @ClientString(id = 559402, message = "|Lv. 97+| Fergason's Scheme (In progress)") + public static NpcStringId LV_97_FERGASON_S_SCHEME_IN_PROGRESS; + + @ClientString(id = 559403, message = "|Lv. 97+| Fergason's Scheme (Completed)") + public static NpcStringId LV_97_FERGASON_S_SCHEME_COMPLETED; + + @ClientString(id = 559404, message = "|Lv. 97+| Fergason's Scheme") + public static NpcStringId LV_97_FERGASON_S_SCHEME_2; + + @ClientString(id = 559410, message = "Talk to Sizrak") + public static NpcStringId TALK_TO_SIZRAK_2; + + @ClientString(id = 559411, message = "Talk to Aku") + public static NpcStringId TALK_TO_AKU; + + @ClientString(id = 559412, message = "Talk to Fergason") + public static NpcStringId TALK_TO_FERGASON; + + @ClientString(id = 559501, message = "|Lv. 99+| The Dimensional Warp, Part 8") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8; + + @ClientString(id = 559502, message = "|Lv. 99+| The Dimensional Warp, Part 8 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_IN_PROGRESS; + + @ClientString(id = 559503, message = "|Lv. 99+| The Dimensional Warp, Part 8 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_COMPLETED; + + @ClientString(id = 559504, message = "|Lv. 99+| The Dimensional Warp, Part 8") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_2; + + @ClientString(id = 559510, message = "Talk to Resed") + public static NpcStringId TALK_TO_RESED; + + @ClientString(id = 559601, message = "|Lv. 99+| The Dimensional Warp, Part 9") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9; + + @ClientString(id = 559602, message = "|Lv. 99+| The Dimensional Warp, Part 9 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_IN_PROGRESS; + + @ClientString(id = 559603, message = "|Lv. 99+| The Dimensional Warp, Part 9 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_COMPLETED; + + @ClientString(id = 559604, message = "|Lv. 99+| The Dimensional Warp, Part 9") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_2; + + @ClientString(id = 559701, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree ") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 559702, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 559703, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 559704, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree ") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_2; + + @ClientString(id = 559710, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_6; + + @ClientString(id = 559801, message = "|Lv. 103+| With All Your Might") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT; + + @ClientString(id = 559802, message = "|Lv. 103+| With All Your Might (In progress)") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_IN_PROGRESS; + + @ClientString(id = 559803, message = "|Lv. 103+| With All Your Might (Completed)") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_COMPLETED; + + @ClientString(id = 559804, message = "|Lv. 103+| With All Your Might") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_2; + + @ClientString(id = 559810, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_7; + + @ClientString(id = 559811, message = "Talk to Asterios") + public static NpcStringId TALK_TO_ASTERIOS; + + @ClientString(id = 559901, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE; + + @ClientString(id = 559902, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree (In progress)") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 559903, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree (Completed)") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 559904, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_2; + + @ClientString(id = 559910, message = "Confirm Nerupa's Power") + public static NpcStringId CONFIRM_NERUPA_S_POWER; + + @ClientString(id = 559911, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_8; + + @ClientString(id = 559912, message = "Defeat Repeat") + public static NpcStringId DEFEAT_REPEAT; + @ClientString(id = 565801, message = "|Lv. 100+| Makkum in the Dimension") public static NpcStringId LV_100_MAKKUM_IN_THE_DIMENSION; @@ -15718,23 +17161,8 @@ public final class NpcStringId @ClientString(id = 571011, message = "Find the Life Energy Repository") public static NpcStringId FIND_THE_LIFE_ENERGY_REPOSITORY; - @ClientString(id = 571200, message = "A minstrel has sent an invitation.\\nClick the question-mark icon to read.") - public static NpcStringId A_MINSTREL_HAS_SENT_AN_INVITATION_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; - - @ClientString(id = 571201, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1; - - @ClientString(id = 571202, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1 (In progress)") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_IN_PROGRESS; - - @ClientString(id = 571203, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1 (Completed)") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_COMPLETED; - - @ClientString(id = 571204, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_2; - - @ClientString(id = 571211, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO; + @ClientString(id = 571200, message = "Tulesir has sent an invitation.\\nClick the question-mark icon to read.") + public static NpcStringId TULESIR_HAS_SENT_AN_INVITATION_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @ClientString(id = 571301, message = "|Lv. 85+| The Hero's Journey: Bloody Swampland") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND; @@ -15749,13 +17177,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_2; @ClientString(id = 571311, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_2; + public static NpcStringId TALK_TO_LIBERATTO; @ClientString(id = 571312, message = "Talk to Vollodos") - public static NpcStringId TALK_TO_VOLLODOS; + public static NpcStringId TALK_TO_VOLLODOS_4; @ClientString(id = 571313, message = "Talk to Vollodos") - public static NpcStringId TALK_TO_VOLLODOS_2; + public static NpcStringId TALK_TO_VOLLODOS_5; @ClientString(id = 571401, message = "|Lv. 85+| The Hero's Journey: Seed of Annihilation") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION; @@ -15770,7 +17198,7 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_2; @ClientString(id = 571411, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_3; + public static NpcStringId TALK_TO_LIBERATTO_2; @ClientString(id = 571412, message = "Talk to Klemis") public static NpcStringId TALK_TO_KLEMIS_2; @@ -15791,13 +17219,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_2; @ClientString(id = 571511, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_4; + public static NpcStringId TALK_TO_LIBERATTO_3; @ClientString(id = 571512, message = "Talk to Hadel") - public static NpcStringId TALK_TO_HADEL; + public static NpcStringId TALK_TO_HADEL_4; @ClientString(id = 571513, message = "Talk to Hadel") - public static NpcStringId TALK_TO_HADEL_2; + public static NpcStringId TALK_TO_HADEL_5; @ClientString(id = 571601, message = "|Lv. 85+| The Hero's Journey: Kartia's Labyrinth") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH; @@ -15812,31 +17240,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_2; @ClientString(id = 571611, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_5; + public static NpcStringId TALK_TO_LIBERATTO_4; @ClientString(id = 571612, message = "Talk to Kartia Researcher") - public static NpcStringId TALK_TO_KARTIA_RESEARCHER; + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_3; @ClientString(id = 571613, message = "Talk to Kartia Researcher") - public static NpcStringId TALK_TO_KARTIA_RESEARCHER_2; - - @ClientString(id = 571701, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2; - - @ClientString(id = 571702, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2 (In progress)") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_IN_PROGRESS; - - @ClientString(id = 571703, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2 (Completed)") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_COMPLETED; - - @ClientString(id = 571704, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_2; - - @ClientString(id = 571711, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO; - - @ClientString(id = 571712, message = "Speak with Lada") - public static NpcStringId SPEAK_WITH_LADA; + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_4; @ClientString(id = 571801, message = "|Lv. 88+| The Hero's Journey: Fairy Settlement") public static NpcStringId LV_88_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT; @@ -15851,7 +17261,7 @@ public final class NpcStringId public static NpcStringId LV_88_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_2; @ClientString(id = 571811, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_2; + public static NpcStringId TALK_TO_MISO; @ClientString(id = 571812, message = "Talk to Fairy Refugee") public static NpcStringId TALK_TO_FAIRY_REFUGEE; @@ -15859,24 +17269,6 @@ public final class NpcStringId @ClientString(id = 571813, message = "Talk to Fairy Refugee") public static NpcStringId TALK_TO_FAIRY_REFUGEE_2; - @ClientString(id = 572001, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3; - - @ClientString(id = 572002, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3 (In progress)") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_IN_PROGRESS; - - @ClientString(id = 572003, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3 (Completed)") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_COMPLETED; - - @ClientString(id = 572004, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_2; - - @ClientString(id = 572011, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_3; - - @ClientString(id = 572012, message = "Speak with Nerupa") - public static NpcStringId SPEAK_WITH_NERUPA; - @ClientString(id = 572101, message = "|Lv. 90+| The Hero's Journey: Prison of Darkness") public static NpcStringId LV_90_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS; @@ -15890,13 +17282,13 @@ public final class NpcStringId public static NpcStringId LV_90_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_2; @ClientString(id = 572111, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_4; + public static NpcStringId TALK_TO_MISO_2; @ClientString(id = 572112, message = "Talk to Opera") - public static NpcStringId TALK_TO_OPERA; + public static NpcStringId TALK_TO_OPERA_2; @ClientString(id = 572113, message = "Talk to Opera") - public static NpcStringId TALK_TO_OPERA_2; + public static NpcStringId TALK_TO_OPERA_3; @ClientString(id = 572201, message = "|Lv. 90+| The Hero's Journey: Fortuna") public static NpcStringId LV_90_THE_HERO_S_JOURNEY_FORTUNA; @@ -15911,31 +17303,13 @@ public final class NpcStringId public static NpcStringId LV_90_THE_HERO_S_JOURNEY_FORTUNA_2; @ClientString(id = 572211, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_5; + public static NpcStringId TALK_TO_MISO_3; @ClientString(id = 572212, message = "Talk to Izael") - public static NpcStringId TALK_TO_IZAEL; + public static NpcStringId TALK_TO_IZAEL_4; @ClientString(id = 572213, message = "Talk to Izael") - public static NpcStringId TALK_TO_IZAEL_2; - - @ClientString(id = 572301, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4; - - @ClientString(id = 572302, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4 (In progress)") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4_IN_PROGRESS; - - @ClientString(id = 572303, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4 (Completed)") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4_COMPLETED; - - @ClientString(id = 572304, message = "|Lv. 92 - 94| The Minstrel's Song, Part 4") - public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4; - - @ClientString(id = 572311, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE; - - @ClientString(id = 572312, message = "Speak with Tapoy") - public static NpcStringId SPEAK_WITH_TAPOY; + public static NpcStringId TALK_TO_IZAEL_5; @ClientString(id = 572401, message = "|Lv. 92+| The Hero's Journey: Isle of Souls") public static NpcStringId LV_92_THE_HERO_S_JOURNEY_ISLE_OF_SOULS; @@ -15950,7 +17324,7 @@ public final class NpcStringId public static NpcStringId LV_92_THE_HERO_S_JOURNEY_ISLE_OF_SOULS_2; @ClientString(id = 572411, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE_2; + public static NpcStringId TALK_TO_MARMIE; @ClientString(id = 572412, message = "Talk to Tauresia") public static NpcStringId TALK_TO_TAURESIA; @@ -15971,25 +17345,25 @@ public final class NpcStringId public static NpcStringId LV_92_THE_HERO_S_JOURNEY_NORNIL_S_CAVE_2; @ClientString(id = 572511, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE_3; + public static NpcStringId TALK_TO_MARMIE_2; @ClientString(id = 572512, message = "Talk to Verna") - public static NpcStringId TALK_TO_VERNA; + public static NpcStringId TALK_TO_VERNA_3; @ClientString(id = 572513, message = "Talk to Verna") - public static NpcStringId TALK_TO_VERNA_2; + public static NpcStringId TALK_TO_VERNA_4; - @ClientString(id = 572601, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5; + @ClientString(id = 572601, message = "|Lv. 95 - 96| Tulesir's Song, Part 1") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1; - @ClientString(id = 572602, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5 (In progress)") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_IN_PROGRESS; + @ClientString(id = 572602, message = "|Lv. 95 - 96| Tulesir's Song, Part 1 (In progress)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_IN_PROGRESS; - @ClientString(id = 572603, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5 (Completed)") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_COMPLETED; + @ClientString(id = 572603, message = "|Lv. 95 - 96| Tulesir's Song, Part 1 (Completed)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_COMPLETED; - @ClientString(id = 572604, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_2; + @ClientString(id = 572604, message = "|Lv. 95 - 96| Tulesir's Song, Part 1") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_2; @ClientString(id = 572611, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR; @@ -16081,17 +17455,17 @@ public final class NpcStringId @ClientString(id = 573013, message = "Talk to Severin") public static NpcStringId TALK_TO_SEVERIN_2; - @ClientString(id = 573101, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6; + @ClientString(id = 573101, message = "|Lv. 95 - 96| Tulesir's Song, Part 2") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_2; - @ClientString(id = 573102, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6 (In progress)") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_IN_PROGRESS; + @ClientString(id = 573102, message = "|Lv. 95 - 96| Tulesir's Song, Part 2 (In progress)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_2_IN_PROGRESS; - @ClientString(id = 573103, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6 (Completed)") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_COMPLETED; + @ClientString(id = 573103, message = "|Lv. 95 - 96| Tulesir's Song, Part 2 (Completed)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_2_COMPLETED; - @ClientString(id = 573104, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_2; + @ClientString(id = 573104, message = "|Lv. 95 - 96| Tulesir's Song, Part 2") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_2_2; @ClientString(id = 573111, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_6; @@ -17098,6 +18472,9 @@ public final class NpcStringId @ClientString(id = 579812, message = "Talk to Namo") public static NpcStringId TALK_TO_NAMO; + @ClientString(id = 579820, message = "You can grow stronger here.\\nYou can obtain the next Queen Navari's Letter at Lv. 81!") + public static NpcStringId YOU_CAN_GROW_STRONGER_HERE_NYOU_CAN_OBTAIN_THE_NEXT_QUEEN_NAVARI_S_LETTER_AT_LV_81; + @ClientString(id = 579901, message = "|Lv. 81 - 84| Strange Things Afoot in the Valley") public static NpcStringId LV_81_84_STRANGE_THINGS_AFOOT_IN_THE_VALLEY; @@ -17128,89 +18505,89 @@ public final class NpcStringId @ClientString(id = 580011, message = "Subjugation in the Southern Dragon Valley") public static NpcStringId SUBJUGATION_IN_THE_SOUTHERN_DRAGON_VALLEY_2; - @ClientString(id = 580101, message = "The Dimensional Warp, Part 1") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1; + @ClientString(id = 580101, message = "|Lv. 99+| The Dimensional Warp, Part 1") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1; - @ClientString(id = 580102, message = "The Dimensional Warp, Part 1 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_IN_PROGRESS; + @ClientString(id = 580102, message = "|Lv. 99+| The Dimensional Warp, Part 1 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_IN_PROGRESS; - @ClientString(id = 580103, message = "The Dimensional Warp, Part 1 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_DONE; + @ClientString(id = 580103, message = "|Lv. 99+| The Dimensional Warp, Part 1 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_COMPLETED; - @ClientString(id = 580104, message = "The Dimensional Warp, Part 1") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_2; + @ClientString(id = 580104, message = "|Lv. 99+| The Dimensional Warp, Part 1") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_2; - @ClientString(id = 580201, message = "The Dimensional Warp, Part 2") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2; + @ClientString(id = 580201, message = "|Lv. 99+| The Dimensional Warp, Part 2") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2; - @ClientString(id = 580202, message = "The Dimensional Warp, Part 2 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_IN_PROGRESS; + @ClientString(id = 580202, message = "|Lv. 99+| The Dimensional Warp, Part 2 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_IN_PROGRESS; - @ClientString(id = 580203, message = "The Dimensional Warp, Part 2 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_DONE; + @ClientString(id = 580203, message = "|Lv. 99+| The Dimensional Warp, Part 2 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_COMPLETED; - @ClientString(id = 580204, message = "The Dimensional Warp, Part 2") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_2; + @ClientString(id = 580204, message = "|Lv. 99+| The Dimensional Warp, Part 2") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_2; - @ClientString(id = 580301, message = "The Dimensional Warp, Part 3") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3; + @ClientString(id = 580301, message = "|Lv. 99+| The Dimensional Warp, Part 3") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3; - @ClientString(id = 580302, message = "The Dimensional Warp, Part 3 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_IN_PROGRESS; + @ClientString(id = 580302, message = "|Lv. 99+| The Dimensional Warp, Part 3 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_IN_PROGRESS; - @ClientString(id = 580303, message = "The Dimensional Warp, Part 3 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_DONE; + @ClientString(id = 580303, message = "|Lv. 99+| The Dimensional Warp, Part 3 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_COMPLETED; - @ClientString(id = 580304, message = "The Dimensional Warp, Part 3") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_2; + @ClientString(id = 580304, message = "|Lv. 99+| The Dimensional Warp, Part 3") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_2; - @ClientString(id = 580401, message = "The Dimensional Warp, Part 4") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4; + @ClientString(id = 580401, message = "|Lv. 99+| The Dimensional Warp, Part 4") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4; - @ClientString(id = 580402, message = "The Dimensional Warp, Part 4 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_IN_PROGRESS; + @ClientString(id = 580402, message = "|Lv. 99+| The Dimensional Warp, Part 4 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_IN_PROGRESS; - @ClientString(id = 580403, message = "The Dimensional Warp, Part 4 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_DONE; + @ClientString(id = 580403, message = "|Lv. 99+| The Dimensional Warp, Part 4 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_COMPLETED; - @ClientString(id = 580404, message = "The Dimensional Warp, Part 4") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_2; + @ClientString(id = 580404, message = "|Lv. 99+| The Dimensional Warp, Part 4") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_2; - @ClientString(id = 580501, message = "The Dimensional Warp, Part 5") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5; + @ClientString(id = 580501, message = "|Lv. 99+| The Dimensional Warp, Part 5") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5; - @ClientString(id = 580502, message = "The Dimensional Warp, Part 5 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_IN_PROGRESS; + @ClientString(id = 580502, message = "|Lv. 99+| The Dimensional Warp, Part 5 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_IN_PROGRESS; - @ClientString(id = 580503, message = "The Dimensional Warp, Part 5 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_DONE; + @ClientString(id = 580503, message = "|Lv. 99+| The Dimensional Warp, Part 5 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_COMPLETED; - @ClientString(id = 580504, message = "The Dimensional Warp, Part 5") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_2; + @ClientString(id = 580504, message = "|Lv. 99+| The Dimensional Warp, Part 5") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_2; - @ClientString(id = 580601, message = "The Dimensional Warp, Part 6") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6; + @ClientString(id = 580601, message = "|Lv. 99+| The Dimensional Warp, Part 6") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6; - @ClientString(id = 580602, message = "The Dimensional Warp, Part 6 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_IN_PROGRESS; + @ClientString(id = 580602, message = "|Lv. 99+| The Dimensional Warp, Part 6 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_IN_PROGRESS; - @ClientString(id = 580603, message = "The Dimensional Warp, Part 6 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_DONE; + @ClientString(id = 580603, message = "|Lv. 99+| The Dimensional Warp, Part 6 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_COMPLETED; - @ClientString(id = 580604, message = "The Dimensional Warp, Part 6") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_2; + @ClientString(id = 580604, message = "|Lv. 99+| The Dimensional Warp, Part 6") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_2; - @ClientString(id = 580701, message = "The Dimensional Warp, Part 7") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7; + @ClientString(id = 580701, message = "|Lv. 99+| The Dimensional Warp, Part 7") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7; - @ClientString(id = 580702, message = "The Dimensional Warp, Part 7 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_IN_PROGRESS; + @ClientString(id = 580702, message = "|Lv. 99+| The Dimensional Warp, Part 7 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_IN_PROGRESS; - @ClientString(id = 580703, message = "The Dimensional Warp, Part 7 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_DONE; + @ClientString(id = 580703, message = "|Lv. 99+| The Dimensional Warp, Part 7 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_COMPLETED; - @ClientString(id = 580704, message = "The Dimensional Warp, Part 7") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_2; + @ClientString(id = 580704, message = "|Lv. 99+| The Dimensional Warp, Part 7") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_2; @ClientString(id = 580901, message = "|Lv. 97 - 99| The Hero's Journey: Blazing Swamp") public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP; @@ -17557,83 +18934,83 @@ public final class NpcStringId @ClientString(id = 582712, message = "Talk with Sir Gustav Athebaldt") public static NpcStringId TALK_WITH_SIR_GUSTAV_ATHEBALDT; - @ClientString(id = 582901, message = "|Lv. 100+| In Search of the Cause") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE; + @ClientString(id = 582901, message = "|Lv. 102+| In Search of the Cause") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE; - @ClientString(id = 582902, message = "|Lv. 100+| In Search of the Cause (In progress)") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_IN_PROGRESS; + @ClientString(id = 582902, message = "|Lv. 102+| In Search of the Cause (In progress)") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_IN_PROGRESS; - @ClientString(id = 582903, message = "|Lv. 100+| In Search of the Cause (Completed)") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_COMPLETED; + @ClientString(id = 582903, message = "|Lv. 102+| In Search of the Cause (Completed)") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_COMPLETED; - @ClientString(id = 582904, message = "|Lv. 100+| In Search of the Cause") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_2; + @ClientString(id = 582904, message = "|Lv. 102+| In Search of the Cause") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_2; @ClientString(id = 582911, message = "Go to the Blackbird Campsite") public static NpcStringId GO_TO_THE_BLACKBIRD_CAMPSITE; @ClientString(id = 582912, message = "Talk to Ferin") - public static NpcStringId TALK_TO_FERIN; + public static NpcStringId TALK_TO_FERIN_2; @ClientString(id = 582913, message = "Talk to Cyphona") public static NpcStringId TALK_TO_CYPHONA; - @ClientString(id = 583001, message = "|Lv. 100+| The Lost Garden of Spirits") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS; + @ClientString(id = 583001, message = "|Lv. 102+| The Lost Garden of Spirits") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS; - @ClientString(id = 583002, message = "|Lv. 100+| The Lost Garden of Spirits (In progress)") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_IN_PROGRESS; + @ClientString(id = 583002, message = "|Lv. 102+| The Lost Garden of Spirits (In progress)") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_IN_PROGRESS; - @ClientString(id = 583003, message = "|Lv. 100+| The Lost Garden of Spirits (Completed)") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_COMPLETED; + @ClientString(id = 583003, message = "|Lv. 102+| The Lost Garden of Spirits (Completed)") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_COMPLETED; - @ClientString(id = 583004, message = "|Lv. 100+| The Lost Garden of Spirits") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_2; + @ClientString(id = 583004, message = "|Lv. 102+| The Lost Garden of Spirits") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_2; @ClientString(id = 583012, message = "Speak with Cyphona") public static NpcStringId SPEAK_WITH_CYPHONA_2; - @ClientString(id = 583101, message = "|Lv. 100+| Unbelievable Sight") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT; + @ClientString(id = 583101, message = "|Lv. 102+| Unbelievable Sight") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT; - @ClientString(id = 583102, message = "|Lv. 100+| Unbelievable Sight (In progress)") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_IN_PROGRESS; + @ClientString(id = 583102, message = "|Lv. 102+| Unbelievable Sight (In progress)") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_IN_PROGRESS; - @ClientString(id = 583103, message = "|Lv. 100+| Unbelievable Sight (Completed)") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_COMPLETED; + @ClientString(id = 583103, message = "|Lv. 102+| Unbelievable Sight (Completed)") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_COMPLETED; - @ClientString(id = 583104, message = "|Lv. 100+| Unbelievable Sight") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_2; + @ClientString(id = 583104, message = "|Lv. 102+| Unbelievable Sight") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_2; @ClientString(id = 583112, message = "Speak with Belas") public static NpcStringId SPEAK_WITH_BELAS_2; - @ClientString(id = 583201, message = "|Lv. 100+| Energy of Sadness and Anger") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER; + @ClientString(id = 583201, message = "|Lv. 102+| Energy of Sadness and Anger") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER; - @ClientString(id = 583202, message = "|Lv. 100+| Energy of Sadness and Anger (In progress)") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_IN_PROGRESS; + @ClientString(id = 583202, message = "|Lv. 102+| Energy of Sadness and Anger (In progress)") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_IN_PROGRESS; - @ClientString(id = 583203, message = "|Lv. 100+| Energy of Sadness and Anger (Completed)") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_COMPLETED; + @ClientString(id = 583203, message = "|Lv. 102+| Energy of Sadness and Anger (Completed)") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_COMPLETED; - @ClientString(id = 583204, message = "|Lv. 100+| Energy of Sadness and Anger") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_2; + @ClientString(id = 583204, message = "|Lv. 102+| Energy of Sadness and Anger") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_2; @ClientString(id = 583212, message = "Speak with Belas") public static NpcStringId SPEAK_WITH_BELAS_3; - @ClientString(id = 583301, message = "|Lv. 100+| Put the Queen of Spirits to Sleep") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP; + @ClientString(id = 583301, message = "|Lv. 102+| Put the Queen of Spirits to Sleep") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP; - @ClientString(id = 583302, message = "|Lv. 100+| Put the Queen of Spirits to Sleep (In progress)") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_IN_PROGRESS; + @ClientString(id = 583302, message = "|Lv. 102+| Put the Queen of Spirits to Sleep ( In Progress)") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_IN_PROGRESS; - @ClientString(id = 583303, message = "|Lv. 100+| Put the Queen of Spirits to Sleep (Completed)") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_COMPLETED; + @ClientString(id = 583303, message = "|Lv. 102+| Put the Queen of Spirits to Sleep (Completed)") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_COMPLETED; - @ClientString(id = 583304, message = "|Lv. 100+| Put the Queen of Spirits to Sleep") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_2; + @ClientString(id = 583304, message = "|Lv. 102+| Put the Queen of Spirits to Sleep") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_2; @ClientString(id = 583312, message = "Speak with Ferin") public static NpcStringId SPEAK_WITH_FERIN; @@ -17767,17 +19144,17 @@ public final class NpcStringId @ClientString(id = 584405, message = "Supply Guards") public static NpcStringId SUPPLY_GUARDS; - @ClientString(id = 584501, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS; + @ClientString(id = 584501, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS; - @ClientString(id = 584502, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths (In progress)") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_IN_PROGRESS; + @ClientString(id = 584502, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths (In progress)") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_IN_PROGRESS; - @ClientString(id = 584503, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths (Completed)") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_COMPLETED; + @ClientString(id = 584503, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths (Completed)") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_COMPLETED; - @ClientString(id = 584504, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_2; + @ClientString(id = 584504, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_2; @ClientString(id = 584505, message = "Rescuing Karrod") public static NpcStringId RESCUING_KARROD; @@ -17842,17 +19219,17 @@ public final class NpcStringId @ClientString(id = 584815, message = "Speak with Leona") public static NpcStringId SPEAK_WITH_LEONA_4; - @ClientString(id = 584901, message = "|Lv. 100+| Trials for Adaptation") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION; + @ClientString(id = 584901, message = "|Lv. 102+| Trials for Adaptation") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION; - @ClientString(id = 584902, message = "|Lv. 100+| Trials for Adaptation (In progress)") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_IN_PROGRESS; + @ClientString(id = 584902, message = "|Lv. 102+| Trials for Adaptation (In progress)") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_IN_PROGRESS; - @ClientString(id = 584903, message = "|Lv. 100+| Trials for Adaptation (Completed)") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_COMPLETED; + @ClientString(id = 584903, message = "|Lv. 102+| Trials for Adaptation (Completed)") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_COMPLETED; - @ClientString(id = 584904, message = "|Lv. 100+| Trials for Adaptation") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_2; + @ClientString(id = 584904, message = "|Lv. 102+| Trials for Adaptation") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_2; @ClientString(id = 584911, message = "Speak with Ferin") public static NpcStringId SPEAK_WITH_FERIN_2; @@ -17951,10 +19328,10 @@ public final class NpcStringId public static NpcStringId TALK_TO_MELDINA; @ClientString(id = 585606, message = "Talk to Kekropus") - public static NpcStringId TALK_TO_KEKROPUS_5; + public static NpcStringId TALK_TO_KEKROPUS_7; @ClientString(id = 585607, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE_2; + public static NpcStringId TALK_TO_HISTIE_5; @ClientString(id = 585701, message = "|Lv. 102+| Secret Teleport") public static NpcStringId LV_102_SECRET_TELEPORT; @@ -17969,10 +19346,10 @@ public final class NpcStringId public static NpcStringId LV_102_SECRET_TELEPORT_2; @ClientString(id = 585705, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE_3; + public static NpcStringId TALK_TO_HISTIE_6; @ClientString(id = 585706, message = "Talk to Kekropus") - public static NpcStringId TALK_TO_KEKROPUS_6; + public static NpcStringId TALK_TO_KEKROPUS_8; @ClientString(id = 585801, message = "|Lv. 102+| Queen Ramona, Controller of the Vessel") public static NpcStringId LV_102_QUEEN_RAMONA_CONTROLLER_OF_THE_VESSEL; @@ -18142,17 +19519,17 @@ public final class NpcStringId @ClientString(id = 588211, message = "Talk with Settlen.") public static NpcStringId TALK_WITH_SETTLEN_2; - @ClientString(id = 588301, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_3; + @ClientString(id = 588301, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_3; - @ClientString(id = 588302, message = "|Lv. 104+| Undying Honor (In progress)") - public static NpcStringId LV_104_UNDYING_HONOR_IN_PROGRESS_2; + @ClientString(id = 588302, message = "|Lv. 104+| Immortal Honor (In progress)") + public static NpcStringId LV_104_IMMORTAL_HONOR_IN_PROGRESS_2; - @ClientString(id = 588303, message = "|Lv. 104+| Undying Honor (Completed)") - public static NpcStringId LV_104_UNDYING_HONOR_COMPLETED_2; + @ClientString(id = 588303, message = "|Lv. 104+| Immortal Honor (Completed)") + public static NpcStringId LV_104_IMMORTAL_HONOR_COMPLETED_2; - @ClientString(id = 588304, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_4; + @ClientString(id = 588304, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_4; @ClientString(id = 588311, message = "Talk with Keucereus.") public static NpcStringId TALK_WITH_KEUCEREUS; @@ -19624,7 +21001,7 @@ public final class NpcStringId @ClientString(id = 1000515, message = "Begone, thief! Let our bones rest in peace.") public static NpcStringId BEGONE_THIEF_LET_OUR_BONES_REST_IN_PEACE; - @ClientString(id = 1000516, message = " Leave us be, Hestui scum!") + @ClientString(id = 1000516, message = "Leave us be, Hestui scum!") public static NpcStringId LEAVE_US_BE_HESTUI_SCUM; @ClientString(id = 1000517, message = "Thieving Kakai, may bloodbugs gnaw you in your sleep!") @@ -19886,7 +21263,7 @@ public final class NpcStringId public static NpcStringId ENTRANCE_TO_THE_FOREST_OF_MIRRORS; @ClientString(id = 1010064, message = "Seal of Shilen") - public static NpcStringId SEAL_OF_SHILEN; + public static NpcStringId SEAL_OF_SHILEN_2; @ClientString(id = 1010065, message = "Entrance to the Tower of Insolence") public static NpcStringId ENTRANCE_TO_THE_TOWER_OF_INSOLENCE_2; @@ -21370,8 +22747,8 @@ public final class NpcStringId @ClientString(id = 1010729, message = "Parnassus (Lv. 97)") public static NpcStringId PARNASSUS_LV_97; - @ClientString(id = 1010730, message = "Gludio Wharf") - public static NpcStringId GLUDIO_WHARF; + @ClientString(id = 1010730, message = "Wharf of Gludio Airships") + public static NpcStringId WHARF_OF_GLUDIO_AIRSHIPS; @ClientString(id = 1010731, message = "Keucereus Alliance Base") public static NpcStringId KEUCEREUS_ALLIANCE_BASE; @@ -21400,8 +22777,8 @@ public final class NpcStringId @ClientString(id = 1010739, message = "Ruins of Ye Sagira") public static NpcStringId RUINS_OF_YE_SAGIRA; - @ClientString(id = 1010740, message = "Reliquary of the Giants") - public static NpcStringId RELIQUARY_OF_THE_GIANTS; + @ClientString(id = 1010740, message = "Heroic Tomb") + public static NpcStringId HEROIC_TOMB; @ClientString(id = 1010741, message = "Faeron Village") public static NpcStringId FAERON_VILLAGE; @@ -21409,14 +22786,14 @@ public final class NpcStringId @ClientString(id = 1010742, message = "Whispering Woods") public static NpcStringId WHISPERING_WOODS; - @ClientString(id = 1010743, message = "Blackbird Campsite (Lv.100)") - public static NpcStringId BLACKBIRD_CAMPSITE_LV_100; + @ClientString(id = 1010743, message = "Blackbird Campsite (Lv. 101)") + public static NpcStringId BLACKBIRD_CAMPSITE_LV_101; @ClientString(id = 1010744, message = "Enchanted Valley (Lv. 102)") public static NpcStringId ENCHANTED_VALLEY_LV_102; - @ClientString(id = 1010745, message = "Gludio Airship Wharf") - public static NpcStringId GLUDIO_AIRSHIP_WHARF; + @ClientString(id = 1010745, message = "Wharf of Gludio Airships") + public static NpcStringId WHARF_OF_GLUDIO_AIRSHIPS_2; @ClientString(id = 1010746, message = "Underground Gainak") public static NpcStringId UNDERGROUND_GAINAK; @@ -21787,12 +23164,93 @@ public final class NpcStringId @ClientString(id = 1036344, message = "Don't toy with the dead!") public static NpcStringId DON_T_TOY_WITH_THE_DEAD; + @ClientString(id = 1083474, message = "The battle time has ended in the Throne of Heroes. The Instance Zone will be closed shortly.") + public static NpcStringId THE_BATTLE_TIME_HAS_ENDED_IN_THE_THRONE_OF_HEROES_THE_INSTANCE_ZONE_WILL_BE_CLOSED_SHORTLY; + + @ClientString(id = 1083475, message = "Subclass / Dual Class Master Raina's message has arrived.\\nClick the question mark icon to check the message.") + public static NpcStringId SUBCLASS_DUAL_CLASS_MASTER_RAINA_S_MESSAGE_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_CHECK_THE_MESSAGE; + + @ClientString(id = 1083476, message = "A 'Lithra Bud' has appeared.") + public static NpcStringId A_LITHRA_BUD_HAS_APPEARED; + + @ClientString(id = 1083477, message = "Nerupa's power resonates with Mother Tree Guardian $s1 and begins to turn back time.") + public static NpcStringId NERUPA_S_POWER_RESONATES_WITH_MOTHER_TREE_GUARDIAN_S1_AND_BEGINS_TO_TURN_BACK_TIME; + + @ClientString(id = 1083478, message = "A 'Nerupa Bud' has appeared.") + public static NpcStringId A_NERUPA_BUD_HAS_APPEARED; + + @ClientString(id = 1083479, message = "Lithra Bloom") + public static NpcStringId LITHRA_BLOOM; + + @ClientString(id = 1083480, message = "Nerupa Bloom") + public static NpcStringId NERUPA_BLOOM; + + @ClientString(id = 1083481, message = "The Raid Boss uses the Limit Barrier.\\nFocus your attacks to destroy the Limit Barrier in 15 seconds.") + public static NpcStringId THE_RAID_BOSS_USES_THE_LIMIT_BARRIER_NFOCUS_YOUR_ATTACKS_TO_DESTROY_THE_LIMIT_BARRIER_IN_15_SECONDS; + + @ClientString(id = 1083482, message = "Soul Plunderer Death Reaper has appeared to guide the dead Raid Boss.") + public static NpcStringId SOUL_PLUNDERER_DEATH_REAPER_HAS_APPEARED_TO_GUIDE_THE_DEAD_RAID_BOSS; + @ClientString(id = 1083483, message = "Cannon Loaded") public static NpcStringId CANNON_LOADED; @ClientString(id = 1083484, message = "Fire Cannon (Preparing)") public static NpcStringId FIRE_CANNON_PREPARING; + @ClientString(id = 1083485, message = "Fools who are shackled by the past!") + public static NpcStringId FOOLS_WHO_ARE_SHACKLED_BY_THE_PAST; + + @ClientString(id = 1083486, message = "Protect me, deadly fragrance!") + public static NpcStringId PROTECT_ME_DEADLY_FRAGRANCE; + + @ClientString(id = 1083487, message = "Where is that craven Nerupa?") + public static NpcStringId WHERE_IS_THAT_CRAVEN_NERUPA; + + @ClientString(id = 1083488, message = "Do you seriously believe that you can restore the Mother Tree to what it was before?!") + public static NpcStringId DO_YOU_SERIOUSLY_BELIEVE_THAT_YOU_CAN_RESTORE_THE_MOTHER_TREE_TO_WHAT_IT_WAS_BEFORE; + + @ClientString(id = 1083489, message = "So, you don't show yourself even at the very end... Nerupa...") + public static NpcStringId SO_YOU_DON_T_SHOW_YOURSELF_EVEN_AT_THE_VERY_END_NERUPA; + + @ClientString(id = 1083490, message = "As long as the Mother Tree stands... I.... will never disappear...") + public static NpcStringId AS_LONG_AS_THE_MOTHER_TREE_STANDS_I_WILL_NEVER_DISAPPEAR; + + @ClientString(id = 1083491, message = "Who put you up to this?!") + public static NpcStringId WHO_PUT_YOU_UP_TO_THIS; + + @ClientString(id = 1083492, message = "You have destroyed the Limit Barrier!") + public static NpcStringId YOU_HAVE_DESTROYED_THE_LIMIT_BARRIER; + + @ClientString(id = 1083493, message = "You have failed to destroy the Limit Barrier.\\nThe raid boss fully recovers its HP.") + public static NpcStringId YOU_HAVE_FAILED_TO_DESTROY_THE_LIMIT_BARRIER_NTHE_RAID_BOSS_FULLY_RECOVERS_ITS_HP; + + @ClientString(id = 1083494, message = "1 hour has passed.\\nDeath Reaper leaves leisurely with the soul of the raid boss.") + public static NpcStringId ONE_HOUR_HAS_PASSED_NDEATH_REAPER_LEAVES_LEISURELY_WITH_THE_SOUL_OF_THE_RAID_BOSS; + + @ClientString(id = 1083495, message = "'Lithra' has revealed itself.") + public static NpcStringId LITHRA_HAS_REVEALED_ITSELF; + + @ClientString(id = 1083496, message = "'Nerupa Aprias' is beginning to appear.") + public static NpcStringId NERUPA_APRIAS_IS_BEGINNING_TO_APPEAR; + + @ClientString(id = 1083497, message = "Lithra's power has weakened.") + public static NpcStringId LITHRA_S_POWER_HAS_WEAKENED; + + @ClientString(id = 1083498, message = "Nerupa's power has weakend.") + public static NpcStringId NERUPA_S_POWER_HAS_WEAKEND; + + @ClientString(id = 1083499, message = "'Lithra Aprias' is beginning to appear.") + public static NpcStringId LITHRA_APRIAS_IS_BEGINNING_TO_APPEAR; + + @ClientString(id = 1083500, message = "Lithra has hidden itself in the fragrance of flowers.") + public static NpcStringId LITHRA_HAS_HIDDEN_ITSELF_IN_THE_FRAGRANCE_OF_FLOWERS; + + @ClientString(id = 1083501, message = "Lithra's defeat has tipped the balance of power, and Nerupa's power grows stronger.") + public static NpcStringId LITHRA_S_DEFEAT_HAS_TIPPED_THE_BALANCE_OF_POWER_AND_NERUPA_S_POWER_GROWS_STRONGER; + + @ClientString(id = 1083502, message = "Nerupa's power begins to turn back time.") + public static NpcStringId NERUPA_S_POWER_BEGINS_TO_TURN_BACK_TIME; + @ClientString(id = 1110001, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_419_REPLY_0_CAN_BE_USED_FOR_ITEM_TRANSPORTATION_BUTTON; @@ -22723,7 +24181,7 @@ public final class NpcStringId @ClientString(id = 1116136, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_2_REPLY_420_JUDICATOR_BUTTON; - @ClientString(id = 1119999, message = " ") + @ClientString(id = 1119999, message = "") public static NpcStringId EMPTY_4; @ClientString(id = 1120001, message = "Greyclaw Kutus (lv23)") @@ -23383,8 +24841,8 @@ public final class NpcStringId @ClientString(id = 1120219, message = "Aenkinel (Lv. 84)") public static NpcStringId AENKINEL_LV_84; - @ClientString(id = 1120220, message = "Tacrakahn (Lv. 89)") - public static NpcStringId TACRAKAHN_LV_89; + @ClientString(id = 1120220, message = "Taklacan (Lv. 89)") + public static NpcStringId TAKLACAN_LV_89; @ClientString(id = 1120221, message = "Torumba (Lv. 89)") public static NpcStringId TORUMBA_LV_89; @@ -24079,8 +25537,8 @@ public final class NpcStringId @ClientString(id = 1300134, message = "Boundary Fortress") public static NpcStringId BOUNDARY_FORTRESS; - @ClientString(id = 1300135, message = "$s1hour $s2minute") - public static NpcStringId S1HOUR_S2MINUTE; + @ClientString(id = 1300135, message = "$s1 hr. $s2 min.") + public static NpcStringId S1_HR_S2_MIN; @ClientString(id = 1300136, message = "Not designated") public static NpcStringId NOT_DESIGNATED; @@ -24467,13 +25925,13 @@ public final class NpcStringId public static NpcStringId THE_4_GATHERING_DEVICES_ARE_ACTIVATED_THE_DARK_SUMMON_CIRCLE_WILL_SOON_DISAPPEAR; @ClientString(id = 1600052, message = "3 seconds until arrival. 3 seconds until arrival.") - public static NpcStringId THREE_SECONDS_UNTIL_ARRIVAL_3_SECONDS_UNTIL_ARRIVAL; + public static NpcStringId THREE_SECONDS_UNTIL_ARRIVAL_THREE_SECONDS_UNTIL_ARRIVAL; @ClientString(id = 1600053, message = "2 seconds until arrival. 2 seconds until arrival.") - public static NpcStringId TWO_SECONDS_UNTIL_ARRIVAL_2_SECONDS_UNTIL_ARRIVAL; + public static NpcStringId TWO_SECONDS_UNTIL_ARRIVAL_TWO_SECONDS_UNTIL_ARRIVAL; @ClientString(id = 1600054, message = "1 second until arrival. 1 second until arrival.") - public static NpcStringId ONE_SECOND_UNTIL_ARRIVAL_1_SECOND_UNTIL_ARRIVAL; + public static NpcStringId ONE_SECOND_UNTIL_ARRIVAL_ONE_SECOND_UNTIL_ARRIVAL; @ClientString(id = 1600055, message = "Reinforcements arrived. Reinforcements arrived.") public static NpcStringId REINFORCEMENTS_ARRIVED_REINFORCEMENTS_ARRIVED; @@ -25039,8 +26497,8 @@ public final class NpcStringId @ClientString(id = 1717834, message = "Use the Defense Battery in the 2nd floor and defeat the Embryo Colony.") public static NpcStringId USE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_AND_DEFEAT_THE_EMBRYO_COLONY; - @ClientString(id = 1717835, message = "You received the cannon dedicated to the Defense Battery. Use the Defense Battery in the 2nd floor to inflict critical damage on Kain.\\nOpen the Quest window and check out the mission.") - public static NpcStringId YOU_RECEIVED_THE_CANNON_DEDICATED_TO_THE_DEFENSE_BATTERY_USE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_TO_INFLICT_CRITICAL_DAMAGE_ON_KAIN_NOPEN_THE_QUEST_WINDOW_AND_CHECK_OUT_THE_MISSION; + @ClientString(id = 1717835, message = "You received the cannon dedicated to the Defense Battery.\\\\nUse the Defense Battery in the 2nd floor to inflict critical damage on Kain.\\\\nOpen the Quest window and check out the mission.") + public static NpcStringId YOU_RECEIVED_THE_CANNON_DEDICATED_TO_THE_DEFENSE_BATTERY_NUSE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_TO_INFLICT_CRITICAL_DAMAGE_ON_KAIN_NOPEN_THE_QUEST_WINDOW_AND_CHECK_OUT_THE_MISSION; @ClientString(id = 1717836, message = "A critical damage is inflicted on Kain due to the attack on the Defense Battery.") public static NpcStringId A_CRITICAL_DAMAGE_IS_INFLICTED_ON_KAIN_DUE_TO_THE_ATTACK_ON_THE_DEFENSE_BATTERY; @@ -25174,6 +26632,381 @@ public final class NpcStringId @ClientString(id = 1717889, message = "Go to where Kain and your allies are.") public static NpcStringId GO_TO_WHERE_KAIN_AND_YOUR_ALLIES_ARE; + @ClientString(id = 1717890, message = "The Spirit's Evil Thoughts are being concentrated.") + public static NpcStringId THE_SPIRIT_S_EVIL_THOUGHTS_ARE_BEING_CONCENTRATED; + + @ClientString(id = 1717891, message = "The concentrated Spirit's Evil Thoughts have grown more powerful.") + public static NpcStringId THE_CONCENTRATED_SPIRIT_S_EVIL_THOUGHTS_HAVE_GROWN_MORE_POWERFUL; + + @ClientString(id = 1717892, message = "The concentrated Spirit's Evil Thoughts have turned into Harpe.") + public static NpcStringId THE_CONCENTRATED_SPIRIT_S_EVIL_THOUGHTS_HAVE_TURNED_INTO_HARPE; + + @ClientString(id = 1717893, message = "A door that leads to Isabella has opened.") + public static NpcStringId A_DOOR_THAT_LEADS_TO_ISABELLA_HAS_OPENED; + + @ClientString(id = 1717894, message = "Leona Blackbird has appeared at the Primeval Isle Wharf and will wait 15 minutes for the warrior who has to report to Admiral Keucereus.") + public static NpcStringId LEONA_BLACKBIRD_HAS_APPEARED_AT_THE_PRIMEVAL_ISLE_WHARF_AND_WILL_WAIT_15_MINUTES_FOR_THE_WARRIOR_WHO_HAS_TO_REPORT_TO_ADMIRAL_KEUCEREUS; + + @ClientString(id = 1717895, message = "You can pick up the Hatchling Scales.") + public static NpcStringId YOU_CAN_PICK_UP_THE_HATCHLING_SCALES; + + @ClientString(id = 1717896, message = "Use your skills to attack.") + public static NpcStringId USE_YOUR_SKILLS_TO_ATTACK; + + @ClientString(id = 1717897, message = "Double-click the equipment in your inventory to equip them.") + public static NpcStringId DOUBLE_CLICK_THE_EQUIPMENT_IN_YOUR_INVENTORY_TO_EQUIP_THEM; + + @ClientString(id = 1717898, message = "Tarti is worried about $s1.") + public static NpcStringId TARTI_IS_WORRIED_ABOUT_S1; + + @ClientString(id = 1717899, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Soulshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_SOULSHOTS; + + @ClientString(id = 1717900, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Blessed Spiritshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_BLESSED_SPIRITSHOTS; + + @ClientString(id = 1717901, message = "Use a skill to become free of the monster's petrifaction.") + public static NpcStringId USE_A_SKILL_TO_BECOME_FREE_OF_THE_MONSTER_S_PETRIFACTION; + + @ClientString(id = 1717902, message = "Fight together with Stig Mach to slay the Gem Dragon.") + public static NpcStringId FIGHT_TOGETHER_WITH_STIG_MACH_TO_SLAY_THE_GEM_DRAGON; + + @ClientString(id = 1717903, message = "I won't let the blood spilled by my comrades be wasted.") + public static NpcStringId I_WON_T_LET_THE_BLOOD_SPILLED_BY_MY_COMRADES_BE_WASTED; + + @ClientString(id = 1717904, message = "Don't take us lightly!") + public static NpcStringId DON_T_TAKE_US_LIGHTLY; + + @ClientString(id = 1717905, message = "Herphah. I didn't know you'd come.") + public static NpcStringId HERPHAH_I_DIDN_T_KNOW_YOU_D_COME; + + @ClientString(id = 1717906, message = "It's not the time to be wandering around anymore!") + public static NpcStringId IT_S_NOT_THE_TIME_TO_BE_WANDERING_AROUND_ANYMORE; + + @ClientString(id = 1717907, message = "Try to keep up with me if you can, kid.") + public static NpcStringId TRY_TO_KEEP_UP_WITH_ME_IF_YOU_CAN_KID; + + @ClientString(id = 1717908, message = "There's no time to look back.") + public static NpcStringId THERE_S_NO_TIME_TO_LOOK_BACK; + + @ClientString(id = 1717909, message = "Don't think that we'll lose!") + public static NpcStringId DON_T_THINK_THAT_WE_LL_LOSE; + + @ClientString(id = 1717910, message = "Trust the weapon in your hand!") + public static NpcStringId TRUST_THE_WEAPON_IN_YOUR_HAND; + + @ClientString(id = 1717911, message = "As long as I'm here, you will survive!") + public static NpcStringId AS_LONG_AS_I_M_HERE_YOU_WILL_SURVIVE; + + @ClientString(id = 1717912, message = "How come we didn't know that Antharas had these abilities until now?") + public static NpcStringId HOW_COME_WE_DIDN_T_KNOW_THAT_ANTHARAS_HAD_THESE_ABILITIES_UNTIL_NOW; + + @ClientString(id = 1717913, message = "I won't let you take more lives of my comrades.") + public static NpcStringId I_WON_T_LET_YOU_TAKE_MORE_LIVES_OF_MY_COMRADES; + + @ClientString(id = 1717914, message = "Say thanks when you feel grateful.") + public static NpcStringId SAY_THANKS_WHEN_YOU_FEEL_GRATEFUL; + + @ClientString(id = 1717915, message = "Who'll be surprised the most if we become the Balthus Knights?") + public static NpcStringId WHO_LL_BE_SURPRISED_THE_MOST_IF_WE_BECOME_THE_BALTHUS_KNIGHTS; + + @ClientString(id = 1717916, message = "As if anyone would be scared of a hatchling!") + public static NpcStringId AS_IF_ANYONE_WOULD_BE_SCARED_OF_A_HATCHLING; + + @ClientString(id = 1717917, message = "Antharas is mine. I won't let anyone else take him, not even you!") + public static NpcStringId ANTHARAS_IS_MINE_I_WON_T_LET_ANYONE_ELSE_TAKE_HIM_NOT_EVEN_YOU; + + @ClientString(id = 1717918, message = "It looks just like the hatchling we saw before, doesn't it?") + public static NpcStringId IT_LOOKS_JUST_LIKE_THE_HATCHLING_WE_SAW_BEFORE_DOESN_T_IT; + + @ClientString(id = 1717919, message = "They wouldn't go to Antharas without us, would they?") + public static NpcStringId THEY_WOULDN_T_GO_TO_ANTHARAS_WITHOUT_US_WOULD_THEY; + + @ClientString(id = 1717920, message = "I'll protect you!") + public static NpcStringId I_LL_PROTECT_YOU; + + @ClientString(id = 1717921, message = "I didn't know that Antharas could polymorph.") + public static NpcStringId I_DIDN_T_KNOW_THAT_ANTHARAS_COULD_POLYMORPH; + + @ClientString(id = 1717922, message = "I wonder if we can get some alchemy materials from Antharas?") + public static NpcStringId I_WONDER_IF_WE_CAN_GET_SOME_ALCHEMY_MATERIALS_FROM_ANTHARAS; + + @ClientString(id = 1717923, message = "Thank you, it was a little dangerous just now.") + public static NpcStringId THANK_YOU_IT_WAS_A_LITTLE_DANGEROUS_JUST_NOW; + + @ClientString(id = 1717924, message = "You mustn't forget that your shield what stands between death and your comrades.") + public static NpcStringId YOU_MUSTN_T_FORGET_THAT_YOUR_SHIELD_WHAT_STANDS_BETWEEN_DEATH_AND_YOUR_COMRADES; + + @ClientString(id = 1717925, message = "Be careful! You must live to keep your comrades alive too!") + public static NpcStringId BE_CAREFUL_YOU_MUST_LIVE_TO_KEEP_YOUR_COMRADES_ALIVE_TOO; + + @ClientString(id = 1717926, message = "Your role is to keep the enemy distracted!") + public static NpcStringId YOUR_ROLE_IS_TO_KEEP_THE_ENEMY_DISTRACTED; + + @ClientString(id = 1717927, message = "Don't be nervous that his form has changed. I know that we'll leave here alive.") + public static NpcStringId DON_T_BE_NERVOUS_THAT_HIS_FORM_HAS_CHANGED_I_KNOW_THAT_WE_LL_LEAVE_HERE_ALIVE; + + @ClientString(id = 1717928, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717929, message = "He may be big, but he's just as slow!") + public static NpcStringId HE_MAY_BE_BIG_BUT_HE_S_JUST_AS_SLOW; + + @ClientString(id = 1717930, message = "I was worried when I heard that he could polymorph, but it's no big deal, huh?") + public static NpcStringId I_WAS_WORRIED_WHEN_I_HEARD_THAT_HE_COULD_POLYMORPH_BUT_IT_S_NO_BIG_DEAL_HUH; + + @ClientString(id = 1717931, message = "Hey, rookie! Are you nervous?") + public static NpcStringId HEY_ROOKIE_ARE_YOU_NERVOUS; + + @ClientString(id = 1717932, message = "This battle will never end unless we give everything we've got into our attacks.") + public static NpcStringId THIS_BATTLE_WILL_NEVER_END_UNLESS_WE_GIVE_EVERYTHING_WE_VE_GOT_INTO_OUR_ATTACKS; + + @ClientString(id = 1717933, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_2; + + @ClientString(id = 1717934, message = "It's crucial that you attack where the enemy is most vulnerable.") + public static NpcStringId IT_S_CRUCIAL_THAT_YOU_ATTACK_WHERE_THE_ENEMY_IS_MOST_VULNERABLE; + + @ClientString(id = 1717935, message = "Our single powerful attack may present an opportunity to fell the enemy.") + public static NpcStringId OUR_SINGLE_POWERFUL_ATTACK_MAY_PRESENT_AN_OPPORTUNITY_TO_FELL_THE_ENEMY; + + @ClientString(id = 1717936, message = "Sometimes, it's more effective to attack the enemy from behind.") + public static NpcStringId SOMETIMES_IT_S_MORE_EFFECTIVE_TO_ATTACK_THE_ENEMY_FROM_BEHIND; + + @ClientString(id = 1717937, message = "We can hide at the moment of danger.") + public static NpcStringId WE_CAN_HIDE_AT_THE_MOMENT_OF_DANGER; + + @ClientString(id = 1717938, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_3; + + @ClientString(id = 1717939, message = "Our steadfast presence in the back will reassure our comrades.") + public static NpcStringId OUR_STEADFAST_PRESENCE_IN_THE_BACK_WILL_REASSURE_OUR_COMRADES; + + @ClientString(id = 1717940, message = "More powerful attacks. Dealing critical wounds!") + public static NpcStringId MORE_POWERFUL_ATTACKS_DEALING_CRITICAL_WOUNDS; + + @ClientString(id = 1717941, message = "Don't be distracted, focus and attack!") + public static NpcStringId DON_T_BE_DISTRACTED_FOCUS_AND_ATTACK; + + @ClientString(id = 1717942, message = "Trust your comrades. And don't stop attacking.") + public static NpcStringId TRUST_YOUR_COMRADES_AND_DON_T_STOP_ATTACKING; + + @ClientString(id = 1717943, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_4; + + @ClientString(id = 1717944, message = "You're in my way, so could you get away from me?") + public static NpcStringId YOU_RE_IN_MY_WAY_SO_COULD_YOU_GET_AWAY_FROM_ME; + + @ClientString(id = 1717945, message = "You have to concentrate during the battle. You ought to protect your servitor yourself, right?") + public static NpcStringId YOU_HAVE_TO_CONCENTRATE_DURING_THE_BATTLE_YOU_OUGHT_TO_PROTECT_YOUR_SERVITOR_YOURSELF_RIGHT; + + @ClientString(id = 1717946, message = "You and your servitor are like one. Don't let your guard down just because you aren't hurt.") + public static NpcStringId YOU_AND_YOUR_SERVITOR_ARE_LIKE_ONE_DON_T_LET_YOUR_GUARD_DOWN_JUST_BECAUSE_YOU_AREN_T_HURT; + + @ClientString(id = 1717947, message = "Polymorph, is it? How annoying.") + public static NpcStringId POLYMORPH_IS_IT_HOW_ANNOYING; + + @ClientString(id = 1717948, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_5; + + @ClientString(id = 1717949, message = "Don't let the dragon scare you. It's just one of many enemies we'll come across.") + public static NpcStringId DON_T_LET_THE_DRAGON_SCARE_YOU_IT_S_JUST_ONE_OF_MANY_ENEMIES_WE_LL_COME_ACROSS; + + @ClientString(id = 1717950, message = "Your strength makes us more powerful.") + public static NpcStringId YOUR_STRENGTH_MAKES_US_MORE_POWERFUL; + + @ClientString(id = 1717951, message = "When the enemy is almost down, that's when we must attack with all our strength.") + public static NpcStringId WHEN_THE_ENEMY_IS_ALMOST_DOWN_THAT_S_WHEN_WE_MUST_ATTACK_WITH_ALL_OUR_STRENGTH; + + @ClientString(id = 1717952, message = "Stay on your toes. This is when we should muster our strength.") + public static NpcStringId STAY_ON_YOUR_TOES_THIS_IS_WHEN_WE_SHOULD_MUSTER_OUR_STRENGTH; + + @ClientString(id = 1717953, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_6; + + @ClientString(id = 1717954, message = "We've got to stay alive until the very end.") + public static NpcStringId WE_VE_GOT_TO_STAY_ALIVE_UNTIL_THE_VERY_END; + + @ClientString(id = 1717955, message = "Hey, you won't be healed if you stray too far away!") + public static NpcStringId HEY_YOU_WON_T_BE_HEALED_IF_YOU_STRAY_TOO_FAR_AWAY; + + @ClientString(id = 1717956, message = "The choice you make at the most critical moment will decide everyone's fate.") + public static NpcStringId THE_CHOICE_YOU_MAKE_AT_THE_MOST_CRITICAL_MOMENT_WILL_DECIDE_EVERYONE_S_FATE; + + @ClientString(id = 1717957, message = "Darn it... What is that now? I wasn't told about this.") + public static NpcStringId DARN_IT_WHAT_IS_THAT_NOW_I_WASN_T_TOLD_ABOUT_THIS; + + @ClientString(id = 1717958, message = "This weapon will give you strength.") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_7; + + @ClientString(id = 1717959, message = "I can't lose to a dragon that has nothing but its massive size!") + public static NpcStringId I_CAN_T_LOSE_TO_A_DRAGON_THAT_HAS_NOTHING_BUT_ITS_MASSIVE_SIZE; + + @ClientString(id = 1717960, message = "Hey, can't you put more power into your attacks?") + public static NpcStringId HEY_CAN_T_YOU_PUT_MORE_POWER_INTO_YOUR_ATTACKS; + + @ClientString(id = 1717961, message = "Keep attacking without rest. That's the best you can do.") + public static NpcStringId KEEP_ATTACKING_WITHOUT_REST_THAT_S_THE_BEST_YOU_CAN_DO; + + @ClientString(id = 1717962, message = "Oh, we should really go all out with our attacks now!") + public static NpcStringId OH_WE_SHOULD_REALLY_GO_ALL_OUT_WITH_OUR_ATTACKS_NOW; + + @ClientString(id = 1717963, message = "Use this weapon. It will give you strength.") + public static NpcStringId USE_THIS_WEAPON_IT_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717964, message = "I wonder how old this dragon is?") + public static NpcStringId I_WONDER_HOW_OLD_THIS_DRAGON_IS; + + @ClientString(id = 1717965, message = "I'm fast, huh? I can attack even faster.") + public static NpcStringId I_M_FAST_HUH_I_CAN_ATTACK_EVEN_FASTER; + + @ClientString(id = 1717966, message = "You have to be able to use your power at the right time.") + public static NpcStringId YOU_HAVE_TO_BE_ABLE_TO_USE_YOUR_POWER_AT_THE_RIGHT_TIME; + + @ClientString(id = 1717967, message = "Wow! I'd love to do something like that too.") + public static NpcStringId WOW_I_D_LOVE_TO_DO_SOMETHING_LIKE_THAT_TOO; + + @ClientString(id = 1717968, message = "It's tougher than I thought. This weapon will give you strength.") + public static NpcStringId IT_S_TOUGHER_THAN_I_THOUGHT_THIS_WEAPON_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717969, message = "Don't let your guard down. Danger can strike you in an instant.") + public static NpcStringId DON_T_LET_YOUR_GUARD_DOWN_DANGER_CAN_STRIKE_YOU_IN_AN_INSTANT; + + @ClientString(id = 1717970, message = "We have to make good use of the Energy of Wind.") + public static NpcStringId WE_HAVE_TO_MAKE_GOOD_USE_OF_THE_ENERGY_OF_WIND; + + @ClientString(id = 1717971, message = "Trust your comrades and give your best in the battle.") + public static NpcStringId TRUST_YOUR_COMRADES_AND_GIVE_YOUR_BEST_IN_THE_BATTLE; + + @ClientString(id = 1717972, message = "There must be other things not yet known about Antharas, right?") + public static NpcStringId THERE_MUST_BE_OTHER_THINGS_NOT_YET_KNOWN_ABOUT_ANTHARAS_RIGHT; + + @ClientString(id = 1717973, message = "This weapon will give you strength. ") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_8; + + @ClientString(id = 1717974, message = "We'll be seeing each other often from here on.") + public static NpcStringId WE_LL_BE_SEEING_EACH_OTHER_OFTEN_FROM_HERE_ON; + + @ClientString(id = 1717975, message = "Join the battle against Antharas with your comrades.") + public static NpcStringId JOIN_THE_BATTLE_AGAINST_ANTHARAS_WITH_YOUR_COMRADES; + + @ClientString(id = 1717976, message = "Use the skill 'Shield Impact'.") + public static NpcStringId USE_THE_SKILL_SHIELD_IMPACT; + + @ClientString(id = 1717977, message = "Use the skill 'Armor Destruction'.") + public static NpcStringId USE_THE_SKILL_ARMOR_DESTRUCTION; + + @ClientString(id = 1717978, message = "Use the skill 'Chain Blow'.") + public static NpcStringId USE_THE_SKILL_CHAIN_BLOW; + + @ClientString(id = 1717979, message = "Use the skill 'Quick Shot'.") + public static NpcStringId USE_THE_SKILL_QUICK_SHOT; + + @ClientString(id = 1717980, message = "Use the skill 'Elemental Storm'.") + public static NpcStringId USE_THE_SKILL_ELEMENTAL_STORM; + + @ClientString(id = 1717981, message = "Use the skill 'Resolving Bash'.") + public static NpcStringId USE_THE_SKILL_RESOLVING_BASH; + + @ClientString(id = 1717982, message = "Use the skill 'Mark of Weakness'.") + public static NpcStringId USE_THE_SKILL_MARK_OF_WEAKNESS; + + @ClientString(id = 1717983, message = "Use the skill 'Dark Blast'.") + public static NpcStringId USE_THE_SKILL_DARK_BLAST; + + @ClientString(id = 1717984, message = "Use the skill 'Lateral Hit'.") + public static NpcStringId USE_THE_SKILL_LATERAL_HIT; + + @ClientString(id = 1717985, message = "When 'Sign of Storm' reaches Lv. 3 by using 'Hydro Attack',\\ntry using 'Hydro Flare'.") + public static NpcStringId WHEN_SIGN_OF_STORM_REACHES_LV_3_BY_USING_HYDRO_ATTACK_NTRY_USING_HYDRO_FLARE; + + @ClientString(id = 1717986, message = "You cannot continue this quest because it has been deleted.") + public static NpcStringId YOU_CANNOT_CONTINUE_THIS_QUEST_BECAUSE_IT_HAS_BEEN_DELETED; + + @ClientString(id = 1717987, message = "You have to restart the quest because the battle has ended.") + public static NpcStringId YOU_HAVE_TO_RESTART_THE_QUEST_BECAUSE_THE_BATTLE_HAS_ENDED; + + @ClientString(id = 1717988, message = "Press the 'Tab' key to check your inventory.") + public static NpcStringId PRESS_THE_TAB_KEY_TO_CHECK_YOUR_INVENTORY; + + @ClientString(id = 1717989, message = "Double-click Paulina's equipment set to obtain the equipment.") + public static NpcStringId DOUBLE_CLICK_PAULINA_S_EQUIPMENT_SET_TO_OBTAIN_THE_EQUIPMENT; + + @ClientString(id = 1717990, message = "Double-click weapons and armor to equip them.") + public static NpcStringId DOUBLE_CLICK_WEAPONS_AND_ARMOR_TO_EQUIP_THEM; + + @ClientString(id = 1717991, message = "'Roien' is calling $s1.") + public static NpcStringId ROIEN_IS_CALLING_S1; + + @ClientString(id = 1717992, message = "'Brome' is calling $s1.") + public static NpcStringId BROME_IS_CALLING_S1; + + @ClientString(id = 1717993, message = "'Mion' is calling $s1.") + public static NpcStringId MION_IS_CALLING_S1; + + @ClientString(id = 1717994, message = "'Kayleen' is calling $s1.") + public static NpcStringId KAYLEEN_IS_CALLING_S1; + + @ClientString(id = 1717995, message = "'Takhun' is calling $s1.") + public static NpcStringId TAKHUN_IS_CALLING_S1; + + @ClientString(id = 1717996, message = "'Elena' is calling $s1.") + public static NpcStringId ELENA_IS_CALLING_S1; + + @ClientString(id = 1717997, message = "'Ultrian' is calling $s1.") + public static NpcStringId ULTRIAN_IS_CALLING_S1; + + @ClientString(id = 1717998, message = "'Tariah' is calling $s1.") + public static NpcStringId TARIAH_IS_CALLING_S1; + + @ClientString(id = 1717999, message = "'Narita' is calling $s1.") + public static NpcStringId NARITA_IS_CALLING_S1; + + @ClientString(id = 1718000, message = "'Elias' is calling $s1.") + public static NpcStringId ELIAS_IS_CALLING_S1; + + @ClientString(id = 1718001, message = "Equip an Antharas Shaper.") + public static NpcStringId EQUIP_AN_ANTHARAS_SHAPER; + + @ClientString(id = 1718002, message = "Equip an Antharas Slasher.") + public static NpcStringId EQUIP_AN_ANTHARAS_SLASHER; + + @ClientString(id = 1718003, message = "Equip an Antharas Thrower.") + public static NpcStringId EQUIP_AN_ANTHARAS_THROWER; + + @ClientString(id = 1718004, message = "Equip an Antharas Buster.") + public static NpcStringId EQUIP_AN_ANTHARAS_BUSTER; + + @ClientString(id = 1718005, message = "Equip an Antharas Cutter.") + public static NpcStringId EQUIP_AN_ANTHARAS_CUTTER; + + @ClientString(id = 1718006, message = "Equip an Antharas Stormer.") + public static NpcStringId EQUIP_AN_ANTHARAS_STORMER; + + @ClientString(id = 1718007, message = "Equip an Antharas Fighter.") + public static NpcStringId EQUIP_AN_ANTHARAS_FIGHTER; + + @ClientString(id = 1718008, message = "Equip an Antharas Dualsword.") + public static NpcStringId EQUIP_AN_ANTHARAS_DUALSWORD; + + @ClientString(id = 1718009, message = "Use the item skill 'Antharas Breath' on Antharas.") + public static NpcStringId USE_THE_ITEM_SKILL_ANTHARAS_BREATH_ON_ANTHARAS; + + @ClientString(id = 1718010, message = "Press Alt + K to open 'Learn Skill' tab and learn new skills.\\nThe skills in the 'Active' tab can be added to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_LEARN_SKILL_TAB_AND_LEARN_NEW_SKILLS_NTHE_SKILLS_IN_THE_ACTIVE_TAB_CAN_BE_ADDED_TO_THE_SHORTCUTS; + + @ClientString(id = 1718011, message = "Talk to Herphah.") + public static NpcStringId TALK_TO_HERPHAH_6; + + @ClientString(id = 1718012, message = "New reinforcements have arrived.") + public static NpcStringId NEW_REINFORCEMENTS_HAVE_ARRIVED; + + @ClientString(id = 1718013, message = "Antharas has polymorphed.") + public static NpcStringId ANTHARAS_HAS_POLYMORPHED; + + @ClientString(id = 1718014, message = "Now, please return to the Balthus Knight Barracks and recover...") + public static NpcStringId NOW_PLEASE_RETURN_TO_THE_BALTHUS_KNIGHT_BARRACKS_AND_RECOVER; + @ClientString(id = 1800001, message = "(Queen Ant) # $s1's Command Channel has looting rights.") public static NpcStringId QUEEN_ANT_S1_S_COMMAND_CHANNEL_HAS_LOOTING_RIGHTS; @@ -27599,10 +29432,10 @@ public final class NpcStringId public static NpcStringId FOUR_SECONDS_ARE_REMAINING; @ClientString(id = 1800809, message = "3 seconds are remaining.") - public static NpcStringId THREE_SECONDS_ARE_REMAINING_3; + public static NpcStringId THREE_SECONDS_ARE_REMAINING; @ClientString(id = 1800810, message = "2 seconds are remaining.") - public static NpcStringId TWO_SECONDS_ARE_REMAINING_3; + public static NpcStringId TWO_SECONDS_ARE_REMAINING; @ClientString(id = 1800811, message = "1 seconds are remaining.") public static NpcStringId ONE_SECONDS_ARE_REMAINING; @@ -27766,7 +29599,7 @@ public final class NpcStringId @ClientString(id = 1800864, message = "I am tired! Do not wake me up again!") public static NpcStringId I_AM_TIRED_DO_NOT_WAKE_ME_UP_AGAIN; - @ClientString(id = 1800865, message = " Intruder detected ") + @ClientString(id = 1800865, message = "Intruder detected ") public static NpcStringId INTRUDER_DETECTED; @ClientString(id = 1800866, message = "The candles can lead you to Zaken. Destroy him") @@ -28552,8 +30385,8 @@ public final class NpcStringId @ClientString(id = 1801126, message = "Taklacan is gathering its strength and launching an attack.") public static NpcStringId TAKLACAN_IS_GATHERING_ITS_STRENGTH_AND_LAUNCHING_AN_ATTACK; - @ClientString(id = 1801127, message = "Taklacan received Kokracon and became weaker.") - public static NpcStringId TAKLACAN_RECEIVED_KOKRACON_AND_BECAME_WEAKER; + @ClientString(id = 1801127, message = "Taklacan is weakened by the power of Kokracon.") + public static NpcStringId TAKLACAN_IS_WEAKENED_BY_THE_POWER_OF_KOKRACON; @ClientString(id = 1801128, message = "Kokracon's power can be felt nearby.") public static NpcStringId KOKRACON_S_POWER_CAN_BE_FELT_NEARBY; @@ -30505,10 +32338,10 @@ public final class NpcStringId @ClientString(id = 1801779, message = "Hey, you! Help me out a little with this incubation.") public static NpcStringId HEY_YOU_HELP_ME_OUT_A_LITTLE_WITH_THIS_INCUBATION; - @ClientString(id = 1801780, message = " * Draco's Birth Event in Progress *") + @ClientString(id = 1801780, message = "* Draco's Birth Event in Progress *") public static NpcStringId DRACO_S_BIRTH_EVENT_IN_PROGRESS; - @ClientString(id = 1801781, message = " * Reach for Good Luck *") + @ClientString(id = 1801781, message = "* Reach for Good Luck *") public static NpcStringId REACH_FOR_GOOD_LUCK; @ClientString(id = 1801782, message = "Chaos Shield Weakened") @@ -31771,11 +33604,11 @@ public final class NpcStringId @ClientString(id = 1802387, message = "Ho ho ho! Happy Holidays!") public static NpcStringId HO_HO_HO_HAPPY_HOLIDAYS; - @ClientString(id = 1802388, message = "Hey there, kid! Try the Wintermelon Event, will you? ") - public static NpcStringId HEY_THERE_KID_TRY_THE_WINTERMELON_EVENT_WILL_YOU; + @ClientString(id = 1802388, message = "Hey there, kid! Try the Snowy Squash Event, will you? ") + public static NpcStringId HEY_THERE_KID_TRY_THE_SNOWY_SQUASH_EVENT_WILL_YOU; - @ClientString(id = 1802389, message = "How far did you look? Come on, try breaking a Wintermelon. You'll get a lot of rewards!") - public static NpcStringId HOW_FAR_DID_YOU_LOOK_COME_ON_TRY_BREAKING_A_WINTERMELON_YOU_LL_GET_A_LOT_OF_REWARDS; + @ClientString(id = 1802389, message = "How far did you look? Come on, try breaking a Snowy Squash. You'll get a lot of rewards!") + public static NpcStringId HOW_FAR_DID_YOU_LOOK_COME_ON_TRY_BREAKING_A_SNOWY_SQUASH_YOU_LL_GET_A_LOT_OF_REWARDS; @ClientString(id = 1802390, message = "Ow, my back. Isn't there a doctor around here?") public static NpcStringId OW_MY_BACK_ISN_T_THERE_A_DOCTOR_AROUND_HERE; @@ -31837,8 +33670,8 @@ public final class NpcStringId @ClientString(id = 1802409, message = "The magic circle has become abnormal.") public static NpcStringId THE_MAGIC_CIRCLE_HAS_BECOME_ABNORMAL; - @ClientString(id = 1802410, message = "Kefensis' Hallucination appeared.") - public static NpcStringId KEFENSIS_HALLUCINATION_APPEARED; + @ClientString(id = 1802410, message = "Kefensis' Illusion appeared.") + public static NpcStringId KEFENSIS_ILLUSION_APPEARED; @ClientString(id = 1802411, message = "The Oasis Mirage appeared.") public static NpcStringId THE_OASIS_MIRAGE_APPEARED; @@ -32326,8 +34159,8 @@ public final class NpcStringId @ClientString(id = 1802573, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 81!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_81; - @ClientString(id = 1802574, message = "You have finished all of Kekropus' Letters! Grow stronger here until you receive letters from a minstrel at Lv. 85.") - public static NpcStringId YOU_HAVE_FINISHED_ALL_OF_KEKROPUS_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85; + @ClientString(id = 1802574, message = "You have completed all of Kekropus' Letter.") + public static NpcStringId YOU_HAVE_COMPLETED_ALL_OF_KEKROPUS_LETTER; @ClientString(id = 1802575, message = "Dimensional Warp Lv. $s1") public static NpcStringId DIMENSIONAL_WARP_LV_S1; @@ -32431,8 +34264,8 @@ public final class NpcStringId @ClientString(id = 1802608, message = "A powerful monster has come to face you!") public static NpcStringId A_POWERFUL_MONSTER_HAS_COME_TO_FACE_YOU; - @ClientString(id = 1802609, message = "$s1 seconds have been added to the instanced zone duration.") - public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCED_ZONE_DURATION; + @ClientString(id = 1802609, message = "$s1 seconds have been added to the Instance Zone duration.") + public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION; @ClientString(id = 1802610, message = "Master Katalin has sent a letter.\\nClick the question-mark icon to read.") public static NpcStringId MASTER_KATALIN_HAS_SENT_A_LETTER_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @@ -32569,7 +34402,7 @@ public final class NpcStringId @ClientString(id = 1802654, message = "A dragon appears, confused by the dimensional gale!") public static NpcStringId A_DRAGON_APPEARS_CONFUSED_BY_THE_DIMENSIONAL_GALE; - @ClientString(id = 1802655, message = "You have been branded with the Reaper's Seal due to $s1‘s Red Energy. ") + @ClientString(id = 1802655, message = "You have been branded with the Reaper's Seal due to $s1's Red Energy. ") public static NpcStringId YOU_HAVE_BEEN_BRANDED_WITH_THE_REAPER_S_SEAL_DUE_TO_S1_S_RED_ENERGY; @ClientString(id = 1802656, message = "You can go to Underground Lv. 3 using the elevator in the back.") @@ -32638,8 +34471,8 @@ public final class NpcStringId @ClientString(id = 1802677, message = "Grow stronger here until you receive the next letter from Queen Navari at Lv. 76!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_76; - @ClientString(id = 1802678, message = "You have finished all of Queen Navari's Letters! Grow stronger here until you receive letters from a minstrel at Lv. 85.") - public static NpcStringId YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85; + @ClientString(id = 1802678, message = "You have completed all of Queen Navari's Letter.") + public static NpcStringId YOU_HAVE_COMPLETED_ALL_OF_QUEEN_NAVARI_S_LETTER; @ClientString(id = 1802679, message = "So good, neigh!") public static NpcStringId SO_GOOD_NEIGH; @@ -32716,8 +34549,8 @@ public final class NpcStringId @ClientString(id = 1802703, message = "Happy New Year! Heh heh!") public static NpcStringId HAPPY_NEW_YEAR_HEH_HEH; - @ClientString(id = 1802704, message = "The instanced zone will close soon!") - public static NpcStringId THE_INSTANCED_ZONE_WILL_CLOSE_SOON; + @ClientString(id = 1802704, message = "The Instance Zone will close soon!") + public static NpcStringId THE_INSTANCE_ZONE_WILL_CLOSE_SOON; @ClientString(id = 1802705, message = "Nooo…not enough Vitality yet!") public static NpcStringId NOOO_NOT_ENOUGH_VITALITY_YET; @@ -34459,8 +36292,8 @@ public final class NpcStringId @ClientString(id = 1803284, message = "Relic Guardian who has responded to $s1") public static NpcStringId RELIC_GUARDIAN_WHO_HAS_RESPONDED_TO_S1; - @ClientString(id = 1803285, message = "Shaqrima Bathus responds to attacks from party members who have a faction level of 4 or higher with the Giant Trackers.") - public static NpcStringId SHAQRIMA_BATHUS_RESPONDS_TO_ATTACKS_FROM_PARTY_MEMBERS_WHO_HAVE_A_FACTION_LEVEL_OF_4_OR_HIGHER_WITH_THE_GIANT_TRACKERS; + @ClientString(id = 1803285, message = "Shaqrima Bathus responds to attacks from party members who have a Amity Level of 4 or higher with the Giant Trackers.") + public static NpcStringId SHAQRIMA_BATHUS_RESPONDS_TO_ATTACKS_FROM_PARTY_MEMBERS_WHO_HAVE_A_AMITY_LEVEL_OF_4_OR_HIGHER_WITH_THE_GIANT_TRACKERS; @ClientString(id = 1803286, message = "The warrior $s1 has obtained an Enchant Scroll from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_FROM_THE_DIMENSION_DISSOLVER; @@ -34471,17 +36304,17 @@ public final class NpcStringId @ClientString(id = 1803288, message = "The warrior $s1 has obtained an Enchant Scroll and Soul Crystal from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_SOUL_CRYSTAL_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803289, message = "The warrior $s1 has obtained an Enchant Scroll and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803289, message = "The warrior $s1 has obtained an Enchant Scroll and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803290, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and all R99 Amaranthine Weapons from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_ALL_R99_AMARANTHINE_WEAPONS_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803290, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and all R99 Helios Weapons from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_ALL_R99_HELIOS_WEAPONS_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803291, message = "The warrior $s1 has obtained an Enchant Scroll, a Soul Crystal, and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_SOUL_CRYSTAL_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803291, message = "The warrior $s1 has obtained an Enchant Scroll, a Soul Crystal, and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_SOUL_CRYSTAL_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803292, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803292, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; @ClientString(id = 1803293, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv.5 Dye, and a Soul Crystal from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_A_SOUL_CRYSTAL_FROM_THE_DIMENSION_DISSOLVER; @@ -34627,8 +36460,8 @@ public final class NpcStringId @ClientString(id = 1803341, message = "The enemy committed all their reserves... We won't be able to hold out for long!") public static NpcStringId THE_ENEMY_COMMITTED_ALL_THEIR_RESERVES_WE_WON_T_BE_ABLE_TO_HOLD_OUT_FOR_LONG; - @ClientString(id = 1803342, message = "Lord Leona! Lord Leona!") - public static NpcStringId LORD_LEONA_LORD_LEONA; + @ClientString(id = 1803342, message = "Lady Leona! Lady Leona!") + public static NpcStringId LADY_LEONA_LADY_LEONA; @ClientString(id = 1803343, message = "We have no choice, then. We have to trust the heroes and move to the outer castle!") public static NpcStringId WE_HAVE_NO_CHOICE_THEN_WE_HAVE_TO_TRUST_THE_HEROES_AND_MOVE_TO_THE_OUTER_CASTLE; @@ -34663,8 +36496,8 @@ public final class NpcStringId @ClientString(id = 1803353, message = "Hush! Don't speak that name!") public static NpcStringId HUSH_DON_T_SPEAK_THAT_NAME; - @ClientString(id = 1803354, message = "Lord Leona!") - public static NpcStringId LORD_LEONA; + @ClientString(id = 1803354, message = "Lady Leona!") + public static NpcStringId LADY_LEONA; @ClientString(id = 1803355, message = "Enemies are fighting back hard! Be prepared!") public static NpcStringId ENEMIES_ARE_FIGHTING_BACK_HARD_BE_PREPARED; @@ -34759,6 +36592,336 @@ public final class NpcStringId @ClientString(id = 1803385, message = "Impede them so that the Defense Battery can't be activated!") public static NpcStringId IMPEDE_THEM_SO_THAT_THE_DEFENSE_BATTERY_CAN_T_BE_ACTIVATED; + @ClientString(id = 1803386, message = "The 33333 Event is on! The user who lands the 33333th hit on Dandy will hit the jackpot!") + public static NpcStringId THE_33333_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_33333TH_HIT_ON_DANDY_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803387, message = "The 77777 Event is on! The user who lands the 77777th hit on Super Cat will hit the jackpot!") + public static NpcStringId THE_77777_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_77777TH_HIT_ON_SUPER_CAT_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803388, message = "The 77777 Event is on! The user who lands the 77777th hit on the Dancing Bard will hit the jackpot!") + public static NpcStringId THE_77777_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_77777TH_HIT_ON_THE_DANCING_BARD_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803389, message = "The 33333 Event is on! The user who lands the 33333th hit on Dandy will hit the jackpot!") + public static NpcStringId THE_33333_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_33333TH_HIT_ON_DANDY_WILL_HIT_THE_JACKPOT_2; + + @ClientString(id = 1803390, message = "The 99999 Event is on! The user who lands the 99999th hit on Snowman will hit the jackpot!") + public static NpcStringId THE_99999_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_99999TH_HIT_ON_SNOWMAN_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803391, message = "3 seconds") + public static NpcStringId THREE_SECONDS; + + @ClientString(id = 1803392, message = "2 seconds") + public static NpcStringId TWO_SECONDS; + + @ClientString(id = 1803393, message = "1 second") + public static NpcStringId ONE_SECOND; + + @ClientString(id = 1803394, message = "Start!!") + public static NpcStringId START_2; + + @ClientString(id = 1803395, message = "The winner of this event is $s1. Congratulations!") + public static NpcStringId THE_WINNER_OF_THIS_EVENT_IS_S1_CONGRATULATIONS; + + @ClientString(id = 1803396, message = "It has been hit $s1 times.") + public static NpcStringId IT_HAS_BEEN_HIT_S1_TIMES; + + @ClientString(id = 1803397, message = "There's no time to hesitate! Hurry and follow me.") + public static NpcStringId THERE_S_NO_TIME_TO_HESITATE_HURRY_AND_FOLLOW_ME; + + @ClientString(id = 1803398, message = "This is a dangerous place, but just trust me!") + public static NpcStringId THIS_IS_A_DANGEROUS_PLACE_BUT_JUST_TRUST_ME; + + @ClientString(id = 1803399, message = "Even if I'm here with you, you shouldn't let up on your attacks.") + public static NpcStringId EVEN_IF_I_M_HERE_WITH_YOU_YOU_SHOULDN_T_LET_UP_ON_YOUR_ATTACKS; + + @ClientString(id = 1803400, message = "Right! Hurry and attack!") + public static NpcStringId RIGHT_HURRY_AND_ATTACK; + + @ClientString(id = 1803401, message = "Always look around you.") + public static NpcStringId ALWAYS_LOOK_AROUND_YOU; + + @ClientString(id = 1803402, message = "Since we work great together, we should do well.") + public static NpcStringId SINCE_WE_WORK_GREAT_TOGETHER_WE_SHOULD_DO_WELL; + + @ClientString(id = 1803403, message = "We're good friends, aren't we?") + public static NpcStringId WE_RE_GOOD_FRIENDS_AREN_T_WE; + + @ClientString(id = 1803404, message = "I heard that Spicula Zero is dangerous. We'd better be careful.") + public static NpcStringId I_HEARD_THAT_SPICULA_ZERO_IS_DANGEROUS_WE_D_BETTER_BE_CAREFUL; + + @ClientString(id = 1803405, message = "I'll show you the fruit of my training, so look forward to it!") + public static NpcStringId I_LL_SHOW_YOU_THE_FRUIT_OF_MY_TRAINING_SO_LOOK_FORWARD_TO_IT; + + @ClientString(id = 1803406, message = "See? There's nothing you and I can't do when we're together!") + public static NpcStringId SEE_THERE_S_NOTHING_YOU_AND_I_CAN_T_DO_WHEN_WE_RE_TOGETHER; + + @ClientString(id = 1803407, message = "The challenge for the Throne of Heroes will begin shortly. Please be ready.") + public static NpcStringId THE_CHALLENGE_FOR_THE_THRONE_OF_HEROES_WILL_BEGIN_SHORTLY_PLEASE_BE_READY; + + @ClientString(id = 1803408, message = "The first challenge will begin in 10 seconds.") + public static NpcStringId THE_FIRST_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803409, message = "5 seconds") + public static NpcStringId FIVE_SECONDS; + + @ClientString(id = 1803410, message = "4 seconds") + public static NpcStringId FOUR_SECONDS; + + @ClientString(id = 1803411, message = "3 seconds") + public static NpcStringId THREE_SECONDS_2; + + @ClientString(id = 1803412, message = "2 seconds") + public static NpcStringId TWO_SECONDS_2; + + @ClientString(id = 1803413, message = "1 second") + public static NpcStringId ONE_SECOND_2; + + @ClientString(id = 1803414, message = "The first challenge begins. ") + public static NpcStringId THE_FIRST_CHALLENGE_BEGINS; + + @ClientString(id = 1803415, message = "Darion frees himself from the restraints that suppressed him and reveals his true power.") + public static NpcStringId DARION_FREES_HIMSELF_FROM_THE_RESTRAINTS_THAT_SUPPRESSED_HIM_AND_REVEALS_HIS_TRUE_POWER; + + @ClientString(id = 1803416, message = "The first challenge has been completed successfully. The second challenge will begin shortly.") + public static NpcStringId THE_FIRST_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY_THE_SECOND_CHALLENGE_WILL_BEGIN_SHORTLY; + + @ClientString(id = 1803417, message = "The second challenge will begin in 10 seconds.") + public static NpcStringId THE_SECOND_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803418, message = "The second challenge begins. ") + public static NpcStringId THE_SECOND_CHALLENGE_BEGINS; + + @ClientString(id = 1803419, message = "Goldberg will summon his minions in 5 seconds.") + public static NpcStringId GOLDBERG_WILL_SUMMON_HIS_MINIONS_IN_5_SECONDS; + + @ClientString(id = 1803420, message = "Goldberg brings out all of the power within him. ") + public static NpcStringId GOLDBERG_BRINGS_OUT_ALL_OF_THE_POWER_WITHIN_HIM; + + @ClientString(id = 1803421, message = "The second challenge has been completed successfully. The third challenge will begin shortly.") + public static NpcStringId THE_SECOND_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY_THE_THIRD_CHALLENGE_WILL_BEGIN_SHORTLY; + + @ClientString(id = 1803422, message = "The third challenge will begin in 10 seconds.") + public static NpcStringId THE_THIRD_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803423, message = "The third challenge begins.") + public static NpcStringId THE_THIRD_CHALLENGE_BEGINS; + + @ClientString(id = 1803424, message = "The third challenge has been completed successfully.") + public static NpcStringId THE_THIRD_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY; + + @ClientString(id = 1803425, message = "Zaken summons monsters from another world. ") + public static NpcStringId ZAKEN_SUMMONS_MONSTERS_FROM_ANOTHER_WORLD; + + @ClientString(id = 1803426, message = "Your blood is mine!") + public static NpcStringId YOUR_BLOOD_IS_MINE; + + @ClientString(id = 1803427, message = "Cowards, you can't even approach me. Behold my power.") + public static NpcStringId COWARDS_YOU_CAN_T_EVEN_APPROACH_ME_BEHOLD_MY_POWER; + + @ClientString(id = 1803428, message = "Zaken reveals his hidden power.") + public static NpcStringId ZAKEN_REVEALS_HIS_HIDDEN_POWER; + + @ClientString(id = 1803429, message = "Tiat summons his minions.") + public static NpcStringId TIAT_SUMMONS_HIS_MINIONS; + + @ClientString(id = 1803430, message = "Tiat reveals his dignity. ") + public static NpcStringId TIAT_REVEALS_HIS_DIGNITY; + + @ClientString(id = 1803431, message = "Tauti summons his mechanical contraption.") + public static NpcStringId TAUTI_SUMMONS_HIS_MECHANICAL_CONTRAPTION; + + @ClientString(id = 1803432, message = "Tauti intends to show off his power to his followers.") + public static NpcStringId TAUTI_INTENDS_TO_SHOW_OFF_HIS_POWER_TO_HIS_FOLLOWERS; + + @ClientString(id = 1803433, message = "Tauti intends to show off his power to those who avoid him.") + public static NpcStringId TAUTI_INTENDS_TO_SHOW_OFF_HIS_POWER_TO_THOSE_WHO_AVOID_HIM; + + @ClientString(id = 1803434, message = "Antharas has disappeared inside his nest for recovery.") + public static NpcStringId ANTHARAS_HAS_DISAPPEARED_INSIDE_HIS_NEST_FOR_RECOVERY; + + @ClientString(id = 1803435, message = "Press Alt + K to open the Skill window.\\nYou can add the skills in the 'Active' tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NYOU_CAN_ADD_THE_SKILLS_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803436, message = "Are you looking for the captain? Then follow this path, go up the stairs and turn left.") + public static NpcStringId ARE_YOU_LOOKING_FOR_THE_CAPTAIN_THEN_FOLLOW_THIS_PATH_GO_UP_THE_STAIRS_AND_TURN_LEFT; + + @ClientString(id = 1803437, message = "Hurry and return after reporting to Captain Stig Mach! Just go up the stairs next to me.") + public static NpcStringId HURRY_AND_RETURN_AFTER_REPORTING_TO_CAPTAIN_STIG_MACH_JUST_GO_UP_THE_STAIRS_NEXT_TO_ME; + + @ClientString(id = 1803438, message = "Talk to the Monk of Chaos.\\nYou can learn about the Revelation skills.") + public static NpcStringId TALK_TO_THE_MONK_OF_CHAOS_NYOU_CAN_LEARN_ABOUT_THE_REVELATION_SKILLS; + + @ClientString(id = 1803439, message = "Talk to Balthus Knight Captain Stig Mach again.") + public static NpcStringId TALK_TO_BALTHUS_KNIGHT_CAPTAIN_STIG_MACH_AGAIN; + + @ClientString(id = 1803440, message = "Talk to Hatchling Manager McCoy again.") + public static NpcStringId TALK_TO_HATCHLING_MANAGER_MCCOY_AGAIN; + + @ClientString(id = 1803441, message = "Go find and talk to Balthus Knight Camcud.") + public static NpcStringId GO_FIND_AND_TALK_TO_BALTHUS_KNIGHT_CAMCUD; + + @ClientString(id = 1803442, message = "Go find and talk to Balthus Knight Sibi.") + public static NpcStringId GO_FIND_AND_TALK_TO_BALTHUS_KNIGHT_SIBI; + + @ClientString(id = 1803443, message = "Go find and talk to Tarti.") + public static NpcStringId GO_FIND_AND_TALK_TO_TARTI; + + @ClientString(id = 1803444, message = "Talk to Balthus Knight Captain Stig Mach.") + public static NpcStringId TALK_TO_BALTHUS_KNIGHT_CAPTAIN_STIG_MACH; + + @ClientString(id = 1803445, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Beast Soulshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_BEAST_SOULSHOTS; + + @ClientString(id = 1803446, message = "Learn 2 Revelation skills and talk to the Monk of Chaos again.") + public static NpcStringId LEARN_2_REVELATION_SKILLS_AND_TALK_TO_THE_MONK_OF_CHAOS_AGAIN; + + @ClientString(id = 1803447, message = "Antharas' HP has decreased.") + public static NpcStringId ANTHARAS_HP_HAS_DECREASED; + + @ClientString(id = 1803448, message = "Antharas has suffered critical injuries.") + public static NpcStringId ANTHARAS_HAS_SUFFERED_CRITICAL_INJURIES; + + @ClientString(id = 1803449, message = "Mary Reed summons her minions.") + public static NpcStringId MARY_REED_SUMMONS_HER_MINIONS; + + @ClientString(id = 1803450, message = "Mary Reed reveals her true power. ") + public static NpcStringId MARY_REED_REVEALS_HER_TRUE_POWER; + + @ClientString(id = 1803451, message = "Antharas has appeared.") + public static NpcStringId ANTHARAS_HAS_APPEARED; + + @ClientString(id = 1803452, message = "At last, Antharas is here!") + public static NpcStringId AT_LAST_ANTHARAS_IS_HERE; + + @ClientString(id = 1803453, message = "Now, it's time for us to shine!") + public static NpcStringId NOW_IT_S_TIME_FOR_US_TO_SHINE; + + @ClientString(id = 1803454, message = "As there hasn't been a battle with a boss for some time, the Throne of Heroes will end shortly.") + public static NpcStringId AS_THERE_HASN_T_BEEN_A_BATTLE_WITH_A_BOSS_FOR_SOME_TIME_THE_THRONE_OF_HEROES_WILL_END_SHORTLY; + + @ClientString(id = 1803455, message = "Injured comrades have retreated,\\nand 'Herphah' has arrived with new reinforcements.") + public static NpcStringId INJURED_COMRADES_HAVE_RETREATED_NAND_HERPHAH_HAS_ARRIVED_WITH_NEW_REINFORCEMENTS; + + @ClientString(id = 1803456, message = "I won't let a Gem Dragon defeat me!") + public static NpcStringId I_WON_T_LET_A_GEM_DRAGON_DEFEAT_ME; + + @ClientString(id = 1803457, message = "What in the world is going on here?!") + public static NpcStringId WHAT_IN_THE_WORLD_IS_GOING_ON_HERE; + + @ClientString(id = 1803458, message = "Press Alt + K to open the Skill window\\nand add 'Hydro Attack' in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_HYDRO_ATTACK_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803459, message = "Press Alt + K to open the Skill window\\nand add 'Elemental Spike' in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_ELEMENTAL_SPIKE_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803460, message = "Press Alt + K to open the Skill window\\nand add 'Dark Blast' in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_DARK_BLAST_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803461, message = "Use a skill on the Gem Dragon.") + public static NpcStringId USE_A_SKILL_ON_THE_GEM_DRAGON; + + @ClientString(id = 1803462, message = "Antharas summons Hatchlings.") + public static NpcStringId ANTHARAS_SUMMONS_HATCHLINGS; + + @ClientString(id = 1803463, message = "Antharas summons Gem Dragons.") + public static NpcStringId ANTHARAS_SUMMONS_GEM_DRAGONS; + + @ClientString(id = 1803464, message = "Talk to Hatchling Manager McCoy.") + public static NpcStringId TALK_TO_HATCHLING_MANAGER_MCCOY; + + @ClientString(id = 1803465, message = "Equip the armor' obtained by double-clicking Paulina's Heavy Armor Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_BY_DOUBLE_CLICKING_PAULINA_S_HEAVY_ARMOR_BOX; + + @ClientString(id = 1803466, message = "Equip the armor' obtained by double-clicking Paulina's Light Armor Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_BY_DOUBLE_CLICKING_PAULINA_S_LIGHT_ARMOR_BOX; + + @ClientString(id = 1803467, message = "Equip the armor' obtained by double-clicking Paulina's Robe Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_BY_DOUBLE_CLICKING_PAULINA_S_ROBE_BOX; + + @ClientString(id = 1803468, message = "Other comrades have returned first to recover.") + public static NpcStringId OTHER_COMRADES_HAVE_RETURNED_FIRST_TO_RECOVER; + + @ClientString(id = 1803469, message = "Antharas summons young dragons.") + public static NpcStringId ANTHARAS_SUMMONS_YOUNG_DRAGONS; + + @ClientString(id = 1803470, message = "Antharas summons Hatchling Bombers.") + public static NpcStringId ANTHARAS_SUMMONS_HATCHLING_BOMBERS; + + @ClientString(id = 1803471, message = "Press Alt + K to check the skills 'Summon Cute Bear' and 'Summon Saber Tooth Cougar', then use the skills\\nto continue the battle using Servitors.") + public static NpcStringId PRESS_ALT_K_TO_CHECK_THE_SKILLS_SUMMON_CUTE_BEAR_AND_SUMMON_SABER_TOOTH_COUGAR_THEN_USE_THE_SKILLS_NTO_CONTINUE_THE_BATTLE_USING_SERVITORS; + + @ClientString(id = 1803472, message = "Double-click a Servitor to give it orders.") + public static NpcStringId DOUBLE_CLICK_A_SERVITOR_TO_GIVE_IT_ORDERS; + + @ClientString(id = 1803473, message = "Attack a Hatchling.") + public static NpcStringId ATTACK_A_HATCHLING; + + @ClientString(id = 1803503, message = "The cannon is sealed") + public static NpcStringId THE_CANNON_IS_SEALED; + + @ClientString(id = 1803504, message = "The Prison Warden is dead and the cannon in the sector is activated.") + public static NpcStringId THE_PRISON_WARDEN_IS_DEAD_AND_THE_CANNON_IN_THE_SECTOR_IS_ACTIVATED; + + @ClientString(id = 1803505, message = "All Prison Wardens are dead and Spezion is released from its seal.") + public static NpcStringId ALL_PRISON_WARDENS_ARE_DEAD_AND_SPEZION_IS_RELEASED_FROM_ITS_SEAL; + + @ClientString(id = 1803506, message = "Spezion recalls its clones and brings out its true power.") + public static NpcStringId SPEZION_RECALLS_ITS_CLONES_AND_BRINGS_OUT_ITS_TRUE_POWER; + + @ClientString(id = 1803507, message = "$s1 has gained a Cannonball of Despair.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_DESPAIR; + + @ClientString(id = 1803508, message = "$s1 has gained a Cannonball of Rage.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_RAGE; + + @ClientString(id = 1803509, message = "$s1 has gained a Cannonball of Lunacy.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_LUNACY; + + @ClientString(id = 1803510, message = "Spezion's invincibility is turned off for 1 minute.") + public static NpcStringId SPEZION_S_INVINCIBILITY_IS_TURNED_OFF_FOR_1_MINUTE; + + @ClientString(id = 1803511, message = "Spezion is engulfed in the Memories of Despair.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_DESPAIR; + + @ClientString(id = 1803512, message = "Spezion is engulfed in the Memories of Lunacy.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_LUNACY; + + @ClientString(id = 1803513, message = "Spezion is engulfed in the Memories of Rage.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_RAGE; + + @ClientString(id = 1803514, message = "The 33333 Event is on!\\nLand the 33333th hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_33333_EVENT_IS_ON_NLAND_THE_33333TH_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803515, message = "The 77777 Event is on!\\nLand the 77777th hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_77777_EVENT_IS_ON_NLAND_THE_77777TH_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803516, message = "The 99999 Event is on!\\nLand the 99999th hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_99999_EVENT_IS_ON_NLAND_THE_99999TH_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803517, message = "$s1 uses the clone generator to summon the elite guards.") + public static NpcStringId S1_USES_THE_CLONE_GENERATOR_TO_SUMMON_THE_ELITE_GUARDS; + + @ClientString(id = 1803518, message = "$s1 has been refused entry. Required quests have not been completed.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_REQUIRED_QUESTS_HAVE_NOT_BEEN_COMPLETED; + + @ClientString(id = 1803519, message = "$s1 has reached +20 Enchantment Level and gained a '+16 Bloody Helios Weapon'.") + public static NpcStringId S1_HAS_REACHED_20_ENCHANTMENT_LEVEL_AND_GAINED_A_16_BLOODY_HELIOS_WEAPON; + + @ClientString(id = 1803520, message = "$s1 has reached +21 Enchantment Level and gained a '+18 Bloody Helios Weapon'.") + public static NpcStringId S1_HAS_REACHED_21_ENCHANTMENT_LEVEL_AND_GAINED_A_18_BLOODY_HELIOS_WEAPON; + + @ClientString(id = 1803521, message = "$s1 has reached +22 Enchantment Level and gained a '+16 Dark Helios Weapon'.") + public static NpcStringId S1_HAS_REACHED_22_ENCHANTMENT_LEVEL_AND_GAINED_A_16_DARK_HELIOS_WEAPON; + + @ClientString(id = 1803522, message = "$s1 has reached +23 Enchantment Level and gained a '+18 Dark Helios Weapon'.") + public static NpcStringId S1_HAS_REACHED_23_ENCHANTMENT_LEVEL_AND_GAINED_A_18_DARK_HELIOS_WEAPON; + + @ClientString(id = 1803523, message = "$s1 has reached +24 Enchantment Level and gained a 'Dragons Klaus Fragment'.") + public static NpcStringId S1_HAS_REACHED_24_ENCHANTMENT_LEVEL_AND_GAINED_A_DRAGONS_KLAUS_FRAGMENT; + + @ClientString(id = 1803524, message = "$s1 has reached +25 Enchantment Level and gained a 'Dragons Klaus Standard'.") + public static NpcStringId S1_HAS_REACHED_25_ENCHANTMENT_LEVEL_AND_GAINED_A_DRAGONS_KLAUS_STANDARD; + @ClientString(id = 1810363, message = "You are too far from the corpse.") public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; @@ -35360,19 +37523,19 @@ public final class NpcStringId public static NpcStringId TEN_SECONDS_ARE_REMAINING_2; @ClientString(id = 1811232, message = "5 Seconds") - public static NpcStringId FIVE_SECONDS; + public static NpcStringId FIVE_SECONDS_2; @ClientString(id = 1811233, message = "4 Seconds") - public static NpcStringId FOUR_SECONDS; + public static NpcStringId FOUR_SECONDS_2; @ClientString(id = 1811234, message = "3 Seconds") - public static NpcStringId THREE_SECONDS; + public static NpcStringId THREE_SECONDS_3; @ClientString(id = 1811235, message = "2 Seconds") - public static NpcStringId TWO_SECONDS; + public static NpcStringId TWO_SECONDS_3; @ClientString(id = 1811236, message = "1 Second") - public static NpcStringId ONE_SECOND; + public static NpcStringId ONE_SECOND_3; @ClientString(id = 1811237, message = "You may not teleport in middle of a siege.") public static NpcStringId YOU_MAY_NOT_TELEPORT_IN_MIDDLE_OF_A_SIEGE; @@ -38008,8 +40171,8 @@ public final class NpcStringId @ClientString(id = 3000100, message = "Talk to me now! I'll disappear in 10 seconds.") public static NpcStringId TALK_TO_ME_NOW_I_LL_DISAPPEAR_IN_10_SECONDS; - @ClientString(id = 3000101, message = "Sibis' Letter has arrived.\\nClick the question mark icon to read its contents.") - public static NpcStringId SIBIS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_ITS_CONTENTS; + @ClientString(id = 3000101, message = "Sibi Letter has arrived.\\nClick the question mark icon to read its contents.") + public static NpcStringId SIBI_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_ITS_CONTENTS; @ClientString(id = 3000102, message = "If you want to get a Magic Flame from us, ") public static NpcStringId IF_YOU_WANT_TO_GET_A_MAGIC_FLAME_FROM_US; @@ -38128,6 +40291,9 @@ public final class NpcStringId @ClientString(id = 3000140, message = "Kneel down! Frederick the Destroyer will appear!") public static NpcStringId KNEEL_DOWN_FREDERICK_THE_DESTROYER_WILL_APPEAR; + @ClientString(id = 3000141, message = "As the party includes a new/returning warrior, a bonus reward will be given if the raid is successful.") + public static NpcStringId AS_THE_PARTY_INCLUDES_A_NEW_RETURNING_WARRIOR_A_BONUS_REWARD_WILL_BE_GIVEN_IF_THE_RAID_IS_SUCCESSFUL; + @ClientString(id = 8888001, message = "Intruder. The gate will soon be closed.") public static NpcStringId INTRUDER_THE_GATE_WILL_SOON_BE_CLOSED; @@ -38758,6 +40924,330 @@ public final class NpcStringId @ClientString(id = 11170136, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_S1_REPLY_S2_INSPECTOR_JUDICATOR_BUTTON_2; + @ClientString(id = 12230001, message = "The assault of Etina Great Temple has begun in Server Devianne.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_DEVIANNE; + + @ClientString(id = 12230002, message = "The assault of Etina Great Temple has begun in Server Nevit.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_NEVIT; + + @ClientString(id = 12230003, message = "The assault of Etina Great Temple has begun in Server Cara.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_CARA; + + @ClientString(id = 12230004, message = "The assault of Etina Great Temple has begun in Server Tersi.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_TERSI; + + @ClientString(id = 12230005, message = "The assault of Etina Great Temple has begun in Server Bremnon.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_BREMNON; + + @ClientString(id = 12230006, message = "The assault of Etina Great Temple has begun in Server Lionel.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_LIONEL; + + @ClientString(id = 12230007, message = "The assault of Etina Great Temple has begun in Server Bartz.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_BARTZ; + + @ClientString(id = 12230008, message = "The assault of Etina Great Temple has begun in Server Sieghardt.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_SIEGHARDT; + + @ClientString(id = 12230009, message = "The assault of Etina Great Temple has begun in Server Kain.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_KAIN; + + @ClientString(id = 12230010, message = "The heroes of Aden have gathered to assault Etina Great Temple.") + public static NpcStringId THE_HEROES_OF_ADEN_HAVE_GATHERED_TO_ASSAULT_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12230011, message = "Server Devianne has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_DEVIANNE_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230012, message = "Server Nevit has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_NEVIT_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230013, message = "Server Cara has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_CARA_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230014, message = "Server Tersi has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_TERSI_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230015, message = "Server Bremnon has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_BREMNON_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230016, message = "Server Lionel has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_LIONEL_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230017, message = "Server Bartz has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_BARTZ_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230018, message = "Server Sieghardt has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_SIEGHARDT_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230019, message = "Server Kain has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_KAIN_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230020, message = "Server Devianne has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_DEVIANNE_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230021, message = "Server Nevit has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_NEVIT_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230022, message = "Server Cara has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_CARA_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230023, message = "Server Tersi has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_TERSI_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230024, message = "Server Bremnon has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_BREMNON_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230025, message = "Server Lionel has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_LIONEL_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230026, message = "Server Bartz has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_BARTZ_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230027, message = "Server Sieghardt has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_SIEGHARDT_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230028, message = "Server Kain has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_KAIN_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230029, message = "Gatekeeper Paragon of the Great Temple has fallen. The news of the victory will be reported back home.") + public static NpcStringId GATEKEEPER_PARAGON_OF_THE_GREAT_TEMPLE_HAS_FALLEN_THE_NEWS_OF_THE_VICTORY_WILL_BE_REPORTED_BACK_HOME; + + @ClientString(id = 12230030, message = "Server Devianne has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230031, message = "Server Nevit has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_NEVIT_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230032, message = "Server Cara has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_CARA_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230033, message = "Server Tersi has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_TERSI_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230034, message = "Server Bremnon has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_BREMNON_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230035, message = "Server Lionel has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_LIONEL_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230036, message = "Server Bartz has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_BARTZ_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230037, message = "Server Sieghardt has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230038, message = "Server Kain has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_KAIN_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230039, message = "Server Devianne has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230040, message = "Server Nevit has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_NEVIT_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230041, message = "Server Cara has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_CARA_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230042, message = "Server Tersi has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_TERSI_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230043, message = "Server Bremnon has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_BREMNON_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230044, message = "Server Lionel has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_LIONEL_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230045, message = "Server Bartz has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_BARTZ_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230046, message = "Server Sieghardt has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230047, message = "Server Kain has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_KAIN_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230048, message = "Server Devianne has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_DEVIANNE_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230049, message = "Server Nevit has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_NEVIT_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230050, message = "Server Cara has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_CARA_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230051, message = "Server Tersi has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_TERSI_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230052, message = "Server Bremnon has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_BREMNON_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230053, message = "Server Lionel has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_LIONEL_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230054, message = "Server Bartz has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_BARTZ_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230055, message = "Server Sieghardt has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_SIEGHARDT_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230056, message = "Server Kain has battled Etis van Etina and forced her to reveal her true self. ") + public static NpcStringId SERVER_KAIN_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230057, message = "Server Devianne has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230058, message = "Server Nevit has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_NEVIT_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230059, message = "Server Cara has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_CARA_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230060, message = "Server Tersi has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_TERSI_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230061, message = "Server Bremnon has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_BREMNON_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230062, message = "Server Lionel has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_LIONEL_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230063, message = "Server Bartz has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_BARTZ_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230064, message = "Server Sieghardt has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230065, message = "Server Kain has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_KAIN_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230066, message = "Server Devianne has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230067, message = "Server Nevit has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_NEVIT_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230068, message = "Server Cara has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_CARA_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230069, message = "Server Tersi has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_TERSI_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230070, message = "Server Bremnon has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_BREMNON_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230071, message = "Server Lionel has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_LIONEL_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230072, message = "Server Bartz has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_BARTZ_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230073, message = "Server Sieghardt has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230074, message = "Server Kain has defeated Kain Van Halter and won the battle.") + public static NpcStringId SERVER_KAIN_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230075, message = "The Seal of Gnosis activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_GNOSIS_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230076, message = "The Seal of Strife activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_STRIFE_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230077, message = "The Seal of Avarice activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_AVARICE_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230078, message = "The Seal of Punishment activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_PUNISHMENT_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230079, message = "The Seal of Awakening activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_AWAKENING_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230080, message = "The Seal of Calamity activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_CALAMITY_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230081, message = "The Seal of Destruction activates and the entire Etina Great Temple is now under the influence of the seal.") + public static NpcStringId THE_SEAL_OF_DESTRUCTION_ACTIVATES_AND_THE_ENTIRE_ETINA_GREAT_TEMPLE_IS_NOW_UNDER_THE_INFLUENCE_OF_THE_SEAL; + + @ClientString(id = 12230082, message = "Etis van Etina uses the power of the Seven Signs to summon all 7 seals inside the temple.") + public static NpcStringId ETIS_VAN_ETINA_USES_THE_POWER_OF_THE_SEVEN_SIGNS_TO_SUMMON_ALL_7_SEALS_INSIDE_THE_TEMPLE; + + @ClientString(id = 12230083, message = "Kain Van Halter uses the power of the Seven Signs to summon 4 seals inside the temple.") + public static NpcStringId KAIN_VAN_HALTER_USES_THE_POWER_OF_THE_SEVEN_SIGNS_TO_SUMMON_4_SEALS_INSIDE_THE_TEMPLE; + + @ClientString(id = 12230084, message = "Etina's elite minions have appears inside the Great Temple.") + public static NpcStringId ETINA_S_ELITE_MINIONS_HAVE_APPEARS_INSIDE_THE_GREAT_TEMPLE; + + @ClientString(id = 12230085, message = "The time is up and the assault on Etina Great Temple has failed. All forces will retreat in 30 seconds.") + public static NpcStringId THE_TIME_IS_UP_AND_THE_ASSAULT_ON_ETINA_GREAT_TEMPLE_HAS_FAILED_ALL_FORCES_WILL_RETREAT_IN_30_SECONDS; + + @ClientString(id = 12230086, message = "$s1 has been refused entry to Etina Great Temple for failing to meet the Amity Level requirement.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_FAILING_TO_MEET_THE_AMITY_LEVEL_REQUIREMENT; + + @ClientString(id = 12230087, message = "$s1 has been refused entry to Etina Great Temple for failing to meet the character level requirement.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_FAILING_TO_MEET_THE_CHARACTER_LEVEL_REQUIREMENT; + + @ClientString(id = 12230088, message = "$s1 has been refused entry to Etina Great Temple for being too far from the rest of the alliance members.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_BEING_TOO_FAR_FROM_THE_REST_OF_THE_ALLIANCE_MEMBERS; + + @ClientString(id = 12230090, message = "A teleport device that takes you to the outside has appeared. You will be moved automatically to the outside in 3 minutes.") + public static NpcStringId A_TELEPORT_DEVICE_THAT_TAKES_YOU_TO_THE_OUTSIDE_HAS_APPEARED_YOU_WILL_BE_MOVED_AUTOMATICALLY_TO_THE_OUTSIDE_IN_3_MINUTES; + + @ClientString(id = 12230091, message = "60 minutes remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId SIXTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230092, message = "30 minutes remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId THIRTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230093, message = "1 minute remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId ONE_MINUTE_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230094, message = "60 minutes remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId SIXTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230095, message = "30 minutes remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId THIRTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230096, message = "1 minute remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId ONE_MINUTE_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230100, message = "Praise the magnificent heroes who saved our world from the threats of Etis van Etina and Embryo! ") + public static NpcStringId PRAISE_THE_MAGNIFICENT_HEROES_WHO_SAVED_OUR_WORLD_FROM_THE_THREATS_OF_ETIS_VAN_ETINA_AND_EMBRYO; + + @ClientString(id = 12230101, message = "Applaud the victory of the great heroes who saved us and remember this glorious day forever!") + public static NpcStringId APPLAUD_THE_VICTORY_OF_THE_GREAT_HEROES_WHO_SAVED_US_AND_REMEMBER_THIS_GLORIOUS_DAY_FOREVER; + + @ClientString(id = 12230102, message = "Receive the blessings of the saviors who shone like a ray of light and saved the world from danger! ") + public static NpcStringId RECEIVE_THE_BLESSINGS_OF_THE_SAVIORS_WHO_SHONE_LIKE_A_RAY_OF_LIGHT_AND_SAVED_THE_WORLD_FROM_DANGER; + + @ClientString(id = 12230103, message = "Great heroes have defeated Etis van Etina in Etina Great Temple.") + public static NpcStringId GREAT_HEROES_HAVE_DEFEATED_ETIS_VAN_ETINA_IN_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12230104, message = "Great heroes have defeated Kain van Halter in Etina Great Temple.") + public static NpcStringId GREAT_HEROES_HAVE_DEFEATED_KAIN_VAN_HALTER_IN_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12240001, message = "Server $s1 has started the attack on Etina's Great Temple.") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_ATTACK_ON_ETINA_S_GREAT_TEMPLE; + + @ClientString(id = 12240002, message = "Server $s1 has been selected as the representative server to face Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_BEEN_SELECTED_AS_THE_REPRESENTATIVE_SERVER_TO_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12240003, message = "Server $s1 has been selected as the supporting server and will be facing Kain Van Halter.") + public static NpcStringId SERVER_S1_HAS_BEEN_SELECTED_AS_THE_SUPPORTING_SERVER_AND_WILL_BE_FACING_KAIN_VAN_HALTER; + + @ClientString(id = 12240004, message = "Server $s1 has started the battle against Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_BATTLE_AGAINST_ETIS_VAN_ETINA; + + @ClientString(id = 12240005, message = "Server $s1 has started the battle against Kain Van Halter") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_BATTLE_AGAINST_KAIN_VAN_HALTER; + + @ClientString(id = 12240006, message = "Server $s1 has ended the battle against Etis Van Etina, reveling his true form.") + public static NpcStringId SERVER_S1_HAS_ENDED_THE_BATTLE_AGAINST_ETIS_VAN_ETINA_REVELING_HIS_TRUE_FORM; + + @ClientString(id = 12240007, message = "Server $s1 has defeated Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_DEFEATED_ETIS_VAN_ETINA; + + @ClientString(id = 12240008, message = "Server $s1 has defeated Kain Van Halter.") + public static NpcStringId SERVER_S1_HAS_DEFEATED_KAIN_VAN_HALTER; + @ClientString(id = 14211701, message = "You must activate the 4 Generators.") public static NpcStringId YOU_MUST_ACTIVATE_THE_4_GENERATORS; @@ -38839,8 +41329,8 @@ public final class NpcStringId @ClientString(id = 14250010, message = "Destroyer Grom has appeared!") public static NpcStringId DESTROYER_GROM_HAS_APPEARED; - @ClientString(id = 14250011, message = "Taskmaster Medvezhy has appeared!") - public static NpcStringId TASKMASTER_MEDVEZHY_HAS_APPEARED; + @ClientString(id = 14250011, message = "Executor Medvez") + public static NpcStringId EXECUTOR_MEDVEZ; @ClientString(id = 14250012, message = "Zigatan the Dark Knight has appeared!") public static NpcStringId ZIGATAN_THE_DARK_KNIGHT_HAS_APPEARED; @@ -38860,8 +41350,8 @@ public final class NpcStringId @ClientString(id = 14250017, message = "Creed Guardian Demien has appeared!") public static NpcStringId CREED_GUARDIAN_DEMIEN_HAS_APPEARED; - @ClientString(id = 14250018, message = "Executor Berg has appeared!") - public static NpcStringId EXECUTOR_BERG_HAS_APPEARED; + @ClientString(id = 14250018, message = "High Executor Berg has appeared!") + public static NpcStringId HIGH_EXECUTOR_BERG_HAS_APPEARED; @ClientString(id = 14250019, message = "Tarku has appeared!") public static NpcStringId TARKU_HAS_APPEARED; @@ -38875,11 +41365,11 @@ public final class NpcStringId @ClientString(id = 14250022, message = "Embryo Secret Vault has appeared!") public static NpcStringId EMBRYO_SECRET_VAULT_HAS_APPEARED; - @ClientString(id = 14250023, message = "Ultimate Sakum has appeared!") - public static NpcStringId ULTIMATE_SAKUM_HAS_APPEARED; + @ClientString(id = 14250023, message = "Final Evolution Form Sakum has appeared!") + public static NpcStringId FINAL_EVOLUTION_FORM_SAKUM_HAS_APPEARED; - @ClientString(id = 14250024, message = "Madman Typhoon has appeared!") - public static NpcStringId MADMAN_TYPHOON_HAS_APPEARED; + @ClientString(id = 14250024, message = "Crazy Typhoon has appeared!") + public static NpcStringId CRAZY_TYPHOON_HAS_APPEARED; @ClientString(id = 14250025, message = "Cursed Haren has appeared!") public static NpcStringId CURSED_HAREN_HAS_APPEARED; @@ -38896,8 +41386,8 @@ public final class NpcStringId @ClientString(id = 14250029, message = "Isadora the Great Magus of Greed has appeared!") public static NpcStringId ISADORA_THE_GREAT_MAGUS_OF_GREED_HAS_APPEARED; - @ClientString(id = 14250030, message = "Guardian Whitra has appeared!") - public static NpcStringId GUARDIAN_WHITRA_HAS_APPEARED; + @ClientString(id = 14250030, message = "Guardian Whitera has appeared!") + public static NpcStringId GUARDIAN_WHITERA_HAS_APPEARED; @ClientString(id = 14250031, message = "Guardian Bletra has appeared!") public static NpcStringId GUARDIAN_BLETRA_HAS_APPEARED; @@ -38905,7 +41395,7 @@ public final class NpcStringId @ClientString(id = 14250032, message = "Advanced Siege Tank has appeared!") public static NpcStringId ADVANCED_SIEGE_TANK_HAS_APPEARED; - @ClientString(id = 14250033, message = "Vegima the dark shaman has appeared!") + @ClientString(id = 14250033, message = "Vegima the Dark Shaman has appeared!") public static NpcStringId VEGIMA_THE_DARK_SHAMAN_HAS_APPEARED; @ClientString(id = 14250034, message = "Soul Reaper Varonia has appeared!") @@ -38920,8 +41410,8 @@ public final class NpcStringId @ClientString(id = 14250037, message = "Judge Even has appeared!") public static NpcStringId JUDGE_EVEN_HAS_APPEARED; - @ClientString(id = 14250038, message = "Nemertess the incarnation of revenge has appeared!") - public static NpcStringId NEMERTESS_THE_INCARNATION_OF_REVENGE_HAS_APPEARED; + @ClientString(id = 14250038, message = "Incarnation of Revenge Nemertess") + public static NpcStringId INCARNATION_OF_REVENGE_NEMERTESS; @ClientString(id = 14250039, message = "We'll guard this place. Use this Sayune to teleport to the next area!") public static NpcStringId WE_LL_GUARD_THIS_PLACE_USE_THIS_SAYUNE_TO_TELEPORT_TO_THE_NEXT_AREA; @@ -39529,7 +42019,7 @@ public final class NpcStringId } catch (Exception e) { - LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '" + field.getName() + "'", e); + LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '"+ field.getName() + "'", e); } } } @@ -39618,11 +42108,11 @@ public final class NpcStringId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: "+ params); } if (params > 10) { - throw new IllegalArgumentException("Maximum param count exceeded: " + params); + throw new IllegalArgumentException("Maximum param count exceeded: "+ params); } if (params != 0) { @@ -39644,6 +42134,6 @@ public final class NpcStringId @Override public final String toString() { - return "NS[" + getId() + ":" + getName() + "]"; + return "NS["+ getId() + ":"+ getName() + "]"; } } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/SystemMessageId.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/SystemMessageId.java index e363589760..abb7ea40bd 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/SystemMessageId.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/SystemMessageId.java @@ -33,8 +33,8 @@ public final class SystemMessageId @ClientString(id = 0, message = "You have been disconnected from the server.") public static SystemMessageId YOU_HAVE_BEEN_DISCONNECTED_FROM_THE_SERVER; - @ClientString(id = 1, message = "The server will be coming down in $s1 second(s). Please find a safe place to log out.") - public static SystemMessageId THE_SERVER_WILL_BE_COMING_DOWN_IN_S1_SECOND_S_PLEASE_FIND_A_SAFE_PLACE_TO_LOG_OUT; + @ClientString(id = 1, message = "The server will be coming down in $s1 sec. Please find a safe place to log out.") + public static SystemMessageId THE_SERVER_WILL_BE_COMING_DOWN_IN_S1_SEC_PLEASE_FIND_A_SAFE_PLACE_TO_LOG_OUT; @ClientString(id = 2, message = "$s1 does not exist.") public static SystemMessageId S1_DOES_NOT_EXIST; @@ -177,8 +177,8 @@ public final class SystemMessageId @ClientString(id = 48, message = "$s1 is not available at this time: being prepared for reuse.") public static SystemMessageId S1_IS_NOT_AVAILABLE_AT_THIS_TIME_BEING_PREPARED_FOR_REUSE; - @ClientString(id = 49, message = "You have equipped your $s1.") - public static SystemMessageId YOU_HAVE_EQUIPPED_YOUR_S1; + @ClientString(id = 49, message = "Equipped $s1.") + public static SystemMessageId EQUIPPED_S1; @ClientString(id = 50, message = "Your target cannot be found.") public static SystemMessageId YOUR_TARGET_CANNOT_BE_FOUND; @@ -570,8 +570,8 @@ public final class SystemMessageId @ClientString(id = 179, message = "You cannot discard those items here.") public static SystemMessageId YOU_CANNOT_DISCARD_THOSE_ITEMS_HERE; - @ClientString(id = 180, message = "You have $s1 day(s) left until deletion. Do you wish to cancel this action?") - public static SystemMessageId YOU_HAVE_S1_DAY_S_LEFT_UNTIL_DELETION_DO_YOU_WISH_TO_CANCEL_THIS_ACTION; + @ClientString(id = 180, message = "You have $s1 d. left until deletion. Do you wish to cancel this action?") + public static SystemMessageId YOU_HAVE_S1_D_LEFT_UNTIL_DELETION_DO_YOU_WISH_TO_CANCEL_THIS_ACTION; @ClientString(id = 181, message = "Cannot see target.") public static SystemMessageId CANNOT_SEE_TARGET; @@ -603,8 +603,8 @@ public final class SystemMessageId @ClientString(id = 190, message = "You have failed to create a clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_CREATE_A_CLAN; - @ClientString(id = 191, message = "Clan member $s1 has been expelled.") - public static SystemMessageId CLAN_MEMBER_S1_HAS_BEEN_EXPELLED; + @ClientString(id = 191, message = "$s1 has been dismissed.") + public static SystemMessageId S1_HAS_BEEN_DISMISSED; @ClientString(id = 192, message = "You have failed to expel $s1 from the clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_EXPEL_S1_FROM_THE_CLAN; @@ -621,14 +621,14 @@ public final class SystemMessageId @ClientString(id = 196, message = "$s1 declined your clan invitation.") public static SystemMessageId S1_DECLINED_YOUR_CLAN_INVITATION; - @ClientString(id = 197, message = "You have withdrawn from the clan.") - public static SystemMessageId YOU_HAVE_WITHDRAWN_FROM_THE_CLAN; + @ClientString(id = 197, message = "You have left the clan.") + public static SystemMessageId YOU_HAVE_LEFT_THE_CLAN; @ClientString(id = 198, message = "You have failed to withdraw from the $s1 clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_WITHDRAW_FROM_THE_S1_CLAN; - @ClientString(id = 199, message = "You have recently been dismissed from a clan. You are not allowed to join another clan for 24 hours.") - public static SystemMessageId YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HOURS; + @ClientString(id = 199, message = "You have recently been dismissed from a clan. You are not allowed to join another clan for 24 hr.") + public static SystemMessageId YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HR; @ClientString(id = 200, message = "You have withdrawn from the party.") public static SystemMessageId YOU_HAVE_WITHDRAWN_FROM_THE_PARTY; @@ -675,8 +675,8 @@ public final class SystemMessageId @ClientString(id = 214, message = "Your title has been changed.") public static SystemMessageId YOUR_TITLE_HAS_BEEN_CHANGED; - @ClientString(id = 215, message = "A clan war with Clan $s1 has started. The clan that cancels the war first will lose 5,000 Clan Reputation. Any clan that cancels the war will be unable to declare a war for 1 week. If your clan member gets killed by the other clan, XP decreases by 1/4 of the amount that decreases in the hunting ground.") - public static SystemMessageId A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND; + @ClientString(id = 215, message = "A clan war with $s1 has started. The clan that withdraws from the war first will lose 10,000 Clan Reputation. Any clan that cancels the war will be unable to declare a war for 1 week. If your clan member is killed by the other clan, XP decreases by 1/4 of the amount that decreases in the hunting ground.") + public static SystemMessageId A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND; @ClientString(id = 216, message = "War with the $s1 clan has ended.") public static SystemMessageId WAR_WITH_THE_S1_CLAN_HAS_ENDED; @@ -690,8 +690,8 @@ public final class SystemMessageId @ClientString(id = 219, message = "Your clan leader has died. You have been defeated by the $s1 Clan.") public static SystemMessageId YOUR_CLAN_LEADER_HAS_DIED_YOU_HAVE_BEEN_DEFEATED_BY_THE_S1_CLAN; - @ClientString(id = 220, message = "You have $s1 minute(s) left until the clan war ends.") - public static SystemMessageId YOU_HAVE_S1_MINUTE_S_LEFT_UNTIL_THE_CLAN_WAR_ENDS; + @ClientString(id = 220, message = "You have $s1 min. left until the clan war ends.") + public static SystemMessageId YOU_HAVE_S1_MIN_LEFT_UNTIL_THE_CLAN_WAR_ENDS; @ClientString(id = 221, message = "The time limit for the clan war is up. War with the $s1 clan is over.") public static SystemMessageId THE_TIME_LIMIT_FOR_THE_CLAN_WAR_IS_UP_WAR_WITH_THE_S1_CLAN_IS_OVER; @@ -729,8 +729,8 @@ public final class SystemMessageId @ClientString(id = 232, message = "After leaving or having been dismissed from a clan, you must wait at least a day before joining another clan.") public static SystemMessageId AFTER_LEAVING_OR_HAVING_BEEN_DISMISSED_FROM_A_CLAN_YOU_MUST_WAIT_AT_LEAST_A_DAY_BEFORE_JOINING_ANOTHER_CLAN; - @ClientString(id = 233, message = "The Academy/Royal Guard/Order of Knights is full and cannot accept new members at this time.") - public static SystemMessageId THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME; + @ClientString(id = 233, message = "This clan is full and cannot accept new members at this time.") + public static SystemMessageId THIS_CLAN_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME; @ClientString(id = 234, message = "The target must be a clan member.") public static SystemMessageId THE_TARGET_MUST_BE_A_CLAN_MEMBER; @@ -810,8 +810,8 @@ public final class SystemMessageId @ClientString(id = 259, message = "Select clan members from list.") public static SystemMessageId SELECT_CLAN_MEMBERS_FROM_LIST; - @ClientString(id = 260, message = "Your clan lost 5,000 Reputation points for withdrawing from the Clan War.") - public static SystemMessageId YOUR_CLAN_LOST_5_000_REPUTATION_POINTS_FOR_WITHDRAWING_FROM_THE_CLAN_WAR; + @ClientString(id = 260, message = "Your clan lost 10,000 Reputation points for withdrawing from the Clan War.") + public static SystemMessageId YOUR_CLAN_LOST_10_000_REPUTATION_POINTS_FOR_WITHDRAWING_FROM_THE_CLAN_WAR; @ClientString(id = 261, message = "Clan name is invalid.") public static SystemMessageId CLAN_NAME_IS_INVALID; @@ -843,20 +843,20 @@ public final class SystemMessageId @ClientString(id = 270, message = "You have already surrendered.") public static SystemMessageId YOU_HAVE_ALREADY_SURRENDERED; - @ClientString(id = 271, message = "A player can only be granted a title if the clan is level 3 or above.") - public static SystemMessageId A_PLAYER_CAN_ONLY_BE_GRANTED_A_TITLE_IF_THE_CLAN_IS_LEVEL_3_OR_ABOVE; + @ClientString(id = 271, message = "The clan must be level 3 or above to grant a title.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_GRANT_A_TITLE; - @ClientString(id = 272, message = "A clan crest can only be registered when the clan's skill level is 3 or above.") - public static SystemMessageId A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE; + @ClientString(id = 272, message = "The clan must be level 3 or above to register a clan crest.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST; - @ClientString(id = 273, message = "A clan war can only be declared when a clan's level is 3 or above.") - public static SystemMessageId A_CLAN_WAR_CAN_ONLY_BE_DECLARED_WHEN_A_CLAN_S_LEVEL_IS_3_OR_ABOVE; + @ClientString(id = 273, message = "The clan must be level 5 or above to declare a clan war.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_5_OR_ABOVE_TO_DECLARE_A_CLAN_WAR; - @ClientString(id = 274, message = "Your clan's level has increased.") - public static SystemMessageId YOUR_CLAN_S_LEVEL_HAS_INCREASED; + @ClientString(id = 274, message = "Your clan level has risen.") + public static SystemMessageId YOUR_CLAN_LEVEL_HAS_RISEN; - @ClientString(id = 275, message = "The clan has failed to increase its level.") - public static SystemMessageId THE_CLAN_HAS_FAILED_TO_INCREASE_ITS_LEVEL; + @ClientString(id = 275, message = "Failed to level up the clan.") + public static SystemMessageId FAILED_TO_LEVEL_UP_THE_CLAN; @ClientString(id = 276, message = "You do not have the necessary materials or prerequisites to learn this skill.") public static SystemMessageId YOU_DO_NOT_HAVE_THE_NECESSARY_MATERIALS_OR_PREREQUISITES_TO_LEARN_THIS_SKILL; @@ -1104,14 +1104,14 @@ public final class SystemMessageId @ClientString(id = 357, message = "It has already been spoiled.") public static SystemMessageId IT_HAS_ALREADY_BEEN_SPOILED; - @ClientString(id = 358, message = "$s1 hour(s) until castle siege conclusion.") - public static SystemMessageId S1_HOUR_S_UNTIL_CASTLE_SIEGE_CONCLUSION; + @ClientString(id = 358, message = "$s1 hr. until castle siege conclusion.") + public static SystemMessageId S1_HR_UNTIL_CASTLE_SIEGE_CONCLUSION; - @ClientString(id = 359, message = "$s1 minute(s) until castle siege conclusion.") - public static SystemMessageId S1_MINUTE_S_UNTIL_CASTLE_SIEGE_CONCLUSION; + @ClientString(id = 359, message = "$s1 min. until castle siege conclusion.") + public static SystemMessageId S1_MIN_UNTIL_CASTLE_SIEGE_CONCLUSION; - @ClientString(id = 360, message = "This castle siege will end in $s1 second(s)!") - public static SystemMessageId THIS_CASTLE_SIEGE_WILL_END_IN_S1_SECOND_S; + @ClientString(id = 360, message = "This castle siege will end in $s1 sec.!") + public static SystemMessageId THIS_CASTLE_SIEGE_WILL_END_IN_S1_SEC; @ClientString(id = 361, message = "Over-hit!") public static SystemMessageId OVER_HIT; @@ -1119,8 +1119,8 @@ public final class SystemMessageId @ClientString(id = 362, message = "You have acquired $s1 bonus XP from a successful over-hit.") public static SystemMessageId YOU_HAVE_ACQUIRED_S1_BONUS_XP_FROM_A_SUCCESSFUL_OVER_HIT; - @ClientString(id = 363, message = "Chat available time: $s1 minute(s).") - public static SystemMessageId CHAT_AVAILABLE_TIME_S1_MINUTE_S; + @ClientString(id = 363, message = "Chat available time: $s1 min.") + public static SystemMessageId CHAT_AVAILABLE_TIME_S1_MIN; @ClientString(id = 364, message = "Enter user's name to search.") public static SystemMessageId ENTER_USER_S_NAME_TO_SEARCH; @@ -1287,8 +1287,8 @@ public final class SystemMessageId @ClientString(id = 418, message = "There is a significant difference between the item's price and its standard price. Please check again.") public static SystemMessageId THERE_IS_A_SIGNIFICANT_DIFFERENCE_BETWEEN_THE_ITEM_S_PRICE_AND_ITS_STANDARD_PRICE_PLEASE_CHECK_AGAIN; - @ClientString(id = 419, message = "$s1 minute(s) of usage time left.") - public static SystemMessageId S1_MINUTE_S_OF_USAGE_TIME_LEFT; + @ClientString(id = 419, message = "$s1 min. of usage time left.") + public static SystemMessageId S1_MIN_OF_USAGE_TIME_LEFT; @ClientString(id = 420, message = "Time expired.") public static SystemMessageId TIME_EXPIRED; @@ -1308,59 +1308,59 @@ public final class SystemMessageId @ClientString(id = 425, message = "Your Create Item level is too low to register this recipe.") public static SystemMessageId YOUR_CREATE_ITEM_LEVEL_IS_TOO_LOW_TO_REGISTER_THIS_RECIPE_2; - @ClientString(id = 426, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 426, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 427, message = "Please contact us.") public static SystemMessageId PLEASE_CONTACT_US; - @ClientString(id = 428, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_2; + @ClientString(id = 428, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_2; - @ClientString(id = 429, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_3; + @ClientString(id = 429, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_3; - @ClientString(id = 430, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_4; + @ClientString(id = 430, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_4; - @ClientString(id = 431, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_5; + @ClientString(id = 431, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_5; - @ClientString(id = 432, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_6; + @ClientString(id = 432, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_6; - @ClientString(id = 433, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_7; + @ClientString(id = 433, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_7; - @ClientString(id = 434, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_8; + @ClientString(id = 434, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_8; - @ClientString(id = 435, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_9; + @ClientString(id = 435, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_9; - @ClientString(id = 436, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_10; + @ClientString(id = 436, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_10; - @ClientString(id = 437, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_11; + @ClientString(id = 437, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_11; - @ClientString(id = 438, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_12; + @ClientString(id = 438, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_12; - @ClientString(id = 439, message = "In accordance with the company's User Agreement and Operational Policy this account has been suspended at the account holder's request. In order to restore the account, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId IN_ACCORDANCE_WITH_THE_COMPANY_S_USER_AGREEMENT_AND_OPERATIONAL_POLICY_THIS_ACCOUNT_HAS_BEEN_SUSPENDED_AT_THE_ACCOUNT_HOLDER_S_REQUEST_IN_ORDER_TO_RESTORE_THE_ACCOUNT_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 439, message = "In accordance with the company's User Agreement and Operational Policy this account has been suspended at the account holder's request. In order to restore the account, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId IN_ACCORDANCE_WITH_THE_COMPANY_S_USER_AGREEMENT_AND_OPERATIONAL_POLICY_THIS_ACCOUNT_HAS_BEEN_SUSPENDED_AT_THE_ACCOUNT_HOLDER_S_REQUEST_IN_ORDER_TO_RESTORE_THE_ACCOUNT_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 440, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_13; + @ClientString(id = 440, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_13; - @ClientString(id = 441, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_14; + @ClientString(id = 441, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_14; - @ClientString(id = 442, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_15; + @ClientString(id = 442, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_15; - @ClientString(id = 443, message = "You cannot use the game services as your identity has not been verified. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).Service Center.") - public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_SERVICE_CENTER_FONT; + @ClientString(id = 443, message = "You cannot use the game services as your identity has not been verified. For more information, please visit the Support Center on the official website (https://support.4game.com).Service Center.") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_SERVICE_CENTER_FONT; @ClientString(id = 444, message = "This account and all related accounts have been restricted as you have requested a membership withdrawal.") public static SystemMessageId THIS_ACCOUNT_AND_ALL_RELATED_ACCOUNTS_HAVE_BEEN_RESTRICTED_AS_YOU_HAVE_REQUESTED_A_MEMBERSHIP_WITHDRAWAL; @@ -1368,8 +1368,8 @@ public final class SystemMessageId @ClientString(id = 445, message = "(Reference Number Regarding Membership Withdrawal Request: $s1)") public static SystemMessageId REFERENCE_NUMBER_REGARDING_MEMBERSHIP_WITHDRAWAL_REQUEST_S1; - @ClientString(id = 446, message = "For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 446, message = "For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 447, message = ".") public static SystemMessageId EMPTY; @@ -1380,20 +1380,20 @@ public final class SystemMessageId @ClientString(id = 449, message = "The username and password do not match.") public static SystemMessageId THE_USERNAME_AND_PASSWORD_DO_NOT_MATCH; - @ClientString(id = 450, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_16; + @ClientString(id = 450, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_16; @ClientString(id = 451, message = "The password you have entered is incorrect.") public static SystemMessageId THE_PASSWORD_YOU_HAVE_ENTERED_IS_INCORRECT; - @ClientString(id = 452, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_17; + @ClientString(id = 452, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_17; @ClientString(id = 453, message = "Incorrect account information.") public static SystemMessageId INCORRECT_ACCOUNT_INFORMATION; - @ClientString(id = 454, message = "For more details, please contact our customer service center at https://support.lineage2.com.") - public static SystemMessageId FOR_MORE_DETAILS_PLEASE_CONTACT_OUR_CUSTOMER_SERVICE_CENTER_AT_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 454, message = "For more details, please contact our customer service center at https://support.4game.com.") + public static SystemMessageId FOR_MORE_DETAILS_PLEASE_CONTACT_OUR_CUSTOMER_SERVICE_CENTER_AT_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 455, message = "Account is already in use.") public static SystemMessageId ACCOUNT_IS_ALREADY_IN_USE; @@ -1410,8 +1410,8 @@ public final class SystemMessageId @ClientString(id = 459, message = "To continue playing, please purchase Lineage II") public static SystemMessageId TO_CONTINUE_PLAYING_PLEASE_PURCHASE_LINEAGE_II; - @ClientString(id = 460, message = "either directly from the PlayNC Store or from any leading games retailer.") - public static SystemMessageId EITHER_DIRECTLY_FROM_THE_PLAYNC_STORE_OR_FROM_ANY_LEADING_GAMES_RETAILER; + @ClientString(id = 460, message = "either directly from the 4Game Store or from any leading games retailer.") + public static SystemMessageId EITHER_DIRECTLY_FROM_THE_4GAME_STORE_OR_FROM_ANY_LEADING_GAMES_RETAILER; @ClientString(id = 461, message = "Access failed.") public static SystemMessageId ACCESS_FAILED; @@ -1692,8 +1692,8 @@ public final class SystemMessageId @ClientString(id = 553, message = "The opposing clan has applied for dispersion.") public static SystemMessageId THE_OPPOSING_CLAN_HAS_APPLIED_FOR_DISPERSION; - @ClientString(id = 554, message = "You cannot disperse the clans in your alliance.") - public static SystemMessageId YOU_CANNOT_DISPERSE_THE_CLANS_IN_YOUR_ALLIANCE; + @ClientString(id = 554, message = "The opposing clan has requested to dissolve.") + public static SystemMessageId THE_OPPOSING_CLAN_HAS_REQUESTED_TO_DISSOLVE; @ClientString(id = 555, message = "You cannot move due to the weight of your inventory.") public static SystemMessageId YOU_CANNOT_MOVE_DUE_TO_THE_WEIGHT_OF_YOUR_INVENTORY; @@ -1836,8 +1836,8 @@ public final class SystemMessageId @ClientString(id = 601, message = "There are $s1 petitions currently on the waiting list.") public static SystemMessageId THERE_ARE_S1_PETITIONS_CURRENTLY_ON_THE_WAITING_LIST; - @ClientString(id = 602, message = "The Petition Service is currently unavailable. Please send a support ticket by visiting https://support.lineage2.com.") - public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 602, message = "The Petition Service is currently unavailable. Please send a support ticket by visiting https://support.4game.com.") + public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 603, message = "That item cannot be discarded or exchanged.") public static SystemMessageId THAT_ITEM_CANNOT_BE_DISCARDED_OR_EXCHANGED; @@ -2049,8 +2049,8 @@ public final class SystemMessageId @ClientString(id = 672, message = "$s1 Adena disappeared.") public static SystemMessageId S1_ADENA_DISAPPEARED; - @ClientString(id = 673, message = "Only a clan leader whose clan is of level 2 or above is allowed to participate in a clan hall auction.") - public static SystemMessageId ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION; + @ClientString(id = 673, message = "You can participate in the clan hall auction if your clan level is 4 or above and you are the clan leader or have the auction right.") + public static SystemMessageId YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT; @ClientString(id = 674, message = "It has not yet been seven days since canceling an auction.") public static SystemMessageId IT_HAS_NOT_YET_BEEN_SEVEN_DAYS_SINCE_CANCELING_AN_AUCTION; @@ -2118,8 +2118,8 @@ public final class SystemMessageId @ClientString(id = 695, message = "You cannot set the name of the pet.") public static SystemMessageId YOU_CANNOT_SET_THE_NAME_OF_THE_PET; - @ClientString(id = 696, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_18; + @ClientString(id = 696, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_18; @ClientString(id = 697, message = "The item enchant value is strange.") public static SystemMessageId THE_ITEM_ENCHANT_VALUE_IS_STRANGE; @@ -2271,8 +2271,8 @@ public final class SystemMessageId @ClientString(id = 746, message = "It is not currently a petition.") public static SystemMessageId IT_IS_NOT_CURRENTLY_A_PETITION; - @ClientString(id = 747, message = "If you need help, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId IF_YOU_NEED_HELP_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 747, message = "If you need help, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId IF_YOU_NEED_HELP_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 748, message = "The distance is too far and so the casting has been stopped.") public static SystemMessageId THE_DISTANCE_IS_TOO_FAR_AND_SO_THE_CASTING_HAS_BEEN_STOPPED; @@ -2292,23 +2292,23 @@ public final class SystemMessageId @ClientString(id = 753, message = "You cannot position mercenaries here.") public static SystemMessageId YOU_CANNOT_POSITION_MERCENARIES_HERE; - @ClientString(id = 754, message = "There are $s1 hour(s) and $s2 minute(s) left in this week's usage time.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT_IN_THIS_WEEK_S_USAGE_TIME; + @ClientString(id = 754, message = "There are $s1 hr. and $s2 min. left in this week's usage time.") + public static SystemMessageId THERE_ARE_S1_HR_AND_S2_MIN_LEFT_IN_THIS_WEEK_S_USAGE_TIME; - @ClientString(id = 755, message = "There are $s1 minute(s) left in this week's usage time.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_IN_THIS_WEEK_S_USAGE_TIME; + @ClientString(id = 755, message = "There are $s1 min. left in this week's usage time.") + public static SystemMessageId THERE_ARE_S1_MIN_LEFT_IN_THIS_WEEK_S_USAGE_TIME; @ClientString(id = 756, message = "This week's usage time has finished.") public static SystemMessageId THIS_WEEK_S_USAGE_TIME_HAS_FINISHED; - @ClientString(id = 757, message = "There are $s1 hour(s) and $s2 minute(s) left in the fixed use time.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME; + @ClientString(id = 757, message = "There are $s1 hr. and $s2 min. left in the fixed use time.") + public static SystemMessageId THERE_ARE_S1_HR_AND_S2_MIN_LEFT_IN_THE_FIXED_USE_TIME; - @ClientString(id = 758, message = "There are $s1 hour(s) $s2 minute(s) left in this week's play time.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_S2_MINUTE_S_LEFT_IN_THIS_WEEK_S_PLAY_TIME; + @ClientString(id = 758, message = "There are $s1 hr. $s2 min. left in this week's play time.") + public static SystemMessageId THERE_ARE_S1_HR_S2_MIN_LEFT_IN_THIS_WEEK_S_PLAY_TIME; - @ClientString(id = 759, message = "There are $s1 minute(s) left in this week's play time.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_IN_THIS_WEEK_S_PLAY_TIME; + @ClientString(id = 759, message = "There are $s1 min. left in this week's play time.") + public static SystemMessageId THERE_ARE_S1_MIN_LEFT_IN_THIS_WEEK_S_PLAY_TIME; @ClientString(id = 760, message = "$c1 cannot join the clan because one day has not yet passed since they left another clan.") public static SystemMessageId C1_CANNOT_JOIN_THE_CLAN_BECAUSE_ONE_DAY_HAS_NOT_YET_PASSED_SINCE_THEY_LEFT_ANOTHER_CLAN; @@ -2322,8 +2322,8 @@ public final class SystemMessageId @ClientString(id = 763, message = "You failed at sending the package because you are too far from the warehouse.") public static SystemMessageId YOU_FAILED_AT_SENDING_THE_PACKAGE_BECAUSE_YOU_ARE_TOO_FAR_FROM_THE_WAREHOUSE; - @ClientString(id = 764, message = "You have played for $s1 hour(s). Please take a break.") - public static SystemMessageId YOU_HAVE_PLAYED_FOR_S1_HOUR_S_PLEASE_TAKE_A_BREAK; + @ClientString(id = 764, message = "You have played for $s1 hr. Please take a break.") + public static SystemMessageId YOU_HAVE_PLAYED_FOR_S1_HR_PLEASE_TAKE_A_BREAK; @ClientString(id = 765, message = "GameGuard is already running. Please try running it again after rebooting.") public static SystemMessageId GAMEGUARD_IS_ALREADY_RUNNING_PLEASE_TRY_RUNNING_IT_AGAIN_AFTER_REBOOTING; @@ -2418,8 +2418,8 @@ public final class SystemMessageId @ClientString(id = 795, message = "Only clan leaders are authorized to set rights.") public static SystemMessageId ONLY_CLAN_LEADERS_ARE_AUTHORIZED_TO_SET_RIGHTS; - @ClientString(id = 796, message = "Your remaining observation time is $s1 minute(s).") - public static SystemMessageId YOUR_REMAINING_OBSERVATION_TIME_IS_S1_MINUTE_S; + @ClientString(id = 796, message = "Your remaining observation time is $s1 min.") + public static SystemMessageId YOUR_REMAINING_OBSERVATION_TIME_IS_S1_MIN; @ClientString(id = 797, message = "You may create up to 48 macros.") public static SystemMessageId YOU_MAY_CREATE_UP_TO_48_MACROS; @@ -2457,8 +2457,8 @@ public final class SystemMessageId @ClientString(id = 808, message = "You are stuck. You may submit a petition by typing .") public static SystemMessageId YOU_ARE_STUCK_YOU_MAY_SUBMIT_A_PETITION_BY_TYPING_GM; - @ClientString(id = 809, message = "You are stuck. You will be transported to the nearest village in five minutes.") - public static SystemMessageId YOU_ARE_STUCK_YOU_WILL_BE_TRANSPORTED_TO_THE_NEAREST_VILLAGE_IN_FIVE_MINUTES; + @ClientString(id = 809, message = "You are stuck. You will be transported to the nearest village in five min.") + public static SystemMessageId YOU_ARE_STUCK_YOU_WILL_BE_TRANSPORTED_TO_THE_NEAREST_VILLAGE_IN_FIVE_MIN; @ClientString(id = 810, message = "Invalid macro. Refer to the Help file for instructions.") public static SystemMessageId INVALID_MACRO_REFER_TO_THE_HELP_FILE_FOR_INSTRUCTIONS; @@ -2484,23 +2484,23 @@ public final class SystemMessageId @ClientString(id = 817, message = "Now selling tickets for Monster Race $s1!") public static SystemMessageId NOW_SELLING_TICKETS_FOR_MONSTER_RACE_S1; - @ClientString(id = 818, message = "Ticket sales for the Monster Race will end in $s1 minute(s).") - public static SystemMessageId TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MINUTE_S; + @ClientString(id = 818, message = "Ticket sales for the Monster Race will end in $s1 min.") + public static SystemMessageId TICKET_SALES_FOR_THE_MONSTER_RACE_WILL_END_IN_S1_MIN; @ClientString(id = 819, message = "Tickets sales are closed for Monster Race $s1. Odds are posted.") public static SystemMessageId TICKETS_SALES_ARE_CLOSED_FOR_MONSTER_RACE_S1_ODDS_ARE_POSTED; - @ClientString(id = 820, message = "Monster Race $s2 will begin in $s1 minute(s)!") - public static SystemMessageId MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MINUTE_S; + @ClientString(id = 820, message = "Monster Race $s2 will begin in $s1 min.!") + public static SystemMessageId MONSTER_RACE_S2_WILL_BEGIN_IN_S1_MIN; - @ClientString(id = 821, message = "Monster Race $s1 will begin in 30 seconds!") - public static SystemMessageId MONSTER_RACE_S1_WILL_BEGIN_IN_30_SECONDS; + @ClientString(id = 821, message = "Monster Race $s1 will begin in 30 sec.!") + public static SystemMessageId MONSTER_RACE_S1_WILL_BEGIN_IN_30_SEC; - @ClientString(id = 822, message = "Monster Race $s1 is about to begin! Countdown in five seconds!") - public static SystemMessageId MONSTER_RACE_S1_IS_ABOUT_TO_BEGIN_COUNTDOWN_IN_FIVE_SECONDS; + @ClientString(id = 822, message = "Monster Race $s1 is about to begin! Countdown in five sec.!") + public static SystemMessageId MONSTER_RACE_S1_IS_ABOUT_TO_BEGIN_COUNTDOWN_IN_FIVE_SEC; - @ClientString(id = 823, message = "The race will begin in $s1 second(s)!") - public static SystemMessageId THE_RACE_WILL_BEGIN_IN_S1_SECOND_S; + @ClientString(id = 823, message = "The race will begin in $s1 sec.!") + public static SystemMessageId THE_RACE_WILL_BEGIN_IN_S1_SEC; @ClientString(id = 824, message = "They're off!") public static SystemMessageId THEY_RE_OFF; @@ -2922,14 +2922,14 @@ public final class SystemMessageId @ClientString(id = 963, message = "Please determine the manufacturing price.") public static SystemMessageId PLEASE_DETERMINE_THE_MANUFACTURING_PRICE; - @ClientString(id = 964, message = "Chatting is prohibited for $s1 seconds.") - public static SystemMessageId CHATTING_IS_PROHIBITED_FOR_S1_SECONDS; + @ClientString(id = 964, message = "Chatting is prohibited for $s1 sec.") + public static SystemMessageId CHATTING_IS_PROHIBITED_FOR_S1_SEC; @ClientString(id = 965, message = "The chatting prohibition has been removed.") public static SystemMessageId THE_CHATTING_PROHIBITION_HAS_BEEN_REMOVED; - @ClientString(id = 966, message = "Chatting is currently prohibited. If you try to chat before the prohibition is removed, the prohibition time will increase even further. Chatting ban time remaining: $s1 seconds") - public static SystemMessageId CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS; + @ClientString(id = 966, message = "Chatting is currently prohibited. If you try to chat before the prohibition is removed, the prohibition time will increase even further. Chatting ban time remaining: $s1 sec.") + public static SystemMessageId CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC; @ClientString(id = 967, message = "Do you accept $c1's party invitation? (Item Distribution: Random including spoil.)") public static SystemMessageId DO_YOU_ACCEPT_C1_S_PARTY_INVITATION_ITEM_DISTRIBUTION_RANDOM_INCLUDING_SPOIL; @@ -2970,14 +2970,14 @@ public final class SystemMessageId @ClientString(id = 979, message = "The ferry has arrived at Talking Island Harbor.") public static SystemMessageId THE_FERRY_HAS_ARRIVED_AT_TALKING_ISLAND_HARBOR; - @ClientString(id = 980, message = "The ferry will leave for Gludin Harbor after anchoring for ten minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_AFTER_ANCHORING_FOR_TEN_MINUTES; + @ClientString(id = 980, message = "The ferry will leave for Gludin Harbor after anchoring for ten min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_AFTER_ANCHORING_FOR_TEN_MIN; - @ClientString(id = 981, message = "The ferry will leave for Gludin Harbor in five minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_IN_FIVE_MINUTES; + @ClientString(id = 981, message = "The ferry will leave for Gludin Harbor in five min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_IN_FIVE_MIN; - @ClientString(id = 982, message = "The ferry will leave for Gludin Harbor in one minute.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_IN_ONE_MINUTE; + @ClientString(id = 982, message = "The ferry will leave for Gludin Harbor in one min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GLUDIN_HARBOR_IN_ONE_MIN; @ClientString(id = 983, message = "Those wishing to ride the ferry should make haste to get on.") public static SystemMessageId THOSE_WISHING_TO_RIDE_THE_FERRY_SHOULD_MAKE_HASTE_TO_GET_ON; @@ -2991,14 +2991,14 @@ public final class SystemMessageId @ClientString(id = 986, message = "The ferry has arrived at Gludin Harbor.") public static SystemMessageId THE_FERRY_HAS_ARRIVED_AT_GLUDIN_HARBOR; - @ClientString(id = 987, message = "The ferry will leave for Talking Island Harbor after anchoring for ten minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_AFTER_ANCHORING_FOR_TEN_MINUTES; + @ClientString(id = 987, message = "The ferry will leave for Talking Island Harbor after anchoring for ten min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_AFTER_ANCHORING_FOR_TEN_MIN; - @ClientString(id = 988, message = "The ferry will leave for Talking Island Harbor in five minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_IN_FIVE_MINUTES; + @ClientString(id = 988, message = "The ferry will leave for Talking Island Harbor in five min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_IN_FIVE_MIN; - @ClientString(id = 989, message = "The ferry will leave for Talking Island Harbor in one minute.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_IN_ONE_MINUTE; + @ClientString(id = 989, message = "The ferry will leave for Talking Island Harbor in one min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_TALKING_ISLAND_HARBOR_IN_ONE_MIN; @ClientString(id = 990, message = "The ferry will be leaving soon for Talking Island Harbor.") public static SystemMessageId THE_FERRY_WILL_BE_LEAVING_SOON_FOR_TALKING_ISLAND_HARBOR; @@ -3009,14 +3009,14 @@ public final class SystemMessageId @ClientString(id = 992, message = "The ferry has arrived at Giran Harbor.") public static SystemMessageId THE_FERRY_HAS_ARRIVED_AT_GIRAN_HARBOR; - @ClientString(id = 993, message = "The ferry will leave for Giran Harbor after anchoring for ten minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_AFTER_ANCHORING_FOR_TEN_MINUTES; + @ClientString(id = 993, message = "The ferry will leave for Giran Harbor after anchoring for ten min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_AFTER_ANCHORING_FOR_TEN_MIN; - @ClientString(id = 994, message = "The ferry will leave for Giran Harbor in five minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_IN_FIVE_MINUTES; + @ClientString(id = 994, message = "The ferry will leave for Giran Harbor in five min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_IN_FIVE_MIN; - @ClientString(id = 995, message = "The ferry will leave for Giran Harbor in one minute.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_IN_ONE_MINUTE; + @ClientString(id = 995, message = "The ferry will leave for Giran Harbor in one min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_GIRAN_HARBOR_IN_ONE_MIN; @ClientString(id = 996, message = "The ferry will be leaving soon for Giran Harbor.") public static SystemMessageId THE_FERRY_WILL_BE_LEAVING_SOON_FOR_GIRAN_HARBOR; @@ -3024,14 +3024,14 @@ public final class SystemMessageId @ClientString(id = 997, message = "The ferry is leaving for Giran Harbor.") public static SystemMessageId THE_FERRY_IS_LEAVING_FOR_GIRAN_HARBOR; - @ClientString(id = 998, message = "The Innadril pleasure boat has arrived. It will anchor for ten minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_HAS_ARRIVED_IT_WILL_ANCHOR_FOR_TEN_MINUTES; + @ClientString(id = 998, message = "The Innadril pleasure boat has arrived. It will anchor for ten min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_HAS_ARRIVED_IT_WILL_ANCHOR_FOR_TEN_MIN; - @ClientString(id = 999, message = "The Innadril pleasure boat will leave in five minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_FIVE_MINUTES; + @ClientString(id = 999, message = "The Innadril pleasure boat will leave in five min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_FIVE_MIN; - @ClientString(id = 1000, message = "The Innadril pleasure boat will leave in one minute.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_ONE_MINUTE; + @ClientString(id = 1000, message = "The Innadril pleasure boat will leave in one min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_LEAVE_IN_ONE_MIN; @ClientString(id = 1001, message = "The Innadril pleasure boat will be leaving soon.") public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_BE_LEAVING_SOON; @@ -3054,23 +3054,23 @@ public final class SystemMessageId @ClientString(id = 1007, message = "The preliminary match registration for $s1 has finished.") public static SystemMessageId THE_PRELIMINARY_MATCH_REGISTRATION_FOR_S1_HAS_FINISHED; - @ClientString(id = 1008, message = "A hungry strider cannot be mounted or dismounted.") - public static SystemMessageId A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED; + @ClientString(id = 1008, message = "You can neither mount nor dismount while hungry.") + public static SystemMessageId YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY; - @ClientString(id = 1009, message = "A strider cannot be ridden when dead.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD; + @ClientString(id = 1009, message = "You cannot use a mount while dead.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_WHILE_DEAD; - @ClientString(id = 1010, message = "A dead strider cannot be ridden.") - public static SystemMessageId A_DEAD_STRIDER_CANNOT_BE_RIDDEN; + @ClientString(id = 1010, message = "You cannot use a dead mount.") + public static SystemMessageId YOU_CANNOT_USE_A_DEAD_MOUNT; - @ClientString(id = 1011, message = "A strider in battle cannot be ridden.") - public static SystemMessageId A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN; + @ClientString(id = 1011, message = "You cannot use a mount that is in battle.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_THAT_IS_IN_BATTLE; - @ClientString(id = 1012, message = "A strider cannot be ridden while in battle.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; + @ClientString(id = 1012, message = "You cannot use a mount while in battle.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_WHILE_IN_BATTLE; - @ClientString(id = 1013, message = "A strider can be ridden only when standing.") - public static SystemMessageId A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; + @ClientString(id = 1013, message = "You must be standing to use a mount.") + public static SystemMessageId YOU_MUST_BE_STANDING_TO_USE_A_MOUNT; @ClientString(id = 1014, message = "Your pet gained $s1 XP.") public static SystemMessageId YOUR_PET_GAINED_S1_XP; @@ -3219,11 +3219,11 @@ public final class SystemMessageId @ClientString(id = 1062, message = "Writing something new is possible after level 10.") public static SystemMessageId WRITING_SOMETHING_NEW_IS_POSSIBLE_AFTER_LEVEL_10; - @ClientString(id = 1063, message = "The Petition Service is currently unavailable, please send a support ticket on https://lineage2.custhelp.com; If you become trapped or unable to move, please use the '/unstuck' command.") - public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_ON_HTTPS_LINEAGE2_CUSTHELP_COM_IF_YOU_BECOME_TRAPPED_OR_UNABLE_TO_MOVE_PLEASE_USE_THE_UNSTUCK_COMMAND; + @ClientString(id = 1063, message = "The Petition Service is currently unavailable, please send a support ticket on https://support.4game.com; If you become trapped or unable to move, please use the '/unstuck' command.") + public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_ON_HTTPS_SUPPORT_4GAME_COM_IF_YOU_BECOME_TRAPPED_OR_UNABLE_TO_MOVE_PLEASE_USE_THE_UNSTUCK_COMMAND; - @ClientString(id = 1064, message = "The equipment, +$s1 $s2, has been removed.") - public static SystemMessageId THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED; + @ClientString(id = 1064, message = "+$s1 $s2 has been unequipped.") + public static SystemMessageId S1_S2_HAS_BEEN_UNEQUIPPED; @ClientString(id = 1065, message = "While operating a private store or workshop, you cannot discard, destroy, or trade an item.") public static SystemMessageId WHILE_OPERATING_A_PRIVATE_STORE_OR_WORKSHOP_YOU_CANNOT_DISCARD_DESTROY_OR_TRADE_AN_ITEM; @@ -3438,8 +3438,8 @@ public final class SystemMessageId @ClientString(id = 1135, message = "While you are engaged in combat, you cannot operate a private store or private workshop.") public static SystemMessageId WHILE_YOU_ARE_ENGAGED_IN_COMBAT_YOU_CANNOT_OPERATE_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP; - @ClientString(id = 1136, message = "Since there was an account that used this IP and attempted to log in illegally, this account is not allowed to connect to the game server for $s1 minute(s). Please use another game server.") - public static SystemMessageId SINCE_THERE_WAS_AN_ACCOUNT_THAT_USED_THIS_IP_AND_ATTEMPTED_TO_LOG_IN_ILLEGALLY_THIS_ACCOUNT_IS_NOT_ALLOWED_TO_CONNECT_TO_THE_GAME_SERVER_FOR_S1_MINUTE_S_PLEASE_USE_ANOTHER_GAME_SERVER; + @ClientString(id = 1136, message = "Since there was an account that used this IP and attempted to log in illegally, this account is not allowed to connect to the game server for $s1 min. Please use another game server.") + public static SystemMessageId SINCE_THERE_WAS_AN_ACCOUNT_THAT_USED_THIS_IP_AND_ATTEMPTED_TO_LOG_IN_ILLEGALLY_THIS_ACCOUNT_IS_NOT_ALLOWED_TO_CONNECT_TO_THE_GAME_SERVER_FOR_S1_MIN_PLEASE_USE_ANOTHER_GAME_SERVER; @ClientString(id = 1137, message = "$c1 harvested $s3 $s2(s).") public static SystemMessageId C1_HARVESTED_S3_S2_S; @@ -3501,62 +3501,62 @@ public final class SystemMessageId @ClientString(id = 1156, message = "+$s2 $s3 has been purchased from $c1 at the price of $s4 Adena.") public static SystemMessageId S2_S3_HAS_BEEN_PURCHASED_FROM_C1_AT_THE_PRICE_OF_S4_ADENA; - @ClientString(id = 1157, message = "The preview state only lasts for 10 seconds. If you wish to continue, click OK.") - public static SystemMessageId THE_PREVIEW_STATE_ONLY_LASTS_FOR_10_SECONDS_IF_YOU_WISH_TO_CONTINUE_CLICK_OK; + @ClientString(id = 1157, message = "The preview state only lasts for 10 sec. If you wish to continue, click OK.") + public static SystemMessageId THE_PREVIEW_STATE_ONLY_LASTS_FOR_10_SEC_IF_YOU_WISH_TO_CONTINUE_CLICK_OK; @ClientString(id = 1158, message = "You cannot dismount from this elevation.") public static SystemMessageId YOU_CANNOT_DISMOUNT_FROM_THIS_ELEVATION; - @ClientString(id = 1159, message = "The ferry from Talking Island will arrive at Gludin Harbor in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_ARRIVE_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1159, message = "The ferry from Talking Island will arrive at Gludin Harbor in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_ARRIVE_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1160, message = "The ferry from Talking Island will be arriving at Gludin Harbor in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1160, message = "The ferry from Talking Island will be arriving at Gludin Harbor in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1161, message = "The ferry from Talking Island will be arriving at Gludin Harbor in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1161, message = "The ferry from Talking Island will be arriving at Gludin Harbor in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MIN; - @ClientString(id = 1162, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 15 minutes.") - public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_15_MINUTES; + @ClientString(id = 1162, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 15 min.") + public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_15_MIN; - @ClientString(id = 1163, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1163, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1164, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1164, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1165, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1165, message = "The ferry from Giran Harbor will be arriving at Talking Island in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_GIRAN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_1_MIN; - @ClientString(id = 1166, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 20 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_20_MINUTES; + @ClientString(id = 1166, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 20 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_20_MIN; - @ClientString(id = 1167, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 15 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_15_MINUTES; + @ClientString(id = 1167, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 15 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_15_MIN; - @ClientString(id = 1168, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1168, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1169, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1169, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1170, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1170, message = "The ferry from Talking Island will be arriving at Giran Harbor in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_TALKING_ISLAND_WILL_BE_ARRIVING_AT_GIRAN_HARBOR_IN_APPROXIMATELY_1_MIN; - @ClientString(id = 1171, message = "The Innadril pleasure boat will arrive in approximately 20 minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_20_MINUTES; + @ClientString(id = 1171, message = "The Innadril pleasure boat will arrive in approximately 20 min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_20_MIN; - @ClientString(id = 1172, message = "The Innadril pleasure boat will arrive in approximately 15 minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_15_MINUTES; + @ClientString(id = 1172, message = "The Innadril pleasure boat will arrive in approximately 15 min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_15_MIN; - @ClientString(id = 1173, message = "The Innadril pleasure boat will arrive in approximately 10 minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1173, message = "The Innadril pleasure boat will arrive in approximately 10 min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1174, message = "The Innadril pleasure boat will arrive in approximately 5 minutes.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1174, message = "The Innadril pleasure boat will arrive in approximately 5 min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1175, message = "The Innadril pleasure boat will arrive in approximately 1 minute.") - public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1175, message = "The Innadril pleasure boat will arrive in approximately 1 min.") + public static SystemMessageId THE_INNADRIL_PLEASURE_BOAT_WILL_ARRIVE_IN_APPROXIMATELY_1_MIN; @ClientString(id = 1176, message = "The SSQ Competition period is underway.") public static SystemMessageId THE_SSQ_COMPETITION_PERIOD_IS_UNDERWAY; @@ -3585,14 +3585,14 @@ public final class SystemMessageId @ClientString(id = 1184, message = "This is a period when server statistics are calculated.") public static SystemMessageId THIS_IS_A_PERIOD_WHEN_SERVER_STATISTICS_ARE_CALCULATED; - @ClientString(id = 1185, message = " days left until deletion.") + @ClientString(id = 1185, message = "days left until deletion.") public static SystemMessageId DAYS_LEFT_UNTIL_DELETION; - @ClientString(id = 1186, message = "To create a new account, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId TO_CREATE_A_NEW_ACCOUNT_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 1186, message = "To create a new account, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId TO_CREATE_A_NEW_ACCOUNT_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 1187, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_19; + @ClientString(id = 1187, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_19; @ClientString(id = 1188, message = "Your selected target can no longer receive a recommendation.") public static SystemMessageId YOUR_SELECTED_TARGET_CAN_NO_LONGER_RECEIVE_A_RECOMMENDATION; @@ -3603,14 +3603,14 @@ public final class SystemMessageId @ClientString(id = 1190, message = "The temporary alliance of the Castle Attacker team has been dissolved.") public static SystemMessageId THE_TEMPORARY_ALLIANCE_OF_THE_CASTLE_ATTACKER_TEAM_HAS_BEEN_DISSOLVED; - @ClientString(id = 1191, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1191, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1192, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1192, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1193, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1193, message = "The ferry from Gludin Harbor will be arriving at Talking Island in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_TALKING_ISLAND_IN_APPROXIMATELY_1_MIN; @ClientString(id = 1194, message = "A mercenary can be assigned to a position from the beginning of the Seal Validation period until the time when a siege starts.") public static SystemMessageId A_MERCENARY_CAN_BE_ASSIGNED_TO_A_POSITION_FROM_THE_BEGINNING_OF_THE_SEAL_VALIDATION_PERIOD_UNTIL_THE_TIME_WHEN_A_SIEGE_STARTS; @@ -3699,11 +3699,11 @@ public final class SystemMessageId @ClientString(id = 1222, message = "Current Location: $s1 / $s2 / $s3 (GM Consultation Area)") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_GM_CONSULTATION_AREA; - @ClientString(id = 1223, message = "We depart for Talking Island in five minutes.") - public static SystemMessageId WE_DEPART_FOR_TALKING_ISLAND_IN_FIVE_MINUTES; + @ClientString(id = 1223, message = "We depart for Talking Island in five min.") + public static SystemMessageId WE_DEPART_FOR_TALKING_ISLAND_IN_FIVE_MIN; - @ClientString(id = 1224, message = "We depart for Talking Island in one minute.") - public static SystemMessageId WE_DEPART_FOR_TALKING_ISLAND_IN_ONE_MINUTE; + @ClientString(id = 1224, message = "We depart for Talking Island in one min.") + public static SystemMessageId WE_DEPART_FOR_TALKING_ISLAND_IN_ONE_MIN; @ClientString(id = 1225, message = "All aboard for Talking Island!") public static SystemMessageId ALL_ABOARD_FOR_TALKING_ISLAND; @@ -3756,17 +3756,17 @@ public final class SystemMessageId @ClientString(id = 1241, message = "Seven Signs: The Lords of Dawn have won.") public static SystemMessageId SEVEN_SIGNS_THE_LORDS_OF_DAWN_HAVE_WON; - @ClientString(id = 1242, message = "Users who have not verified their age may not log in between the hours of 10:00 p.m. and 6:00 a.m.") - public static SystemMessageId USERS_WHO_HAVE_NOT_VERIFIED_THEIR_AGE_MAY_NOT_LOG_IN_BETWEEN_THE_HOURS_OF_10_00_P_M_AND_6_00_A_M; + @ClientString(id = 1242, message = "Users who have not verified their age may not log in between the hr. of 10:00 p.m. and 6:00 a.m.") + public static SystemMessageId USERS_WHO_HAVE_NOT_VERIFIED_THEIR_AGE_MAY_NOT_LOG_IN_BETWEEN_THE_HR_OF_10_00_P_M_AND_6_00_A_M; @ClientString(id = 1243, message = "The security card number is invalid.") public static SystemMessageId THE_SECURITY_CARD_NUMBER_IS_INVALID; - @ClientString(id = 1244, message = "Users who have not verified their age may not log in between the hours of 10:00 p.m. and 6:00 a.m. Logging off now.") - public static SystemMessageId USERS_WHO_HAVE_NOT_VERIFIED_THEIR_AGE_MAY_NOT_LOG_IN_BETWEEN_THE_HOURS_OF_10_00_P_M_AND_6_00_A_M_LOGGING_OFF_NOW; + @ClientString(id = 1244, message = "Users who have not verified their age may not log in between the hr. of 10:00 p.m. and 6:00 a.m. Logging off now.") + public static SystemMessageId USERS_WHO_HAVE_NOT_VERIFIED_THEIR_AGE_MAY_NOT_LOG_IN_BETWEEN_THE_HR_OF_10_00_P_M_AND_6_00_A_M_LOGGING_OFF_NOW; - @ClientString(id = 1245, message = "You will be logged out in $s1 minute(s).") - public static SystemMessageId YOU_WILL_BE_LOGGED_OUT_IN_S1_MINUTE_S; + @ClientString(id = 1245, message = "You will be logged out in $s1 min.") + public static SystemMessageId YOU_WILL_BE_LOGGED_OUT_IN_S1_MIN; @ClientString(id = 1246, message = "$c1 has died and dropped $s2 Adena.") public static SystemMessageId C1_HAS_DIED_AND_DROPPED_S2_ADENA; @@ -3951,8 +3951,8 @@ public final class SystemMessageId @ClientString(id = 1306, message = "You are no longer trying on equipment.") public static SystemMessageId YOU_ARE_NO_LONGER_TRYING_ON_EQUIPMENT_2; - @ClientString(id = 1307, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_20; + @ClientString(id = 1307, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_20; @ClientString(id = 1308, message = "Congratulations - You've completed a class transfer!") public static SystemMessageId CONGRATULATIONS_YOU_VE_COMPLETED_A_CLASS_TRANSFER; @@ -3969,8 +3969,8 @@ public final class SystemMessageId @ClientString(id = 1312, message = "The latest version of Windows Live Messenger may be obtained from the Windows Live web site (http://explore.live.com/messenger).") public static SystemMessageId THE_LATEST_VERSION_OF_WINDOWS_LIVE_MESSENGER_MAY_BE_OBTAINED_FROM_THE_WINDOWS_LIVE_WEB_SITE_HTTP_EXPLORE_LIVE_COM_MESSENGER; - @ClientString(id = 1313, message = "To better serve our customers, all chat histories are stored and maintained by NCSOFT. If you do not agree to have your chat records stored, please close the chat window now. For more information regarding this procedure, please visit our home page at http://us.ncsoft.com/en/legal/user-agreements/lineage-2-user-agreement.html. Thank you!") - public static SystemMessageId TO_BETTER_SERVE_OUR_CUSTOMERS_ALL_CHAT_HISTORIES_ARE_STORED_AND_MAINTAINED_BY_NCSOFT_IF_YOU_DO_NOT_AGREE_TO_HAVE_YOUR_CHAT_RECORDS_STORED_PLEASE_CLOSE_THE_CHAT_WINDOW_NOW_FOR_MORE_INFORMATION_REGARDING_THIS_PROCEDURE_PLEASE_VISIT_OUR_HOME_PAGE_AT_HTTP_US_NCSOFT_COM_EN_LEGAL_USER_AGREEMENTS_LINEAGE_2_USER_AGREEMENT_HTML_THANK_YOU; + @ClientString(id = 1313, message = "To better serve our customers, all chat histories are stored and maintained by NCSOFT. If you do not agree to have your chat records stored, please close the chat window now. For more information regarding this procedure, please visit our home page at https://eu.4game.com/licence/view/serviceId/1006/type/1. Thank you!") + public static SystemMessageId TO_BETTER_SERVE_OUR_CUSTOMERS_ALL_CHAT_HISTORIES_ARE_STORED_AND_MAINTAINED_BY_NCSOFT_IF_YOU_DO_NOT_AGREE_TO_HAVE_YOUR_CHAT_RECORDS_STORED_PLEASE_CLOSE_THE_CHAT_WINDOW_NOW_FOR_MORE_INFORMATION_REGARDING_THIS_PROCEDURE_PLEASE_VISIT_OUR_HOME_PAGE_AT_HTTPS_EU_4GAME_COM_LICENCE_VIEW_SERVICEID_1006_TYPE_1_THANK_YOU; @ClientString(id = 1314, message = "Please enter the passport ID of the person you wish to add to your contact list.") public static SystemMessageId PLEASE_ENTER_THE_PASSPORT_ID_OF_THE_PERSON_YOU_WISH_TO_ADD_TO_YOUR_CONTACT_LIST; @@ -4020,8 +4020,8 @@ public final class SystemMessageId @ClientString(id = 1329, message = "You are currently blocked from using the Private Store and Private Workshop.") public static SystemMessageId YOU_ARE_CURRENTLY_BLOCKED_FROM_USING_THE_PRIVATE_STORE_AND_PRIVATE_WORKSHOP; - @ClientString(id = 1330, message = "You may not open a Private Store or Private Workshop for another $s1 minute(s).") - public static SystemMessageId YOU_MAY_NOT_OPEN_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP_FOR_ANOTHER_S1_MINUTE_S; + @ClientString(id = 1330, message = "You may not open a Private Store or Private Workshop for another $s1 min.") + public static SystemMessageId YOU_MAY_NOT_OPEN_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP_FOR_ANOTHER_S1_MIN; @ClientString(id = 1331, message = "You are no longer blocked from using Private Stores or Private Workshops.") public static SystemMessageId YOU_ARE_NO_LONGER_BLOCKED_FROM_USING_PRIVATE_STORES_OR_PRIVATE_WORKSHOPS; @@ -4143,11 +4143,11 @@ public final class SystemMessageId @ClientString(id = 1370, message = "Your message to $c1 did not reach its recipient. You cannot send mail to the GM staff.") public static SystemMessageId YOUR_MESSAGE_TO_C1_DID_NOT_REACH_ITS_RECIPIENT_YOU_CANNOT_SEND_MAIL_TO_THE_GM_STAFF; - @ClientString(id = 1371, message = "It has been determined that you're not engaged in normal gameplay and a restriction has been imposed upon you. You may not move for $s1 minute(s).") - public static SystemMessageId IT_HAS_BEEN_DETERMINED_THAT_YOU_RE_NOT_ENGAGED_IN_NORMAL_GAMEPLAY_AND_A_RESTRICTION_HAS_BEEN_IMPOSED_UPON_YOU_YOU_MAY_NOT_MOVE_FOR_S1_MINUTE_S; + @ClientString(id = 1371, message = "It has been determined that you're not engaged in normal gameplay and a restriction has been imposed upon you. You may not move for $s1 min.") + public static SystemMessageId IT_HAS_BEEN_DETERMINED_THAT_YOU_RE_NOT_ENGAGED_IN_NORMAL_GAMEPLAY_AND_A_RESTRICTION_HAS_BEEN_IMPOSED_UPON_YOU_YOU_MAY_NOT_MOVE_FOR_S1_MIN; - @ClientString(id = 1372, message = "Your punishment will continue for $s1 minute(s).") - public static SystemMessageId YOUR_PUNISHMENT_WILL_CONTINUE_FOR_S1_MINUTE_S; + @ClientString(id = 1372, message = "Your punishment will continue for $s1 min.") + public static SystemMessageId YOUR_PUNISHMENT_WILL_CONTINUE_FOR_S1_MIN; @ClientString(id = 1373, message = "$c1 has picked up $s2 that was dropped by the Raid Boss.") public static SystemMessageId C1_HAS_PICKED_UP_S2_THAT_WAS_DROPPED_BY_THE_RAID_BOSS; @@ -4254,11 +4254,11 @@ public final class SystemMessageId @ClientString(id = 1407, message = "You are using a computer that does not allow you to log in with two accounts at the same time.") public static SystemMessageId YOU_ARE_USING_A_COMPUTER_THAT_DOES_NOT_ALLOW_YOU_TO_LOG_IN_WITH_TWO_ACCOUNTS_AT_THE_SAME_TIME; - @ClientString(id = 1408, message = "Your prepaid remaining usage time is $s1 hour(s) and $s2 minute(s). You have $s3 paid reservations left.") - public static SystemMessageId YOUR_PREPAID_REMAINING_USAGE_TIME_IS_S1_HOUR_S_AND_S2_MINUTE_S_YOU_HAVE_S3_PAID_RESERVATIONS_LEFT; + @ClientString(id = 1408, message = "Your prepaid remaining usage time is $s1 hr. and $s2 min. You have $s3 paid reservations left.") + public static SystemMessageId YOUR_PREPAID_REMAINING_USAGE_TIME_IS_S1_HR_AND_S2_MIN_YOU_HAVE_S3_PAID_RESERVATIONS_LEFT; - @ClientString(id = 1409, message = "Your prepaid usage time has expired. Your new prepaid reservation will be used. The remaining usage time is $s1 hour(s) and $s2 minute(s).") - public static SystemMessageId YOUR_PREPAID_USAGE_TIME_HAS_EXPIRED_YOUR_NEW_PREPAID_RESERVATION_WILL_BE_USED_THE_REMAINING_USAGE_TIME_IS_S1_HOUR_S_AND_S2_MINUTE_S; + @ClientString(id = 1409, message = "Your prepaid usage time has expired. Your new prepaid reservation will be used. The remaining usage time is $s1 hr. and $s2 min.") + public static SystemMessageId YOUR_PREPAID_USAGE_TIME_HAS_EXPIRED_YOUR_NEW_PREPAID_RESERVATION_WILL_BE_USED_THE_REMAINING_USAGE_TIME_IS_S1_HR_AND_S2_MIN; @ClientString(id = 1410, message = "Your prepaid usage time has expired. You do not have any more prepaid reservations left.") public static SystemMessageId YOUR_PREPAID_USAGE_TIME_HAS_EXPIRED_YOU_DO_NOT_HAVE_ANY_MORE_PREPAID_RESERVATIONS_LEFT; @@ -4266,8 +4266,8 @@ public final class SystemMessageId @ClientString(id = 1411, message = "The number of your prepaid reservations has changed.") public static SystemMessageId THE_NUMBER_OF_YOUR_PREPAID_RESERVATIONS_HAS_CHANGED; - @ClientString(id = 1412, message = "Your prepaid usage time has $s1 minute(s) left.") - public static SystemMessageId YOUR_PREPAID_USAGE_TIME_HAS_S1_MINUTE_S_LEFT; + @ClientString(id = 1412, message = "Your prepaid usage time has $s1 min. left.") + public static SystemMessageId YOUR_PREPAID_USAGE_TIME_HAS_S1_MIN_LEFT; @ClientString(id = 1413, message = "You do not meet the requirements to enter that party room.") public static SystemMessageId YOU_DO_NOT_MEET_THE_REQUIREMENTS_TO_ENTER_THAT_PARTY_ROOM; @@ -4356,8 +4356,8 @@ public final class SystemMessageId @ClientString(id = 1441, message = "Skill enchant failed. The skill will be initialized.") public static SystemMessageId SKILL_ENCHANT_FAILED_THE_SKILL_WILL_BE_INITIALIZED; - @ClientString(id = 1442, message = "Remaining Time: $s1 second(s)") - public static SystemMessageId REMAINING_TIME_S1_SECOND_S; + @ClientString(id = 1442, message = "Remaining Time: $s1 sec.") + public static SystemMessageId REMAINING_TIME_S1_SEC; @ClientString(id = 1443, message = "You do not have enough SP to enchant that skill.") public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_SP_TO_ENCHANT_THAT_SKILL; @@ -4506,8 +4506,8 @@ public final class SystemMessageId @ClientString(id = 1491, message = "Failed in trading $s2 of $s1 crops.") public static SystemMessageId FAILED_IN_TRADING_S2_OF_S1_CROPS; - @ClientString(id = 1492, message = "You will be moved to the Olympiad Stadium in $s1 second(s).") - public static SystemMessageId YOU_WILL_BE_MOVED_TO_THE_OLYMPIAD_STADIUM_IN_S1_SECOND_S; + @ClientString(id = 1492, message = "You will be moved to the Olympiad Stadium in $s1 sec.") + public static SystemMessageId YOU_WILL_BE_MOVED_TO_THE_OLYMPIAD_STADIUM_IN_S1_SEC; @ClientString(id = 1493, message = "Your opponent made haste with their tail between their legs; the match has been cancelled.") public static SystemMessageId YOUR_OPPONENT_MADE_HASTE_WITH_THEIR_TAIL_BETWEEN_THEIR_LEGS_THE_MATCH_HAS_BEEN_CANCELLED; @@ -4515,8 +4515,8 @@ public final class SystemMessageId @ClientString(id = 1494, message = "Your opponent does not meet the requirements to do battle; the match has been cancelled.") public static SystemMessageId YOUR_OPPONENT_DOES_NOT_MEET_THE_REQUIREMENTS_TO_DO_BATTLE_THE_MATCH_HAS_BEEN_CANCELLED; - @ClientString(id = 1495, message = "The match will start in $s1 second(s).") - public static SystemMessageId THE_MATCH_WILL_START_IN_S1_SECOND_S; + @ClientString(id = 1495, message = "The match will start in $s1 sec.") + public static SystemMessageId THE_MATCH_WILL_START_IN_S1_SEC; @ClientString(id = 1496, message = "The match has started. Fight!") public static SystemMessageId THE_MATCH_HAS_STARTED_FIGHT; @@ -4527,8 +4527,8 @@ public final class SystemMessageId @ClientString(id = 1498, message = "There is no victor; the match ends in a tie.") public static SystemMessageId THERE_IS_NO_VICTOR_THE_MATCH_ENDS_IN_A_TIE; - @ClientString(id = 1499, message = "You will be moved back to town in $s1 second(s).") - public static SystemMessageId YOU_WILL_BE_MOVED_BACK_TO_TOWN_IN_S1_SECOND_S; + @ClientString(id = 1499, message = "You will be moved back to town in $s1 sec.") + public static SystemMessageId YOU_WILL_BE_MOVED_BACK_TO_TOWN_IN_S1_SEC; @ClientString(id = 1500, message = "$c1 does not meet the participation requirements. Subclasses and Duel Classes cannot participate in the Olympiad.") public static SystemMessageId C1_DOES_NOT_MEET_THE_PARTICIPATION_REQUIREMENTS_SUBCLASSES_AND_DUEL_CLASSES_CANNOT_PARTICIPATE_IN_THE_OLYMPIAD; @@ -4560,8 +4560,8 @@ public final class SystemMessageId @ClientString(id = 1509, message = "You cannot use that skill in a Olympiad match.") public static SystemMessageId YOU_CANNOT_USE_THAT_SKILL_IN_A_OLYMPIAD_MATCH; - @ClientString(id = 1510, message = "$c1 is attempting to do a resurrection that restores $s2($s3%%) XP. Accept?") - public static SystemMessageId C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT; + @ClientString(id = 1510, message = "$c1 is attempting to resurrect you and restore your XP $s2 ($s3%%). Accept?") + public static SystemMessageId C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_YOUR_XP_S2_S3_ACCEPT; @ClientString(id = 1511, message = "While a pet is being resurrected, it cannot help in resurrecting its master.") public static SystemMessageId WHILE_A_PET_IS_BEING_RESURRECTED_IT_CANNOT_HELP_IN_RESURRECTING_ITS_MASTER; @@ -4587,8 +4587,8 @@ public final class SystemMessageId @ClientString(id = 1518, message = "You do not meet the required condition to equip that item.") public static SystemMessageId YOU_DO_NOT_MEET_THE_REQUIRED_CONDITION_TO_EQUIP_THAT_ITEM; - @ClientString(id = 1519, message = "The pet has been killed. If you don't resurrect it within 24 hours, the pet's body will disappear along with all the pet's items.") - public static SystemMessageId THE_PET_HAS_BEEN_KILLED_IF_YOU_DON_T_RESURRECT_IT_WITHIN_24_HOURS_THE_PET_S_BODY_WILL_DISAPPEAR_ALONG_WITH_ALL_THE_PET_S_ITEMS; + @ClientString(id = 1519, message = "The pet has been killed. If you don't resurrect it within 24 hr., the pet's body will disappear along with all the pet's items.") + public static SystemMessageId THE_PET_HAS_BEEN_KILLED_IF_YOU_DON_T_RESURRECT_IT_WITHIN_24_HR_THE_PET_S_BODY_WILL_DISAPPEAR_ALONG_WITH_ALL_THE_PET_S_ITEMS; @ClientString(id = 1520, message = "Your servitor passed away.") public static SystemMessageId YOUR_SERVITOR_PASSED_AWAY; @@ -4866,7 +4866,7 @@ public final class SystemMessageId @ClientString(id = 1611, message = "Party Leader: $c1") public static SystemMessageId PARTY_LEADER_C1; - @ClientString(id = 1612, message = " ==========") + @ClientString(id = 1612, message = "==========") public static SystemMessageId CLAN_WAR_LIST; @ClientString(id = 1613, message = "There is no clan listed on your War List.") @@ -4893,11 +4893,11 @@ public final class SystemMessageId @ClientString(id = 1620, message = "Welcome to Rune Harbor.") public static SystemMessageId WELCOME_TO_RUNE_HARBOR; - @ClientString(id = 1621, message = "Departure for Gludin Harbor will take place in five minutes!") - public static SystemMessageId DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MINUTES; + @ClientString(id = 1621, message = "Departure for Gludin Harbor will take place in five min.!") + public static SystemMessageId DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MIN; - @ClientString(id = 1622, message = "Departure for Gludin Harbor will take place in one minute!") - public static SystemMessageId DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_ONE_MINUTE; + @ClientString(id = 1622, message = "Departure for Gludin Harbor will take place in one min.!") + public static SystemMessageId DEPARTURE_FOR_GLUDIN_HARBOR_WILL_TAKE_PLACE_IN_ONE_MIN; @ClientString(id = 1623, message = "Make haste! We will be departing for Gludin Harbor shortly…") public static SystemMessageId MAKE_HASTE_WE_WILL_BE_DEPARTING_FOR_GLUDIN_HARBOR_SHORTLY; @@ -4905,14 +4905,14 @@ public final class SystemMessageId @ClientString(id = 1624, message = "We are now departing for Gludin Harbor. Hold on and enjoy the ride!") public static SystemMessageId WE_ARE_NOW_DEPARTING_FOR_GLUDIN_HARBOR_HOLD_ON_AND_ENJOY_THE_RIDE; - @ClientString(id = 1625, message = "Departure for Rune Harbor will take place after anchoring for ten minutes.") - public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_AFTER_ANCHORING_FOR_TEN_MINUTES; + @ClientString(id = 1625, message = "Departure for Rune Harbor will take place after anchoring for ten min.") + public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_AFTER_ANCHORING_FOR_TEN_MIN; - @ClientString(id = 1626, message = "Departure for Rune Harbor will take place in five minutes!") - public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MINUTES; + @ClientString(id = 1626, message = "Departure for Rune Harbor will take place in five min.!") + public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_FIVE_MIN; - @ClientString(id = 1627, message = "Departure for Rune Harbor will take place in one minute!") - public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_ONE_MINUTE; + @ClientString(id = 1627, message = "Departure for Rune Harbor will take place in one min.!") + public static SystemMessageId DEPARTURE_FOR_RUNE_HARBOR_WILL_TAKE_PLACE_IN_ONE_MIN; @ClientString(id = 1628, message = "Make haste! We will be departing for Gludin Harbor shortly…") public static SystemMessageId MAKE_HASTE_WE_WILL_BE_DEPARTING_FOR_GLUDIN_HARBOR_SHORTLY_2; @@ -4920,29 +4920,29 @@ public final class SystemMessageId @ClientString(id = 1629, message = "We are now departing for Rune Harbor. Hold on and enjoy the ride!") public static SystemMessageId WE_ARE_NOW_DEPARTING_FOR_RUNE_HARBOR_HOLD_ON_AND_ENJOY_THE_RIDE; - @ClientString(id = 1630, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 15 minutes.") - public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_15_MINUTES; + @ClientString(id = 1630, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 15 min.") + public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_15_MIN; - @ClientString(id = 1631, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1631, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1632, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1632, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1633, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1633, message = "The ferry from Rune Harbor will be arriving at Gludin Harbor in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_RUNE_HARBOR_WILL_BE_ARRIVING_AT_GLUDIN_HARBOR_IN_APPROXIMATELY_1_MIN; - @ClientString(id = 1634, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 15 minutes.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_15_MINUTES; + @ClientString(id = 1634, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 15 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_15_MIN; - @ClientString(id = 1635, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 10 minutes.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_10_MINUTES; + @ClientString(id = 1635, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 10 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_10_MIN; - @ClientString(id = 1636, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 5 minutes.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_5_MINUTES; + @ClientString(id = 1636, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 5 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_5_MIN; - @ClientString(id = 1637, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 1 minute.") - public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_1_MINUTE; + @ClientString(id = 1637, message = "The ferry from Gludin Harbor will be arriving at Rune Harbor in approximately 1 min.") + public static SystemMessageId THE_FERRY_FROM_GLUDIN_HARBOR_WILL_BE_ARRIVING_AT_RUNE_HARBOR_IN_APPROXIMATELY_1_MIN; @ClientString(id = 1638, message = "You cannot fish while using a recipe book, private workshop or private store.") public static SystemMessageId YOU_CANNOT_FISH_WHILE_USING_A_RECIPE_BOOK_PRIVATE_WORKSHOP_OR_PRIVATE_STORE; @@ -5124,8 +5124,8 @@ public final class SystemMessageId @ClientString(id = 1697, message = "Your accumulated play time has reached Fatigue level, so you will receive XP or item drops at only 50 percent of the normal rate. For the sake of you physical and emotional health, we encourage you to log out as soon as possible and take a break before returning.") public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_FATIGUE_LEVEL_SO_YOU_WILL_RECEIVE_XP_OR_ITEM_DROPS_AT_ONLY_50_PERCENT_OF_THE_NORMAL_RATE_FOR_THE_SAKE_OF_YOU_PHYSICAL_AND_EMOTIONAL_HEALTH_WE_ENCOURAGE_YOU_TO_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_BEFORE_RETURNING; - @ClientString(id = 1698, message = "Your accumulated play time has reached Ill-health level, so you will no longer gain experience or item drops. For the sake of your physical and emotional health, please log out as soon as possible and take a break. Once you have been logged out for at least 5 hours, XP and item drop rate penalties will be removed.") - public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_ILL_HEALTH_LEVEL_SO_YOU_WILL_NO_LONGER_GAIN_EXPERIENCE_OR_ITEM_DROPS_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_PLEASE_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_ONCE_YOU_HAVE_BEEN_LOGGED_OUT_FOR_AT_LEAST_5_HOURS_XP_AND_ITEM_DROP_RATE_PENALTIES_WILL_BE_REMOVED; + @ClientString(id = 1698, message = "Your accumulated play time has reached Ill-health level, so you will no longer gain experience or item drops. For the sake of your physical and emotional health, please log out as soon as possible and take a break. Once you have been logged out for at least 5 hr., XP and item drop rate penalties will be removed.") + public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_ILL_HEALTH_LEVEL_SO_YOU_WILL_NO_LONGER_GAIN_EXPERIENCE_OR_ITEM_DROPS_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_PLEASE_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_ONCE_YOU_HAVE_BEEN_LOGGED_OUT_FOR_AT_LEAST_5_HR_XP_AND_ITEM_DROP_RATE_PENALTIES_WILL_BE_REMOVED; @ClientString(id = 1699, message = "You cannot dismiss a party member by force.") public static SystemMessageId YOU_CANNOT_DISMISS_A_PARTY_MEMBER_BY_FORCE; @@ -5145,29 +5145,29 @@ public final class SystemMessageId @ClientString(id = 1704, message = "Please close the setup window for your private workshop or private store, and try again.") public static SystemMessageId PLEASE_CLOSE_THE_SETUP_WINDOW_FOR_YOUR_PRIVATE_WORKSHOP_OR_PRIVATE_STORE_AND_TRY_AGAIN; - @ClientString(id = 1705, message = "You can earn PC Points for a further $s1 hour(s).") - public static SystemMessageId YOU_CAN_EARN_PC_POINTS_FOR_A_FURTHER_S1_HOUR_S; + @ClientString(id = 1705, message = "You can earn PA Points for a further $s1 hr.") + public static SystemMessageId YOU_CAN_EARN_PA_POINTS_FOR_A_FURTHER_S1_HR; - @ClientString(id = 1706, message = "You can spend your PC Points for a further $s1 hour(s).") - public static SystemMessageId YOU_CAN_SPEND_YOUR_PC_POINTS_FOR_A_FURTHER_S1_HOUR_S; + @ClientString(id = 1706, message = "You can spend your PA Points for a further $s1 hr.") + public static SystemMessageId YOU_CAN_SPEND_YOUR_PA_POINTS_FOR_A_FURTHER_S1_HR; - @ClientString(id = 1707, message = "You earned $s1 PC Point(s).") - public static SystemMessageId YOU_EARNED_S1_PC_POINT_S; + @ClientString(id = 1707, message = "You earned $s1 PA Point(s).") + public static SystemMessageId YOU_EARNED_S1_PA_POINT_S; - @ClientString(id = 1708, message = "Double points! You earned $s1 PC Point(s).") - public static SystemMessageId DOUBLE_POINTS_YOU_EARNED_S1_PC_POINT_S; + @ClientString(id = 1708, message = "Double points! You earned $s1 PA Point(s).") + public static SystemMessageId DOUBLE_POINTS_YOU_EARNED_S1_PA_POINT_S; @ClientString(id = 1709, message = "You are using $s1 point.") public static SystemMessageId YOU_ARE_USING_S1_POINT; - @ClientString(id = 1710, message = "You are short of PC points.") - public static SystemMessageId YOU_ARE_SHORT_OF_PC_POINTS; + @ClientString(id = 1710, message = "You are short of PA Points.") + public static SystemMessageId YOU_ARE_SHORT_OF_PA_POINTS; - @ClientString(id = 1711, message = "You can no longer spend your PC Points.") - public static SystemMessageId YOU_CAN_NO_LONGER_SPEND_YOUR_PC_POINTS; + @ClientString(id = 1711, message = "You can no longer spend your PA Points.") + public static SystemMessageId YOU_CAN_NO_LONGER_SPEND_YOUR_PA_POINTS; - @ClientString(id = 1712, message = "You can no longer earn PC Points.") - public static SystemMessageId YOU_CAN_NO_LONGER_EARN_PC_POINTS; + @ClientString(id = 1712, message = "You can no longer earn PA Points.") + public static SystemMessageId YOU_CAN_NO_LONGER_EARN_PA_POINTS; @ClientString(id = 1713, message = "The games may be delayed due to an insufficient number of players waiting.") public static SystemMessageId THE_GAMES_MAY_BE_DELAYED_DUE_TO_AN_INSUFFICIENT_NUMBER_OF_PLAYERS_WAITING; @@ -5418,8 +5418,8 @@ public final class SystemMessageId @ClientString(id = 1795, message = "The Royal Guard of $s1 have been created.") public static SystemMessageId THE_ROYAL_GUARD_OF_S1_HAVE_BEEN_CREATED; - @ClientString(id = 1796, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_21; + @ClientString(id = 1796, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_21; @ClientString(id = 1797, message = "$c1 has been promoted to $s2.") public static SystemMessageId C1_HAS_BEEN_PROMOTED_TO_S2; @@ -5442,23 +5442,23 @@ public final class SystemMessageId @ClientString(id = 1803, message = "Participation requests are no longer being accepted.") public static SystemMessageId PARTICIPATION_REQUESTS_ARE_NO_LONGER_BEING_ACCEPTED; - @ClientString(id = 1804, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_22; + @ClientString(id = 1804, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_22; - @ClientString(id = 1805, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_23; + @ClientString(id = 1805, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_23; - @ClientString(id = 1806, message = "You account has been temporarily suspended for acquiring an item involved in account theft. Please verify your identity on our website. For more information, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId YOU_ACCOUNT_HAS_BEEN_TEMPORARILY_SUSPENDED_FOR_ACQUIRING_AN_ITEM_INVOLVED_IN_ACCOUNT_THEFT_PLEASE_VERIFY_YOUR_IDENTITY_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 1806, message = "You account has been temporarily suspended for acquiring an item involved in account theft. Please verify your identity on our website. For more information, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId YOU_ACCOUNT_HAS_BEEN_TEMPORARILY_SUSPENDED_FOR_ACQUIRING_AN_ITEM_INVOLVED_IN_ACCOUNT_THEFT_PLEASE_VERIFY_YOUR_IDENTITY_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 1807, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_24; + @ClientString(id = 1807, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_24; - @ClientString(id = 1808, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_25; + @ClientString(id = 1808, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_25; - @ClientString(id = 1809, message = "You cannot use the game services as your identity has not been verified. Please visit the NCSOFT website ( https://support.lineage2.com) and go through the personal verification process to lift the restriction. For more information, please visit the Support Center on the NCSOFT website.") - public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_VISIT_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_AND_GO_THROUGH_THE_PERSONAL_VERIFICATION_PROCESS_TO_LIFT_THE_RESTRICTION_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE; + @ClientString(id = 1809, message = "You cannot use the game services as your identity has not been verified. Please visit the official website ( https://support.4game.com) and go through the personal verification process to lift the restriction. For more information, please visit the Support Center on the official website.") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_VISIT_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_AND_GO_THROUGH_THE_PERSONAL_VERIFICATION_PROCESS_TO_LIFT_THE_RESTRICTION_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE; @ClientString(id = 1810, message = "The refuse invitation state has been activated.") public static SystemMessageId THE_REFUSE_INVITATION_STATE_HAS_BEEN_ACTIVATED; @@ -5469,11 +5469,11 @@ public final class SystemMessageId @ClientString(id = 1812, message = "Since the refuse invitation state is currently activated, no invitation can be made.") public static SystemMessageId SINCE_THE_REFUSE_INVITATION_STATE_IS_CURRENTLY_ACTIVATED_NO_INVITATION_CAN_BE_MADE; - @ClientString(id = 1813, message = "$s1 has $s2 hour(s) of usage time remaining.") - public static SystemMessageId S1_HAS_S2_HOUR_S_OF_USAGE_TIME_REMAINING; + @ClientString(id = 1813, message = "$s1 has $s2 hr. of usage time remaining.") + public static SystemMessageId S1_HAS_S2_HR_OF_USAGE_TIME_REMAINING; - @ClientString(id = 1814, message = "$s1 has $s2 minute(s) of usage time remaining.") - public static SystemMessageId S1_HAS_S2_MINUTE_S_OF_USAGE_TIME_REMAINING; + @ClientString(id = 1814, message = "$s1 has $s2 min. of usage time remaining.") + public static SystemMessageId S1_HAS_S2_MIN_OF_USAGE_TIME_REMAINING; @ClientString(id = 1815, message = "$s2 was dropped in the $s1 region.") public static SystemMessageId S2_WAS_DROPPED_IN_THE_S1_REGION; @@ -5508,14 +5508,14 @@ public final class SystemMessageId @ClientString(id = 1825, message = "You have failed in your attempt to register for the clan hall war. Please try again.") public static SystemMessageId YOU_HAVE_FAILED_IN_YOUR_ATTEMPT_TO_REGISTER_FOR_THE_CLAN_HALL_WAR_PLEASE_TRY_AGAIN; - @ClientString(id = 1826, message = "In $s1 minute(s), the game will begin. All players must hurry and move to the left side of the clan hall's arena.") - public static SystemMessageId IN_S1_MINUTE_S_THE_GAME_WILL_BEGIN_ALL_PLAYERS_MUST_HURRY_AND_MOVE_TO_THE_LEFT_SIDE_OF_THE_CLAN_HALL_S_ARENA; + @ClientString(id = 1826, message = "In $s1 min., the game will begin. All players must hurry and move to the left side of the clan hall's arena.") + public static SystemMessageId IN_S1_MIN_THE_GAME_WILL_BEGIN_ALL_PLAYERS_MUST_HURRY_AND_MOVE_TO_THE_LEFT_SIDE_OF_THE_CLAN_HALL_S_ARENA; - @ClientString(id = 1827, message = "In $s1 minute(s), the game will begin. All players, please enter the arena now.") - public static SystemMessageId IN_S1_MINUTE_S_THE_GAME_WILL_BEGIN_ALL_PLAYERS_PLEASE_ENTER_THE_ARENA_NOW; + @ClientString(id = 1827, message = "In $s1 min., the game will begin. All players, please enter the arena now.") + public static SystemMessageId IN_S1_MIN_THE_GAME_WILL_BEGIN_ALL_PLAYERS_PLEASE_ENTER_THE_ARENA_NOW; - @ClientString(id = 1828, message = "In $s1 second(s), the game will begin.") - public static SystemMessageId IN_S1_SECOND_S_THE_GAME_WILL_BEGIN; + @ClientString(id = 1828, message = "In $s1 sec., the game will begin.") + public static SystemMessageId IN_S1_SEC_THE_GAME_WILL_BEGIN; @ClientString(id = 1829, message = "The Command Channel is full.") public static SystemMessageId THE_COMMAND_CHANNEL_IS_FULL; @@ -5646,35 +5646,35 @@ public final class SystemMessageId @ClientString(id = 1871, message = "Do you want to dismiss $c1 from the clan?") public static SystemMessageId DO_YOU_WANT_TO_DISMISS_C1_FROM_THE_CLAN; - @ClientString(id = 1872, message = "You have $s1 hour(s) and $s2 minute(s) left.") - public static SystemMessageId YOU_HAVE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT; + @ClientString(id = 1872, message = "You have $s1 hr. and $s2 min. left.") + public static SystemMessageId YOU_HAVE_S1_HR_AND_S2_MIN_LEFT; - @ClientString(id = 1873, message = "There are $s1 hour(s) and $s2 minute(s) left in the fixed use time for this PC Café.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PC_CAF; + @ClientString(id = 1873, message = "There are $s1 hr. and $s2 min. left in the fixed use time for this Premium Account.") + public static SystemMessageId THERE_ARE_S1_HR_AND_S2_MIN_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PREMIUM_ACCOUNT; - @ClientString(id = 1874, message = "There are $s1 minute(s) left for this individual user.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_FOR_THIS_INDIVIDUAL_USER; + @ClientString(id = 1874, message = "There are $s1 min. left for this individual user.") + public static SystemMessageId THERE_ARE_S1_MIN_LEFT_FOR_THIS_INDIVIDUAL_USER; - @ClientString(id = 1875, message = "There are $s1 minute(s) left in the fixed use time for this PC Café.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PC_CAF; + @ClientString(id = 1875, message = "There are $s1 min. left in the fixed use time for this Premium Account.") + public static SystemMessageId THERE_ARE_S1_MIN_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PREMIUM_ACCOUNT; @ClientString(id = 1876, message = "Do you want to leave $s1 clan?") public static SystemMessageId DO_YOU_WANT_TO_LEAVE_S1_CLAN; - @ClientString(id = 1877, message = "The game will end in $s1 minute(s).") - public static SystemMessageId THE_GAME_WILL_END_IN_S1_MINUTE_S; + @ClientString(id = 1877, message = "The game will end in $s1 min.") + public static SystemMessageId THE_GAME_WILL_END_IN_S1_MIN; - @ClientString(id = 1878, message = "The game will end in $s1 second(s).") - public static SystemMessageId THE_GAME_WILL_END_IN_S1_SECOND_S; + @ClientString(id = 1878, message = "The game will end in $s1 sec.") + public static SystemMessageId THE_GAME_WILL_END_IN_S1_SEC; - @ClientString(id = 1879, message = "In $s1 minute(s), you will be teleported outside of the game arena.") - public static SystemMessageId IN_S1_MINUTE_S_YOU_WILL_BE_TELEPORTED_OUTSIDE_OF_THE_GAME_ARENA; + @ClientString(id = 1879, message = "In $s1 min., you will be teleported outside of the game arena.") + public static SystemMessageId IN_S1_MIN_YOU_WILL_BE_TELEPORTED_OUTSIDE_OF_THE_GAME_ARENA; - @ClientString(id = 1880, message = "In $s1 second(s), you will be teleported outside of the game arena.") - public static SystemMessageId IN_S1_SECOND_S_YOU_WILL_BE_TELEPORTED_OUTSIDE_OF_THE_GAME_ARENA; + @ClientString(id = 1880, message = "In $s1 sec., you will be teleported outside of the game arena.") + public static SystemMessageId IN_S1_SEC_YOU_WILL_BE_TELEPORTED_OUTSIDE_OF_THE_GAME_ARENA; - @ClientString(id = 1881, message = "The preliminary match will begin in $s1 second(s). Prepare yourself.") - public static SystemMessageId THE_PRELIMINARY_MATCH_WILL_BEGIN_IN_S1_SECOND_S_PREPARE_YOURSELF; + @ClientString(id = 1881, message = "The preliminary match will begin in $s1 sec. Prepare yourself.") + public static SystemMessageId THE_PRELIMINARY_MATCH_WILL_BEGIN_IN_S1_SEC_PREPARE_YOURSELF; @ClientString(id = 1882, message = "Characters cannot be created from this server.") public static SystemMessageId CHARACTERS_CANNOT_BE_CREATED_FROM_THIS_SERVER; @@ -5682,11 +5682,11 @@ public final class SystemMessageId @ClientString(id = 1883, message = "There are no offerings I own or I made a bid for.") public static SystemMessageId THERE_ARE_NO_OFFERINGS_I_OWN_OR_I_MADE_A_BID_FOR; - @ClientString(id = 1884, message = "Enter the PC Room coupon serial number:") - public static SystemMessageId ENTER_THE_PC_ROOM_COUPON_SERIAL_NUMBER; + @ClientString(id = 1884, message = "Enter the PA coupon serial number:") + public static SystemMessageId ENTER_THE_PA_COUPON_SERIAL_NUMBER; - @ClientString(id = 1885, message = "This serial number cannot be entered. Please try again in $s1 minute(s).") - public static SystemMessageId THIS_SERIAL_NUMBER_CANNOT_BE_ENTERED_PLEASE_TRY_AGAIN_IN_S1_MINUTE_S; + @ClientString(id = 1885, message = "This serial number cannot be entered. Please try again in $s1 min.") + public static SystemMessageId THIS_SERIAL_NUMBER_CANNOT_BE_ENTERED_PLEASE_TRY_AGAIN_IN_S1_MIN; @ClientString(id = 1886, message = "This serial number has already been used.") public static SystemMessageId THIS_SERIAL_NUMBER_HAS_ALREADY_BEEN_USED; @@ -5694,8 +5694,8 @@ public final class SystemMessageId @ClientString(id = 1887, message = "Invalid serial number. Your attempt to enter the number has failed $s1 time(s). You will be allowed to make $s2 more attempt(s).") public static SystemMessageId INVALID_SERIAL_NUMBER_YOUR_ATTEMPT_TO_ENTER_THE_NUMBER_HAS_FAILED_S1_TIME_S_YOU_WILL_BE_ALLOWED_TO_MAKE_S2_MORE_ATTEMPT_S; - @ClientString(id = 1888, message = "Invalid serial number. Your attempt to enter the number has failed 5 times. Please try again in 4 hours.") - public static SystemMessageId INVALID_SERIAL_NUMBER_YOUR_ATTEMPT_TO_ENTER_THE_NUMBER_HAS_FAILED_5_TIMES_PLEASE_TRY_AGAIN_IN_4_HOURS; + @ClientString(id = 1888, message = "Invalid serial number. Your attempt to enter the number has failed 5 times. Please try again in 4 hr.") + public static SystemMessageId INVALID_SERIAL_NUMBER_YOUR_ATTEMPT_TO_ENTER_THE_NUMBER_HAS_FAILED_5_TIMES_PLEASE_TRY_AGAIN_IN_4_HR; @ClientString(id = 1889, message = "Congratulations! You have received $s1.") public static SystemMessageId CONGRATULATIONS_YOU_HAVE_RECEIVED_S1; @@ -5739,8 +5739,8 @@ public final class SystemMessageId @ClientString(id = 1902, message = "Incompatible item grade. This item cannot be used.") public static SystemMessageId INCOMPATIBLE_ITEM_GRADE_THIS_ITEM_CANNOT_BE_USED; - @ClientString(id = 1903, message = "To request an NC OTP service,\\nrun the cell phone NC OTP service,\\nand enter the displayed NC OTP number within 1 minute.\\nIf you did not make the request,\\nleave this part blank,\\nand press the login button.") - public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_NRUN_THE_CELL_PHONE_NC_OTP_SERVICE_NAND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MINUTE_NIF_YOU_DID_NOT_MAKE_THE_REQUEST_NLEAVE_THIS_PART_BLANK_NAND_PRESS_THE_LOGIN_BUTTON; + @ClientString(id = 1903, message = "To request an NC OTP service,\\nrun the cell phone NC OTP service,\\nand enter the displayed NC OTP number within 1 min.\\nIf you did not make the request,\\nleave this part blank,\\nand press the login button.") + public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_NRUN_THE_CELL_PHONE_NC_OTP_SERVICE_NAND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MIN_NIF_YOU_DID_NOT_MAKE_THE_REQUEST_NLEAVE_THIS_PART_BLANK_NAND_PRESS_THE_LOGIN_BUTTON; @ClientString(id = 1904, message = "A subclass may not be created or changed while a servitor or pet is summoned.") public static SystemMessageId A_SUBCLASS_MAY_NOT_BE_CREATED_OR_CHANGED_WHILE_A_SERVITOR_OR_PET_IS_SUMMONED; @@ -5766,17 +5766,17 @@ public final class SystemMessageId @ClientString(id = 1911, message = "A user participating in the Olympiad cannot use summoning or teleporting.") public static SystemMessageId A_USER_PARTICIPATING_IN_THE_OLYMPIAD_CANNOT_USE_SUMMONING_OR_TELEPORTING; - @ClientString(id = 1912, message = "NC OTP service requester only entry") - public static SystemMessageId NC_OTP_SERVICE_REQUESTER_ONLY_ENTRY; + @ClientString(id = 1912, message = "Only those requesting OTP service should input") + public static SystemMessageId ONLY_THOSE_REQUESTING_OTP_SERVICE_SHOULD_INPUT; - @ClientString(id = 1913, message = "The remaining recycle time for $s1 is $s2 minute(s).") - public static SystemMessageId THE_REMAINING_RECYCLE_TIME_FOR_S1_IS_S2_MINUTE_S; + @ClientString(id = 1913, message = "The remaining recycle time for $s1 is $s2 min.") + public static SystemMessageId THE_REMAINING_RECYCLE_TIME_FOR_S1_IS_S2_MIN; - @ClientString(id = 1914, message = "The remaining recycle time for $s1 is $s2 second(s).") - public static SystemMessageId THE_REMAINING_RECYCLE_TIME_FOR_S1_IS_S2_SECOND_S; + @ClientString(id = 1914, message = "The remaining recycle time for $s1 is $s2 sec.") + public static SystemMessageId THE_REMAINING_RECYCLE_TIME_FOR_S1_IS_S2_SEC; - @ClientString(id = 1915, message = "The game will end in $s1 second(s).") - public static SystemMessageId THE_GAME_WILL_END_IN_S1_SECOND_S_2; + @ClientString(id = 1915, message = "The game will end in $s1 sec.") + public static SystemMessageId THE_GAME_WILL_END_IN_S1_SEC_2; @ClientString(id = 1916, message = "You've been afflicted by Shilen's Breath level $s1.") public static SystemMessageId YOU_VE_BEEN_AFFLICTED_BY_SHILEN_S_BREATH_LEVEL_S1; @@ -5790,11 +5790,11 @@ public final class SystemMessageId @ClientString(id = 1919, message = "The Olympiad registration period has ended.") public static SystemMessageId THE_OLYMPIAD_REGISTRATION_PERIOD_HAS_ENDED; - @ClientString(id = 1920, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_26; + @ClientString(id = 1920, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_26; - @ClientString(id = 1921, message = "$s2 hour(s) and $s3 minute(s) have passed since $s1 has killed.") - public static SystemMessageId S2_HOUR_S_AND_S3_MINUTE_S_HAVE_PASSED_SINCE_S1_HAS_KILLED; + @ClientString(id = 1921, message = "$s2 hr. and $s3 min. have passed since $s1 has killed.") + public static SystemMessageId S2_HR_AND_S3_MIN_HAVE_PASSED_SINCE_S1_HAS_KILLED; @ClientString(id = 1922, message = "Because $s1 failed to kill for one full day, it has expired.") public static SystemMessageId BECAUSE_S1_FAILED_TO_KILL_FOR_ONE_FULL_DAY_IT_HAS_EXPIRED; @@ -5865,8 +5865,8 @@ public final class SystemMessageId @ClientString(id = 1944, message = "In a moment, you will be transported to the site where the duel will take place.") public static SystemMessageId IN_A_MOMENT_YOU_WILL_BE_TRANSPORTED_TO_THE_SITE_WHERE_THE_DUEL_WILL_TAKE_PLACE; - @ClientString(id = 1945, message = "The duel will begin in $s1 second(s).") - public static SystemMessageId THE_DUEL_WILL_BEGIN_IN_S1_SECOND_S; + @ClientString(id = 1945, message = "The duel will begin in $s1 sec.") + public static SystemMessageId THE_DUEL_WILL_BEGIN_IN_S1_SEC; @ClientString(id = 1946, message = "$c1 has challenged you to a duel. Will you accept?") public static SystemMessageId C1_HAS_CHALLENGED_YOU_TO_A_DUEL_WILL_YOU_ACCEPT; @@ -5874,8 +5874,8 @@ public final class SystemMessageId @ClientString(id = 1947, message = "$c1's party has challenged your party to a duel. Will you accept?") public static SystemMessageId C1_S_PARTY_HAS_CHALLENGED_YOUR_PARTY_TO_A_DUEL_WILL_YOU_ACCEPT; - @ClientString(id = 1948, message = "The duel will begin in $s1 second(s).") - public static SystemMessageId THE_DUEL_WILL_BEGIN_IN_S1_SECOND_S_2; + @ClientString(id = 1948, message = "The duel will begin in $s1 sec.") + public static SystemMessageId THE_DUEL_WILL_BEGIN_IN_S1_SEC_2; @ClientString(id = 1949, message = "Let the duel begin!") public static SystemMessageId LET_THE_DUEL_BEGIN; @@ -5997,14 +5997,14 @@ public final class SystemMessageId @ClientString(id = 1988, message = "The ferry has arrived at Primeval Isle.") public static SystemMessageId THE_FERRY_HAS_ARRIVED_AT_PRIMEVAL_ISLE; - @ClientString(id = 1989, message = "The ferry will leave for Rune Harbor after anchoring for three minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_RUNE_HARBOR_AFTER_ANCHORING_FOR_THREE_MINUTES; + @ClientString(id = 1989, message = "The ferry will leave for Rune Harbor after anchoring for three min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_RUNE_HARBOR_AFTER_ANCHORING_FOR_THREE_MIN; @ClientString(id = 1990, message = "The ferry is now departing Primeval Isle for Rune Harbor.") public static SystemMessageId THE_FERRY_IS_NOW_DEPARTING_PRIMEVAL_ISLE_FOR_RUNE_HARBOR; - @ClientString(id = 1991, message = "The ferry will leave for Primeval Isle after anchoring for three minutes.") - public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_PRIMEVAL_ISLE_AFTER_ANCHORING_FOR_THREE_MINUTES; + @ClientString(id = 1991, message = "The ferry will leave for Primeval Isle after anchoring for three min.") + public static SystemMessageId THE_FERRY_WILL_LEAVE_FOR_PRIMEVAL_ISLE_AFTER_ANCHORING_FOR_THREE_MIN; @ClientString(id = 1992, message = "The ferry is now departing Rune Harbor for Primeval Isle.") public static SystemMessageId THE_FERRY_IS_NOW_DEPARTING_RUNE_HARBOR_FOR_PRIMEVAL_ISLE; @@ -6132,11 +6132,11 @@ public final class SystemMessageId @ClientString(id = 2033, message = "A subclass cannot be created or changed because you have exceeded your inventory limit.") public static SystemMessageId A_SUBCLASS_CANNOT_BE_CREATED_OR_CHANGED_BECAUSE_YOU_HAVE_EXCEEDED_YOUR_INVENTORY_LIMIT; - @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be purchased again.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN; + @ClientString(id = 2034, message = "There are $s1 hr. and $s2 min. remaining until the item can be obtained again.") + public static SystemMessageId THERE_ARE_S1_HR_AND_S2_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED_AGAIN; - @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be purchased again.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN; + @ClientString(id = 2035, message = "There are $s1 min. remaining until the item can be obtained again.") + public static SystemMessageId THERE_ARE_S1_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED_AGAIN; @ClientString(id = 2036, message = "Unable to invite because the party is locked.") public static SystemMessageId UNABLE_TO_INVITE_BECAUSE_THE_PARTY_IS_LOCKED; @@ -6156,8 +6156,8 @@ public final class SystemMessageId @ClientString(id = 2041, message = "Some Lineage II features have been limited for free trials. Trial accounts aren't allowed to setup private stores. To unlock all of the features of Lineage II, purchase the full version today.") public static SystemMessageId SOME_LINEAGE_II_FEATURES_HAVE_BEEN_LIMITED_FOR_FREE_TRIALS_TRIAL_ACCOUNTS_AREN_T_ALLOWED_TO_SETUP_PRIVATE_STORES_TO_UNLOCK_ALL_OF_THE_FEATURES_OF_LINEAGE_II_PURCHASE_THE_FULL_VERSION_TODAY; - @ClientString(id = 2042, message = "This account has been suspended for non-payment based on the cell phone payment agreement.\\nPlease go to http://us.ncsoft.com/en/.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_NON_PAYMENT_BASED_ON_THE_CELL_PHONE_PAYMENT_AGREEMENT_NPLEASE_GO_TO_HTTP_US_NCSOFT_COM_EN; + @ClientString(id = 2042, message = "This account has been suspended for non-payment based on the cell phone payment agreement.\\nPlease go to https://eu.4game.com/.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_NON_PAYMENT_BASED_ON_THE_CELL_PHONE_PAYMENT_AGREEMENT_NPLEASE_GO_TO_HTTPS_EU_4GAME_COM; @ClientString(id = 2043, message = "You have exceeded your inventory volume limit and may not take this quest item. Please make room in your inventory and try again.") public static SystemMessageId YOU_HAVE_EXCEEDED_YOUR_INVENTORY_VOLUME_LIMIT_AND_MAY_NOT_TAKE_THIS_QUEST_ITEM_PLEASE_MAKE_ROOM_IN_YOUR_INVENTORY_AND_TRY_AGAIN; @@ -6183,8 +6183,8 @@ public final class SystemMessageId @ClientString(id = 2050, message = "$s1 clan is trying to display a flag.") public static SystemMessageId S1_CLAN_IS_TRYING_TO_DISPLAY_A_FLAG; - @ClientString(id = 2051, message = "You must accept the User Agreement before this account can access Lineage II.\\n Please try again after accepting the agreement on Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId YOU_MUST_ACCEPT_THE_USER_AGREEMENT_BEFORE_THIS_ACCOUNT_CAN_ACCESS_LINEAGE_II_N_PLEASE_TRY_AGAIN_AFTER_ACCEPTING_THE_AGREEMENT_ON_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 2051, message = "You must accept the User Agreement before this account can access Lineage II.\\n Please try again after accepting the agreement on Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId YOU_MUST_ACCEPT_THE_USER_AGREEMENT_BEFORE_THIS_ACCOUNT_CAN_ACCESS_LINEAGE_II_N_PLEASE_TRY_AGAIN_AFTER_ACCEPTING_THE_AGREEMENT_ON_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 2052, message = "A guardian's consent is required before this account can be used to play Lineage II.\\nPlease try again after this consent is provided.") public static SystemMessageId A_GUARDIAN_S_CONSENT_IS_REQUIRED_BEFORE_THIS_ACCOUNT_CAN_BE_USED_TO_PLAY_LINEAGE_II_NPLEASE_TRY_AGAIN_AFTER_THIS_CONSENT_IS_PROVIDED; @@ -6192,14 +6192,14 @@ public final class SystemMessageId @ClientString(id = 2053, message = "This account has declined the User Agreement or is pending a withdrawal request. \\nPlease try again after cancelling this request.") public static SystemMessageId THIS_ACCOUNT_HAS_DECLINED_THE_USER_AGREEMENT_OR_IS_PENDING_A_WITHDRAWAL_REQUEST_NPLEASE_TRY_AGAIN_AFTER_CANCELLING_THIS_REQUEST; - @ClientString(id = 2054, message = "This account has been suspended. \\nFor more information, please go to https://support.lineage2.com.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_NFOR_MORE_INFORMATION_PLEASE_GO_TO_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 2054, message = "This account has been suspended. \\nFor more information, please go to https://support.4game.com.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_NFOR_MORE_INFORMATION_PLEASE_GO_TO_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 2055, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_27; + @ClientString(id = 2055, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_27; - @ClientString(id = 2056, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_28; + @ClientString(id = 2056, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_28; @ClientString(id = 2057, message = "You have blocked $c1.") public static SystemMessageId YOU_HAVE_BLOCKED_C1; @@ -6288,23 +6288,23 @@ public final class SystemMessageId @ClientString(id = 2085, message = "Shout and trade chatting cannot be used while possessing a cursed weapon.") public static SystemMessageId SHOUT_AND_TRADE_CHATTING_CANNOT_BE_USED_WHILE_POSSESSING_A_CURSED_WEAPON; - @ClientString(id = 2086, message = "Search on user $c2 for third-party program use will be completed in $s1 minute(s).") - public static SystemMessageId SEARCH_ON_USER_C2_FOR_THIRD_PARTY_PROGRAM_USE_WILL_BE_COMPLETED_IN_S1_MINUTE_S; + @ClientString(id = 2086, message = "Search on user $c2 for third-party program use will be completed in $s1 min.") + public static SystemMessageId SEARCH_ON_USER_C2_FOR_THIRD_PARTY_PROGRAM_USE_WILL_BE_COMPLETED_IN_S1_MIN; @ClientString(id = 2087, message = "A fortress is under attack!") public static SystemMessageId A_FORTRESS_IS_UNDER_ATTACK; - @ClientString(id = 2088, message = "$s1 minute(s) until the fortress battle starts.") - public static SystemMessageId S1_MINUTE_S_UNTIL_THE_FORTRESS_BATTLE_STARTS; + @ClientString(id = 2088, message = "$s1 min. until the fortress battle starts.") + public static SystemMessageId S1_MIN_UNTIL_THE_FORTRESS_BATTLE_STARTS; - @ClientString(id = 2089, message = "$s1 second(s) until the fortress battle starts.") - public static SystemMessageId S1_SECOND_S_UNTIL_THE_FORTRESS_BATTLE_STARTS; + @ClientString(id = 2089, message = "$s1 sec. until the fortress battle starts.") + public static SystemMessageId S1_SEC_UNTIL_THE_FORTRESS_BATTLE_STARTS; @ClientString(id = 2090, message = "The fortress battle $s1 has begun.") public static SystemMessageId THE_FORTRESS_BATTLE_S1_HAS_BEGUN; - @ClientString(id = 2091, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_29; + @ClientString(id = 2091, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_29; @ClientString(id = 2092, message = "You cannot bid due to a passed-in price.") public static SystemMessageId YOU_CANNOT_BID_DUE_TO_A_PASSED_IN_PRICE; @@ -6348,14 +6348,14 @@ public final class SystemMessageId @ClientString(id = 2105, message = "You have entered another instant zone, therefore you cannot enter corresponding dungeon.") public static SystemMessageId YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON; - @ClientString(id = 2106, message = "This dungeon will expire in $s1 minute(s). You will be forced out of the dungeon when the time expires.") - public static SystemMessageId THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; + @ClientString(id = 2106, message = "This dungeon will expire in $s1 min. You will be forced out of the dungeon when the time expires.") + public static SystemMessageId THIS_DUNGEON_WILL_EXPIRE_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; - @ClientString(id = 2107, message = "This instant zone will be terminated in $s1 minute(s). You will be forced out of the dungeon when the time expires.") - public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; + @ClientString(id = 2107, message = "This instant zone will be terminated in $s1 min. You will be forced out of the dungeon when the time expires.") + public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MIN_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; - @ClientString(id = 2108, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_30; + @ClientString(id = 2108, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_30; @ClientString(id = 2109, message = "During the server merge, your character name, $s1, conflicted with another. Your name may still be available. Please enter your desired name.") public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CHARACTER_NAME_S1_CONFLICTED_WITH_ANOTHER_YOUR_NAME_MAY_STILL_BE_AVAILABLE_PLEASE_ENTER_YOUR_DESIRED_NAME; @@ -6375,32 +6375,32 @@ public final class SystemMessageId @ClientString(id = 2114, message = "Forced attack and stand-in-place attacks assigned previously to Ctrl and Shift will be changed to Alt + Q and Alt + E when set as expanded sub-key mode, and CTRL and SHIFT will be available to assign to another shortcut. Will you continue?") public static SystemMessageId FORCED_ATTACK_AND_STAND_IN_PLACE_ATTACKS_ASSIGNED_PREVIOUSLY_TO_CTRL_AND_SHIFT_WILL_BE_CHANGED_TO_ALT_Q_AND_ALT_E_WHEN_SET_AS_EXPANDED_SUB_KEY_MODE_AND_CTRL_AND_SHIFT_WILL_BE_AVAILABLE_TO_ASSIGN_TO_ANOTHER_SHORTCUT_WILL_YOU_CONTINUE; - @ClientString(id = 2115, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_31; + @ClientString(id = 2115, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_31; - @ClientString(id = 2116, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_32; + @ClientString(id = 2116, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_32; - @ClientString(id = 2117, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_33; + @ClientString(id = 2117, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_33; - @ClientString(id = 2118, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_34; + @ClientString(id = 2118, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_34; - @ClientString(id = 2119, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_35; + @ClientString(id = 2119, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_35; - @ClientString(id = 2120, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_36; + @ClientString(id = 2120, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_36; - @ClientString(id = 2121, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_37; + @ClientString(id = 2121, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_37; - @ClientString(id = 2122, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_38; + @ClientString(id = 2122, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_38; - @ClientString(id = 2123, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_39; + @ClientString(id = 2123, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_39; @ClientString(id = 2124, message = "During the server merge, your clan name, $s1, conflicted with another. Your clan name may still be available. Please enter your desired name.") public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CLAN_NAME_S1_CONFLICTED_WITH_ANOTHER_YOUR_CLAN_NAME_MAY_STILL_BE_AVAILABLE_PLEASE_ENTER_YOUR_DESIRED_NAME; @@ -6408,14 +6408,14 @@ public final class SystemMessageId @ClientString(id = 2125, message = "The clan name already exists or is an invalid name. Please enter another clan name.") public static SystemMessageId THE_CLAN_NAME_ALREADY_EXISTS_OR_IS_AN_INVALID_NAME_PLEASE_ENTER_ANOTHER_CLAN_NAME; - @ClientString(id = 2126, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_40; + @ClientString(id = 2126, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_40; - @ClientString(id = 2127, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_41; + @ClientString(id = 2127, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_41; - @ClientString(id = 2128, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_42; + @ClientString(id = 2128, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_42; @ClientString(id = 2129, message = "The augmented item cannot be converted. Please convert after the augmentation has been removed.") public static SystemMessageId THE_AUGMENTED_ITEM_CANNOT_BE_CONVERTED_PLEASE_CONVERT_AFTER_THE_AUGMENTATION_HAS_BEEN_REMOVED; @@ -6489,8 +6489,8 @@ public final class SystemMessageId @ClientString(id = 2152, message = "The assigned shortcut will be deleted and the initial shortcut setting restored. Will you continue?") public static SystemMessageId THE_ASSIGNED_SHORTCUT_WILL_BE_DELETED_AND_THE_INITIAL_SHORTCUT_SETTING_RESTORED_WILL_YOU_CONTINUE; - @ClientString(id = 2153, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_43; + @ClientString(id = 2153, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_43; @ClientString(id = 2154, message = "The target is not a flagpole so a flag cannot be displayed.") public static SystemMessageId THE_TARGET_IS_NOT_A_FLAGPOLE_SO_A_FLAG_CANNOT_BE_DISPLAYED; @@ -6507,11 +6507,11 @@ public final class SystemMessageId @ClientString(id = 2158, message = "Force attack is impossible against a temporary allied member during a siege.") public static SystemMessageId FORCE_ATTACK_IS_IMPOSSIBLE_AGAINST_A_TEMPORARY_ALLIED_MEMBER_DURING_A_SIEGE; - @ClientString(id = 2159, message = "Bidder exists, the auction time has been extended by 5 minutes.") - public static SystemMessageId BIDDER_EXISTS_THE_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_5_MINUTES; + @ClientString(id = 2159, message = "Bidder exists, the auction time has been extended by 5 min.") + public static SystemMessageId BIDDER_EXISTS_THE_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_5_MIN; - @ClientString(id = 2160, message = "Bidder exists, auction time has been extended by 3 minutes.") - public static SystemMessageId BIDDER_EXISTS_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_3_MINUTES; + @ClientString(id = 2160, message = "Bidder exists, auction time has been extended by 3 min.") + public static SystemMessageId BIDDER_EXISTS_AUCTION_TIME_HAS_BEEN_EXTENDED_BY_3_MIN; @ClientString(id = 2161, message = "There is no space to move to, so teleportation effect does not apply.") public static SystemMessageId THERE_IS_NO_SPACE_TO_MOVE_TO_SO_TELEPORTATION_EFFECT_DOES_NOT_APPLY; @@ -6633,17 +6633,17 @@ public final class SystemMessageId @ClientString(id = 2200, message = "This instant zone will be terminated as the NPC server is down. You will be forcibly removed from the dungeon shortly.") public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_AS_THE_NPC_SERVER_IS_DOWN_YOU_WILL_BE_FORCIBLY_REMOVED_FROM_THE_DUNGEON_SHORTLY; - @ClientString(id = 2201, message = "$s1 year(s) $s2 month(s) $s3 day(s)") - public static SystemMessageId S1_YEAR_S_S2_MONTH_S_S3_DAY_S; + @ClientString(id = 2201, message = "$s1 year(s) $s2 month(s) $s3 d.") + public static SystemMessageId S1_YEAR_S_S2_MONTH_S_S3_D; - @ClientString(id = 2202, message = "$s1 hour(s) $s2 minute(s) $s3 second(s)") - public static SystemMessageId S1_HOUR_S_S2_MINUTE_S_S3_SECOND_S; + @ClientString(id = 2202, message = "$s1 hr. $s2 min. $s3 sec.") + public static SystemMessageId S1_HR_S2_MIN_S3_SEC; @ClientString(id = 2203, message = "$s1/$s2") public static SystemMessageId S1_S2; - @ClientString(id = 2204, message = "$s1 hour(s)") - public static SystemMessageId S1_HOUR_S; + @ClientString(id = 2204, message = "$s1 hr.") + public static SystemMessageId S1_HR; @ClientString(id = 2205, message = "You have entered an area where the mini map cannot be used. Your mini map has been closed.") public static SystemMessageId YOU_HAVE_ENTERED_AN_AREA_WHERE_THE_MINI_MAP_CANNOT_BE_USED_YOUR_MINI_MAP_HAS_BEEN_CLOSED; @@ -6696,11 +6696,11 @@ public final class SystemMessageId @ClientString(id = 2221, message = "Do you wish to activate the selected functions?") public static SystemMessageId DO_YOU_WISH_TO_ACTIVATE_THE_SELECTED_FUNCTIONS; - @ClientString(id = 2222, message = "It will cost 150,000 Adena to place scouts. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_150_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; + @ClientString(id = 2222, message = "It will cost 250,000 Adena to place scouts. Do you wish to continue?") + public static SystemMessageId IT_WILL_COST_250_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2223, message = "It will cost 200,000 Adena for a fortress gate enhancement. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_200_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; + @ClientString(id = 2223, message = "It will cost 800,000 Adena for a fortress gate enhancement. Do you wish to continue?") + public static SystemMessageId IT_WILL_COST_800_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2224, message = "Your crossbow is preparing to fire.") public static SystemMessageId YOUR_CROSSBOW_IS_PREPARING_TO_FIRE; @@ -6720,8 +6720,8 @@ public final class SystemMessageId @ClientString(id = 2229, message = "There is no instant zone under a time limit.") public static SystemMessageId THERE_IS_NO_INSTANT_ZONE_UNDER_A_TIME_LIMIT; - @ClientString(id = 2230, message = "$s1 will be available for re-use after $s2 hour(s) $s3 minute(s).") - public static SystemMessageId S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HOUR_S_S3_MINUTE_S; + @ClientString(id = 2230, message = "$s1 will be available for re-use after $s2 hr. $s3 min.") + public static SystemMessageId S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HR_S3_MIN; @ClientString(id = 2231, message = "The supply items have not been provided because the castle you are in contract with doesn't have enough Clan Reputation.") public static SystemMessageId THE_SUPPLY_ITEMS_HAVE_NOT_BEEN_PROVIDED_BECAUSE_THE_CASTLE_YOU_ARE_IN_CONTRACT_WITH_DOESN_T_HAVE_ENOUGH_CLAN_REPUTATION; @@ -6738,14 +6738,14 @@ public final class SystemMessageId @ClientString(id = 2235, message = "The instant zone in use has been deleted and cannot be accessed.") public static SystemMessageId THE_INSTANT_ZONE_IN_USE_HAS_BEEN_DELETED_AND_CANNOT_BE_ACCESSED; - @ClientString(id = 2236, message = "You have $s1 minute(s) left on your wyvern.") - public static SystemMessageId YOU_HAVE_S1_MINUTE_S_LEFT_ON_YOUR_WYVERN; + @ClientString(id = 2236, message = "You have $s1 min. left on your wyvern.") + public static SystemMessageId YOU_HAVE_S1_MIN_LEFT_ON_YOUR_WYVERN; - @ClientString(id = 2237, message = "You have $s1 second(s) left on your wyvern.") - public static SystemMessageId YOU_HAVE_S1_SECOND_S_LEFT_ON_YOUR_WYVERN; + @ClientString(id = 2237, message = "You have $s1 sec. left on your wyvern.") + public static SystemMessageId YOU_HAVE_S1_SEC_LEFT_ON_YOUR_WYVERN; - @ClientString(id = 2238, message = "You are participating in the siege of $s1. This siege is scheduled for 2 hours.") - public static SystemMessageId YOU_ARE_PARTICIPATING_IN_THE_SIEGE_OF_S1_THIS_SIEGE_IS_SCHEDULED_FOR_2_HOURS; + @ClientString(id = 2238, message = "You are participating in the siege of $s1. This siege is scheduled for 2 hr.") + public static SystemMessageId YOU_ARE_PARTICIPATING_IN_THE_SIEGE_OF_S1_THIS_SIEGE_IS_SCHEDULED_FOR_2_HR; @ClientString(id = 2239, message = "The siege of $s1, in which you are participating, has finished.") public static SystemMessageId THE_SIEGE_OF_S1_IN_WHICH_YOU_ARE_PARTICIPATING_HAS_FINISHED; @@ -6762,14 +6762,14 @@ public final class SystemMessageId @ClientString(id = 2243, message = "During the Bandit Stronghold or Wild Beast Reserve clan hall war, the previous Clan Leader rather than the new Clan Leader participates in battle.") public static SystemMessageId DURING_THE_BANDIT_STRONGHOLD_OR_WILD_BEAST_RESERVE_CLAN_HALL_WAR_THE_PREVIOUS_CLAN_LEADER_RATHER_THAN_THE_NEW_CLAN_LEADER_PARTICIPATES_IN_BATTLE; - @ClientString(id = 2244, message = "$s1 minute(s) remaining.") - public static SystemMessageId S1_MINUTE_S_REMAINING; + @ClientString(id = 2244, message = "$s1 min. remaining.") + public static SystemMessageId S1_MIN_REMAINING; - @ClientString(id = 2245, message = "$s1 second(s) remaining.") - public static SystemMessageId S1_SECOND_S_REMAINING; + @ClientString(id = 2245, message = "$s1 sec. remaining.") + public static SystemMessageId S1_SEC_REMAINING; - @ClientString(id = 2246, message = "The contest will begin in $s1 minute(s).") - public static SystemMessageId THE_CONTEST_WILL_BEGIN_IN_S1_MINUTE_S; + @ClientString(id = 2246, message = "The contest will begin in $s1 min.") + public static SystemMessageId THE_CONTEST_WILL_BEGIN_IN_S1_MIN; @ClientString(id = 2247, message = "You cannot board an airship while transformed.") public static SystemMessageId YOU_CANNOT_BOARD_AN_AIRSHIP_WHILE_TRANSFORMED; @@ -6882,8 +6882,8 @@ public final class SystemMessageId @ClientString(id = 2283, message = "You cannot transform while sitting.") public static SystemMessageId YOU_CANNOT_TRANSFORM_WHILE_SITTING; - @ClientString(id = 2284, message = "You have obtained all the points you can get today in a place other than Internet Café.") - public static SystemMessageId YOU_HAVE_OBTAINED_ALL_THE_POINTS_YOU_CAN_GET_TODAY_IN_A_PLACE_OTHER_THAN_INTERNET_CAF; + @ClientString(id = 2284, message = "You have obtained all the points you can get today in PA.") + public static SystemMessageId YOU_HAVE_OBTAINED_ALL_THE_POINTS_YOU_CAN_GET_TODAY_IN_PA; @ClientString(id = 2285, message = "This skill cannot remove this trap.") public static SystemMessageId THIS_SKILL_CANNOT_REMOVE_THIS_TRAP; @@ -6894,8 +6894,8 @@ public final class SystemMessageId @ClientString(id = 2287, message = "You cannot equip $s1 because you do not have any available slots.") public static SystemMessageId YOU_CANNOT_EQUIP_S1_BECAUSE_YOU_DO_NOT_HAVE_ANY_AVAILABLE_SLOTS; - @ClientString(id = 2288, message = "Resurrection will occur in $s1 second(s).") - public static SystemMessageId RESURRECTION_WILL_OCCUR_IN_S1_SECOND_S; + @ClientString(id = 2288, message = "Resurrection will occur in $s1 sec.") + public static SystemMessageId RESURRECTION_WILL_OCCUR_IN_S1_SEC; @ClientString(id = 2289, message = "The match between the parties cannot commence because one of the party members is being teleported.") public static SystemMessageId THE_MATCH_BETWEEN_THE_PARTIES_CANNOT_COMMENCE_BECAUSE_ONE_OF_THE_PARTY_MEMBERS_IS_BEING_TELEPORTED; @@ -6939,14 +6939,14 @@ public final class SystemMessageId @ClientString(id = 2302, message = "Your Dimensional Item has arrived! Visit the Dimensional Merchant in any village to obtain it.") public static SystemMessageId YOUR_DIMENSIONAL_ITEM_HAS_ARRIVED_VISIT_THE_DIMENSIONAL_MERCHANT_IN_ANY_VILLAGE_TO_OBTAIN_IT; - @ClientString(id = 2303, message = "There are $s2 second(s) remaining in $s1's re-use time.") - public static SystemMessageId THERE_ARE_S2_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME; + @ClientString(id = 2303, message = "There are $s2 sec. remaining in $s1's re-use time.") + public static SystemMessageId THERE_ARE_S2_SEC_REMAINING_IN_S1_S_RE_USE_TIME; - @ClientString(id = 2304, message = "There are $s2 minute(s), $s3 second(s) remaining in $s1's re-use time.") - public static SystemMessageId THERE_ARE_S2_MINUTE_S_S3_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME; + @ClientString(id = 2304, message = "There are $s2 min., $s3 sec. remaining in $s1's re-use time.") + public static SystemMessageId THERE_ARE_S2_MIN_S3_SEC_REMAINING_IN_S1_S_RE_USE_TIME; - @ClientString(id = 2305, message = "There are $s2 hour(s), $s3 minute(s), and $s4 second(s) remaining in $s1's re-use time.") - public static SystemMessageId THERE_ARE_S2_HOUR_S_S3_MINUTE_S_AND_S4_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME; + @ClientString(id = 2305, message = "There are $s2 hr., $s3 min., and $s4 sec. remaining in $s1's re-use time.") + public static SystemMessageId THERE_ARE_S2_HR_S3_MIN_AND_S4_SEC_REMAINING_IN_S1_S_RE_USE_TIME; @ClientString(id = 2306, message = "Your Charm of Courage is trying to resurrect you. Would you like to resurrect now?") public static SystemMessageId YOUR_CHARM_OF_COURAGE_IS_TRYING_TO_RESURRECT_YOU_WOULD_YOU_LIKE_TO_RESURRECT_NOW; @@ -6954,14 +6954,14 @@ public final class SystemMessageId @ClientString(id = 2307, message = "The target is using a Charm of Courage.") public static SystemMessageId THE_TARGET_IS_USING_A_CHARM_OF_COURAGE; - @ClientString(id = 2308, message = "Remaining time: $s1 day(s)") - public static SystemMessageId REMAINING_TIME_S1_DAY_S; + @ClientString(id = 2308, message = "Remaining time: $s1 d.") + public static SystemMessageId REMAINING_TIME_S1_D; - @ClientString(id = 2309, message = "Remaining time: $s1 hour(s)") - public static SystemMessageId REMAINING_TIME_S1_HOUR_S; + @ClientString(id = 2309, message = "Remaining time: $s1 hr.") + public static SystemMessageId REMAINING_TIME_S1_HR; - @ClientString(id = 2310, message = "Remaining time: $s1 minute(s)") - public static SystemMessageId REMAINING_TIME_S1_MINUTE_S; + @ClientString(id = 2310, message = "Remaining time: $s1 min.") + public static SystemMessageId REMAINING_TIME_S1_MIN; @ClientString(id = 2311, message = "You do not have a servitor.") public static SystemMessageId YOU_DO_NOT_HAVE_A_SERVITOR; @@ -7002,8 +7002,8 @@ public final class SystemMessageId @ClientString(id = 2323, message = "Current location: Inside Rim Kamaloka") public static SystemMessageId CURRENT_LOCATION_INSIDE_RIM_KAMALOKA; - @ClientString(id = 2324, message = "You do not have enough PC Points.") - public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_PC_POINTS; + @ClientString(id = 2324, message = "You do not have enough PA Points.") + public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_PA_POINTS; @ClientString(id = 2325, message = "Another teleport is taking place. Please try again once the teleport in process ends.") public static SystemMessageId ANOTHER_TELEPORT_IS_TAKING_PLACE_PLEASE_TRY_AGAIN_ONCE_THE_TELEPORT_IN_PROCESS_ENDS; @@ -7011,8 +7011,8 @@ public final class SystemMessageId @ClientString(id = 2326, message = "You have acquired 50 Clan Reputation.") public static SystemMessageId YOU_HAVE_ACQUIRED_50_CLAN_REPUTATION; - @ClientString(id = 2327, message = "You don't have enough Fame to do that.") - public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT; + @ClientString(id = 2327, message = "You don't have enough Clan Reputation Points to do that.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT; @ClientString(id = 2328, message = "Only clans who are level 4 or above can register for battle at Devastated Castle and Fortress of the Dead.") public static SystemMessageId ONLY_CLANS_WHO_ARE_LEVEL_4_OR_ABOVE_CAN_REGISTER_FOR_BATTLE_AT_DEVASTATED_CASTLE_AND_FORTRESS_OF_THE_DEAD; @@ -7068,11 +7068,11 @@ public final class SystemMessageId @ClientString(id = 2345, message = "You have attacked and killed $c1.") public static SystemMessageId YOU_HAVE_ATTACKED_AND_KILLED_C1; - @ClientString(id = 2346, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_44; + @ClientString(id = 2346, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_44; - @ClientString(id = 2347, message = "$s1 second(s) to game end!") - public static SystemMessageId S1_SECOND_S_TO_GAME_END; + @ClientString(id = 2347, message = "$s1 sec. to game end!") + public static SystemMessageId S1_SEC_TO_GAME_END; @ClientString(id = 2348, message = "You cannot use My Teleports during a battle.") public static SystemMessageId YOU_CANNOT_USE_MY_TELEPORTS_DURING_A_BATTLE; @@ -7110,8 +7110,8 @@ public final class SystemMessageId @ClientString(id = 2359, message = "You cannot teleport because you do not have a teleport item.") public static SystemMessageId YOU_CANNOT_TELEPORT_BECAUSE_YOU_DO_NOT_HAVE_A_TELEPORT_ITEM; - @ClientString(id = 2360, message = "My Teleports Spellbk: $s1") - public static SystemMessageId MY_TELEPORTS_SPELLBK_S1; + @ClientString(id = 2360, message = "Scrolls: $s1") + public static SystemMessageId SCROLLS_S1; @ClientString(id = 2361, message = "Current Location: $s1") public static SystemMessageId CURRENT_LOCATION_S1; @@ -7119,8 +7119,8 @@ public final class SystemMessageId @ClientString(id = 2362, message = "The saved teleport location will be deleted. Do you wish to continue?") public static SystemMessageId THE_SAVED_TELEPORT_LOCATION_WILL_BE_DELETED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2363, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_45; + @ClientString(id = 2363, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_45; @ClientString(id = 2364, message = "$s1 has expired.") public static SystemMessageId S1_HAS_EXPIRED; @@ -7140,8 +7140,8 @@ public final class SystemMessageId @ClientString(id = 2369, message = "$s1's blessing has fully recovered HP and MP.") public static SystemMessageId S1_S_BLESSING_HAS_FULLY_RECOVERED_HP_AND_MP; - @ClientString(id = 2370, message = "Resurrection will take place in the waiting room after $s1 second(s).") - public static SystemMessageId RESURRECTION_WILL_TAKE_PLACE_IN_THE_WAITING_ROOM_AFTER_S1_SECOND_S; + @ClientString(id = 2370, message = "Resurrection will take place in the waiting room after $s1 sec.") + public static SystemMessageId RESURRECTION_WILL_TAKE_PLACE_IN_THE_WAITING_ROOM_AFTER_S1_SEC; @ClientString(id = 2371, message = "$c1 was reported as a BOT.") public static SystemMessageId C1_WAS_REPORTED_AS_A_BOT; @@ -7182,8 +7182,8 @@ public final class SystemMessageId @ClientString(id = 2383, message = "You cannot report this person again at this time.") public static SystemMessageId YOU_CANNOT_REPORT_THIS_PERSON_AGAIN_AT_THIS_TIME_4; - @ClientString(id = 2384, message = "This item does not meet the requirements for the enhancement spellbook.") - public static SystemMessageId THIS_ITEM_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_THE_ENHANCEMENT_SPELLBOOK; + @ClientString(id = 2384, message = "This item does not meet the requirements for the enhancement scroll.") + public static SystemMessageId THIS_ITEM_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_THE_ENHANCEMENT_SCROLL; @ClientString(id = 2385, message = "Incorrect Lucky Enchant Stone.") public static SystemMessageId INCORRECT_LUCKY_ENCHANT_STONE; @@ -7197,8 +7197,8 @@ public final class SystemMessageId @ClientString(id = 2388, message = "A party cannot be formed in this area.") public static SystemMessageId A_PARTY_CANNOT_BE_FORMED_IN_THIS_AREA; - @ClientString(id = 2389, message = "You have earned the maximum number of PC Points.") - public static SystemMessageId YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PC_POINTS; + @ClientString(id = 2389, message = "You have earned the maximum number of PA Points.") + public static SystemMessageId YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PA_POINTS; @ClientString(id = 2390, message = "Your number of My Teleports slots has reached its maximum limit.") public static SystemMessageId YOUR_NUMBER_OF_MY_TELEPORTS_SLOTS_HAS_REACHED_ITS_MAXIMUM_LIMIT; @@ -7209,8 +7209,8 @@ public final class SystemMessageId @ClientString(id = 2392, message = "The Dimensional Item cannot be located because of a temporary connection error.") public static SystemMessageId THE_DIMENSIONAL_ITEM_CANNOT_BE_LOCATED_BECAUSE_OF_A_TEMPORARY_CONNECTION_ERROR; - @ClientString(id = 2393, message = "You earned $s1 PC Point(s).") - public static SystemMessageId YOU_EARNED_S1_PC_POINT_S_2; + @ClientString(id = 2393, message = "You earned $s1 PA Point(s).") + public static SystemMessageId YOU_EARNED_S1_PA_POINT_S_2; @ClientString(id = 2394, message = "That skill cannot be used because your pet/servitor lacks sufficient MP.") public static SystemMessageId THAT_SKILL_CANNOT_BE_USED_BECAUSE_YOUR_PET_SERVITOR_LACKS_SUFFICIENT_MP; @@ -7227,8 +7227,8 @@ public final class SystemMessageId @ClientString(id = 2398, message = "You have no open My Teleports slots.") public static SystemMessageId YOU_HAVE_NO_OPEN_MY_TELEPORTS_SLOTS; - @ClientString(id = 2399, message = "$s1's ownership expires in $s2 minute(s).") - public static SystemMessageId S1_S_OWNERSHIP_EXPIRES_IN_S2_MINUTE_S; + @ClientString(id = 2399, message = "$s1's ownership expires in $s2 min.") + public static SystemMessageId S1_S_OWNERSHIP_EXPIRES_IN_S2_MIN; @ClientString(id = 2400, message = "Instant Zone currently in use: $s1") public static SystemMessageId INSTANT_ZONE_CURRENTLY_IN_USE_S1; @@ -7239,14 +7239,14 @@ public final class SystemMessageId @ClientString(id = 2402, message = "The Territory War request period has ended.") public static SystemMessageId THE_TERRITORY_WAR_REQUEST_PERIOD_HAS_ENDED; - @ClientString(id = 2403, message = "The Territory War begins in 10 minutes!") - public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_10_MINUTES; + @ClientString(id = 2403, message = "The Territory War begins in 10 min.!") + public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_10_MIN; - @ClientString(id = 2404, message = "The Territory War begins in 5 minutes!") - public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_5_MINUTES; + @ClientString(id = 2404, message = "The Territory War begins in 5 min.!") + public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_5_MIN; - @ClientString(id = 2405, message = "The Territory War begins in 1 minute!") - public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_1_MINUTE; + @ClientString(id = 2405, message = "The Territory War begins in 1 min.!") + public static SystemMessageId THE_TERRITORY_WAR_BEGINS_IN_1_MIN; @ClientString(id = 2406, message = "$s1's territory war has begun.") public static SystemMessageId S1_S_TERRITORY_WAR_HAS_BEGUN; @@ -7287,14 +7287,14 @@ public final class SystemMessageId @ClientString(id = 2418, message = "The Aerial Cleft registration has been canceled.") public static SystemMessageId THE_AERIAL_CLEFT_REGISTRATION_HAS_BEEN_CANCELED; - @ClientString(id = 2419, message = "The Aerial Cleft has been activated. Flight transformation will be possible in approximately 40 seconds.") - public static SystemMessageId THE_AERIAL_CLEFT_HAS_BEEN_ACTIVATED_FLIGHT_TRANSFORMATION_WILL_BE_POSSIBLE_IN_APPROXIMATELY_40_SECONDS; + @ClientString(id = 2419, message = "The Aerial Cleft has been activated. Flight transformation will be possible in approximately 40 sec.") + public static SystemMessageId THE_AERIAL_CLEFT_HAS_BEEN_ACTIVATED_FLIGHT_TRANSFORMATION_WILL_BE_POSSIBLE_IN_APPROXIMATELY_40_SEC; - @ClientString(id = 2420, message = "The battleground closes in 1 minute.") - public static SystemMessageId THE_BATTLEGROUND_CLOSES_IN_1_MINUTE; + @ClientString(id = 2420, message = "The battleground closes in 1 min.") + public static SystemMessageId THE_BATTLEGROUND_CLOSES_IN_1_MIN; - @ClientString(id = 2421, message = "The battleground closes in 10 seconds.") - public static SystemMessageId THE_BATTLEGROUND_CLOSES_IN_10_SECONDS; + @ClientString(id = 2421, message = "The battleground closes in 10 sec.") + public static SystemMessageId THE_BATTLEGROUND_CLOSES_IN_10_SEC; @ClientString(id = 2422, message = "EP, or Energy Points, refers to fuel.") public static SystemMessageId EP_OR_ENERGY_POINTS_REFERS_TO_FUEL; @@ -7449,29 +7449,29 @@ public final class SystemMessageId @ClientString(id = 2472, message = "This character cannot make a report because another character from this account has already done so.") public static SystemMessageId THIS_CHARACTER_CANNOT_MAKE_A_REPORT_BECAUSE_ANOTHER_CHARACTER_FROM_THIS_ACCOUNT_HAS_ALREADY_DONE_SO; - @ClientString(id = 2473, message = "You have been reported as an illegal program user, so your chatting will be blocked for 10 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_CHATTING_WILL_BE_BLOCKED_FOR_10_MINUTES; + @ClientString(id = 2473, message = "You have been reported as an illegal program user, so your chatting will be blocked for 10 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_CHATTING_WILL_BE_BLOCKED_FOR_10_MIN; - @ClientString(id = 2474, message = "You have been reported as an illegal program user, so your party participation will be blocked for 60 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_60_MINUTES; + @ClientString(id = 2474, message = "You have been reported as an illegal program user, so your party participation will be blocked for 60 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_60_MIN; - @ClientString(id = 2475, message = "You have been reported as an illegal program user, so your party participation will be blocked for 120 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_120_MINUTES; + @ClientString(id = 2475, message = "You have been reported as an illegal program user, so your party participation will be blocked for 120 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_120_MIN; - @ClientString(id = 2476, message = "You have been reported as an illegal program user, so your party participation will be blocked for 180 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_180_MINUTES; + @ClientString(id = 2476, message = "You have been reported as an illegal program user, so your party participation will be blocked for 180 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_PARTY_PARTICIPATION_WILL_BE_BLOCKED_FOR_180_MIN; - @ClientString(id = 2477, message = "You have been reported as an illegal program user, so your actions will be restricted for 120 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_120_MINUTES; + @ClientString(id = 2477, message = "You have been reported as an illegal program user, so your actions will be restricted for 120 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_120_MIN; - @ClientString(id = 2478, message = "You have been reported as an illegal program user, so your actions will be restricted for 180 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_180_MINUTES; + @ClientString(id = 2478, message = "You have been reported as an illegal program user, so your actions will be restricted for 180 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_180_MIN; - @ClientString(id = 2479, message = "You have been reported as an illegal program user, so your actions will be restricted for 180 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_180_MINUTES_2; + @ClientString(id = 2479, message = "You have been reported as an illegal program user, so your actions will be restricted for 180 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_WILL_BE_RESTRICTED_FOR_180_MIN_2; - @ClientString(id = 2480, message = "You have been reported as an illegal program user, so movement is prohibited for 120 minutes.") - public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_MOVEMENT_IS_PROHIBITED_FOR_120_MINUTES; + @ClientString(id = 2480, message = "You have been reported as an illegal program user, so movement is prohibited for 120 min.") + public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_MOVEMENT_IS_PROHIBITED_FOR_120_MIN; @ClientString(id = 2481, message = "$c1 has been reported as an illegal program user and is currently being investigated.") public static SystemMessageId C1_HAS_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_AND_IS_CURRENTLY_BEING_INVESTIGATED; @@ -7488,8 +7488,8 @@ public final class SystemMessageId @ClientString(id = 2485, message = "You have been reported as an illegal program user so your actions have been restricted.") public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_HAVE_BEEN_RESTRICTED; - @ClientString(id = 2486, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_46; + @ClientString(id = 2486, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_46; @ClientString(id = 2487, message = "You have been reported as an illegal program user, and your connection has been ended. Please contact our CS team to confirm your identity.") public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_AND_YOUR_CONNECTION_HAS_BEEN_ENDED_PLEASE_CONTACT_OUR_CS_TEAM_TO_CONFIRM_YOUR_IDENTITY; @@ -7506,8 +7506,8 @@ public final class SystemMessageId @ClientString(id = 2491, message = "Your airship cannot teleport because due to low fuel.") public static SystemMessageId YOUR_AIRSHIP_CANNOT_TELEPORT_BECAUSE_DUE_TO_LOW_FUEL; - @ClientString(id = 2492, message = "The airship has been summoned. It will automatically depart in $s1 minute(s).") - public static SystemMessageId THE_AIRSHIP_HAS_BEEN_SUMMONED_IT_WILL_AUTOMATICALLY_DEPART_IN_S1_MINUTE_S; + @ClientString(id = 2492, message = "The airship has been summoned. It will automatically depart in $s1 min.") + public static SystemMessageId THE_AIRSHIP_HAS_BEEN_SUMMONED_IT_WILL_AUTOMATICALLY_DEPART_IN_S1_MIN; @ClientString(id = 2493, message = "Enter chat mode is automatically enabled when you are in a flying transformation state.") public static SystemMessageId ENTER_CHAT_MODE_IS_AUTOMATICALLY_ENABLED_WHEN_YOU_ARE_IN_A_FLYING_TRANSFORMATION_STATE; @@ -7836,14 +7836,14 @@ public final class SystemMessageId @ClientString(id = 2704, message = "You cannot register because capacity has been exceeded.") public static SystemMessageId YOU_CANNOT_REGISTER_BECAUSE_CAPACITY_HAS_BEEN_EXCEEDED; - @ClientString(id = 2705, message = "The match waiting time was extended by 1 minute.") - public static SystemMessageId THE_MATCH_WAITING_TIME_WAS_EXTENDED_BY_1_MINUTE; + @ClientString(id = 2705, message = "The match waiting time was extended by 1 min.") + public static SystemMessageId THE_MATCH_WAITING_TIME_WAS_EXTENDED_BY_1_MIN; @ClientString(id = 2706, message = "You cannot enter because you do not meet the requirements.") public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_YOU_DO_NOT_MEET_THE_REQUIREMENTS; - @ClientString(id = 2707, message = "You must wait 10 seconds before attempting to register again.") - public static SystemMessageId YOU_MUST_WAIT_10_SECONDS_BEFORE_ATTEMPTING_TO_REGISTER_AGAIN; + @ClientString(id = 2707, message = "You must wait 10 sec. before attempting to register again.") + public static SystemMessageId YOU_MUST_WAIT_10_SEC_BEFORE_ATTEMPTING_TO_REGISTER_AGAIN; @ClientString(id = 2708, message = "You cannot register while in possession of a cursed weapon.") public static SystemMessageId YOU_CANNOT_REGISTER_WHILE_IN_POSSESSION_OF_A_CURSED_WEAPON; @@ -8043,8 +8043,8 @@ public final class SystemMessageId @ClientString(id = 2773, message = "Seed of Destruction Defense in Progress") public static SystemMessageId SEED_OF_DESTRUCTION_DEFENSE_IN_PROGRESS; - @ClientString(id = 2774, message = "You can make another report in $s1-minute(s). You have $s2 point(s) remaining on this account.") - public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MINUTE_S_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT; + @ClientString(id = 2774, message = "You can make another report in $s1-min. You have $s2 point(s) remaining on this account.") + public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MIN_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT; @ClientString(id = 2775, message = "The match cannot take place because a party member is in the process of boarding.") public static SystemMessageId THE_MATCH_CANNOT_TAKE_PLACE_BECAUSE_A_PARTY_MEMBER_IS_IN_THE_PROCESS_OF_BOARDING; @@ -8073,8 +8073,8 @@ public final class SystemMessageId @ClientString(id = 2783, message = "No one is left from the opposing team, thus victory is yours.") public static SystemMessageId NO_ONE_IS_LEFT_FROM_THE_OPPOSING_TEAM_THUS_VICTORY_IS_YOURS; - @ClientString(id = 2784, message = "The battleground has been closed. The match has ended in a tie because the match lasted for $s1-minute(s) and $s2-second(s) and the requirements were not met.") - public static SystemMessageId THE_BATTLEGROUND_HAS_BEEN_CLOSED_THE_MATCH_HAS_ENDED_IN_A_TIE_BECAUSE_THE_MATCH_LASTED_FOR_S1_MINUTE_S_AND_S2_SECOND_S_AND_THE_REQUIREMENTS_WERE_NOT_MET; + @ClientString(id = 2784, message = "The battleground has been closed. The match has ended in a tie because the match lasted for $s1-min. and $s2-sec. and the requirements were not met.") + public static SystemMessageId THE_BATTLEGROUND_HAS_BEEN_CLOSED_THE_MATCH_HAS_ENDED_IN_A_TIE_BECAUSE_THE_MATCH_LASTED_FOR_S1_MIN_AND_S2_SEC_AND_THE_REQUIREMENTS_WERE_NOT_MET; @ClientString(id = 2785, message = "It's a large scaled airship for transportations and battles and can be owned by the unit of clan.") public static SystemMessageId IT_S_A_LARGE_SCALED_AIRSHIP_FOR_TRANSPORTATIONS_AND_BATTLES_AND_CAN_BE_OWNED_BY_THE_UNIT_OF_CLAN; @@ -8100,8 +8100,8 @@ public final class SystemMessageId @ClientString(id = 2792, message = "50 Clan Reputation will be awarded. Do you wish to continue?") public static SystemMessageId FIFTY_CLAN_REPUTATION_WILL_BE_AWARDED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this instanced zone.") - public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE; + @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this Instance Zone.") + public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE; @ClientString(id = 2794, message = "The territory war channel and functions will now be deactivated.") public static SystemMessageId THE_TERRITORY_WAR_CHANNEL_AND_FUNCTIONS_WILL_NOW_BE_DEACTIVATED; @@ -8115,11 +8115,11 @@ public final class SystemMessageId @ClientString(id = 2797, message = "It is not a territory war registration period, so a request cannot be made at this time.") public static SystemMessageId IT_IS_NOT_A_TERRITORY_WAR_REGISTRATION_PERIOD_SO_A_REQUEST_CANNOT_BE_MADE_AT_THIS_TIME; - @ClientString(id = 2798, message = "The territory war will end in $s1-hour(s).") - public static SystemMessageId THE_TERRITORY_WAR_WILL_END_IN_S1_HOUR_S; + @ClientString(id = 2798, message = "The territory war will end in $s1-hr.") + public static SystemMessageId THE_TERRITORY_WAR_WILL_END_IN_S1_HR; - @ClientString(id = 2799, message = "The territory war will end in $s1-minute(s).") - public static SystemMessageId THE_TERRITORY_WAR_WILL_END_IN_S1_MINUTE_S; + @ClientString(id = 2799, message = "The territory war will end in $s1-min.") + public static SystemMessageId THE_TERRITORY_WAR_WILL_END_IN_S1_MIN; @ClientString(id = 2800, message = "No translation required") public static SystemMessageId NO_TRANSLATION_REQUIRED_5; @@ -8301,8 +8301,8 @@ public final class SystemMessageId @ClientString(id = 2877, message = "At level 40, the second class transfer becomes possible. Complete the second class transfer to further enhance the performance of your character.") public static SystemMessageId AT_LEVEL_40_THE_SECOND_CLASS_TRANSFER_BECOMES_POSSIBLE_COMPLETE_THE_SECOND_CLASS_TRANSFER_TO_FURTHER_ENHANCE_THE_PERFORMANCE_OF_YOUR_CHARACTER; - @ClientString(id = 2900, message = "$s1-second(s) to the end of territory war!") - public static SystemMessageId S1_SECOND_S_TO_THE_END_OF_TERRITORY_WAR; + @ClientString(id = 2900, message = "$s1-sec. to the end of territory war!") + public static SystemMessageId S1_SEC_TO_THE_END_OF_TERRITORY_WAR; @ClientString(id = 2901, message = "You cannot force attack a member of the same territory.") public static SystemMessageId YOU_CANNOT_FORCE_ATTACK_A_MEMBER_OF_THE_SAME_TERRITORY; @@ -8343,8 +8343,8 @@ public final class SystemMessageId @ClientString(id = 2913, message = "Clan $s1 has succeeded in capturing $s2's territory ward.") public static SystemMessageId CLAN_S1_HAS_SUCCEEDED_IN_CAPTURING_S2_S_TERRITORY_WARD; - @ClientString(id = 2914, message = "The territory war will begin in 20 minutes! Territory related functions (i.e.: battleground channel, Disguise Scrolls, Transformations, etc...) can now be used.") - public static SystemMessageId THE_TERRITORY_WAR_WILL_BEGIN_IN_20_MINUTES_TERRITORY_RELATED_FUNCTIONS_I_E_BATTLEGROUND_CHANNEL_DISGUISE_SCROLLS_TRANSFORMATIONS_ETC_CAN_NOW_BE_USED; + @ClientString(id = 2914, message = "The territory war will begin in 20 min.! Territory related functions (i.e.: battleground channel, Disguise Scrolls, Transformations, etc...) can now be used.") + public static SystemMessageId THE_TERRITORY_WAR_WILL_BEGIN_IN_20_MIN_TERRITORY_RELATED_FUNCTIONS_I_E_BATTLEGROUND_CHANNEL_DISGUISE_SCROLLS_TRANSFORMATIONS_ETC_CAN_NOW_BE_USED; @ClientString(id = 2915, message = "This clan member cannot withdraw or be expelled while participating in a territory war.") public static SystemMessageId THIS_CLAN_MEMBER_CANNOT_WITHDRAW_OR_BE_EXPELLED_WHILE_PARTICIPATING_IN_A_TERRITORY_WAR; @@ -8367,20 +8367,20 @@ public final class SystemMessageId @ClientString(id = 2921, message = "You cannot board the airship because the maximum number for occupants is met.") public static SystemMessageId YOU_CANNOT_BOARD_THE_AIRSHIP_BECAUSE_THE_MAXIMUM_NUMBER_FOR_OCCUPANTS_IS_MET; - @ClientString(id = 2922, message = "Block Checker will end in 5 seconds!") - public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_5_SECONDS; + @ClientString(id = 2922, message = "Block Checker will end in 5 sec.!") + public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_5_SEC; - @ClientString(id = 2923, message = "Block Checker will end in 4 seconds!!") - public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_4_SECONDS; + @ClientString(id = 2923, message = "Block Checker will end in 4 sec.!!") + public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_4_SEC; @ClientString(id = 2924, message = "You cannot enter a Seed while in a flying transformation state.") public static SystemMessageId YOU_CANNOT_ENTER_A_SEED_WHILE_IN_A_FLYING_TRANSFORMATION_STATE; - @ClientString(id = 2925, message = "Block Checker will end in 3 seconds!!!") - public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_3_SECONDS; + @ClientString(id = 2925, message = "Block Checker will end in 3 sec.!!!") + public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_3_SEC; - @ClientString(id = 2926, message = "Block Checker will end in 2 seconds!!!!") - public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_2_SECONDS; + @ClientString(id = 2926, message = "Block Checker will end in 2 sec.!!!!") + public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_2_SEC; @ClientString(id = 2927, message = "Block Checker will end in 1 second!!!!!") public static SystemMessageId BLOCK_CHECKER_WILL_END_IN_1_SECOND; @@ -8427,26 +8427,26 @@ public final class SystemMessageId @ClientString(id = 2941, message = "The request cannot be completed because the requirements are not met. In order to participate in a team match, all team members must have an Olympiad score of 10 or more.") public static SystemMessageId THE_REQUEST_CANNOT_BE_COMPLETED_BECAUSE_THE_REQUIREMENTS_ARE_NOT_MET_IN_ORDER_TO_PARTICIPATE_IN_A_TEAM_MATCH_ALL_TEAM_MEMBERS_MUST_HAVE_AN_OLYMPIAD_SCORE_OF_10_OR_MORE; - @ClientString(id = 2942, message = "The first gift's remaining resupply time is $s1 hour(s) $s2 minute(s) $s3 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 minutes.)") - public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_HOUR_S_S2_MINUTE_S_S3_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MINUTES; + @ClientString(id = 2942, message = "The first gift's remaining resupply time is $s1 hr. $s2 min. $s3 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 min.)") + public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_HR_S2_MIN_S3_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MIN; - @ClientString(id = 2943, message = "The first gift's remaining resupply time is $s1 minute(s) $s2 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 minutes.)") - public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MINUTE_S_S2_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MINUTES; + @ClientString(id = 2943, message = "The first gift's remaining resupply time is $s1 min. $s2 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 min.)") + public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MIN_S2_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MIN; - @ClientString(id = 2944, message = "The first gift's remaining resupply time is $s1 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 minutes.)") - public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MINUTES; + @ClientString(id = 2944, message = "The first gift's remaining resupply time is $s1 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 10 min.)") + public static SystemMessageId THE_FIRST_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_10_MIN; - @ClientString(id = 2945, message = "The second gift's remaining resupply time is $s1 hour(s) $s2 minute(s) $s3 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hour 10 minutes.)") - public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_HOUR_S_S2_MINUTE_S_S3_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HOUR_10_MINUTES; + @ClientString(id = 2945, message = "The second gift's remaining resupply time is $s1 hr. $s2 min. $s3 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hr. 10 min.)") + public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_HR_S2_MIN_S3_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HR_10_MIN; - @ClientString(id = 2946, message = "The second gift's remaining resupply time is $s1 minute(s) $s2 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hour 10 minutes.)") - public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MINUTE_S_S2_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HOUR_10_MINUTES; + @ClientString(id = 2946, message = "The second gift's remaining resupply time is $s1 min. $s2 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hr. 10 min.)") + public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MIN_S2_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HR_10_MIN; - @ClientString(id = 2947, message = "The second gift's remaining resupply time is $s1 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hour 10 minutes.)") - public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HOUR_10_MINUTES; + @ClientString(id = 2947, message = "The second gift's remaining resupply time is $s1 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 1 hr. 10 min.)") + public static SystemMessageId THE_SECOND_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_1_HR_10_MIN; - @ClientString(id = 2955, message = "The territory war exclusive disguise and transformation can be used 20 minutes before the start of the territory war to 10 minutes after its end.") - public static SystemMessageId THE_TERRITORY_WAR_EXCLUSIVE_DISGUISE_AND_TRANSFORMATION_CAN_BE_USED_20_MINUTES_BEFORE_THE_START_OF_THE_TERRITORY_WAR_TO_10_MINUTES_AFTER_ITS_END; + @ClientString(id = 2955, message = "The territory war exclusive disguise and transformation can be used 20 min. before the start of the territory war to 10 min. after its end.") + public static SystemMessageId THE_TERRITORY_WAR_EXCLUSIVE_DISGUISE_AND_TRANSFORMATION_CAN_BE_USED_20_MIN_BEFORE_THE_START_OF_THE_TERRITORY_WAR_TO_10_MIN_AFTER_ITS_END; @ClientString(id = 2956, message = "A user participating in the Olympiad cannot witness the battle.") public static SystemMessageId A_USER_PARTICIPATING_IN_THE_OLYMPIAD_CANNOT_WITNESS_THE_BATTLE; @@ -8457,8 +8457,8 @@ public final class SystemMessageId @ClientString(id = 2958, message = "An Agathion has already been summoned.") public static SystemMessageId AN_AGATHION_HAS_ALREADY_BEEN_SUMMONED; - @ClientString(id = 2959, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_47; + @ClientString(id = 2959, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_47; @ClientString(id = 2960, message = "You need a(n) $s1.") public static SystemMessageId YOU_NEED_A_N_S1; @@ -8487,8 +8487,8 @@ public final class SystemMessageId @ClientString(id = 2968, message = "The mail limit (240) has been exceeded and this cannot be forwarded.") public static SystemMessageId THE_MAIL_LIMIT_240_HAS_BEEN_EXCEEDED_AND_THIS_CANNOT_BE_FORWARDED; - @ClientString(id = 2969, message = "The previous mail was forwarded less than 1 minute ago and this cannot be forwarded.") - public static SystemMessageId THE_PREVIOUS_MAIL_WAS_FORWARDED_LESS_THAN_1_MINUTE_AGO_AND_THIS_CANNOT_BE_FORWARDED; + @ClientString(id = 2969, message = "The previous mail was forwarded less than 1 min. ago and this cannot be forwarded.") + public static SystemMessageId THE_PREVIOUS_MAIL_WAS_FORWARDED_LESS_THAN_1_MIN_AGO_AND_THIS_CANNOT_BE_FORWARDED; @ClientString(id = 2970, message = "You cannot forward in a non-peace zone location.") public static SystemMessageId YOU_CANNOT_FORWARD_IN_A_NON_PEACE_ZONE_LOCATION; @@ -8598,8 +8598,8 @@ public final class SystemMessageId @ClientString(id = 3005, message = "This skill cannot be enhanced.") public static SystemMessageId THIS_SKILL_CANNOT_BE_ENHANCED; - @ClientString(id = 3006, message = "$s1 PC Points were withdrawn.") - public static SystemMessageId S1_PC_POINTS_WERE_WITHDRAWN; + @ClientString(id = 3006, message = "$s1 PA Points were withdrawn.") + public static SystemMessageId S1_PA_POINTS_WERE_WITHDRAWN; @ClientString(id = 3007, message = "Shyeed's roar filled with wrath rings throughout the Stakato Nest.") public static SystemMessageId SHYEED_S_ROAR_FILLED_WITH_WRATH_RINGS_THROUGHOUT_THE_STAKATO_NEST; @@ -8844,14 +8844,14 @@ public final class SystemMessageId @ClientString(id = 3087, message = "This mail is being sent with a Payment Request. Would you like to continue?") public static SystemMessageId THIS_MAIL_IS_BEING_SENT_WITH_A_PAYMENT_REQUEST_WOULD_YOU_LIKE_TO_CONTINUE; - @ClientString(id = 3088, message = "You have $s1 hour(s) $s2 minute(s) and $s3 second(s) left in the Proof of Time and Space . If Agathion is summoned within this time, 10 minutes or more can be added.") - public static SystemMessageId YOU_HAVE_S1_HOUR_S_S2_MINUTE_S_AND_S3_SECOND_S_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MINUTES_OR_MORE_CAN_BE_ADDED; + @ClientString(id = 3088, message = "You have $s1 hr. $s2 min. and $s3 sec. left in the Proof of Time and Space . If Agathion is summoned within this time, 10 min. or more can be added.") + public static SystemMessageId YOU_HAVE_S1_HR_S2_MIN_AND_S3_SEC_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MIN_OR_MORE_CAN_BE_ADDED; - @ClientString(id = 3089, message = "You have $s1 minute(s) and $s2 second(s) left in the Proof of Time and Space . If Agathion is summoned within this time, 10 minutes or more can be added.") - public static SystemMessageId YOU_HAVE_S1_MINUTE_S_AND_S2_SECOND_S_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MINUTES_OR_MORE_CAN_BE_ADDED; + @ClientString(id = 3089, message = "You have $s1 min. and $s2 sec. left in the Proof of Time and Space . If Agathion is summoned within this time, 10 min. or more can be added.") + public static SystemMessageId YOU_HAVE_S1_MIN_AND_S2_SEC_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MIN_OR_MORE_CAN_BE_ADDED; - @ClientString(id = 3090, message = "You have $s1 second(s) left in the Proof of Time and Space . If Agathion is summoned within this time, 10 minutes or more can be added.") - public static SystemMessageId YOU_HAVE_S1_SECOND_S_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MINUTES_OR_MORE_CAN_BE_ADDED; + @ClientString(id = 3090, message = "You have $s1 sec. left in the Proof of Time and Space . If Agathion is summoned within this time, 10 min. or more can be added.") + public static SystemMessageId YOU_HAVE_S1_SEC_LEFT_IN_THE_PROOF_OF_TIME_AND_SPACE_IF_AGATHION_IS_SUMMONED_WITHIN_THIS_TIME_10_MIN_OR_MORE_CAN_BE_ADDED; @ClientString(id = 3091, message = "You cannot delete characters on this server right now.") public static SystemMessageId YOU_CANNOT_DELETE_CHARACTERS_ON_THIS_SERVER_RIGHT_NOW; @@ -8865,8 +8865,8 @@ public final class SystemMessageId @ClientString(id = 3094, message = "A user currently participating in the Olympiad cannot send party and friend invitations.") public static SystemMessageId A_USER_CURRENTLY_PARTICIPATING_IN_THE_OLYMPIAD_CANNOT_SEND_PARTY_AND_FRIEND_INVITATIONS; - @ClientString(id = 3095, message = "The certification failed because you did not enter a valid certification number or you did not enter a certification number at all. If you fail 3 times in a row, you will be blocked from the game for 30 minutes.") - public static SystemMessageId THE_CERTIFICATION_FAILED_BECAUSE_YOU_DID_NOT_ENTER_A_VALID_CERTIFICATION_NUMBER_OR_YOU_DID_NOT_ENTER_A_CERTIFICATION_NUMBER_AT_ALL_IF_YOU_FAIL_3_TIMES_IN_A_ROW_YOU_WILL_BE_BLOCKED_FROM_THE_GAME_FOR_30_MINUTES; + @ClientString(id = 3095, message = "The certification failed because you did not enter a valid certification number or you did not enter a certification number at all. If you fail 3 times in a row, you will be blocked from the game for 30 min.") + public static SystemMessageId THE_CERTIFICATION_FAILED_BECAUSE_YOU_DID_NOT_ENTER_A_VALID_CERTIFICATION_NUMBER_OR_YOU_DID_NOT_ENTER_A_CERTIFICATION_NUMBER_AT_ALL_IF_YOU_FAIL_3_TIMES_IN_A_ROW_YOU_WILL_BE_BLOCKED_FROM_THE_GAME_FOR_30_MIN; @ClientString(id = 3096, message = "Due to problems with communications, our telephone certification service is currently unavailable. Please try again later.") public static SystemMessageId DUE_TO_PROBLEMS_WITH_COMMUNICATIONS_OUR_TELEPHONE_CERTIFICATION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_TRY_AGAIN_LATER; @@ -8877,8 +8877,8 @@ public final class SystemMessageId @ClientString(id = 3098, message = "The certification failed because the line was busy or the call was not received. Please try again.") public static SystemMessageId THE_CERTIFICATION_FAILED_BECAUSE_THE_LINE_WAS_BUSY_OR_THE_CALL_WAS_NOT_RECEIVED_PLEASE_TRY_AGAIN; - @ClientString(id = 3099, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N; + @ClientString(id = 3099, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N; @ClientString(id = 3100, message = "The telephone certification service is currently being checked. Please try again later.") public static SystemMessageId THE_TELEPHONE_CERTIFICATION_SERVICE_IS_CURRENTLY_BEING_CHECKED_PLEASE_TRY_AGAIN_LATER; @@ -8886,11 +8886,11 @@ public final class SystemMessageId @ClientString(id = 3101, message = "Due to heavy volume, the telephone certification service cannot be used at this time. Please try again later.") public static SystemMessageId DUE_TO_HEAVY_VOLUME_THE_TELEPHONE_CERTIFICATION_SERVICE_CANNOT_BE_USED_AT_THIS_TIME_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 3102, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_2; + @ClientString(id = 3102, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_2; - @ClientString(id = 3103, message = "The telephone certification failed 3 times in a row, so game play has been blocked for 30 minutes. Please try again later.") - public static SystemMessageId THE_TELEPHONE_CERTIFICATION_FAILED_3_TIMES_IN_A_ROW_SO_GAME_PLAY_HAS_BEEN_BLOCKED_FOR_30_MINUTES_PLEASE_TRY_AGAIN_LATER; + @ClientString(id = 3103, message = "The telephone certification failed 3 times in a row, so game play has been blocked for 30 min. Please try again later.") + public static SystemMessageId THE_TELEPHONE_CERTIFICATION_FAILED_3_TIMES_IN_A_ROW_SO_GAME_PLAY_HAS_BEEN_BLOCKED_FOR_30_MIN_PLEASE_TRY_AGAIN_LATER; @ClientString(id = 3104, message = "The number of uses of the daily telephone certification service has been exceeded.") public static SystemMessageId THE_NUMBER_OF_USES_OF_THE_DAILY_TELEPHONE_CERTIFICATION_SERVICE_HAS_BEEN_EXCEEDED; @@ -9021,8 +9021,8 @@ public final class SystemMessageId @ClientString(id = 3146, message = "Do you really wish to remove $s1's $s2 attribute?") public static SystemMessageId DO_YOU_REALLY_WISH_TO_REMOVE_S1_S_S2_ATTRIBUTE; - @ClientString(id = 3147, message = "If you are not resurrected within $s1 minute(s), you will be expelled from the instant zone.") - public static SystemMessageId IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE; + @ClientString(id = 3147, message = "If you are not resurrected within $s1 min., you will be expelled from the instant zone.") + public static SystemMessageId IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MIN_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE; @ClientString(id = 3148, message = "The number of instant zones that can be created has been exceeded. Please try again later.") public static SystemMessageId THE_NUMBER_OF_INSTANT_ZONES_THAT_CAN_BE_CREATED_HAS_BEEN_EXCEEDED_PLEASE_TRY_AGAIN_LATER; @@ -9093,11 +9093,11 @@ public final class SystemMessageId @ClientString(id = 3170, message = "Current location: $s1 / $s2 / $s3 (outside the Seed of Annihilation)") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_OUTSIDE_THE_SEED_OF_ANNIHILATION; - @ClientString(id = 3171, message = "The gift's remaining resupply time is $s1 minute(s) $s2 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 30 minutes.)") - public static SystemMessageId THE_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MINUTE_S_S2_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_30_MINUTES; + @ClientString(id = 3171, message = "The gift's remaining resupply time is $s1 min. $s2 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 30 min.)") + public static SystemMessageId THE_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_MIN_S2_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_30_MIN; - @ClientString(id = 3172, message = "The gift's remaining resupply time is $s1 second(s). (If you resummon the Agathion at the gift supply time, the supply time can take an additional 30 minutes.)") - public static SystemMessageId THE_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SECOND_S_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_30_MINUTES; + @ClientString(id = 3172, message = "The gift's remaining resupply time is $s1 sec. (If you resummon the Agathion at the gift supply time, the supply time can take an additional 30 min.)") + public static SystemMessageId THE_GIFT_S_REMAINING_RESUPPLY_TIME_IS_S1_SEC_IF_YOU_RESUMMON_THE_AGATHION_AT_THE_GIFT_SUPPLY_TIME_THE_SUPPLY_TIME_CAN_TAKE_AN_ADDITIONAL_30_MIN; @ClientString(id = 3173, message = "Hero exclusive items cannot be bestowed with attributes.") public static SystemMessageId HERO_EXCLUSIVE_ITEMS_CANNOT_BE_BESTOWED_WITH_ATTRIBUTES; @@ -9315,10 +9315,10 @@ public final class SystemMessageId @ClientString(id = 3244, message = "Take that") public static SystemMessageId TAKE_THAT; - @ClientString(id = 3245, message = " ") + @ClientString(id = 3245, message = "") public static SystemMessageId EMPTY_9; - @ClientString(id = 3246, message = " ") + @ClientString(id = 3246, message = "") public static SystemMessageId EMPTY_10; @ClientString(id = 3247, message = "Argh... Ha ha ha, pretty impressive, as if you cut from the fabric of the gods.") @@ -9351,10 +9351,10 @@ public final class SystemMessageId @ClientString(id = 3256, message = "MP became 0 and the Arcane Shield is disappearing.") public static SystemMessageId MP_BECAME_0_AND_THE_ARCANE_SHIELD_IS_DISAPPEARING; - @ClientString(id = 3257, message = " ") + @ClientString(id = 3257, message = "") public static SystemMessageId EMPTY_11; - @ClientString(id = 3258, message = " ") + @ClientString(id = 3258, message = "") public static SystemMessageId EMPTY_12; @ClientString(id = 3259, message = "You have acquired $s1 XP (Bonus: $s2) and $s3 SP (Bonus: $s4).") @@ -9369,14 +9369,14 @@ public final class SystemMessageId @ClientString(id = 3262, message = "You can proceed only when the inventory weight is below 80 percent and the quantity is below 90 percent.") public static SystemMessageId YOU_CAN_PROCEED_ONLY_WHEN_THE_INVENTORY_WEIGHT_IS_BELOW_80_PERCENT_AND_THE_QUANTITY_IS_BELOW_90_PERCENT; - @ClientString(id = 3263, message = "There are $s2 second(s) remaining for $s1's re-use time. It is reset every day at 6:30 AM.") - public static SystemMessageId THERE_ARE_S2_SECOND_S_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; + @ClientString(id = 3263, message = "There are $s2 sec. remaining for $s1's re-use time. It is reset every day at 6:30 AM.") + public static SystemMessageId THERE_ARE_S2_SEC_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; - @ClientString(id = 3264, message = "There are $s2 minute(s) $s3 second(s) remaining for $s1's re-use time. It is reset every day at 6:30 AM.") - public static SystemMessageId THERE_ARE_S2_MINUTE_S_S3_SECOND_S_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; + @ClientString(id = 3264, message = "There are $s2 min. $s3 sec. remaining for $s1's re-use time. It is reset every day at 6:30 AM.") + public static SystemMessageId THERE_ARE_S2_MIN_S3_SEC_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; - @ClientString(id = 3265, message = "There are $s2 hour(s) $s3 minute(s) $s4 second(s) remaining for $s1's re-use time. It is reset every day at 6:30 AM.") - public static SystemMessageId THERE_ARE_S2_HOUR_S_S3_MINUTE_S_S4_SECOND_S_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; + @ClientString(id = 3265, message = "There are $s2 hr. $s3 min. $s4 sec. remaining for $s1's re-use time. It is reset every day at 6:30 AM.") + public static SystemMessageId THERE_ARE_S2_HR_S3_MIN_S4_SEC_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; @ClientString(id = 3266, message = "Nevit has blessed you from above.") public static SystemMessageId NEVIT_HAS_BLESSED_YOU_FROM_ABOVE; @@ -9390,8 +9390,8 @@ public final class SystemMessageId @ClientString(id = 3269, message = "Nevit's Advent Blessing shines strongly from above.") public static SystemMessageId NEVIT_S_ADVENT_BLESSING_SHINES_STRONGLY_FROM_ABOVE; - @ClientString(id = 3270, message = "$s1 second(s) remaining") - public static SystemMessageId S1_SECOND_S_REMAINING_2; + @ClientString(id = 3270, message = "$s1 sec. remaining") + public static SystemMessageId S1_SEC_REMAINING_2; @ClientString(id = 3271, message = "Current Progress: $1") public static SystemMessageId CURRENT_PROGRESS_1; @@ -9414,8 +9414,8 @@ public final class SystemMessageId @ClientString(id = 3277, message = "Nevit's Advent Blessing: $1") public static SystemMessageId NEVIT_S_ADVENT_BLESSING_1; - @ClientString(id = 3278, message = "(allowed after $s1 second(s))") - public static SystemMessageId ALLOWED_AFTER_S1_SECOND_S; + @ClientString(id = 3278, message = "(allowed after $s1 sec.)") + public static SystemMessageId ALLOWED_AFTER_S1_SEC; @ClientString(id = 3279, message = "Subclass $s1 has been upgraded to Duel Class $s2. Congratulations!") public static SystemMessageId SUBCLASS_S1_HAS_BEEN_UPGRADED_TO_DUEL_CLASS_S2_CONGRATULATIONS; @@ -9462,14 +9462,14 @@ public final class SystemMessageId @ClientString(id = 3293, message = "To use 24hz service, a desktop player\\nexclusively for 24hz needs to be installed.\\n\\nAre you ready to install now?") public static SystemMessageId TO_USE_24HZ_SERVICE_A_DESKTOP_PLAYER_NEXCLUSIVELY_FOR_24HZ_NEEDS_TO_BE_INSTALLED_N_NARE_YOU_READY_TO_INSTALL_NOW; - @ClientString(id = 3294, message = "$s1 Minute(s) Ago") - public static SystemMessageId S1_MINUTE_S_AGO; + @ClientString(id = 3294, message = "$s1 min. Ago") + public static SystemMessageId S1_MIN_AGO; - @ClientString(id = 3295, message = "$s1 Hour(s) Ago") - public static SystemMessageId S1_HOUR_S_AGO; + @ClientString(id = 3295, message = "$s1 hr. Ago") + public static SystemMessageId S1_HR_AGO; - @ClientString(id = 3296, message = "$s1 Day(s) Ago") - public static SystemMessageId S1_DAY_S_AGO; + @ClientString(id = 3296, message = "$s1 d. Ago") + public static SystemMessageId S1_D_AGO; @ClientString(id = 3297, message = "$s1 Month(s) Ago") public static SystemMessageId S1_MONTH_S_AGO; @@ -9498,8 +9498,8 @@ public final class SystemMessageId @ClientString(id = 3305, message = "Number of people: $s1") public static SystemMessageId NUMBER_OF_PEOPLE_S1_2; - @ClientString(id = 3306, message = "You are declaring Clan War against $s1. If you withdraw from the war, your clan will lose 5,000 Reputation points. Proceed?") - public static SystemMessageId YOU_ARE_DECLARING_CLAN_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_THE_WAR_YOUR_CLAN_WILL_LOSE_5_000_REPUTATION_POINTS_PROCEED; + @ClientString(id = 3306, message = "You are declaring Clan War against $s1. If you withdraw from the war, your clan will lose 10,000 Reputation points. Proceed?") + public static SystemMessageId YOU_ARE_DECLARING_CLAN_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_THE_WAR_YOUR_CLAN_WILL_LOSE_10_000_REPUTATION_POINTS_PROCEED; @ClientString(id = 3307, message = "$s1 will be deleted from Friend List.\\nDo you want to continue? ") public static SystemMessageId S1_WILL_BE_DELETED_FROM_FRIEND_LIST_NDO_YOU_WANT_TO_CONTINUE; @@ -9525,11 +9525,11 @@ public final class SystemMessageId @ClientString(id = 3314, message = "No character is selected from the list. Please select a character.") public static SystemMessageId NO_CHARACTER_IS_SELECTED_FROM_THE_LIST_PLEASE_SELECT_A_CHARACTER; - @ClientString(id = 3315, message = "Incorrect PIN entered. After 5 consecutive failed attempts you cannot log in this account for 8 hours.\\nAccumulated attempts: $s1 time(s)") - public static SystemMessageId INCORRECT_PIN_ENTERED_AFTER_5_CONSECUTIVE_FAILED_ATTEMPTS_YOU_CANNOT_LOG_IN_THIS_ACCOUNT_FOR_8_HOURS_NACCUMULATED_ATTEMPTS_S1_TIME_S; + @ClientString(id = 3315, message = "Incorrect PIN entered. After 5 consecutive failed attempts you cannot log in this account for 8 hr.\\nAccumulated attempts: $s1 time(s)") + public static SystemMessageId INCORRECT_PIN_ENTERED_AFTER_5_CONSECUTIVE_FAILED_ATTEMPTS_YOU_CANNOT_LOG_IN_THIS_ACCOUNT_FOR_8_HR_NACCUMULATED_ATTEMPTS_S1_TIME_S; - @ClientString(id = 3316, message = "Your account has been blocked for 8 hours because an incorrect PIN number has been entered 5 consecutive times. You can un-block your account by resetting your PIN number on ncsoft.com.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_BLOCKED_FOR_8_HOURS_BECAUSE_AN_INCORRECT_PIN_NUMBER_HAS_BEEN_ENTERED_5_CONSECUTIVE_TIMES_YOU_CAN_UN_BLOCK_YOUR_ACCOUNT_BY_RESETTING_YOUR_PIN_NUMBER_ON_NCSOFT_COM; + @ClientString(id = 3316, message = "Your account has been blocked for 8 hr. because an incorrect PIN number has been entered 5 consecutive times. You can un-block your account by resetting your PIN number on official website.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_BLOCKED_FOR_8_HR_BECAUSE_AN_INCORRECT_PIN_NUMBER_HAS_BEEN_ENTERED_5_CONSECUTIVE_TIMES_YOU_CAN_UN_BLOCK_YOUR_ACCOUNT_BY_RESETTING_YOUR_PIN_NUMBER_ON_OFFICIAL_WEBSITE; @ClientString(id = 3317, message = "The Character PIN can only be entered by using a mouse.") public static SystemMessageId THE_CHARACTER_PIN_CAN_ONLY_BE_ENTERED_BY_USING_A_MOUSE; @@ -9540,8 +9540,8 @@ public final class SystemMessageId @ClientString(id = 3319, message = "You cannot use a PIN number consisting of only one number. Please try again.") public static SystemMessageId YOU_CANNOT_USE_A_PIN_NUMBER_CONSISTING_OF_ONLY_ONE_NUMBER_PLEASE_TRY_AGAIN; - @ClientString(id = 3320, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_48; + @ClientString(id = 3320, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_48; @ClientString(id = 3321, message = "You cannot use a PIN number consisting of repeated number patterns. Please try again.") public static SystemMessageId YOU_CANNOT_USE_A_PIN_NUMBER_CONSISTING_OF_REPEATED_NUMBER_PATTERNS_PLEASE_TRY_AGAIN; @@ -9549,29 +9549,29 @@ public final class SystemMessageId @ClientString(id = 3322, message = "Your Character PIN has been changed.") public static SystemMessageId YOUR_CHARACTER_PIN_HAS_BEEN_CHANGED; - @ClientString(id = 3323, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_49; + @ClientString(id = 3323, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_49; @ClientString(id = 3324, message = "Caution: The number arrangement will change at the next login.") public static SystemMessageId CAUTION_THE_NUMBER_ARRANGEMENT_WILL_CHANGE_AT_THE_NEXT_LOGIN; - @ClientString(id = 3325, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_50; + @ClientString(id = 3325, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_50; - @ClientString(id = 3326, message = "The offer can be withdrawn within $s1 day(s) and $s2 hour(s).") - public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_DAY_S_AND_S2_HOUR_S; + @ClientString(id = 3326, message = "The offer can be withdrawn within $s1 d. and $s2 hr.") + public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_D_AND_S2_HR; - @ClientString(id = 3327, message = "The offer can be withdrawn within $s1 day(s).") - public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_DAY_S; + @ClientString(id = 3327, message = "The offer can be withdrawn within $s1 d.") + public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_D; - @ClientString(id = 3328, message = "The offer can be withdrawn within $s1 hour(s).") - public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_HOUR_S; + @ClientString(id = 3328, message = "The offer can be withdrawn within $s1 hr.") + public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_HR; @ClientString(id = 3329, message = "The offer cannot be withdrawn.") public static SystemMessageId THE_OFFER_CANNOT_BE_WITHDRAWN; - @ClientString(id = 3330, message = "Sale Item (can retract offer within $s1 minute(s))") - public static SystemMessageId SALE_ITEM_CAN_RETRACT_OFFER_WITHIN_S1_MINUTE_S; + @ClientString(id = 3330, message = "Sale Item (can retract offer within $s1 min.)") + public static SystemMessageId SALE_ITEM_CAN_RETRACT_OFFER_WITHIN_S1_MIN; @ClientString(id = 3331, message = "The matches this week are class-specific and free-for-all battles, and 30 matches are available. This week, $s1 are class-specific battles, and $s2 are free-for-all battles.") public static SystemMessageId THE_MATCHES_THIS_WEEK_ARE_CLASS_SPECIFIC_AND_FREE_FOR_ALL_BATTLES_AND_30_MATCHES_ARE_AVAILABLE_THIS_WEEK_S1_ARE_CLASS_SPECIFIC_BATTLES_AND_S2_ARE_FREE_FOR_ALL_BATTLES; @@ -9708,8 +9708,8 @@ public final class SystemMessageId @ClientString(id = 3375, message = "You cannot use a password that contains continuous numbers. Please enter again.") public static SystemMessageId YOU_CANNOT_USE_A_PASSWORD_THAT_CONTAINS_CONTINUOUS_NUMBERS_PLEASE_ENTER_AGAIN; - @ClientString(id = 3376, message = "This account has been locked for 8 hours due to 5 failed PIN attempts. It has $s1 hour(s) until it is unlocked. Visit ncsoft.com to unlock this account instantly after verifying ownership.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_LOCKED_FOR_8_HOURS_DUE_TO_5_FAILED_PIN_ATTEMPTS_IT_HAS_S1_HOUR_S_UNTIL_IT_IS_UNLOCKED_VISIT_NCSOFT_COM_TO_UNLOCK_THIS_ACCOUNT_INSTANTLY_AFTER_VERIFYING_OWNERSHIP; + @ClientString(id = 3376, message = "This account has been locked for 8 hr. due to 5 failed PIN attempts. It has $s1 hr. until it is unlocked. Visit official website to unlock this account instantly after verifying ownership.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_LOCKED_FOR_8_HR_DUE_TO_5_FAILED_PIN_ATTEMPTS_IT_HAS_S1_HR_UNTIL_IT_IS_UNLOCKED_VISIT_OFFICIAL_WEBSITE_TO_UNLOCK_THIS_ACCOUNT_INSTANTLY_AFTER_VERIFYING_OWNERSHIP; @ClientString(id = 3377, message = "There was an error in the request.") public static SystemMessageId THERE_WAS_AN_ERROR_IN_THE_REQUEST; @@ -9750,8 +9750,8 @@ public final class SystemMessageId @ClientString(id = 3389, message = "Character PIN has been successfully registered.") public static SystemMessageId CHARACTER_PIN_HAS_BEEN_SUCCESSFULLY_REGISTERED; - @ClientString(id = 3390, message = "$s1 Minute(s)") - public static SystemMessageId S1_MINUTE_S; + @ClientString(id = 3390, message = "$s1 min.") + public static SystemMessageId S1_MIN; @ClientString(id = 3391, message = "There is an error verifying the character PIN. ($s1)") public static SystemMessageId THERE_IS_AN_ERROR_VERIFYING_THE_CHARACTER_PIN_S1; @@ -9798,11 +9798,11 @@ public final class SystemMessageId @ClientString(id = 3405, message = "You cannot currently move.") public static SystemMessageId YOU_CANNOT_CURRENTLY_MOVE; - @ClientString(id = 3406, message = "$s1 hour(s)") - public static SystemMessageId S1_HOUR_S_2; + @ClientString(id = 3406, message = "$s1 hr.") + public static SystemMessageId S1_HR_2; - @ClientString(id = 3407, message = "less than $s1 hour(s)") - public static SystemMessageId LESS_THAN_S1_HOUR_S; + @ClientString(id = 3407, message = "less than $s1 hr.") + public static SystemMessageId LESS_THAN_S1_HR; @ClientString(id = 3408, message = "less than $s1") public static SystemMessageId LESS_THAN_S1; @@ -9834,8 +9834,8 @@ public final class SystemMessageId @ClientString(id = 3417, message = "The product to be received does not exist in the current product inventory.") public static SystemMessageId THE_PRODUCT_TO_BE_RECEIVED_DOES_NOT_EXIST_IN_THE_CURRENT_PRODUCT_INVENTORY; - @ClientString(id = 3418, message = "$s1 day(s)") - public static SystemMessageId S1_DAY_S; + @ClientString(id = 3418, message = "$s1 d.") + public static SystemMessageId S1_D; @ClientString(id = 3419, message = "Inviting $s1 to your clan has failed.") public static SystemMessageId INVITING_S1_TO_YOUR_CLAN_HAS_FAILED; @@ -10041,11 +10041,11 @@ public final class SystemMessageId @ClientString(id = 3486, message = "The item has been successfully purchased.") public static SystemMessageId THE_ITEM_HAS_BEEN_SUCCESSFULLY_PURCHASED; - @ClientString(id = 3487, message = "The offer can be withdrawn within $s1 hour(s) $s2 minute(s).") - public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_HOUR_S_S2_MINUTE_S; + @ClientString(id = 3487, message = "The offer can be withdrawn within $s1 hr. $s2 min.") + public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_HR_S2_MIN; - @ClientString(id = 3488, message = "The offer can be withdrawn within $s1 minute(s).") - public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_MINUTE_S; + @ClientString(id = 3488, message = "The offer can be withdrawn within $s1 min.") + public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_MIN; @ClientString(id = 3489, message = "The search result exceeded the maximum allowed range for output. Please search by selecting detailed category.") public static SystemMessageId THE_SEARCH_RESULT_EXCEEDED_THE_MAXIMUM_ALLOWED_RANGE_FOR_OUTPUT_PLEASE_SEARCH_BY_SELECTING_DETAILED_CATEGORY; @@ -10089,8 +10089,8 @@ public final class SystemMessageId @ClientString(id = 3502, message = "<$s1> \\nitem does not exist in the Sale List.") public static SystemMessageId S1_NITEM_DOES_NOT_EXIST_IN_THE_SALE_LIST; - @ClientString(id = 3503, message = "$s1 day(s) $s2 hour(s)") - public static SystemMessageId S1_DAY_S_S2_HOUR_S; + @ClientString(id = 3503, message = "$s1 d. $s2 hr.") + public static SystemMessageId S1_D_S2_HR; @ClientString(id = 3504, message = "$c1 is set to refuse friend requests and cannot receive a friend request.") public static SystemMessageId C1_IS_SET_TO_REFUSE_FRIEND_REQUESTS_AND_CANNOT_RECEIVE_A_FRIEND_REQUEST; @@ -10284,8 +10284,8 @@ public final class SystemMessageId @ClientString(id = 3567, message = "Current location: $s1 / $s2 / $s3 (Magmeld, near Ancient City Arcan)") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_MAGMELD_NEAR_ANCIENT_CITY_ARCAN_2; - @ClientString(id = 3568, message = "The rebel army was annihilated by Octavis' last-minute betrayal.") - public static SystemMessageId THE_REBEL_ARMY_WAS_ANNIHILATED_BY_OCTAVIS_LAST_MINUTE_BETRAYAL; + @ClientString(id = 3568, message = "The rebel army was annihilated by Octavis' last-min. betrayal.") + public static SystemMessageId THE_REBEL_ARMY_WAS_ANNIHILATED_BY_OCTAVIS_LAST_MIN_BETRAYAL; @ClientString(id = 3569, message = "Only I remain. Pinned by bars of starlight, and being driven to madness.") public static SystemMessageId ONLY_I_REMAIN_PINNED_BY_BARS_OF_STARLIGHT_AND_BEING_DRIVEN_TO_MADNESS; @@ -10392,7 +10392,7 @@ public final class SystemMessageId @ClientString(id = 3603, message = "We must vanquish this new warden…") public static SystemMessageId WE_MUST_VANQUISH_THIS_NEW_WARDEN; - @ClientString(id = 3604, message = " ...f we are to free the Crystal Oracle from Beleth's devious machinations.") + @ClientString(id = 3604, message = "...f we are to free the Crystal Oracle from Beleth's devious machinations.") public static SystemMessageId F_WE_ARE_TO_FREE_THE_CRYSTAL_ORACLE_FROM_BELETH_S_DEVIOUS_MACHINATIONS; @ClientString(id = 3605, message = "Your strength is needed now more than ever to defeat Balok.") @@ -10617,8 +10617,8 @@ public final class SystemMessageId @ClientString(id = 3678, message = "$s2 has been destroyed because $s1 is dead.") public static SystemMessageId S2_HAS_BEEN_DESTROYED_BECAUSE_S1_IS_DEAD; - @ClientString(id = 3679, message = "Player $s1 will be replaced. Replacement will occur within 3 minutes upon approval by the party leader.") - public static SystemMessageId PLAYER_S1_WILL_BE_REPLACED_REPLACEMENT_WILL_OCCUR_WITHIN_3_MINUTES_UPON_APPROVAL_BY_THE_PARTY_LEADER; + @ClientString(id = 3679, message = "Player $s1 will be replaced. Replacement will occur within 3 min. upon approval by the party leader.") + public static SystemMessageId PLAYER_S1_WILL_BE_REPLACED_REPLACEMENT_WILL_OCCUR_WITHIN_3_MIN_UPON_APPROVAL_BY_THE_PARTY_LEADER; @ClientString(id = 3680, message = "The replacement player does not meet requirements. Another player is being sought.") public static SystemMessageId THE_REPLACEMENT_PLAYER_DOES_NOT_MEET_REQUIREMENTS_ANOTHER_PLAYER_IS_BEING_SOUGHT; @@ -10629,20 +10629,20 @@ public final class SystemMessageId @ClientString(id = 3682, message = "You cannot register/cancel while a party member replacement is waiting to take place.") public static SystemMessageId YOU_CANNOT_REGISTER_CANCEL_WHILE_A_PARTY_MEMBER_REPLACEMENT_IS_WAITING_TO_TAKE_PLACE; - @ClientString(id = 3683, message = "You have accepted to join a party. Replacement will occur within 3 minutes upon approval by the party leader.") - public static SystemMessageId YOU_HAVE_ACCEPTED_TO_JOIN_A_PARTY_REPLACEMENT_WILL_OCCUR_WITHIN_3_MINUTES_UPON_APPROVAL_BY_THE_PARTY_LEADER; + @ClientString(id = 3683, message = "You have accepted to join a party. Replacement will occur within 3 min. upon approval by the party leader.") + public static SystemMessageId YOU_HAVE_ACCEPTED_TO_JOIN_A_PARTY_REPLACEMENT_WILL_OCCUR_WITHIN_3_MIN_UPON_APPROVAL_BY_THE_PARTY_LEADER; @ClientString(id = 3684, message = "You cannot change a class in this region.") public static SystemMessageId YOU_CANNOT_CHANGE_A_CLASS_IN_THIS_REGION; - @ClientString(id = 3685, message = "A replacement for $s1 is found. The player will be replaced in 3 minutes.") - public static SystemMessageId A_REPLACEMENT_FOR_S1_IS_FOUND_THE_PLAYER_WILL_BE_REPLACED_IN_3_MINUTES; + @ClientString(id = 3685, message = "A replacement for $s1 is found. The player will be replaced in 3 min.") + public static SystemMessageId A_REPLACEMENT_FOR_S1_IS_FOUND_THE_PLAYER_WILL_BE_REPLACED_IN_3_MIN; @ClientString(id = 3686, message = "The shared dimensional item has been successfully found.") public static SystemMessageId THE_SHARED_DIMENSIONAL_ITEM_HAS_BEEN_SUCCESSFULLY_FOUND; - @ClientString(id = 3687, message = "The NC OTP number is incorrect. Please check the number and enter it again.") - public static SystemMessageId THE_NC_OTP_NUMBER_IS_INCORRECT_PLEASE_CHECK_THE_NUMBER_AND_ENTER_IT_AGAIN; + @ClientString(id = 3687, message = "The OTP number is incorrect. Please check the number and enter it again.") + public static SystemMessageId THE_OTP_NUMBER_IS_INCORRECT_PLEASE_CHECK_THE_NUMBER_AND_ENTER_IT_AGAIN; @ClientString(id = 3688, message = "The shared dimensional item has not been found.") public static SystemMessageId THE_SHARED_DIMENSIONAL_ITEM_HAS_NOT_BEEN_FOUND; @@ -10719,8 +10719,8 @@ public final class SystemMessageId @ClientString(id = 3712, message = "Plunder skill has been already used on this target.") public static SystemMessageId PLUNDER_SKILL_HAS_BEEN_ALREADY_USED_ON_THIS_TARGET; - @ClientString(id = 3713, message = "You can bond with a new mentee in $s1 day(s) $s2 hour(s) $s3 minute(s).") - public static SystemMessageId YOU_CAN_BOND_WITH_A_NEW_MENTEE_IN_S1_DAY_S_S2_HOUR_S_S3_MINUTE_S; + @ClientString(id = 3713, message = "You can bond with a new mentee in $s1 d. $s2 hr. $s3 min.") + public static SystemMessageId YOU_CAN_BOND_WITH_A_NEW_MENTEE_IN_S1_D_S2_HR_S3_MIN; @ClientString(id = 3714, message = "Shilen is engulfing the entire continent with darkness.") public static SystemMessageId SHILEN_IS_ENGULFING_THE_ENTIRE_CONTINENT_WITH_DARKNESS; @@ -10743,8 +10743,8 @@ public final class SystemMessageId @ClientString(id = 3720, message = "$s1 Adena is need to operate the manor.") public static SystemMessageId S1_ADENA_IS_NEED_TO_OPERATE_THE_MANOR; - @ClientString(id = 3721, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION; + @ClientString(id = 3721, message = "You are not authorized to do that.") + public static SystemMessageId YOU_ARE_NOT_AUTHORIZED_TO_DO_THAT_2; @ClientString(id = 3722, message = "$s1 has successfully hatched the egg.") public static SystemMessageId S1_HAS_SUCCESSFULLY_HATCHED_THE_EGG; @@ -10765,7 +10765,7 @@ public final class SystemMessageId public static SystemMessageId EMPTY_13; @ClientString(id = 3728, message = "$1 receives a prize for raising the temperature most.") - public static SystemMessageId RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; + public static SystemMessageId ONE_RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; @ClientString(id = 3729, message = "The character and item recipe levels do not match, so it cannot be used normally.") public static SystemMessageId THE_CHARACTER_AND_ITEM_RECIPE_LEVELS_DO_NOT_MATCH_SO_IT_CANNOT_BE_USED_NORMALLY; @@ -10776,8 +10776,8 @@ public final class SystemMessageId @ClientString(id = 3731, message = "Cycle $s1 of the Ceremony of Chaos has ended.") public static SystemMessageId CYCLE_S1_OF_THE_CEREMONY_OF_CHAOS_HAS_ENDED; - @ClientString(id = 3732, message = "You are now on the waiting list. You will automatically be teleported when the tournament starts, and will be removed from the waiting list if you log out. If you cancel registration (within the last minute of entering the arena after signing up) 30 times or more or forfeit after entering the arena 30 times or more during a cycle, you become ineligible for participation in the Ceremony of Chaos until the next cycle. All the buffs except the Vitality buff will be removed once you enter the arenas.") - public static SystemMessageId YOU_ARE_NOW_ON_THE_WAITING_LIST_YOU_WILL_AUTOMATICALLY_BE_TELEPORTED_WHEN_THE_TOURNAMENT_STARTS_AND_WILL_BE_REMOVED_FROM_THE_WAITING_LIST_IF_YOU_LOG_OUT_IF_YOU_CANCEL_REGISTRATION_WITHIN_THE_LAST_MINUTE_OF_ENTERING_THE_ARENA_AFTER_SIGNING_UP_30_TIMES_OR_MORE_OR_FORFEIT_AFTER_ENTERING_THE_ARENA_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_BECOME_INELIGIBLE_FOR_PARTICIPATION_IN_THE_CEREMONY_OF_CHAOS_UNTIL_THE_NEXT_CYCLE_ALL_THE_BUFFS_EXCEPT_THE_VITALITY_BUFF_WILL_BE_REMOVED_ONCE_YOU_ENTER_THE_ARENAS; + @ClientString(id = 3732, message = "You are now on the waiting list. You will automatically be teleported when the tournament starts, and will be removed from the waiting list if you log out. If you cancel registration (within the last min. of entering the arena after signing up) 30 times or more or forfeit after entering the arena 30 times or more during a cycle, you become ineligible for participation in the Ceremony of Chaos until the next cycle. All the buffs except the Vitality buff will be removed once you enter the arenas.") + public static SystemMessageId YOU_ARE_NOW_ON_THE_WAITING_LIST_YOU_WILL_AUTOMATICALLY_BE_TELEPORTED_WHEN_THE_TOURNAMENT_STARTS_AND_WILL_BE_REMOVED_FROM_THE_WAITING_LIST_IF_YOU_LOG_OUT_IF_YOU_CANCEL_REGISTRATION_WITHIN_THE_LAST_MIN_OF_ENTERING_THE_ARENA_AFTER_SIGNING_UP_30_TIMES_OR_MORE_OR_FORFEIT_AFTER_ENTERING_THE_ARENA_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_BECOME_INELIGIBLE_FOR_PARTICIPATION_IN_THE_CEREMONY_OF_CHAOS_UNTIL_THE_NEXT_CYCLE_ALL_THE_BUFFS_EXCEPT_THE_VITALITY_BUFF_WILL_BE_REMOVED_ONCE_YOU_ENTER_THE_ARENAS; @ClientString(id = 3733, message = "Only characters level 85 or above may participate in the tournament.") public static SystemMessageId ONLY_CHARACTERS_LEVEL_85_OR_ABOVE_MAY_PARTICIPATE_IN_THE_TOURNAMENT; @@ -10788,11 +10788,11 @@ public final class SystemMessageId @ClientString(id = 3735, message = "$c1 cannot participate in the tournament due to having become the owner of $s2.") public static SystemMessageId C1_CANNOT_PARTICIPATE_IN_THE_TOURNAMENT_DUE_TO_HAVING_BECOME_THE_OWNER_OF_S2; - @ClientString(id = 3736, message = "You have been taken off the wait list. You may only enter the wait list on Mon-Thurs every quarter of an hour for 5 minutes between 20:00 and 23:40. If you cancel registration or choose to forfeit after entering a match 30 times or more during a cycle, you must wait until the next cycle to participate in the Ceremony of Chaos. Upon entering the arena, all buffs excluding Vitality buffs are removed.") - public static SystemMessageId YOU_HAVE_BEEN_TAKEN_OFF_THE_WAIT_LIST_YOU_MAY_ONLY_ENTER_THE_WAIT_LIST_ON_MON_THURS_EVERY_QUARTER_OF_AN_HOUR_FOR_5_MINUTES_BETWEEN_20_00_AND_23_40_IF_YOU_CANCEL_REGISTRATION_OR_CHOOSE_TO_FORFEIT_AFTER_ENTERING_A_MATCH_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_MUST_WAIT_UNTIL_THE_NEXT_CYCLE_TO_PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS_UPON_ENTERING_THE_ARENA_ALL_BUFFS_EXCLUDING_VITALITY_BUFFS_ARE_REMOVED; + @ClientString(id = 3736, message = "You have been taken off the wait list. You may only enter the wait list on Mon-Thurs every quarter of an hr. for 5 min. between 20:00 and 23:40. If you cancel registration or choose to forfeit after entering a match 30 times or more during a cycle, you must wait until the next cycle to participate in the Ceremony of Chaos. Upon entering the arena, all buffs excluding Vitality buffs are removed.") + public static SystemMessageId YOU_HAVE_BEEN_TAKEN_OFF_THE_WAIT_LIST_YOU_MAY_ONLY_ENTER_THE_WAIT_LIST_ON_MON_THURS_EVERY_QUARTER_OF_AN_HR_FOR_5_MIN_BETWEEN_20_00_AND_23_40_IF_YOU_CANCEL_REGISTRATION_OR_CHOOSE_TO_FORFEIT_AFTER_ENTERING_A_MATCH_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_MUST_WAIT_UNTIL_THE_NEXT_CYCLE_TO_PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS_UPON_ENTERING_THE_ARENA_ALL_BUFFS_EXCLUDING_VITALITY_BUFFS_ARE_REMOVED; - @ClientString(id = 3737, message = "You will be moved to the arena in $s1 second(s).") - public static SystemMessageId YOU_WILL_BE_MOVED_TO_THE_ARENA_IN_S1_SECOND_S; + @ClientString(id = 3737, message = "You will be moved to the arena in $s1 sec.") + public static SystemMessageId YOU_WILL_BE_MOVED_TO_THE_ARENA_IN_S1_SEC; @ClientString(id = 3738, message = "You have proven your abilities.") public static SystemMessageId YOU_HAVE_PROVEN_YOUR_ABILITIES; @@ -10827,8 +10827,8 @@ public final class SystemMessageId @ClientString(id = 3748, message = "The time of choices has come.") public static SystemMessageId THE_TIME_OF_CHOICES_HAS_COME; - @ClientString(id = 3749, message = "In $s1 second(s), you will be moved to where you were before participating in the Ceremony of Chaos.") - public static SystemMessageId IN_S1_SECOND_S_YOU_WILL_BE_MOVED_TO_WHERE_YOU_WERE_BEFORE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS; + @ClientString(id = 3749, message = "In $s1 sec., you will be moved to where you were before participating in the Ceremony of Chaos.") + public static SystemMessageId IN_S1_SEC_YOU_WILL_BE_MOVED_TO_WHERE_YOU_WERE_BEFORE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS; @ClientString(id = 3750, message = "Only PC's who belong to a clan that is above level 5 can summon a pet.") public static SystemMessageId ONLY_PC_S_WHO_BELONG_TO_A_CLAN_THAT_IS_ABOVE_LEVEL_5_CAN_SUMMON_A_PET; @@ -10842,11 +10842,11 @@ public final class SystemMessageId @ClientString(id = 3753, message = "Only PC's who are above level 40 and have completed second class transfer can obtain Individual Fame.") public static SystemMessageId ONLY_PC_S_WHO_ARE_ABOVE_LEVEL_40_AND_HAVE_COMPLETED_SECOND_CLASS_TRANSFER_CAN_OBTAIN_INDIVIDUAL_FAME; - @ClientString(id = 3754, message = "$s1 second(s) to match end!") - public static SystemMessageId S1_SECOND_S_TO_MATCH_END; + @ClientString(id = 3754, message = "$s1 sec. to match end!") + public static SystemMessageId S1_SEC_TO_MATCH_END; - @ClientString(id = 3755, message = "$s1 second(s) to match start!") - public static SystemMessageId S1_SECOND_S_TO_MATCH_START; + @ClientString(id = 3755, message = "$s1 sec. to match start!") + public static SystemMessageId S1_SEC_TO_MATCH_START; @ClientString(id = 3756, message = "Are you sure you want to quit?") public static SystemMessageId ARE_YOU_SURE_YOU_WANT_TO_QUIT; @@ -10887,8 +10887,8 @@ public final class SystemMessageId @ClientString(id = 3768, message = "Now, offer your lives and die with grace!") public static SystemMessageId NOW_OFFER_YOUR_LIVES_AND_DIE_WITH_GRACE; - @ClientString(id = 3769, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION_2; + @ClientString(id = 3769, message = "You cannot receive the reward because your Inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_CANNOT_RECEIVE_THE_REWARD_BECAUSE_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; @ClientString(id = 3770, message = "The Clan Flag, the symbol of your clan, has been summoned.") public static SystemMessageId THE_CLAN_FLAG_THE_SYMBOL_OF_YOUR_CLAN_HAS_BEEN_SUMMONED; @@ -10950,8 +10950,8 @@ public final class SystemMessageId @ClientString(id = 3789, message = "You cannot invite a friend or party while participating in the Ceremony of Chaos.") public static SystemMessageId YOU_CANNOT_INVITE_A_FRIEND_OR_PARTY_WHILE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS; - @ClientString(id = 3790, message = "You can register a Clan Mark only once every 15 minutes.") - public static SystemMessageId YOU_CAN_REGISTER_A_CLAN_MARK_ONLY_ONCE_EVERY_15_MINUTES; + @ClientString(id = 3790, message = "You can register a Clan Mark only once every 15 min.") + public static SystemMessageId YOU_CAN_REGISTER_A_CLAN_MARK_ONLY_ONCE_EVERY_15_MIN; @ClientString(id = 3791, message = "You have obtained the first Energy of Destruction. You can obtain up to 2 of these a day, and can begin obtaining them again at 6:30am every day.") public static SystemMessageId YOU_HAVE_OBTAINED_THE_FIRST_ENERGY_OF_DESTRUCTION_YOU_CAN_OBTAIN_UP_TO_2_OF_THESE_A_DAY_AND_CAN_BEGIN_OBTAINING_THEM_AGAIN_AT_6_30AM_EVERY_DAY; @@ -11016,8 +11016,8 @@ public final class SystemMessageId @ClientString(id = 3811, message = "Because $c1 was killed by a clan member of $s2, Clan Reputation decreased by 1.") public static SystemMessageId BECAUSE_C1_WAS_KILLED_BY_A_CLAN_MEMBER_OF_S2_CLAN_REPUTATION_DECREASED_BY_1; - @ClientString(id = 3812, message = "Because a clan member of $s1 was killed by $c2, Clan Reputation increased by 1.") - public static SystemMessageId BECAUSE_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2_CLAN_REPUTATION_INCREASED_BY_1; + @ClientString(id = 3812, message = "Because a clan member of $s1 was killed by $c2, Clan Reputation increased by 1. A clan member of $s1 was killed by $c2.") + public static SystemMessageId BECAUSE_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2_CLAN_REPUTATION_INCREASED_BY_1_A_CLAN_MEMBER_OF_S1_WAS_KILLED_BY_C2; @ClientString(id = 3813, message = "Because Clan $s1 did not fight back for 1 week, the clan war was cancelled.") public static SystemMessageId BECAUSE_CLAN_S1_DID_NOT_FIGHT_BACK_FOR_1_WEEK_THE_CLAN_WAR_WAS_CANCELLED; @@ -11124,17 +11124,17 @@ public final class SystemMessageId @ClientString(id = 3847, message = "Use $s1.") public static SystemMessageId USE_S1_2; - @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights Secret Supply Items.") + @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights' Secret Supply Items.") public static SystemMessageId S1_OBTAINED_S2_THE_BALTHUS_KNIGHTS_SECRET_SUPPLY_ITEMS; - @ClientString(id = 3849, message = "You obtained $s1 Sibis Coins.") - public static SystemMessageId YOU_OBTAINED_S1_SIBIS_COINS; + @ClientString(id = 3849, message = "You have obtained $s1 Sibi's Coins.") + public static SystemMessageId YOU_HAVE_OBTAINED_S1_SIBI_S_COINS; - @ClientString(id = 3850, message = "There are no Sibis Coins available to obtain.") - public static SystemMessageId THERE_ARE_NO_SIBIS_COINS_AVAILABLE_TO_OBTAIN; + @ClientString(id = 3850, message = "There are no Sibi Coins available to obtain.") + public static SystemMessageId THERE_ARE_NO_SIBI_COINS_AVAILABLE_TO_OBTAIN; - @ClientString(id = 3851, message = "You've obtained $s1. You can obtain up to 2 of these items a day. You can get more after 06:30 AM every day.") - public static SystemMessageId YOU_VE_OBTAINED_S1_YOU_CAN_OBTAIN_UP_TO_2_OF_THESE_ITEMS_A_DAY_YOU_CAN_GET_MORE_AFTER_06_30_AM_EVERY_DAY; + @ClientString(id = 3851, message = "You've obtained $s1. You can obtain up to $s2 of these items a day. You can get more after 06:30 AM every day.") + public static SystemMessageId YOU_VE_OBTAINED_S1_YOU_CAN_OBTAIN_UP_TO_S2_OF_THESE_ITEMS_A_DAY_YOU_CAN_GET_MORE_AFTER_06_30_AM_EVERY_DAY; @ClientString(id = 3852, message = "Click the Apply button to apply the changes.") public static SystemMessageId CLICK_THE_APPLY_BUTTON_TO_APPLY_THE_CHANGES; @@ -11229,8 +11229,8 @@ public final class SystemMessageId @ClientString(id = 3882, message = "Because $s1 died, $s2 $s3 is destroyed.") public static SystemMessageId BECAUSE_S1_DIED_S2_S3_IS_DESTROYED; - @ClientString(id = 3883, message = "If you cancel a declared war, you will lose 5,000 Clan Reputation. Proceed?") - public static SystemMessageId IF_YOU_CANCEL_A_DECLARED_WAR_YOU_WILL_LOSE_5_000_CLAN_REPUTATION_PROCEED; + @ClientString(id = 3883, message = "Do you want to withdraw from the war against $s1? If you withdraw from a declared war, you will lose 10,000 Clan Reputation.") + public static SystemMessageId DO_YOU_WANT_TO_WITHDRAW_FROM_THE_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_A_DECLARED_WAR_YOU_WILL_LOSE_10_000_CLAN_REPUTATION; @ClientString(id = 3884, message = "Can be used only when HP is less than 100%%.") public static SystemMessageId CAN_BE_USED_ONLY_WHEN_HP_IS_LESS_THAN_100_2; @@ -11241,13 +11241,13 @@ public final class SystemMessageId @ClientString(id = 3886, message = "Can be used only when CP is less than 100%%.") public static SystemMessageId CAN_BE_USED_ONLY_WHEN_CP_IS_LESS_THAN_100_2; - @ClientString(id = 3887, message = "The Balthus Knights event is ready to begin. Marks of the Balthus Knights cannot be used before the event begins.") + @ClientString(id = 3887, message = "The Balthus Knights' event is ready to begin. Marks of the Balthus Knights' cannot be used before the event begins.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_READY_TO_BEGIN_MARKS_OF_THE_BALTHUS_KNIGHTS_CANNOT_BE_USED_BEFORE_THE_EVENT_BEGINS; - @ClientString(id = 3888, message = "The Balthus Knights event is in progress.") + @ClientString(id = 3888, message = "The Balthus Knights' event is in progress.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_IN_PROGRESS; - @ClientString(id = 3889, message = "The Balthus Knights event has begun. Characters of level 85 or higher and who are Awakened may participate in this event.") + @ClientString(id = 3889, message = "The Balthus Knights' event has begun. Characters of level 85 or higher and who are Awakened may participate in this event.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_HAS_BEGUN_CHARACTERS_OF_LEVEL_85_OR_HIGHER_AND_WHO_ARE_AWAKENED_MAY_PARTICIPATE_IN_THIS_EVENT; @ClientString(id = 3890, message = "Except the vitality buff, all buffs including Art of Seduction will be deleted.") @@ -11256,13 +11256,13 @@ public final class SystemMessageId @ClientString(id = 3891, message = "You've obtained individual request points ($s1/100).") public static SystemMessageId YOU_VE_OBTAINED_INDIVIDUAL_REQUEST_POINTS_S1_100; - @ClientString(id = 3892, message = "You are not participating in the event. Use the Mark of the Balthus Knights to participate.
You can obtain the Mark of the Balthus Knights from the Balthus Knight Supply Item or Sibis' Suspicious Supply Items.") - public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_THE_MARK_OF_THE_BALTHUS_KNIGHTS_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_THE_MARK_OF_THE_BALTHUS_KNIGHTS_FROM_THE_BALTHUS_KNIGHT_SUPPLY_ITEM_OR_SIBIS_SUSPICIOUS_SUPPLY_ITEMS; + @ClientString(id = 3892, message = "You are not participating in the event. Use the Balthus Knight Mark to participate.
You can obtain the Balthus Knight Mark from the Balthus' Knight Supply Box or Sibi's Suspicious Supply Box.") + public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_THE_BALTHUS_KNIGHT_MARK_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_THE_BALTHUS_KNIGHT_MARK_FROM_THE_BALTHUS_KNIGHT_SUPPLY_BOX_OR_SIBI_S_SUSPICIOUS_SUPPLY_BOX; @ClientString(id = 3893, message = "You cannot receive the item $s1 because you've exceeded the limit on the quantity and weight of the inventory.") public static SystemMessageId YOU_CANNOT_RECEIVE_THE_ITEM_S1_BECAUSE_YOU_VE_EXCEEDED_THE_LIMIT_ON_THE_QUANTITY_AND_WEIGHT_OF_THE_INVENTORY; - @ClientString(id = 3894, message = "You are currently in Stage $s1, Round $s2 of the Balthus Knights event.") + @ClientString(id = 3894, message = "You are currently in Stage $s1, Round $s2 of the Balthus Knights' event.") public static SystemMessageId YOU_ARE_CURRENTLY_IN_STAGE_S1_ROUND_S2_OF_THE_BALTHUS_KNIGHTS_EVENT; @ClientString(id = 3895, message = "You cannot go because the maximum number of participants in the clan request has been exceeded.") @@ -11271,7 +11271,7 @@ public final class SystemMessageId @ClientString(id = 3896, message = "There's a new clan request! Get it from the Clan Request Manager.") public static SystemMessageId THERE_S_A_NEW_CLAN_REQUEST_GET_IT_FROM_THE_CLAN_REQUEST_MANAGER; - @ClientString(id = 3897, message = "You can now participate in the Balthus Knights event as the server is open.") + @ClientString(id = 3897, message = "You can now participate in the Balthus Knights' event as the server is open.") public static SystemMessageId YOU_CAN_NOW_PARTICIPATE_IN_THE_BALTHUS_KNIGHTS_EVENT_AS_THE_SERVER_IS_OPEN; @ClientString(id = 3898, message = "You cannot use the item because the effect is already applied.") @@ -11325,8 +11325,8 @@ public final class SystemMessageId @ClientString(id = 4007, message = "The style change was not successful.") public static SystemMessageId THE_STYLE_CHANGE_WAS_NOT_SUCCESSFUL_2; - @ClientString(id = 4008, message = "Changed to selectd style.") - public static SystemMessageId CHANGED_TO_SELECTD_STYLE; + @ClientString(id = 4008, message = "Change to selected style.") + public static SystemMessageId CHANGE_TO_SELECTED_STYLE; @ClientString(id = 4009, message = "Failed to purchase due to insufficient Adena.") public static SystemMessageId FAILED_TO_PURCHASE_DUE_TO_INSUFFICIENT_ADENA; @@ -11397,32 +11397,32 @@ public final class SystemMessageId @ClientString(id = 4031, message = "Only the clan leader or someone with rank management authority may register the clan.") public static SystemMessageId ONLY_THE_CLAN_LEADER_OR_SOMEONE_WITH_RANK_MANAGEMENT_AUTHORITY_MAY_REGISTER_THE_CLAN; - @ClientString(id = 4032, message = "You may register the clan after $s1 minute(s) due to deleting the entered text.") - public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_MINUTE_S_DUE_TO_DELETING_THE_ENTERED_TEXT; + @ClientString(id = 4032, message = "You may register the clan after $s1 min. due to deleting the entered text.") + public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_MIN_DUE_TO_DELETING_THE_ENTERED_TEXT; @ClientString(id = 4033, message = "You can view the list of characters who have applied to the clan. Those without a clan can be entered on the waiting list.") public static SystemMessageId YOU_CAN_VIEW_THE_LIST_OF_CHARACTERS_WHO_HAVE_APPLIED_TO_THE_CLAN_THOSE_WITHOUT_A_CLAN_CAN_BE_ENTERED_ON_THE_WAITING_LIST; - @ClientString(id = 4034, message = "You can edit the clan information, but deleting text results in a 5-minute penalty.") - public static SystemMessageId YOU_CAN_EDIT_THE_CLAN_INFORMATION_BUT_DELETING_TEXT_RESULTS_IN_A_5_MINUTE_PENALTY; + @ClientString(id = 4034, message = "You can edit the clan information, but deleting text results in a 5-min. penalty.") + public static SystemMessageId YOU_CAN_EDIT_THE_CLAN_INFORMATION_BUT_DELETING_TEXT_RESULTS_IN_A_5_MIN_PENALTY; @ClientString(id = 4035, message = "Only the clan leader or someone with rank management authority may change clan information.") public static SystemMessageId ONLY_THE_CLAN_LEADER_OR_SOMEONE_WITH_RANK_MANAGEMENT_AUTHORITY_MAY_CHANGE_CLAN_INFORMATION; - @ClientString(id = 4036, message = "Cancelling entry applications results in a 5-minute penalty.") - public static SystemMessageId CANCELLING_ENTRY_APPLICATIONS_RESULTS_IN_A_5_MINUTE_PENALTY; + @ClientString(id = 4036, message = "Cancelling entry applications results in a 5-min. penalty.") + public static SystemMessageId CANCELLING_ENTRY_APPLICATIONS_RESULTS_IN_A_5_MIN_PENALTY; - @ClientString(id = 4037, message = "Entered into list. Entries are in order of Clan Reputation, recalculated every day at 6:30 am. You can edit the text, but if you delete the text, you cannot enter clan information for 5 minutes. Entered text will be automatically deleted after 30 days.") - public static SystemMessageId ENTERED_INTO_LIST_ENTRIES_ARE_IN_ORDER_OF_CLAN_REPUTATION_RECALCULATED_EVERY_DAY_AT_6_30_AM_YOU_CAN_EDIT_THE_TEXT_BUT_IF_YOU_DELETE_THE_TEXT_YOU_CANNOT_ENTER_CLAN_INFORMATION_FOR_5_MINUTES_ENTERED_TEXT_WILL_BE_AUTOMATICALLY_DELETED_AFTER_30_DAYS; + @ClientString(id = 4037, message = "Entered into list. Entries are in order of Clan Reputation, recalculated every day at 6:30 am. You can edit the text, but if you delete the text, you cannot enter clan information for 5 min. Entered text will be automatically deleted after 30 days.") + public static SystemMessageId ENTERED_INTO_LIST_ENTRIES_ARE_IN_ORDER_OF_CLAN_REPUTATION_RECALCULATED_EVERY_DAY_AT_6_30_AM_YOU_CAN_EDIT_THE_TEXT_BUT_IF_YOU_DELETE_THE_TEXT_YOU_CANNOT_ENTER_CLAN_INFORMATION_FOR_5_MIN_ENTERED_TEXT_WILL_BE_AUTOMATICALLY_DELETED_AFTER_30_DAYS; - @ClientString(id = 4038, message = "You may apply for entry after $s1 minute(s) due to cancelling your application.") - public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION; + @ClientString(id = 4038, message = "You may apply for entry after $s1 min. due to cancelling your application.") + public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MIN_DUE_TO_CANCELLING_YOUR_APPLICATION; - @ClientString(id = 4039, message = "Entry application complete. Use 'Entry Application Info' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 minutes.") - public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES; + @ClientString(id = 4039, message = "Entry application complete. Use 'My Application' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 min.") + public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MIN; - @ClientString(id = 4040, message = "Entry application cancelled. You may apply to a new clan after 5 minutes.") - public static SystemMessageId ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MINUTES; + @ClientString(id = 4040, message = "Entry application cancelled. You may apply to a new clan after 5 min.") + public static SystemMessageId ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MIN; @ClientString(id = 4041, message = "The clan you selected is no longer taking applications as it has too many applicants.") public static SystemMessageId THE_CLAN_YOU_SELECTED_IS_NO_LONGER_TAKING_APPLICATIONS_AS_IT_HAS_TOO_MANY_APPLICANTS; @@ -11430,17 +11430,17 @@ public final class SystemMessageId @ClientString(id = 4042, message = "$s1's clan entry application has been rejected.") public static SystemMessageId S1_S_CLAN_ENTRY_APPLICATION_HAS_BEEN_REJECTED; - @ClientString(id = 4043, message = "Entered into waiting list. Name is automatically deleted after 30 days. If 'Delete from waiting list' is used, you cannot enter names into the waiting list for 5 minutes.") - public static SystemMessageId ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MINUTES; + @ClientString(id = 4043, message = "Entered into waiting list. Name is automatically deleted after 30 days. If 'Delete from waiting list' is used, you cannot enter names into the waiting list for 5 min.") + public static SystemMessageId ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MIN; - @ClientString(id = 4044, message = "You may enter names into the waiting list after $s1 minute(s) due to deleting from the waiting list.") - public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_MINUTE_S_DUE_TO_DELETING_FROM_THE_WAITING_LIST; + @ClientString(id = 4044, message = "You may enter names into the waiting list after $s1 min. due to deleting from the waiting list.") + public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_MIN_DUE_TO_DELETING_FROM_THE_WAITING_LIST; - @ClientString(id = 4045, message = "Turning on Optimization Uniform function. Please wait 3 seconds to turn it off.") - public static SystemMessageId TURNING_ON_OPTIMIZATION_UNIFORM_FUNCTION_PLEASE_WAIT_3_SECONDS_TO_TURN_IT_OFF; + @ClientString(id = 4045, message = "Turning on Optimization Uniform function. Please wait 3 sec. to turn it off.") + public static SystemMessageId TURNING_ON_OPTIMIZATION_UNIFORM_FUNCTION_PLEASE_WAIT_3_SEC_TO_TURN_IT_OFF; - @ClientString(id = 4046, message = "Turning off Optimization Uniform function. Please wait 3 seconds to turn it on.") - public static SystemMessageId TURNING_OFF_OPTIMIZATION_UNIFORM_FUNCTION_PLEASE_WAIT_3_SECONDS_TO_TURN_IT_ON; + @ClientString(id = 4046, message = "Turning off Optimization Uniform function. Please wait 3 sec. to turn it on.") + public static SystemMessageId TURNING_OFF_OPTIMIZATION_UNIFORM_FUNCTION_PLEASE_WAIT_3_SEC_TO_TURN_IT_ON; @ClientString(id = 4047, message = "You cannot use this function after a dimensional teleport.") public static SystemMessageId YOU_CANNOT_USE_THIS_FUNCTION_AFTER_A_DIMENSIONAL_TELEPORT; @@ -11535,8 +11535,8 @@ public final class SystemMessageId @ClientString(id = 4077, message = "Congratulations! $s1 has reached Lv. 85. Will you now go on to unearth more exciting mysteries in the world of Aden?") public static SystemMessageId CONGRATULATIONS_S1_HAS_REACHED_LV_85_WILL_YOU_NOW_GO_ON_TO_UNEARTH_MORE_EXCITING_MYSTERIES_IN_THE_WORLD_OF_ADEN; - @ClientString(id = 4078, message = "Congratulations! $s1 has reached Lv. 85. Further mysteries of Aden will be revealed to you in $s2 second(s).") - public static SystemMessageId CONGRATULATIONS_S1_HAS_REACHED_LV_85_FURTHER_MYSTERIES_OF_ADEN_WILL_BE_REVEALED_TO_YOU_IN_S2_SECOND_S; + @ClientString(id = 4078, message = "Congratulations! $s1 has reached Lv. 85. Further mysteries of Aden will be revealed to you in $s2 sec.") + public static SystemMessageId CONGRATULATIONS_S1_HAS_REACHED_LV_85_FURTHER_MYSTERIES_OF_ADEN_WILL_BE_REVEALED_TO_YOU_IN_S2_SEC; @ClientString(id = 4079, message = "You cannot play a disabled character. Please select an enabled character.") public static SystemMessageId YOU_CANNOT_PLAY_A_DISABLED_CHARACTER_PLEASE_SELECT_AN_ENABLED_CHARACTER; @@ -11571,8 +11571,8 @@ public final class SystemMessageId @ClientString(id = 4089, message = "Welcome to Lineage II.
You create up to 2 characters within a server and level them up to 85 for free. The free service will end for the server when you reach Lv. 85; please use a Lineage II play pass if you wish to continue playing afterwards.

Free play requirements
1: Character Level
2: Character XP
3: Character Creation Date (chronological order)") public static SystemMessageId WELCOME_TO_LINEAGE_II_BR_YOU_CREATE_UP_TO_2_CHARACTERS_WITHIN_A_SERVER_AND_LEVEL_THEM_UP_TO_85_FOR_FREE_THE_FREE_SERVICE_WILL_END_FOR_THE_SERVER_WHEN_YOU_REACH_LV_85_PLEASE_USE_A_LINEAGE_II_PLAY_PASS_IF_YOU_WISH_TO_CONTINUE_PLAYING_AFTERWARDS_BR_BR_FREE_PLAY_REQUIREMENTS_BR_1_CHARACTER_LEVEL_BR_2_CHARACTER_XP_BR_3_CHARACTER_CREATION_DATE_CHRONOLOGICAL_ORDER; - @ClientString(id = 4090, message = "Returning players will receive free passes as a welcome-back gift. The pass must be retrieved within 24 hours.\\n\\nClick 'Receive' to go to the website for the pass. This will log you out of the game. Do you wish to proceed?\\n\\n(Click Cancel if you have already registered the pass.)") - public static SystemMessageId RETURNING_PLAYERS_WILL_RECEIVE_FREE_PASSES_AS_A_WELCOME_BACK_GIFT_THE_PASS_MUST_BE_RETRIEVED_WITHIN_24_HOURS_N_NCLICK_RECEIVE_TO_GO_TO_THE_WEBSITE_FOR_THE_PASS_THIS_WILL_LOG_YOU_OUT_OF_THE_GAME_DO_YOU_WISH_TO_PROCEED_N_N_CLICK_CANCEL_IF_YOU_HAVE_ALREADY_REGISTERED_THE_PASS; + @ClientString(id = 4090, message = "Returning players will receive free passes as a welcome-back gift. You can see the support goods and pass for Aden warriors in the Free Adventure Service. \\n\\nClick 'Receive' to go to the website for the pass. This will log you out of the game. Do you wish to proceed?\\n\\n(Click Cancel if you have already registered the pass.)") + public static SystemMessageId RETURNING_PLAYERS_WILL_RECEIVE_FREE_PASSES_AS_A_WELCOME_BACK_GIFT_YOU_CAN_SEE_THE_SUPPORT_GOODS_AND_PASS_FOR_ADEN_WARRIORS_IN_THE_FREE_ADVENTURE_SERVICE_N_NCLICK_RECEIVE_TO_GO_TO_THE_WEBSITE_FOR_THE_PASS_THIS_WILL_LOG_YOU_OUT_OF_THE_GAME_DO_YOU_WISH_TO_PROCEED_N_N_CLICK_CANCEL_IF_YOU_HAVE_ALREADY_REGISTERED_THE_PASS; @ClientString(id = 4091, message = "This quest cannot be deleted.") public static SystemMessageId THIS_QUEST_CANNOT_BE_DELETED; @@ -11589,8 +11589,8 @@ public final class SystemMessageId @ClientString(id = 4095, message = "You cannot enchant skills on existing Awakened classes before diversification.") public static SystemMessageId YOU_CANNOT_ENCHANT_SKILLS_ON_EXISTING_AWAKENED_CLASSES_BEFORE_DIVERSIFICATION; - @ClientString(id = 4096, message = "You qualify for inactive player benefits. Log into the Lineage II homepage within $s1 hour(s) and $s2 minute(s) to acquire a play pass.") - public static SystemMessageId YOU_QUALIFY_FOR_INACTIVE_PLAYER_BENEFITS_LOG_INTO_THE_LINEAGE_II_HOMEPAGE_WITHIN_S1_HOUR_S_AND_S2_MINUTE_S_TO_ACQUIRE_A_PLAY_PASS; + @ClientString(id = 4096, message = "You qualify for inactive player benefits. Log into the Lineage II homepage within $s1 hr. and $s2 min. to acquire a play pass.") + public static SystemMessageId YOU_QUALIFY_FOR_INACTIVE_PLAYER_BENEFITS_LOG_INTO_THE_LINEAGE_II_HOMEPAGE_WITHIN_S1_HR_AND_S2_MIN_TO_ACQUIRE_A_PLAY_PASS; @ClientString(id = 4097, message = "Teleport in progress. Please try again later.") public static SystemMessageId TELEPORT_IN_PROGRESS_PLEASE_TRY_AGAIN_LATER; @@ -11601,29 +11601,29 @@ public final class SystemMessageId @ClientString(id = 4099, message = "100,000,000 Adena will be spent on a reset. Proceed?") public static SystemMessageId ONE_HUNDRED_MILION_ADENA_WILL_BE_SPENT_ON_A_RESET_PROCEED; - @ClientString(id = 4100, message = "You may register the clan after $s1 second(s) due to deleting the entered text.") - public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_SECOND_S_DUE_TO_DELETING_THE_ENTERED_TEXT; + @ClientString(id = 4100, message = "You may register the clan after $s1 sec. due to deleting the entered text.") + public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_SEC_DUE_TO_DELETING_THE_ENTERED_TEXT; - @ClientString(id = 4101, message = "You may apply for entry after $s1 second(s) due to cancelling your application.") - public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_SECOND_S_DUE_TO_CANCELLING_YOUR_APPLICATION; + @ClientString(id = 4101, message = "You may apply for entry after $s1 sec. due to cancelling your application.") + public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_SEC_DUE_TO_CANCELLING_YOUR_APPLICATION; - @ClientString(id = 4102, message = "You may enter names into the waiting list after $s1 second(s) due to deleting from the waiting list.") - public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_SECOND_S_DUE_TO_DELETING_FROM_THE_WAITING_LIST; + @ClientString(id = 4102, message = "You may enter names into the waiting list after $s1 sec. due to deleting from the waiting list.") + public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_SEC_DUE_TO_DELETING_FROM_THE_WAITING_LIST; @ClientString(id = 4103, message = "The Prophecy skill cannot be reset due to insufficient Adena.") public static SystemMessageId THE_PROPHECY_SKILL_CANNOT_BE_RESET_DUE_TO_INSUFFICIENT_ADENA; - @ClientString(id = 4104, message = "Players can Shout after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_SHOUT_AFTER_LV_S1; + @ClientString(id = 4104, message = "Shout chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId SHOUT_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4105, message = "Players can use Trade chat after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_USE_TRADE_CHAT_AFTER_LV_S1; + @ClientString(id = 4105, message = "Trade chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId TRADE_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4106, message = "Players can use general chat after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_USE_GENERAL_CHAT_AFTER_LV_S1; + @ClientString(id = 4106, message = "General chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId GENERAL_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4107, message = "Players can respond to a whisper, but cannot initiate a whisper until after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_A_WHISPER_UNTIL_AFTER_LV_S1; + @ClientString(id = 4107, message = "Non-premium users Lv. $s1 or lower can respond to a whisper, but cannot initiate it.") + public static SystemMessageId NON_PREMIUM_USERS_LV_S1_OR_LOWER_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_IT; @ClientString(id = 4108, message = "Pet summon/ seal or riding in progress. Please try again later.") public static SystemMessageId PET_SUMMON_SEAL_OR_RIDING_IN_PROGRESS_PLEASE_TRY_AGAIN_LATER; @@ -11649,10 +11649,10 @@ public final class SystemMessageId @ClientString(id = 4115, message = "You have dropped $s1.") public static SystemMessageId YOU_HAVE_DROPPED_S1_2; - @ClientString(id = 4116, message = "The +$s1 augmentation effects on $s2 have been deleted.") - public static SystemMessageId THE_S1_AUGMENTATION_EFFECTS_ON_S2_HAVE_BEEN_DELETED; + @ClientString(id = 4116, message = "The augmentation effects on +$s1 $s2 have been deleted.") + public static SystemMessageId THE_AUGMENTATION_EFFECTS_ON_S1_S2_HAVE_BEEN_DELETED; - @ClientString(id = 4117, message = " +$s1$s2 has been restored to its previous appearance, as its temporary modification has expired.") + @ClientString(id = 4117, message = "+$s1$s2 has been restored to its previous appearance, as its temporary modification has expired.") public static SystemMessageId S1_S2_HAS_BEEN_RESTORED_TO_ITS_PREVIOUS_APPEARANCE_AS_ITS_TEMPORARY_MODIFICATION_HAS_EXPIRED; @ClientString(id = 4118, message = "You cannot teleport as the Dimensional Space is closed.") @@ -11715,8 +11715,8 @@ public final class SystemMessageId @ClientString(id = 4137, message = "Characters cannot receive requested payment while teleporting between dimensions. Please try again later.") public static SystemMessageId CHARACTERS_CANNOT_RECEIVE_REQUESTED_PAYMENT_WHILE_TELEPORTING_BETWEEN_DIMENSIONS_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 4138, message = "Stopped Party Matching. You have $s1 minute(s) until Party Matching is disabled.") - public static SystemMessageId STOPPED_PARTY_MATCHING_YOU_HAVE_S1_MINUTE_S_UNTIL_PARTY_MATCHING_IS_DISABLED; + @ClientString(id = 4138, message = "Stopped Party Matching. You have $s1 min. until Party Matching is disabled.") + public static SystemMessageId STOPPED_PARTY_MATCHING_YOU_HAVE_S1_MIN_UNTIL_PARTY_MATCHING_IS_DISABLED; @ClientString(id = 4139, message = "Party Matching usable.") public static SystemMessageId PARTY_MATCHING_USABLE; @@ -11730,8 +11730,8 @@ public final class SystemMessageId @ClientString(id = 4142, message = "Please enter the quantity.") public static SystemMessageId PLEASE_ENTER_THE_QUANTITY; - @ClientString(id = 4143, message = "Upon failure, the item is destroyed (crystallization).") - public static SystemMessageId UPON_FAILURE_THE_ITEM_IS_DESTROYED_CRYSTALLIZATION; + @ClientString(id = 4143, message = "Upon failure, the item is crystallized.") + public static SystemMessageId UPON_FAILURE_THE_ITEM_IS_CRYSTALLIZED; @ClientString(id = 4144, message = "Upon failure, enchant will reset to +0.") public static SystemMessageId UPON_FAILURE_ENCHANT_WILL_RESET_TO_0; @@ -11811,8 +11811,8 @@ public final class SystemMessageId @ClientString(id = 4169, message = "There is no equipped hair accessory.") public static SystemMessageId THERE_IS_NO_EQUIPPED_HAIR_ACCESSORY; - @ClientString(id = 4170, message = " Depending on the hair accessory display status in the inventory,
the hair style may not be displayed.
Do you wish to change the style?
") - public static SystemMessageId BROWN01_BROWN01_RED02_DEPENDING_ON_THE_HAIR_ACCESSORY_DISPLAY_STATUS_IN_THE_INVENTORY_RED02_BROWN01_BR_THE_HAIR_STYLE_MAY_NOT_BE_DISPLAYED_BR_DO_YOU_WISH_TO_CHANGE_THE_STYLE_BROWN01; + @ClientString(id = 4170, message = " Depending on the hair accessory display,
the hair style may not be displayed. Proceed?
") + public static SystemMessageId BROWN01_BROWN01_RED02_DEPENDING_ON_THE_HAIR_ACCESSORY_DISPLAY_RED02_BROWN01_BR_THE_HAIR_STYLE_MAY_NOT_BE_DISPLAYED_PROCEED_BROWN01; @ClientString(id = 4171, message = "A member has excessive Adena. Distribution has been cancelled.") public static SystemMessageId A_MEMBER_HAS_EXCESSIVE_ADENA_DISTRIBUTION_HAS_BEEN_CANCELLED; @@ -11823,8 +11823,8 @@ public final class SystemMessageId @ClientString(id = 4173, message = "You cannot send a whisper to a user who is participating in the Olympiad.") public static SystemMessageId YOU_CANNOT_SEND_A_WHISPER_TO_A_USER_WHO_IS_PARTICIPATING_IN_THE_OLYMPIAD; - @ClientString(id = 4174, message = "You'll be taken to the Olympiad Stadium in about 1 minute. Canceling a match will cost Olympiad Points from now on.") - public static SystemMessageId YOU_LL_BE_TAKEN_TO_THE_OLYMPIAD_STADIUM_IN_ABOUT_1_MINUTE_CANCELING_A_MATCH_WILL_COST_OLYMPIAD_POINTS_FROM_NOW_ON; + @ClientString(id = 4174, message = "You'll be taken to the Olympiad Stadium in about 1 min. Canceling a match will cost Olympiad Points from now on.") + public static SystemMessageId YOU_LL_BE_TAKEN_TO_THE_OLYMPIAD_STADIUM_IN_ABOUT_1_MIN_CANCELING_A_MATCH_WILL_COST_OLYMPIAD_POINTS_FROM_NOW_ON; @ClientString(id = 4175, message = "You will shortly move to the Olympiad arena.") public static SystemMessageId YOU_WILL_SHORTLY_MOVE_TO_THE_OLYMPIAD_ARENA; @@ -12003,14 +12003,14 @@ public final class SystemMessageId @ClientString(id = 4233, message = "Press Start to combine.") public static SystemMessageId PRESS_START_TO_COMBINE; - @ClientString(id = 4234, message = "Failure to combine will result in the loss of some or all combination ingredients. Continue?") - public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_SOME_OR_ALL_COMBINATION_INGREDIENTS_CONTINUE; + @ClientString(id = 4234, message = "Failure to combine will result in the loss of 1 Combination Ingredient. Continue?") + public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_1_COMBINATION_INGREDIENT_CONTINUE; @ClientString(id = 4235, message = "Congratulations! You have successfully combined items into $s1.") public static SystemMessageId CONGRATULATIONS_YOU_HAVE_SUCCESSFULLY_COMBINED_ITEMS_INTO_S1; - @ClientString(id = 4236, message = "You have failed to combined the items. You have obtained $s1.") - public static SystemMessageId YOU_HAVE_FAILED_TO_COMBINED_THE_ITEMS_YOU_HAVE_OBTAINED_S1; + @ClientString(id = 4236, message = "You have failed to combine the items. You have obtained $s1.") + public static SystemMessageId YOU_HAVE_FAILED_TO_COMBINE_THE_ITEMS_YOU_HAVE_OBTAINED_S1; @ClientString(id = 4237, message = "You cannot equip $s1 without equipping a brooch.") public static SystemMessageId YOU_CANNOT_EQUIP_S1_WITHOUT_EQUIPPING_A_BROOCH; @@ -12018,8 +12018,8 @@ public final class SystemMessageId @ClientString(id = 4238, message = "You can use World Chat (press &) $s1 more time(s).") public static SystemMessageId YOU_CAN_USE_WORLD_CHAT_PRESS_S1_MORE_TIME_S; - @ClientString(id = 4239, message = "You have spent your World Chat quota for the day. A new day starts every day at 18:30.") - public static SystemMessageId YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_A_NEW_DAY_STARTS_EVERY_DAY_AT_18_30; + @ClientString(id = 4239, message = "You have spent your World Chat quota for the day. The World Chat quota resets at 7AM everyday.") + public static SystemMessageId YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_THE_WORLD_CHAT_QUOTA_RESETS_AT_7AM_EVERYDAY; @ClientString(id = 4240, message = "You can use World Chat from Lv. $s1.") public static SystemMessageId YOU_CAN_USE_WORLD_CHAT_FROM_LV_S1; @@ -12093,8 +12093,8 @@ public final class SystemMessageId @ClientString(id = 4263, message = "You can use this when you have reached Lv. 40 and learned Alchemy skills.") public static SystemMessageId YOU_CAN_USE_THIS_WHEN_YOU_HAVE_REACHED_LV_40_AND_LEARNED_ALCHEMY_SKILLS; - @ClientString(id = 4264, message = "You can experiement $s1 times.") - public static SystemMessageId YOU_CAN_EXPERIEMENT_S1_TIMES; + @ClientString(id = 4264, message = "You can experiment $s1 times.") + public static SystemMessageId YOU_CAN_EXPERIMENT_S1_TIMES; @ClientString(id = 4265, message = "You must learn the necessary skills first.") public static SystemMessageId YOU_MUST_LEARN_THE_NECESSARY_SKILLS_FIRST; @@ -12108,8 +12108,8 @@ public final class SystemMessageId @ClientString(id = 4268, message = "You can use World Chat.") public static SystemMessageId YOU_CAN_USE_WORLD_CHAT; - @ClientString(id = 4269, message = "World Chat has stopped. $s1 minutes left until World Chat is available again.") - public static SystemMessageId WORLD_CHAT_HAS_STOPPED_S1_MINUTES_LEFT_UNTIL_WORLD_CHAT_IS_AVAILABLE_AGAIN; + @ClientString(id = 4269, message = "World Chat has stopped. $s1 min. left until World Chat is available again.") + public static SystemMessageId WORLD_CHAT_HAS_STOPPED_S1_MIN_LEFT_UNTIL_WORLD_CHAT_IS_AVAILABLE_AGAIN; @ClientString(id = 4270, message = "You cannot use Alchemy during battle.") public static SystemMessageId YOU_CANNOT_USE_ALCHEMY_DURING_BATTLE; @@ -12207,11 +12207,11 @@ public final class SystemMessageId @ClientString(id = 4301, message = "You have pre-registered your character. The Classic Server will be accessible after the maintenance on 5/28.") public static SystemMessageId YOU_HAVE_PRE_REGISTERED_YOUR_CHARACTER_THE_CLASSIC_SERVER_WILL_BE_ACCESSIBLE_AFTER_THE_MAINTENANCE_ON_5_28; - @ClientString(id = 4302, message = "You can only create 1 character, and you'll be able to create additional characters after the maintenance on 5/28. The wait time to delete a character is 3 minutes.") - public static SystemMessageId YOU_CAN_ONLY_CREATE_1_CHARACTER_AND_YOU_LL_BE_ABLE_TO_CREATE_ADDITIONAL_CHARACTERS_AFTER_THE_MAINTENANCE_ON_5_28_THE_WAIT_TIME_TO_DELETE_A_CHARACTER_IS_3_MINUTES; + @ClientString(id = 4302, message = "You can only create 1 character, and you'll be able to create additional characters after the maintenance on 5/28. The wait time to delete a character is 3 min.") + public static SystemMessageId YOU_CAN_ONLY_CREATE_1_CHARACTER_AND_YOU_LL_BE_ABLE_TO_CREATE_ADDITIONAL_CHARACTERS_AFTER_THE_MAINTENANCE_ON_5_28_THE_WAIT_TIME_TO_DELETE_A_CHARACTER_IS_3_MIN; - @ClientString(id = 4303, message = "Fishing is available to characters Lv. 85 or above.") - public static SystemMessageId FISHING_IS_AVAILABLE_TO_CHARACTERS_LV_85_OR_ABOVE; + @ClientString(id = 4303, message = "Fishing is available to premium users only.") + public static SystemMessageId FISHING_IS_AVAILABLE_TO_PREMIUM_USERS_ONLY; @ClientString(id = 4304, message = "Pre-registration for characters is available right now. The Classic Server will be accessible after the maintenance on 5/28.") public static SystemMessageId PRE_REGISTRATION_FOR_CHARACTERS_IS_AVAILABLE_RIGHT_NOW_THE_CLASSIC_SERVER_WILL_BE_ACCESSIBLE_AFTER_THE_MAINTENANCE_ON_5_28; @@ -12225,7 +12225,7 @@ public final class SystemMessageId @ClientString(id = 4307, message = "Rise above the bounds of mortality and forge your own path.") public static SystemMessageId RISE_ABOVE_THE_BOUNDS_OF_MORTALITY_AND_FORGE_YOUR_OWN_PATH; - @ClientString(id = 4308, message = " ") + @ClientString(id = 4308, message = "") public static SystemMessageId EMPTY_14; @ClientString(id = 4309, message = "To being ... Exalted!") @@ -12255,8 +12255,8 @@ public final class SystemMessageId @ClientString(id = 4317, message = "Clan chat is not available. Please try again later.") public static SystemMessageId CLAN_CHAT_IS_NOT_AVAILABLE_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 4318, message = "Clan chat has been disabled for 1 minute due to spamming.") - public static SystemMessageId CLAN_CHAT_HAS_BEEN_DISABLED_FOR_1_MINUTE_DUE_TO_SPAMMING; + @ClientString(id = 4318, message = "Clan chat has been disabled for 1 min. due to spamming.") + public static SystemMessageId CLAN_CHAT_HAS_BEEN_DISABLED_FOR_1_MIN_DUE_TO_SPAMMING; @ClientString(id = 4319, message = "Clan chat has been disabled due to spamming. Please try again later.") public static SystemMessageId CLAN_CHAT_HAS_BEEN_DISABLED_DUE_TO_SPAMMING_PLEASE_TRY_AGAIN_LATER; @@ -12264,8 +12264,8 @@ public final class SystemMessageId @ClientString(id = 4320, message = "Current Location : $s1 / $s2 / $s3 (Talking Island (Past))") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_TALKING_ISLAND_PAST; - @ClientString(id = 4321, message = "You can redeem your reward $s1 minutes after logging in. $s2 minutes left.") - public static SystemMessageId YOU_CAN_REDEEM_YOUR_REWARD_S1_MINUTES_AFTER_LOGGING_IN_S2_MINUTES_LEFT; + @ClientString(id = 4321, message = "You can redeem your reward $s1 min. after logging in. $s2 min. left.") + public static SystemMessageId YOU_CAN_REDEEM_YOUR_REWARD_S1_MIN_AFTER_LOGGING_IN_S2_MIN_LEFT; @ClientString(id = 4322, message = "You can redeem your reward now.") public static SystemMessageId YOU_CAN_REDEEM_YOUR_REWARD_NOW; @@ -12276,8 +12276,8 @@ public final class SystemMessageId @ClientString(id = 4324, message = "$s1 monsters") public static SystemMessageId S1_MONSTERS; - @ClientString(id = 4325, message = "Less than $s1 minute") - public static SystemMessageId LESS_THAN_S1_MINUTE; + @ClientString(id = 4325, message = "Less than $s1 min.") + public static SystemMessageId LESS_THAN_S1_MIN; @ClientString(id = 4326, message = "Enter a weapon.") public static SystemMessageId ENTER_A_WEAPON; @@ -12381,8 +12381,8 @@ public final class SystemMessageId @ClientString(id = 4359, message = "Not enough items that are needed. Please check the number of items.") public static SystemMessageId NOT_ENOUGH_ITEMS_THAT_ARE_NEEDED_PLEASE_CHECK_THE_NUMBER_OF_ITEMS; - @ClientString(id = 4360, message = "Less than $s1 minute") - public static SystemMessageId LESS_THAN_S1_MINUTE_2; + @ClientString(id = 4360, message = "Less than $s1 min.") + public static SystemMessageId LESS_THAN_S1_MIN_2; @ClientString(id = 4361, message = "Cannot show because the conditions are not met.") public static SystemMessageId CANNOT_SHOW_BECAUSE_THE_CONDITIONS_ARE_NOT_MET; @@ -12399,14 +12399,14 @@ public final class SystemMessageId @ClientString(id = 4365, message = "The expert has been placed successfully.") public static SystemMessageId THE_EXPERT_HAS_BEEN_PLACED_SUCCESSFULLY; - @ClientString(id = 4366, message = "The allocation fee will be deducted from the clan's warehouse, and once the duration expires, it will be withdrawn.\\nContinue?") - public static SystemMessageId THE_ALLOCATION_FEE_WILL_BE_DEDUCTED_FROM_THE_CLAN_S_WAREHOUSE_AND_ONCE_THE_DURATION_EXPIRES_IT_WILL_BE_WITHDRAWN_NCONTINUE; + @ClientString(id = 4366, message = "The allocation fee will be deducted from the clan's warehouse, and once the duration expires, it will be withdrawn. Continue?") + public static SystemMessageId THE_ALLOCATION_FEE_WILL_BE_DEDUCTED_FROM_THE_CLAN_S_WAREHOUSE_AND_ONCE_THE_DURATION_EXPIRES_IT_WILL_BE_WITHDRAWN_CONTINUE; @ClientString(id = 4367, message = "Clan $s1 currently has the 1 day penalty for kicking out a member, so it cannot accept new members.") public static SystemMessageId CLAN_S1_CURRENTLY_HAS_THE_1_DAY_PENALTY_FOR_KICKING_OUT_A_MEMBER_SO_IT_CANNOT_ACCEPT_NEW_MEMBERS; - @ClientString(id = 4368, message = "The Academy/Royal Guard/Order of Knights have been fully filled, so you cannot join the clan.") - public static SystemMessageId THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_HAVE_BEEN_FULLY_FILLED_SO_YOU_CANNOT_JOIN_THE_CLAN; + @ClientString(id = 4368, message = "The clan is full, so you cannot join the clan.") + public static SystemMessageId THE_CLAN_IS_FULL_SO_YOU_CANNOT_JOIN_THE_CLAN; @ClientString(id = 4369, message = "Clan $s1 has requested to be dissolved, so you cannot join the clan.") public static SystemMessageId CLAN_S1_HAS_REQUESTED_TO_BE_DISSOLVED_SO_YOU_CANNOT_JOIN_THE_CLAN; @@ -12450,11 +12450,11 @@ public final class SystemMessageId @ClientString(id = 4382, message = "Another expert has already been placed there. The expert must be removed first before placing a new one.") public static SystemMessageId ANOTHER_EXPERT_HAS_ALREADY_BEEN_PLACED_THERE_THE_EXPERT_MUST_BE_REMOVED_FIRST_BEFORE_PLACING_A_NEW_ONE; - @ClientString(id = 4383, message = "The cost for placing an Emissary Leader for your forces is zero. The Emissary Leader for your forces, once placed, cannot be changed until the term expires, and the Emissary Leader will be removed once the term expires. \\nContinue?") - public static SystemMessageId THE_COST_FOR_PLACING_AN_EMISSARY_LEADER_FOR_YOUR_FORCES_IS_ZERO_THE_EMISSARY_LEADER_FOR_YOUR_FORCES_ONCE_PLACED_CANNOT_BE_CHANGED_UNTIL_THE_TERM_EXPIRES_AND_THE_EMISSARY_LEADER_WILL_BE_REMOVED_ONCE_THE_TERM_EXPIRES_NCONTINUE; + @ClientString(id = 4383, message = "It is free to place an Envoy of the Forces. Once placed, Envoy of the Forces cannot be changed during the term, and will be removed when the term expires. ") + public static SystemMessageId IT_IS_FREE_TO_PLACE_AN_ENVOY_OF_THE_FORCES_ONCE_PLACED_ENVOY_OF_THE_FORCES_CANNOT_BE_CHANGED_DURING_THE_TERM_AND_WILL_BE_REMOVED_WHEN_THE_TERM_EXPIRES; - @ClientString(id = 4384, message = "The expert currently in place will be removed. The placement cost will not be refunded.\\nContinue?") - public static SystemMessageId THE_EXPERT_CURRENTLY_IN_PLACE_WILL_BE_REMOVED_THE_PLACEMENT_COST_WILL_NOT_BE_REFUNDED_NCONTINUE; + @ClientString(id = 4384, message = "The expert currently in place will be removed. The placement cost will not be refunded. Continue?") + public static SystemMessageId THE_EXPERT_CURRENTLY_IN_PLACE_WILL_BE_REMOVED_THE_PLACEMENT_COST_WILL_NOT_BE_REFUNDED_CONTINUE; @ClientString(id = 4385, message = "That expert cannot be removed.") public static SystemMessageId THAT_EXPERT_CANNOT_BE_REMOVED; @@ -12483,11 +12483,11 @@ public final class SystemMessageId @ClientString(id = 4393, message = "Cannot enter; some users may not yet be seated.") public static SystemMessageId CANNOT_ENTER_SOME_USERS_MAY_NOT_YET_BE_SEATED; - @ClientString(id = 4394, message = "Currently in Stage $s1, Round $s2.") - public static SystemMessageId CURRENTLY_IN_STAGE_S1_ROUND_S2; + @ClientString(id = 4394, message = "Draw $s1, Attempt $s2 in progress.") + public static SystemMessageId DRAW_S1_ATTEMPT_S2_IN_PROGRESS; - @ClientString(id = 4395, message = "Supply Items are being prepared. The next supply items will be available on the hour.") - public static SystemMessageId SUPPLY_ITEMS_ARE_BEING_PREPARED_THE_NEXT_SUPPLY_ITEMS_WILL_BE_AVAILABLE_ON_THE_HOUR; + @ClientString(id = 4395, message = "Supply Items are being prepared. The next supply items will be available on the next hour.") + public static SystemMessageId SUPPLY_ITEMS_ARE_BEING_PREPARED_THE_NEXT_SUPPLY_ITEMS_WILL_BE_AVAILABLE_ON_THE_NEXT_HOUR; @ClientString(id = 4396, message = "Current Position : $s1 / $s2 / $s3 (Dimensional Rift)") public static SystemMessageId CURRENT_POSITION_S1_S2_S3_DIMENSIONAL_RIFT; @@ -12531,8 +12531,8 @@ public final class SystemMessageId @ClientString(id = 4409, message = "You may only use arenas with the same mode as the first monster arena you have used this week.") public static SystemMessageId YOU_MAY_ONLY_USE_ARENAS_WITH_THE_SAME_MODE_AS_THE_FIRST_MONSTER_ARENA_YOU_HAVE_USED_THIS_WEEK; - @ClientString(id = 4410, message = "Chat ban will be lifted in $s1 seconds.") - public static SystemMessageId CHAT_BAN_WILL_BE_LIFTED_IN_S1_SECONDS; + @ClientString(id = 4410, message = "Chat ban will be lifted in $s1 sec.") + public static SystemMessageId CHAT_BAN_WILL_BE_LIFTED_IN_S1_SEC; @ClientString(id = 4411, message = "Macros consisting of chat messages only cannot be used automatically.") public static SystemMessageId MACROS_CONSISTING_OF_CHAT_MESSAGES_ONLY_CANNOT_BE_USED_AUTOMATICALLY; @@ -12540,8 +12540,8 @@ public final class SystemMessageId @ClientString(id = 4412, message = "Send $s1") public static SystemMessageId SEND_S1; - @ClientString(id = 4413, message = "Congratulations. Compounding was successful and you obtained $s2 of $s1.") - public static SystemMessageId CONGRATULATIONS_COMPOUNDING_WAS_SUCCESSFUL_AND_YOU_OBTAINED_S2_OF_S1; + @ClientString(id = 4413, message = "Congratulations! You obtained $s2 of $s1.") + public static SystemMessageId CONGRATULATIONS_YOU_OBTAINED_S2_OF_S1; @ClientString(id = 4414, message = "Compounding failed and you obtained $s2 of $s1.") public static SystemMessageId COMPOUNDING_FAILED_AND_YOU_OBTAINED_S2_OF_S1; @@ -12558,20 +12558,20 @@ public final class SystemMessageId @ClientString(id = 4418, message = "You don't have enough space in your inventory to continue with compounding. You need more than 2 empty slots.") public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_SPACE_IN_YOUR_INVENTORY_TO_CONTINUE_WITH_COMPOUNDING_YOU_NEED_MORE_THAN_2_EMPTY_SLOTS; - @ClientString(id = 4419, message = "The auction for $s1 will begin in 24 hours.") - public static SystemMessageId THE_AUCTION_FOR_S1_WILL_BEGIN_IN_24_HOURS; + @ClientString(id = 4419, message = "The auction for $s1 will begin in 24 hr.") + public static SystemMessageId THE_AUCTION_FOR_S1_WILL_BEGIN_IN_24_HR; @ClientString(id = 4420, message = "The auction for $s1 is in progress.") public static SystemMessageId THE_AUCTION_FOR_S1_IS_IN_PROGRESS; - @ClientString(id = 4421, message = "$s1 is sold for $s2 Adena.") - public static SystemMessageId S1_IS_SOLD_FOR_S2_ADENA; + @ClientString(id = 4421, message = "$s1 was sold for $s2 Adena.") + public static SystemMessageId S1_WAS_SOLD_FOR_S2_ADENA; @ClientString(id = 4422, message = "Processing failed due to death of a character. Resurrect first and try again.") public static SystemMessageId PROCESSING_FAILED_DUE_TO_DEATH_OF_A_CHARACTER_RESURRECT_FIRST_AND_TRY_AGAIN; - @ClientString(id = 4423, message = "The Faction Level of $s1 has increased. Open the Factions window to check.") - public static SystemMessageId THE_FACTION_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK; + @ClientString(id = 4423, message = "The Amity Level of $s1 has increased. Open the Factions window to check.") + public static SystemMessageId THE_AMITY_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK; @ClientString(id = 4424, message = "When you compound, you may lose some or all of the ingredients. Continue?") public static SystemMessageId WHEN_YOU_COMPOUND_YOU_MAY_LOSE_SOME_OR_ALL_OF_THE_INGREDIENTS_CONTINUE; @@ -12579,11 +12579,11 @@ public final class SystemMessageId @ClientString(id = 4425, message = "$s1 Raid Monster") public static SystemMessageId S1_RAID_MONSTER; - @ClientString(id = 4426, message = "Completed all objectives of the $s2 Monster Collection level $s1.") - public static SystemMessageId COMPLETED_ALL_OBJECTIVES_OF_THE_S2_MONSTER_COLLECTION_LEVEL_S1; + @ClientString(id = 4426, message = "Bestiary: The $s2 stage of hunting monster $s1 is achieved.") + public static SystemMessageId BESTIARY_THE_S2_STAGE_OF_HUNTING_MONSTER_S1_IS_ACHIEVED; - @ClientString(id = 4427, message = "Completed all levels of the $s1 Monster Collection.") - public static SystemMessageId COMPLETED_ALL_LEVELS_OF_THE_S1_MONSTER_COLLECTION; + @ClientString(id = 4427, message = "Bestiary: All stages of hunting monster $s1 are complete.") + public static SystemMessageId BESTIARY_ALL_STAGES_OF_HUNTING_MONSTER_S1_ARE_COMPLETE; @ClientString(id = 4428, message = "Only characters of level $s1 or higher are eligible for rewards.") public static SystemMessageId ONLY_CHARACTERS_OF_LEVEL_S1_OR_HIGHER_ARE_ELIGIBLE_FOR_REWARDS; @@ -12699,8 +12699,8 @@ public final class SystemMessageId @ClientString(id = 4465, message = "From $s1 $s2 to $s3") public static SystemMessageId FROM_S1_S2_TO_S3; - @ClientString(id = 4466, message = "$s1 day(s) $s2 hour(s) $s3 minute(s)") - public static SystemMessageId S1_DAY_S_S2_HOUR_S_S3_MINUTE_S; + @ClientString(id = 4466, message = "$s1 d. $s2 hr. $s3 min.") + public static SystemMessageId S1_D_S2_HR_S3_MIN; @ClientString(id = 4467, message = "$s1.$s2.$s3") public static SystemMessageId S1_S2_S3; @@ -12762,6 +12762,348 @@ public final class SystemMessageId @ClientString(id = 4486, message = "Lineage 2 will always be by your side.") public static SystemMessageId LINEAGE_2_WILL_ALWAYS_BE_BY_YOUR_SIDE; + @ClientString(id = 4487, message = "You cannot exchange items during the number card game. ") + public static SystemMessageId YOU_CANNOT_EXCHANGE_ITEMS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4488, message = "You cannot send a request to a character who is playing the number card game. ") + public static SystemMessageId YOU_CANNOT_SEND_A_REQUEST_TO_A_CHARACTER_WHO_IS_PLAYING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4489, message = "You cannot send or receive attached items during the number card game. You can only read or send mail. ") + public static SystemMessageId YOU_CANNOT_SEND_OR_RECEIVE_ATTACHED_ITEMS_DURING_THE_NUMBER_CARD_GAME_YOU_CAN_ONLY_READ_OR_SEND_MAIL; + + @ClientString(id = 4490, message = "The number card game has ended because you are too far from the event NPC. ") + public static SystemMessageId THE_NUMBER_CARD_GAME_HAS_ENDED_BECAUSE_YOU_ARE_TOO_FAR_FROM_THE_EVENT_NPC; + + @ClientString(id = 4491, message = "You cannot do Couple Actions during the number card game. ") + public static SystemMessageId YOU_CANNOT_DO_COUPLE_ACTIONS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4492, message = "$c1 is playing the number card game. You cannot request Couple Actions. ") + public static SystemMessageId C1_IS_PLAYING_THE_NUMBER_CARD_GAME_YOU_CANNOT_REQUEST_COUPLE_ACTIONS; + + @ClientString(id = 4493, message = "Guess the number on my card! ") + public static SystemMessageId GUESS_THE_NUMBER_ON_MY_CARD; + + @ClientString(id = 4494, message = "The number is higher! ") + public static SystemMessageId THE_NUMBER_IS_HIGHER; + + @ClientString(id = 4495, message = "The number is lower! ") + public static SystemMessageId THE_NUMBER_IS_LOWER; + + @ClientString(id = 4496, message = "I can't believe it... I lost! ") + public static SystemMessageId I_CAN_T_BELIEVE_IT_I_LOST; + + @ClientString(id = 4497, message = "I won! Haha.") + public static SystemMessageId I_WON_HAHA; + + @ClientString(id = 4498, message = "The game has ended because you have used all your chances.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_YOU_HAVE_USED_ALL_YOUR_CHANCES; + + @ClientString(id = 4499, message = "The game has ended because time has run out.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_TIME_HAS_RUN_OUT; + + @ClientString(id = 4500, message = "The reward is kept for $s1 hr. You can receive it from the event NPC before starting a new game.") + public static SystemMessageId THE_REWARD_IS_KEPT_FOR_S1_HR_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4501, message = "You can receive the reward only when your inventory is below 80%% of its weight and quantity limits. (The reward is kept for $s1 hr. You can receive it from the event NPC before starting a new game.)") + public static SystemMessageId YOU_CAN_RECEIVE_THE_REWARD_ONLY_WHEN_YOUR_INVENTORY_IS_BELOW_80_OF_ITS_WEIGHT_AND_QUANTITY_LIMITS_THE_REWARD_IS_KEPT_FOR_S1_HR_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4502, message = "NC OTP Service ended on February 15, 2017. You can no longer play the game with the account registered for NC OTP Service. Unregister the account from NC OTP Service, and log in again.") + public static SystemMessageId NC_OTP_SERVICE_ENDED_ON_FEBRUARY_15_2017_YOU_CAN_NO_LONGER_PLAY_THE_GAME_WITH_THE_ACCOUNT_REGISTERED_FOR_NC_OTP_SERVICE_UNREGISTER_THE_ACCOUNT_FROM_NC_OTP_SERVICE_AND_LOG_IN_AGAIN; + + @ClientString(id = 4503, message = "NC OTP Service ended on February 15, 2017. You can no longer play the game with the account registered for NC OTP Service. Unregister the account from NC OTP Service, and log in again.") + public static SystemMessageId NC_OTP_SERVICE_ENDED_ON_FEBRUARY_15_2017_YOU_CAN_NO_LONGER_PLAY_THE_GAME_WITH_THE_ACCOUNT_REGISTERED_FOR_NC_OTP_SERVICE_UNREGISTER_THE_ACCOUNT_FROM_NC_OTP_SERVICE_AND_LOG_IN_AGAIN_2; + + @ClientString(id = 4504, message = "Register the Agathion you want to grow.") + public static SystemMessageId REGISTER_THE_AGATHION_YOU_WANT_TO_GROW; + + @ClientString(id = 4505, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION; + + @ClientString(id = 4506, message = "If the growth fails, the Agathion will be lost.") + public static SystemMessageId IF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_LOST; + + @ClientString(id = 4507, message = "Warning of destruction!\\n\\nIf the growth fails, the Agathion will be destroyed.\\n\\nAre you sure you want to continue?") + public static SystemMessageId WARNING_OF_DESTRUCTION_N_NIF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_DESTROYED_N_NARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4508, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RESET; + + @ClientString(id = 4509, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RETAINED; + + @ClientString(id = 4510, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION_2; + + @ClientString(id = 4511, message = "The growth failed. The Agathion was lost, and the item was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_WAS_LOST_AND_THE_ITEM_WAS_DESTROYED; + + @ClientString(id = 4512, message = "The growth failed. The Agathion's growth level was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_S_GROWTH_LEVEL_WAS_RESET; + + @ClientString(id = 4513, message = "Congratulations! The Agathion was successfully grown to <$s1>.") + public static SystemMessageId CONGRATULATIONS_THE_AGATHION_WAS_SUCCESSFULLY_GROWN_TO_S1; + + @ClientString(id = 4514, message = "Do you want to leave the $s1 clan? If you leave, you cannot join another clan for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_LEAVE_THE_S1_CLAN_IF_YOU_LEAVE_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4515, message = "Do you want to dismiss $s1 from your clan? If you dismiss a clan member, you cannot accept a new member for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_DISMISS_S1_FROM_YOUR_CLAN_IF_YOU_DISMISS_A_CLAN_MEMBER_YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4516, message = "You were dismissed from the clan. You cannot join another clan for $s1 min.") + public static SystemMessageId YOU_WERE_DISMISSED_FROM_THE_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MIN; + + @ClientString(id = 4517, message = "You cannot accept a new member for $s1 min. after dismissing a clan member.") + public static SystemMessageId YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_S1_MIN_AFTER_DISMISSING_A_CLAN_MEMBER; + + @ClientString(id = 4518, message = "If you are dismissed from or leave a clan, you cannot join another clan for $s1 min.") + public static SystemMessageId IF_YOU_ARE_DISMISSED_FROM_OR_LEAVE_A_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MIN; + + @ClientString(id = 4519, message = "$c1 cannot join your clan because $s2 min. has not passed since they left another clan.") + public static SystemMessageId C1_CANNOT_JOIN_YOUR_CLAN_BECAUSE_S2_MIN_HAS_NOT_PASSED_SINCE_THEY_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4520, message = "You cannot join this clan because $s1 min. has not passed since you left another clan.") + public static SystemMessageId YOU_CANNOT_JOIN_THIS_CLAN_BECAUSE_S1_MIN_HAS_NOT_PASSED_SINCE_YOU_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4521, message = "$s1 was summoned as a Primary Agathion. ") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4522, message = "$s1‘s power was unlocked, thereby activating all its abilities. ") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4523, message = "$s1 was summoned as a Secondary Agathion. ") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4524, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4525, message = "$s1‘s power was sealed. ") + public static SystemMessageId S1_S_POWER_WAS_SEALED; + + @ClientString(id = 4526, message = "Cannot summon any more Agathions. ") + public static SystemMessageId CANNOT_SUMMON_ANY_MORE_AGATHIONS; + + @ClientString(id = 4527, message = "You cannot use the Agathion's power because you are not wearing the left bracelet.") + public static SystemMessageId YOU_CANNOT_USE_THE_AGATHION_S_POWER_BECAUSE_YOU_ARE_NOT_WEARING_THE_LEFT_BRACELET; + + @ClientString(id = 4528, message = "+$s1$s2 was summoned as a Primary Agathion. ") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4529, message = "+$s1$s2‘s power was unlocked, thereby activating all its abilities. ") + public static SystemMessageId S1_S2_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4530, message = "+$s1$s2 was summoned as a Secondary Agathion. ") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4531, message = "Only +$s1$s2‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S2_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4532, message = "+$s1$s2‘s power was sealed. ") + public static SystemMessageId S1_S2_S_POWER_WAS_SEALED; + + @ClientString(id = 4533, message = "Your status does not allow for you to use this function.") + public static SystemMessageId YOUR_STATUS_DOES_NOT_ALLOW_FOR_YOU_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4534, message = "$s1‘s status does allow for them to use this function.") + public static SystemMessageId S1_S_STATUS_DOES_ALLOW_FOR_THEM_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4535, message = "Current location: $s1/$s2/$s3 (Balthus Knight Barracks)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_BALTHUS_KNIGHT_BARRACKS; + + @ClientString(id = 4536, message = "Current location: $s1/$s2/$s3 (Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_HATCHLING_HABITAT; + + @ClientString(id = 4537, message = "Current location: $s1/$s2/$s3 (Near Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_HATCHLING_HABITAT; + + @ClientString(id = 4538, message = "Current location: $s1/$s2/$s3 (Antharas' Nest)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_ANTHARAS_NEST; + + @ClientString(id = 4539, message = "You do not belong to any Clan.") + public static SystemMessageId YOU_DO_NOT_BELONG_TO_ANY_CLAN; + + @ClientString(id = 4540, message = "Your clan's point is 0.") + public static SystemMessageId YOUR_CLAN_S_POINT_IS_0; + + @ClientString(id = 4541, message = "Your clan has not played the Throne of Heroes.") + public static SystemMessageId YOUR_CLAN_HAS_NOT_PLAYED_THE_THRONE_OF_HEROES; + + @ClientString(id = 4542, message = "You can enter up to 16 alphanumeric characters.") + public static SystemMessageId YOU_CAN_ENTER_UP_TO_16_ALPHANUMERIC_CHARACTERS; + + @ClientString(id = 4543, message = "No spaces are allowed.") + public static SystemMessageId NO_SPACES_ARE_ALLOWED; + + @ClientString(id = 4544, message = "$s1‘s affiliation will be changed.") + public static SystemMessageId S1_S_AFFILIATION_WILL_BE_CHANGED; + + @ClientString(id = 4545, message = "$s1‘s privileges will be changed.") + public static SystemMessageId S1_S_PRIVILEGES_WILL_BE_CHANGED; + + @ClientString(id = 4546, message = "Clan Level $s1 or higher") + public static SystemMessageId CLAN_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4547, message = "Character Level $s1 or higher") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4548, message = "Character Level $s1 or lower") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_LOWER; + + @ClientString(id = 4549, message = "$s1 playable") + public static SystemMessageId S1_PLAYABLE; + + @ClientString(id = 4550, message = "$s1 must be completed") + public static SystemMessageId S1_MUST_BE_COMPLETED; + + @ClientString(id = 4551, message = "The cycle is updated at 7:00 every Wednesday.") + public static SystemMessageId THE_CYCLE_IS_UPDATED_AT_7_00_EVERY_WEDNESDAY; + + @ClientString(id = 4552, message = "If you fulfill the goal, you can earn $s1 Personal Fame.") + public static SystemMessageId IF_YOU_FULFILL_THE_GOAL_YOU_CAN_EARN_S1_PERSONAL_FAME; + + @ClientString(id = 4553, message = "Rank $s1") + public static SystemMessageId RANK_S1; + + @ClientString(id = 4554, message = "· Consumes 1 Clan Development Point.\\n· Consumes $s1 Clan Reputation Points.\\n· Resetting will return Clan Development Points but not Clan Reputation Points.\\nUnlock?") + public static SystemMessageId CONSUMES_1_CLAN_DEVELOPMENT_POINT_N_CONSUMES_S1_CLAN_REPUTATION_POINTS_N_RESETTING_WILL_RETURN_CLAN_DEVELOPMENT_POINTS_BUT_NOT_CLAN_REPUTATION_POINTS_NUNLOCK; + + @ClientString(id = 4555, message = "· Consumes $s1 Clan Reputation Points.\\n· Unable to retrieve the Clan Reputation Points by resetting to default.\\n· Extends the durations of previously unlocked seal.\\n\\nDo you want to unlock the seal?") + public static SystemMessageId CONSUMES_S1_CLAN_REPUTATION_POINTS_N_UNABLE_TO_RETRIEVE_THE_CLAN_REPUTATION_POINTS_BY_RESETTING_TO_DEFAULT_N_EXTENDS_THE_DURATIONS_OF_PREVIOUSLY_UNLOCKED_SEAL_N_NDO_YOU_WANT_TO_UNLOCK_THE_SEAL; + + @ClientString(id = 4556, message = "· Consumes 10,000 Clan Reputation Points.\\n· Resets all Specialized skills and seal effects.\\n· Retrieves Clan Development Points.\\n· Unable to retrieve Clan Reputation Points.") + public static SystemMessageId CONSUMES_10_000_CLAN_REPUTATION_POINTS_N_RESETS_ALL_SPECIALIZED_SKILLS_AND_SEAL_EFFECTS_N_RETRIEVES_CLAN_DEVELOPMENT_POINTS_N_UNABLE_TO_RETRIEVE_CLAN_REPUTATION_POINTS; + + @ClientString(id = 4557, message = "Unlocked $s1.") + public static SystemMessageId UNLOCKED_S1; + + @ClientString(id = 4558, message = "All clan characteristics were reset.") + public static SystemMessageId ALL_CLAN_CHARACTERISTICS_WERE_RESET; + + @ClientString(id = 4559, message = "Cannot proceed due to a system error. Please try again later.") + public static SystemMessageId CANNOT_PROCEED_DUE_TO_A_SYSTEM_ERROR_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4560, message = "Cannot extend the seal activation time any longer.") + public static SystemMessageId CANNOT_EXTEND_THE_SEAL_ACTIVATION_TIME_ANY_LONGER; + + @ClientString(id = 4561, message = "Not enough points to unlock Specialization.") + public static SystemMessageId NOT_ENOUGH_POINTS_TO_UNLOCK_SPECIALIZATION; + + @ClientString(id = 4562, message = "Not enough money to unlock seal.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_UNLOCK_SEAL; + + @ClientString(id = 4563, message = "Not enough money to reset.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_RESET; + + @ClientString(id = 4564, message = "Activation required") + public static SystemMessageId ACTIVATION_REQUIRED; + + @ClientString(id = 4565, message = "None") + public static SystemMessageId NONE_6; + + @ClientString(id = 4566, message = "Locked") + public static SystemMessageId LOCKED; + + @ClientString(id = 4567, message = "The above item will be activated. Continue?") + public static SystemMessageId THE_ABOVE_ITEM_WILL_BE_ACTIVATED_CONTINUE; + + @ClientString(id = 4568, message = "Activated the above item in the Clan Shop.") + public static SystemMessageId ACTIVATED_THE_ABOVE_ITEM_IN_THE_CLAN_SHOP; + + @ClientString(id = 4569, message = "The item will be purchased. Continue?") + public static SystemMessageId THE_ITEM_WILL_BE_PURCHASED_CONTINUE; + + @ClientString(id = 4570, message = "Purchased the item successfully.") + public static SystemMessageId PURCHASED_THE_ITEM_SUCCESSFULLY; + + @ClientString(id = 4571, message = "Valid for: $s1 days after unlocked") + public static SystemMessageId VALID_FOR_S1_DAYS_AFTER_UNLOCKED; + + @ClientString(id = 4572, message = "$s1/5 kills") + public static SystemMessageId S1_5_KILLS; + + @ClientString(id = 4573, message = "$s1/5 killed") + public static SystemMessageId S1_5_KILLED; + + @ClientString(id = 4574, message = "Invite players to the clan") + public static SystemMessageId INVITE_PLAYERS_TO_THE_CLAN; + + @ClientString(id = 4575, message = "Grant or remove titles") + public static SystemMessageId GRANT_OR_REMOVE_TITLES; + + @ClientString(id = 4576, message = "View the warehouse (only the clan reader can search items)") + public static SystemMessageId VIEW_THE_WAREHOUSE_ONLY_THE_CLAN_READER_CAN_SEARCH_ITEMS; + + @ClientString(id = 4577, message = "Change a clan member's privilege level and manage the Clan Membership System (registering and editing the clan, approving membership, etc.)") + public static SystemMessageId CHANGE_A_CLAN_MEMBER_S_PRIVILEGE_LEVEL_AND_MANAGE_THE_CLAN_MEMBERSHIP_SYSTEM_REGISTERING_AND_EDITING_THE_CLAN_APPROVING_MEMBERSHIP_ETC; + + @ClientString(id = 4578, message = "Declare/Cancel a Clan War") + public static SystemMessageId DECLARE_CANCEL_A_CLAN_WAR; + + @ClientString(id = 4579, message = "Start the Throne of Heroes") + public static SystemMessageId START_THE_THRONE_OF_HEROES; + + @ClientString(id = 4580, message = "Dismiss a clan member") + public static SystemMessageId DISMISS_A_CLAN_MEMBER; + + @ClientString(id = 4581, message = "Manage the clan crest and mark (only the alliance leader can control the alliance crest)") + public static SystemMessageId MANAGE_THE_CLAN_CREST_AND_MARK_ONLY_THE_ALLIANCE_LEADER_CAN_CONTROL_THE_ALLIANCE_CREST; + + @ClientString(id = 4582, message = "Buy clan items from the Clan Shop") + public static SystemMessageId BUY_CLAN_ITEMS_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4583, message = "Activate clan items in the Clan Shop, manage clan characteristics, and level up the clan") + public static SystemMessageId ACTIVATE_CLAN_ITEMS_IN_THE_CLAN_SHOP_MANAGE_CLAN_CHARACTERISTICS_AND_LEVEL_UP_THE_CLAN; + + @ClientString(id = 4584, message = "Summon the clan airship") + public static SystemMessageId SUMMON_THE_CLAN_AIRSHIP; + + @ClientString(id = 4585, message = "Access the Clan Hall") + public static SystemMessageId ACCESS_THE_CLAN_HALL; + + @ClientString(id = 4586, message = "Use the additional functions set in the Clan Hall") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CLAN_HALL; + + @ClientString(id = 4587, message = "Use the functions related with the Clan Hall bidding and auction ") + public static SystemMessageId USE_THE_FUNCTIONS_RELATED_WITH_THE_CLAN_HALL_BIDDING_AND_AUCTION; + + @ClientString(id = 4588, message = "Expel outsiders from the Clan Hall") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CLAN_HALL; + + @ClientString(id = 4589, message = "Set additional functions to the Clan Hall") + public static SystemMessageId SET_ADDITIONAL_FUNCTIONS_TO_THE_CLAN_HALL; + + @ClientString(id = 4590, message = "Access the castle and open/close the castle gate") + public static SystemMessageId ACCESS_THE_CASTLE_AND_OPEN_CLOSE_THE_CASTLE_GATE; + + @ClientString(id = 4591, message = "Register, cancel, and approve the list of castle siege and defense warfare") + public static SystemMessageId REGISTER_CANCEL_AND_APPROVE_THE_LIST_OF_CASTLE_SIEGE_AND_DEFENSE_WARFARE; + + @ClientString(id = 4592, message = "Use the additional functions set in the castle/fortress") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CASTLE_FORTRESS; + + @ClientString(id = 4593, message = "Set functions such as enhancing traps or castle walls") + public static SystemMessageId SET_FUNCTIONS_SUCH_AS_ENHANCING_TRAPS_OR_CASTLE_WALLS; + + @ClientString(id = 4594, message = "Expel outsiders from the castle/fortress") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CASTLE_FORTRESS; + + @ClientString(id = 4595, message = "Manage the castle taxation, castle vault, and control the castle vault deposits/withdrawals") + public static SystemMessageId MANAGE_THE_CASTLE_TAXATION_CASTLE_VAULT_AND_CONTROL_THE_CASTLE_VAULT_DEPOSITS_WITHDRAWALS; + + @ClientString(id = 4596, message = "Hire/position mercenaries") + public static SystemMessageId HIRE_POSITION_MERCENARIES; + + @ClientString(id = 4597, message = "Manor settings and use blacksmith ") + public static SystemMessageId MANOR_SETTINGS_AND_USE_BLACKSMITH; + + @ClientString(id = 4598, message = "Increase the number of clan members ($s1) ") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1; + + @ClientString(id = 4599, message = "Increase the number of clan members ($s1) and elite clan members ($s2)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1_AND_ELITE_CLAN_MEMBERS_S2; + + @ClientString(id = 4600, message = "Clan warehouse available") + public static SystemMessageId CLAN_WAREHOUSE_AVAILABLE; + @ClientString(id = 4601, message = "- Great P. Def. and skillful Shield Defense
- Increased P. Def. for the whole party
- Protect party members") public static SystemMessageId GREAT_P_DEF_AND_SKILLFUL_SHIELD_DEFENSE_BR_INCREASED_P_DEF_FOR_THE_WHOLE_PARTY_BR_PROTECT_PARTY_MEMBERS; @@ -12969,7 +13311,7 @@ public final class SystemMessageId @ClientString(id = 4669, message = "Melee Damage Dealer") public static SystemMessageId MELEE_DAMAGE_DEALER_2; - @ClientString(id = 4670, message = " - Specizlizes in Fist Weapons
- Attacks from the Side
- Fast Atk. Spd.") + @ClientString(id = 4670, message = "- Specizlizes in Fist Weapons
- Attacks from the Side
- Fast Atk. Spd.") public static SystemMessageId SPECIZLIZES_IN_FIST_WEAPONS_BR_ATTACKS_FROM_THE_SIDE_BR_FAST_ATK_SPD; @ClientString(id = 4671, message = "Eviscerators can manipulate gravity to their advantage. Their main strength lies in shifting their own center of gravity to add to their speed and attack speed.") @@ -12978,12 +13320,90 @@ public final class SystemMessageId @ClientString(id = 4672, message = "Magic Damage Dealer") public static SystemMessageId MAGIC_DAMAGE_DEALER_2; - @ClientString(id = 4673, message = " - Specializes in magical two-handed weapons
- Close-range Damage Spells
- Uses Wind for Defense") + @ClientString(id = 4673, message = "- Specializes in magical two-handed weapons
- Close-range Damage Spells
- Uses Wind for Defense") public static SystemMessageId SPECIALIZES_IN_MAGICAL_TWO_HANDED_WEAPONS_BR_CLOSE_RANGE_DAMAGE_SPELLS_BR_USES_WIND_FOR_DEFENSE; @ClientString(id = 4674, message = "Able to tap into the power of the wind god, Sayha's Seers can diffuse themselves into the wind for transport or defenses. Their talents account for their extraordinary survivability.") public static SystemMessageId ABLE_TO_TAP_INTO_THE_POWER_OF_THE_WIND_GOD_SAYHA_S_SEERS_CAN_DIFFUSE_THEMSELVES_INTO_THE_WIND_FOR_TRANSPORT_OR_DEFENSES_THEIR_TALENTS_ACCOUNT_FOR_THEIR_EXTRAORDINARY_SURVIVABILITY; + @ClientString(id = 4675, message = "Clan Bulletin") + public static SystemMessageId CLAN_BULLETIN; + + @ClientString(id = 4676, message = "Use the clan crest/title") + public static SystemMessageId USE_THE_CLAN_CREST_TITLE; + + @ClientString(id = 4677, message = "Participate in the Ceremony of Chaos") + public static SystemMessageId PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS; + + @ClientString(id = 4678, message = "Bid/own auctionable Clan Hall") + public static SystemMessageId BID_OWN_AUCTIONABLE_CLAN_HALL; + + @ClientString(id = 4679, message = "Create an alliance and declare a clan war") + public static SystemMessageId CREATE_AN_ALLIANCE_AND_DECLARE_A_CLAN_WAR; + + @ClientString(id = 4680, message = "Participate in clan hall wars, fortress battles, castle siege, and the Throne of Heroes") + public static SystemMessageId PARTICIPATE_IN_CLAN_HALL_WARS_FORTRESS_BATTLES_CASTLE_SIEGE_AND_THE_THRONE_OF_HEROES; + + @ClientString(id = 4681, message = "Bid/own provisional Clan Hall") + public static SystemMessageId BID_OWN_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4682, message = "Bid/own super advanced provisional Clan Hall") + public static SystemMessageId BID_OWN_SUPER_ADVANCED_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4683, message = "Earn Clan Development Points") + public static SystemMessageId EARN_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4684, message = "Quite good for a newbie!") + public static SystemMessageId QUITE_GOOD_FOR_A_NEWBIE; + + @ClientString(id = 4685, message = "Hey! Are you okay?") + public static SystemMessageId HEY_ARE_YOU_OKAY; + + @ClientString(id = 4686, message = "You cannot enter because a party member does not belong to your clan.") + public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_A_PARTY_MEMBER_DOES_NOT_BELONG_TO_YOUR_CLAN; + + @ClientString(id = 4687, message = "<$s1> activated. You can buy it from the Clan Shop.") + public static SystemMessageId S1_ACTIVATED_YOU_CAN_BUY_IT_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4688, message = "<$s1> purchased <$s2> from the Clan Shop.") + public static SystemMessageId S1_PURCHASED_S2_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4689, message = "Cannot use this function consecutively. Please try again later.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_CONSECUTIVELY_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4690, message = "Cannot use this function while casting a skill.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_CASTING_A_SKILL; + + @ClientString(id = 4691, message = "Not enough money for activation.") + public static SystemMessageId NOT_ENOUGH_MONEY_FOR_ACTIVATION; + + @ClientString(id = 4692, message = "You don't have enough money to buy the item or your inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_MONEY_TO_BUY_THE_ITEM_OR_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; + + @ClientString(id = 4693, message = "The clan level rose to $s1.") + public static SystemMessageId THE_CLAN_LEVEL_ROSE_TO_S1; + + @ClientString(id = 4694, message = "Earned the Clan Development Points.") + public static SystemMessageId EARNED_THE_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4695, message = "You earned $s1 Clan Reputation Points for your clan.") + public static SystemMessageId YOU_EARNED_S1_CLAN_REPUTATION_POINTS_FOR_YOUR_CLAN; + + @ClientString(id = 4696, message = "Reset $s1 to default settings.") + public static SystemMessageId RESET_S1_TO_DEFAULT_SETTINGS; + + @ClientString(id = 4697, message = "Canceled.") + public static SystemMessageId CANCELED; + + @ClientString(id = 4698, message = "Changed the clan privileges.") + public static SystemMessageId CHANGED_THE_CLAN_PRIVILEGES; + + @ClientString(id = 4699, message = "Clan Shop available") + public static SystemMessageId CLAN_SHOP_AVAILABLE; + + @ClientString(id = 4700, message = "This dummy message is not displayed on the chat window.") + public static SystemMessageId THIS_DUMMY_MESSAGE_IS_NOT_DISPLAYED_ON_THE_CHAT_WINDOW; + @ClientString(id = 4701, message = "You can easily configure the graphic quality with presets. A higher value means more visual effects. Note that a high value may reduce game performance.") public static SystemMessageId YOU_CAN_EASILY_CONFIGURE_THE_GRAPHIC_QUALITY_WITH_PRESETS_A_HIGHER_VALUE_MEANS_MORE_VISUAL_EFFECTS_NOTE_THAT_A_HIGH_VALUE_MAY_REDUCE_GAME_PERFORMANCE; @@ -13215,8 +13635,8 @@ public final class SystemMessageId @ClientString(id = 4777, message = "Use the cursor made specifically for the game.") public static SystemMessageId USE_THE_CURSOR_MADE_SPECIFICALLY_FOR_THE_GAME; - @ClientString(id = 4778, message = "Hide PC points.") - public static SystemMessageId HIDE_PC_POINTS; + @ClientString(id = 4778, message = "Hide PA Points.") + public static SystemMessageId HIDE_PA_POINTS; @ClientString(id = 4779, message = "Display effects that show quest destinations.") public static SystemMessageId DISPLAY_EFFECTS_THAT_SHOW_QUEST_DESTINATIONS; @@ -13491,14 +13911,14 @@ public final class SystemMessageId @ClientString(id = 4869, message = "View various records within the world.") public static SystemMessageId VIEW_VARIOUS_RECORDS_WITHIN_THE_WORLD; - @ClientString(id = 4870, message = "View instanced zone usage status.") - public static SystemMessageId VIEW_INSTANCED_ZONE_USAGE_STATUS; + @ClientString(id = 4870, message = "View Instance Zone usage status.") + public static SystemMessageId VIEW_INSTANCE_ZONE_USAGE_STATUS; @ClientString(id = 4871, message = "You can view clan information and request entry into clan.") public static SystemMessageId YOU_CAN_VIEW_CLAN_INFORMATION_AND_REQUEST_ENTRY_INTO_CLAN; - @ClientString(id = 4872, message = "View PC points.") - public static SystemMessageId VIEW_PC_POINTS; + @ClientString(id = 4872, message = "View PA Points.") + public static SystemMessageId VIEW_PA_POINTS; @ClientString(id = 4873, message = "View product inventory.") public static SystemMessageId VIEW_PRODUCT_INVENTORY; @@ -13512,8 +13932,8 @@ public final class SystemMessageId @ClientString(id = 4876, message = "Display the names of another player's character, their pet, and their servitor.") public static SystemMessageId DISPLAY_THE_NAMES_OF_ANOTHER_PLAYER_S_CHARACTER_THEIR_PET_AND_THEIR_SERVITOR; - @ClientString(id = 4877, message = "Reset the detailed settings of the activated Chat tab.") - public static SystemMessageId RESET_THE_DETAILED_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; + @ClientString(id = 4877, message = "Reset the settings of the activated Chat tab.") + public static SystemMessageId RESET_THE_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; @ClientString(id = 4878, message = "Use the 1:1 inquiry service.") public static SystemMessageId USE_THE_1_1_INQUIRY_SERVICE; @@ -13566,56 +13986,92 @@ public final class SystemMessageId @ClientString(id = 4894, message = "Change the quality of the visual effect settings quickly according to the pre-configured setting value.") public static SystemMessageId CHANGE_THE_QUALITY_OF_THE_VISUAL_EFFECT_SETTINGS_QUICKLY_ACCORDING_TO_THE_PRE_CONFIGURED_SETTING_VALUE; - @ClientString(id = 5000, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the plaync Homepage (www.plaync.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4895, message = "Selects all hostile targets.") + public static SystemMessageId SELECTS_ALL_HOSTILE_TARGETS; - @ClientString(id = 5001, message = "Your account has been suspended as per our management policy because it is confirmed that you submitted a false report. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_BECAUSE_IT_IS_CONFIRMED_THAT_YOU_SUBMITTED_A_FALSE_REPORT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4896, message = "Selects a hostile monster (Excludes hostile PC's Pets / Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_MONSTER_EXCLUDES_HOSTILE_PC_S_PETS_SERVITORS; - @ClientString(id = 5002, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the plaync Homepage (www.plaync.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4897, message = "Selects a hostile PC (Excludes hostile PC's Pets / Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_PC_EXCLUDES_HOSTILE_PC_S_PETS_SERVITORS; - @ClientString(id = 5003, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4898, message = "Selects a friendly NPC.") + public static SystemMessageId SELECTS_A_FRIENDLY_NPC; - @ClientString(id = 5004, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended for 7 days from the date when the act was found. Your account will become unblocked after 7 days of suspension. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") - public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_7_DAYS_FROM_THE_DATE_WHEN_THE_ACT_WAS_FOUND_YOUR_ACCOUNT_WILL_BECOME_UNBLOCKED_AFTER_7_DAYS_OF_SUSPENSION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + @ClientString(id = 4899, message = "Hide the servitors/pets of other PCs in peaceful zones.") + public static SystemMessageId HIDE_THE_SERVITORS_PETS_OF_OTHER_PCS_IN_PEACEFUL_ZONES; - @ClientString(id = 5005, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") - public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + @ClientString(id = 4900, message = "Reject a regular user's invitation to a party.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5006, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4901, message = "Reject a friend's invitation to a party.") + public static SystemMessageId REJECT_A_FRIEND_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5007, message = "Your account has been suspended for disrupting public well-being, order, public morals, etc. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4902, message = "Reject a clan member's invitation to a party.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5008, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4903, message = "Turn on/off to reject party invitations from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_PARTY_INVITATIONS_FROM_EVERYONE; - @ClientString(id = 5009, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4904, message = "Reject a regular user's friend request.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_FRIEND_REQUEST; - @ClientString(id = 5010, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4905, message = "Reject a clan member's friend request.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_FRIEND_REQUEST; - @ClientString(id = 5011, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 4906, message = "Turn on/off to reject friend requests from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_FRIEND_REQUESTS_FROM_EVERYONE; - @ClientString(id = 5012, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5000, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_51; - @ClientString(id = 5013, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's identification. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5001, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_52; - @ClientString(id = 5014, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5002, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_53; - @ClientString(id = 5015, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5003, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_54; - @ClientString(id = 5016, message = "For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5004, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_55; + + @ClientString(id = 5005, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_56; + + @ClientString(id = 5006, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_57; + + @ClientString(id = 5007, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_58; + + @ClientString(id = 5008, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_59; + + @ClientString(id = 5009, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_60; + + @ClientString(id = 5010, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_61; + + @ClientString(id = 5011, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_62; + + @ClientString(id = 5012, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_63; + + @ClientString(id = 5013, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_64; + + @ClientString(id = 5014, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_65; + + @ClientString(id = 5015, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_66; + + @ClientString(id = 5016, message = "For more details, please visit the Lineage II Support Website(https://support.4game.com).") + public static SystemMessageId FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT; @ClientString(id = 5017, message = "Please inquire through the Lineage II Customer Service Center or the 1:1 support in the official website.") public static SystemMessageId PLEASE_INQUIRE_THROUGH_THE_FONT_COLOR_FFDF4C_LINEAGE_II_CUSTOMER_SERVICE_CENTER_FONT_OR_THE_FONT_COLOR_FFDF4C_1_1_SUPPORT_FONT_IN_THE_OFFICIAL_WEBSITE; @@ -13623,104 +14079,104 @@ public final class SystemMessageId @ClientString(id = 5018, message = "In order to play Lineage II, you must be Ages 15 or above. You must be 18 or above in order to use the PvP servers.") public static SystemMessageId IN_ORDER_TO_PLAY_LINEAGE_II_YOU_MUST_BE_FONT_COLOR_FFDF4C_AGES_15_OR_ABOVE_FONT_YOU_MUST_BE_FONT_COLOR_FFDF4C_18_OR_ABOVE_FONT_IN_ORDER_TO_USE_THE_PVP_SERVERS; - @ClientString(id = 5019, message = "Go to the plaync Homepage (www.plaync.com), join our web membership and create a new account.") - public static SystemMessageId GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_JOIN_OUR_WEB_MEMBERSHIP_AND_CREATE_A_NEW_ACCOUNT; + @ClientString(id = 5019, message = "To create a new account, please visit the Lineage II Website (https://login.lineage2.com/login/loginform) and click on the New Account Creation link.") + public static SystemMessageId TO_CREATE_A_NEW_ACCOUNT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_LOGIN_LINEAGE2_COM_LOGIN_LOGINFORM_A_FONT_AND_CLICK_ON_THE_NEW_ACCOUNT_CREATION_LINK; - @ClientString(id = 5020, message = "If you have lost your account information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId IF_YOU_HAVE_LOST_YOUR_ACCOUNT_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5020, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_67; @ClientString(id = 5021, message = "Users who did not complete the Age 18 Verification may not login between 10PM and 6AM the next day.") public static SystemMessageId USERS_WHO_DID_NOT_COMPLETE_THE_FONT_COLOR_FFDF4C_AGE_18_VERIFICATION_FONT_MAY_NOT_LOGIN_BETWEEN_FONT_COLOR_FFDF4C_10PM_FONT_AND_FONT_COLOR_FFDF4C_6AM_FONT_THE_NEXT_DAY; - @ClientString(id = 5022, message = "Please complete the user verification process for your identification. For user verification process, go to the plaync Homepage (www.plaync.com). For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId PLEASE_COMPLETE_THE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5022, message = "If you have lost your account, please visit the Lineage II Website (https://login.lineage2.com/login) and click on the Support link at the bottom of the page.") + public static SystemMessageId IF_YOU_HAVE_LOST_YOUR_ACCOUNT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_LOGIN_LINEAGE2_COM_LOGIN_A_FONT_AND_CLICK_ON_THE_SUPPORT_LINK_AT_THE_BOTTOM_OF_THE_PAGE; - @ClientString(id = 5023, message = "Your account has been suspended for attempting to trade for cash, server, or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_TO_TRADE_FOR_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5023, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_68; - @ClientString(id = 5024, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5024, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_69; - @ClientString(id = 5025, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5025, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_70; - @ClientString(id = 5026, message = "Your account has been suspended for trading cash, server or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5026, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_71; - @ClientString(id = 5027, message = "Your account has been suspended for trading cash, or account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5027, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_72; - @ClientString(id = 5028, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the plaync Homepage (www.plaync.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5028, message = "You cannot use the game services as your identity has not been verified. Please the Lineage II Support Website(https://support.4game.com) and go to ) to verify your identity. For more details, please visit the Lineage II Support Website(https://support.4game.com).") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_AND_GO_TO_FONT_COLOR_FFDF4C_FONT_TO_VERIFY_YOUR_IDENTITY_FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT; - @ClientString(id = 5029, message = "You have an inactive account. Your account becomes inactive after a certain period of inactivity. To reactivate an inactive account, visit the plaync Homepage (www.plaync.com).") - public static SystemMessageId YOU_HAVE_AN_INACTIVE_ACCOUNT_YOUR_ACCOUNT_BECOMES_INACTIVE_AFTER_A_CERTAIN_PERIOD_OF_INACTIVITY_TO_REACTIVATE_AN_INACTIVE_ACCOUNT_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT; + @ClientString(id = 5029, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_73; @ClientString(id = 5030, message = "Logging in.Please wait.") public static SystemMessageId FONT_COLOR_FFDF4C_LOGGING_IN_FONT_PLEASE_WAIT; - @ClientString(id = 5031, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit http://us.ncsoft.com/en/.") - public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTP_US_NCSOFT_COM_EN; + @ClientString(id = 5031, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit https://eu.4game.com/.") + public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTPS_EU_4GAME_COM; - @ClientString(id = 5032, message = "Your account needs verification.
Visit the plaync Homepage (www.plaync.com), verify your account and try again.") - public static SystemMessageId YOUR_ACCOUNT_NEEDS_VERIFICATION_BR_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_VERIFY_YOUR_ACCOUNT_AND_TRY_AGAIN; + @ClientString(id = 5032, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_74; - @ClientString(id = 5033, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_51; + @ClientString(id = 5033, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_75; @ClientString(id = 5034, message = "This account has declined the User Agreement or has requested for membership withdrawal. Please try again after
cancelling the Game Agreement declination or cancelling the membership withdrawal request.") public static SystemMessageId THIS_ACCOUNT_HAS_DECLINED_THE_USER_AGREEMENT_OR_HAS_REQUESTED_FOR_MEMBERSHIP_WITHDRAWAL_PLEASE_TRY_AGAIN_AFTER_BR_FONT_COLOR_FFDF4C_CANCELLING_THE_GAME_AGREEMENT_DECLINATION_FONT_OR_FONT_COLOR_FFDF4C_CANCELLING_THE_MEMBERSHIP_WITHDRAWAL_REQUEST_FONT; - @ClientString(id = 5035, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_52; + @ClientString(id = 5035, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_76; - @ClientString(id = 5036, message = "Your account has been suspended.
For more information, visit plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_BR_FOR_MORE_INFORMATION_VISIT_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5036, message = "Please inquire through the Lineage II Support Website(https://support.4game.com) 1:1 Customer Service Center) Customer Service Center.") + public static SystemMessageId PLEASE_INQUIRE_THROUGH_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_COLOR_FFDF4C_CUSTOMER_SERVICE_CENTER_FONT; - @ClientString(id = 5037, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_53; + @ClientString(id = 5037, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_77; - @ClientString(id = 5038, message = "You may access your account after updating your password and password quiz.
Go to the plaync Homepage (www.plaync.com) and update your password and password quiz to retrieve your account.") - public static SystemMessageId YOU_MAY_ACCESS_YOUR_ACCOUNT_AFTER_UPDATING_YOUR_PASSWORD_AND_PASSWORD_QUIZ_BR_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_FONT_COLOR_FFDF4C_UPDATE_YOUR_PASSWORD_AND_PASSWORD_QUIZ_FONT_TO_RETRIEVE_YOUR_ACCOUNT; + @ClientString(id = 5038, message = "You must change your password and secret question in order to log in. Please the Lineage II Support Website(https://support.4game.com) and change the password and secret question.") + public static SystemMessageId YOU_MUST_CHANGE_YOUR_PASSWORD_AND_SECRET_QUESTION_IN_ORDER_TO_LOG_IN_PLEASE_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_AND_FONT_COLOR_FFDF4C_CHANGE_THE_PASSWORD_AND_SECRET_QUESTION_FONT; - @ClientString(id = 5039, message = "Your account has been suspended for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5039, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_78; - @ClientString(id = 5040, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_54; + @ClientString(id = 5040, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_79; - @ClientString(id = 5041, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_55; + @ClientString(id = 5041, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_80; - @ClientString(id = 5042, message = "Your account has been suspended due to fraudulent information. If you are not involved with this fraud, please verify your account information. For more information, visit the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_FRAUDULENT_INFORMATION_IF_YOU_ARE_NOT_INVOLVED_WITH_THIS_FRAUD_PLEASE_VERIFY_YOUR_ACCOUNT_INFORMATION_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5042, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_81; - @ClientString(id = 5043, message = "Your account has been completely blocked for making a fraudulent payment. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_MAKING_A_FRAUDULENT_PAYMENT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5043, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_82; - @ClientString(id = 5044, message = "Your account has been completely blocked for trading accounts.
For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_TRADING_ACCOUNTS_BR_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5044, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_83; - @ClientString(id = 5045, message = "Your account has been completely blocked for 10 days for using illegal programs. Note that your account will be permanently blocked if it happens again. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_10_DAYS_FOR_USING_ILLEGAL_PROGRAMS_NOTE_THAT_YOUR_ACCOUNT_WILL_BE_PERMANENTLY_BLOCKED_IF_IT_HAPPENS_AGAIN_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5045, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_84; - @ClientString(id = 5046, message = "Your account has been completely blocked for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5046, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_85; - @ClientString(id = 5047, message = "Your account has been completely blocked for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5047, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_86; - @ClientString(id = 5048, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_56; + @ClientString(id = 5048, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_87; - @ClientString(id = 5049, message = "Your account has been suspended for repeated uploading abusive posts. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_REPEATED_UPLOADING_ABUSIVE_POSTS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5049, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_88; - @ClientString(id = 5050, message = "Your account has been suspended for uploading a post in violation of the current law. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_UPLOADING_A_POST_IN_VIOLATION_OF_THE_CURRENT_LAW_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5050, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_89; - @ClientString(id = 5051, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5051, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_90; @ClientString(id = 5052, message = "You have entered the Live Server.") public static SystemMessageId YOU_HAVE_ENTERED_THE_FONT_COLOR_FFDF4C_LIVE_SERVER_FONT; @@ -13734,14 +14190,14 @@ public final class SystemMessageId @ClientString(id = 5055, message = "You cannot do that because of Fatigue.") public static SystemMessageId YOU_CANNOT_DO_THAT_BECAUSE_OF_FONT_COLOR_FFDF4C_FATIGUE_FONT; - @ClientString(id = 5056, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the plaync Homepage(www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5056, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_91; - @ClientString(id = 5057, message = "Your account has been completely blocked for creating an account under another person's name. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_CREATING_AN_ACCOUNT_UNDER_ANOTHER_PERSON_S_NAME_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5057, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_92; - @ClientString(id = 5058, message = "Your account has been suspended due to suspected abusive gameplay. If this is not the case, verify your account on our website. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_SUSPECTED_ABUSIVE_GAMEPLAY_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5058, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_93; @ClientString(id = 5059, message = "Please enter more than 1 letter and less than 16 letters.") public static SystemMessageId PLEASE_ENTER_MORE_THAN_FONT_COLOR_FFDF4C_1_LETTER_FONT_AND_LESS_THAN_FONT_COLOR_FFDF4C_16_LETTERS_FONT; @@ -13758,20 +14214,20 @@ public final class SystemMessageId @ClientString(id = 5063, message = "A Clan Member may not be deleted. Please leave the clan and try again.") public static SystemMessageId A_FONT_COLOR_FFDF4C_CLAN_MEMBER_FONT_MAY_NOT_BE_DELETED_PLEASE_LEAVE_THE_CLAN_AND_TRY_AGAIN; - @ClientString(id = 5064, message = "Authentication has failed as you have entered an incorrect authentication number or did not enter the authentication number. If you fail authentication 3 times in a row, game access will be restricted for 30 minutes.") - public static SystemMessageId AUTHENTICATION_HAS_FAILED_AS_YOU_HAVE_ENTERED_AN_INCORRECT_AUTHENTICATION_NUMBER_OR_DID_NOT_ENTER_THE_AUTHENTICATION_NUMBER_IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT; + @ClientString(id = 5064, message = "Authentication has failed as you have entered an incorrect authentication number or did not enter the authentication number. If you fail authentication 3 times in a row, game access will be restricted for 30 min..") + public static SystemMessageId AUTHENTICATION_HAS_FAILED_AS_YOU_HAVE_ENTERED_AN_INCORRECT_AUTHENTICATION_NUMBER_OR_DID_NOT_ENTER_THE_AUTHENTICATION_NUMBER_IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MIN_FONT; - @ClientString(id = 5065, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_3; + @ClientString(id = 5065, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_3; - @ClientString(id = 5066, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_4; + @ClientString(id = 5066, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_4; - @ClientString(id = 5067, message = "If you fail authentication 3 times in a row, game access will be restricted for 30 minutes. Please try again later.") - public static SystemMessageId IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT_PLEASE_TRY_AGAIN_LATER; + @ClientString(id = 5067, message = "If you fail authentication 3 times in a row, game access will be restricted for 30 min.. Please try again later.") + public static SystemMessageId IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MIN_FONT_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 5068, message = "To request an NC OTP service,
run the cell phone NC OTP service
and enter the displayed NC OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") - public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_NC_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; + @ClientString(id = 5068, message = "To request an OTP service,
run the cell phone OTP service
and enter the displayed OTP number within 1 min.
If you did not make the request,
leave this part blank,
and click on the login tab.") + public static SystemMessageId TO_REQUEST_AN_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_OTP_NUMBER_WITHIN_1_MIN_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; @ClientString(id = 5069, message = "Please enter card number $s1.") public static SystemMessageId PLEASE_ENTER_CARD_NUMBER_FONT_COLOR_FFDF4C_S1_FONT; @@ -13785,110 +14241,239 @@ public final class SystemMessageId @ClientString(id = 5072, message = "To get the dormant user benefits, go to Lineage II Homepage > Dormant user coupon page(lineage2.plaync.com/service/freecoupon/dormancy).
Get the dormant user benefits and access our game!") public static SystemMessageId TO_GET_THE_DORMANT_USER_BENEFITS_GO_TO_FONT_COLOR_FFDF4C_LINEAGE_II_HOMEPAGE_DORMANT_USER_COUPON_PAGE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_LINEAGE2_PLAYNC_COM_SERVICE_FREECOUPON_DORMANCY_A_FONT_BR_GET_THE_DORMANT_USER_BENEFITS_AND_ACCESS_OUR_GAME; + @ClientString(id = 5100, message = "Available only for members authorized to activate items") + public static SystemMessageId AVAILABLE_ONLY_FOR_MEMBERS_AUTHORIZED_TO_ACTIVATE_ITEMS; + + @ClientString(id = 5101, message = "No war in progress. The clan must be level 5 or higher to start a clan war.") + public static SystemMessageId NO_WAR_IN_PROGRESS_THE_CLAN_MUST_BE_LEVEL_5_OR_HIGHER_TO_START_A_CLAN_WAR; + + @ClientString(id = 5102, message = "Assigned the target to the selected division.") + public static SystemMessageId ASSIGNED_THE_TARGET_TO_THE_SELECTED_DIVISION; + + @ClientString(id = 5103, message = "Changed the target's privileges.") + public static SystemMessageId CHANGED_THE_TARGET_S_PRIVILEGES; + + @ClientString(id = 5104, message = "Cannot use this function while using a Private Store.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_USING_A_PRIVATE_STORE; + + @ClientString(id = 5105, message = "Cannot report a character who is fighting in a duel.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_IS_FIGHTING_IN_A_DUEL; + + @ClientString(id = 5106, message = "No Spirits are available.") + public static SystemMessageId NO_SPIRITS_ARE_AVAILABLE; + + @ClientString(id = 5107, message = "<$s1> will be your attack attribute from now on.") + public static SystemMessageId S1_WILL_BE_YOUR_ATTACK_ATTRIBUTE_FROM_NOW_ON; + + @ClientString(id = 5108, message = "<$s1> will evolve to <$s2-Star>. $s3-Star Spirits can grow up to Lv. $s4.") + public static SystemMessageId S1_WILL_EVOLVE_TO_S2_STAR_S3_STAR_SPIRITS_CAN_GROW_UP_TO_LV_S4; + + @ClientString(id = 5109, message = "<$s1> evolved to <$s2-Star>!") + public static SystemMessageId S1_EVOLVED_TO_S2_STAR; + + @ClientString(id = 5110, message = "<$s1, $s2-Star> card will be extracted. After the extraction, the Spirit will return to the egg state.") + public static SystemMessageId S1_S2_STAR_CARD_WILL_BE_EXTRACTED_AFTER_THE_EXTRACTION_THE_SPIRIT_WILL_RETURN_TO_THE_EGG_STATE; + + @ClientString(id = 5111, message = "Extracted <$s1, $s2-Star> card successfully!") + public static SystemMessageId EXTRACTED_S1_S2_STAR_CARD_SUCCESSFULLY; + + @ClientString(id = 5112, message = "Register a card you want to drain. $s1-Star Spirits can grow up to Lv. $s2.") + public static SystemMessageId REGISTER_A_CARD_YOU_WANT_TO_DRAIN_S1_STAR_SPIRITS_CAN_GROW_UP_TO_LV_S2; + + @ClientString(id = 5113, message = "<$s1, $s2-Star> card will be drained. $s3-Star Spirit scan grow up to Lv. $s4.") + public static SystemMessageId S1_S2_STAR_CARD_WILL_BE_DRAINED_S3_STAR_SPIRIT_SCAN_GROW_UP_TO_LV_S4; + + @ClientString(id = 5114, message = "Drain successful!") + public static SystemMessageId DRAIN_SUCCESSFUL; + + @ClientString(id = 5115, message = "Characteristics Points will be used to enhance the stats of <$s1>. You can retrieve these points by resetting the stats. Are you sure you want to continue?") + public static SystemMessageId CHARACTERISTICS_POINTS_WILL_BE_USED_TO_ENHANCE_THE_STATS_OF_S1_YOU_CAN_RETRIEVE_THESE_POINTS_BY_RESETTING_THE_STATS_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5116, message = "Characteristics were applied successfully.") + public static SystemMessageId CHARACTERISTICS_WERE_APPLIED_SUCCESSFULLY; + + @ClientString(id = 5117, message = "To reset the characteristics of the selected spirit, the following ingredients will be consumed, and <$s1> Characteristics Points will be lost. Are you sure you want to continue?") + public static SystemMessageId TO_RESET_THE_CHARACTERISTICS_OF_THE_SELECTED_SPIRIT_THE_FOLLOWING_INGREDIENTS_WILL_BE_CONSUMED_AND_S1_CHARACTERISTICS_POINTS_WILL_BE_LOST_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5118, message = "Reset the selected Spirit's Characteristics successfully.") + public static SystemMessageId RESET_THE_SELECTED_SPIRIT_S_CHARACTERISTICS_SUCCESSFULLY; + + @ClientString(id = 5119, message = "Cannot report a character who has signed up for Olympiad.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_HAS_SIGNED_UP_FOR_OLYMPIAD; + + @ClientString(id = 5120, message = "Not allowed to sign up for Olympiad while the report of illegal program users is being verified.") + public static SystemMessageId NOT_ALLOWED_TO_SIGN_UP_FOR_OLYMPIAD_WHILE_THE_REPORT_OF_ILLEGAL_PROGRAM_USERS_IS_BEING_VERIFIED; + + @ClientString(id = 5121, message = "The item has been sealed.") + public static SystemMessageId THE_ITEM_HAS_BEEN_SEALED; + + @ClientString(id = 5122, message = "The seal has been released from the item.") + public static SystemMessageId THE_SEAL_HAS_BEEN_RELEASED_FROM_THE_ITEM; + + @ClientString(id = 5123, message = "Not allowed because the item is sealed. Try again after unsealing the item.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_THE_ITEM_IS_SEALED_TRY_AGAIN_AFTER_UNSEALING_THE_ITEM; + + @ClientString(id = 5124, message = "$s1 cannot be sealed.") + public static SystemMessageId S1_CANNOT_BE_SEALED; + + @ClientString(id = 5125, message = "Not allowed because $s1 is not sealed.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_S1_IS_NOT_SEALED; + + @ClientString(id = 5126, message = "Canceled the use of the Seal/Release Seal Scroll.") + public static SystemMessageId CANCELED_THE_USE_OF_THE_SEAL_RELEASE_SEAL_SCROLL; + + @ClientString(id = 5127, message = "Sealing/unsealing is in progress. Please try again after completing this process.") + public static SystemMessageId SEALING_UNSEALING_IS_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_PROCESS; + + @ClientString(id = 5128, message = "You cannot seal/unseal an item while you're running a Private Store or Private Workshop.") + public static SystemMessageId YOU_CANNOT_SEAL_UNSEAL_AN_ITEM_WHILE_YOU_RE_RUNNING_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP; + + @ClientString(id = 5129, message = "Select an item you want to seal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_SEAL; + + @ClientString(id = 5130, message = "The selected item will be sealed.\\nTo unseal it, you must go through the identify verification process.") + public static SystemMessageId THE_SELECTED_ITEM_WILL_BE_SEALED_NTO_UNSEAL_IT_YOU_MUST_GO_THROUGH_THE_IDENTIFY_VERIFICATION_PROCESS; + + @ClientString(id = 5131, message = "\\nYou can release the seal by requesting N Shop for the Release Seal Scroll Box.") + public static SystemMessageId NOTE_ON_SEALING_NYOU_CAN_RELEASE_THE_SEAL_BY_REQUESTING_N_SHOP_FOR_THE_RELEASE_SEAL_SCROLL_BOX; + + @ClientString(id = 5132, message = "Select an item you want to unseal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_UNSEAL; + + @ClientString(id = 5133, message = "The seal will be removed from the selected item.") + public static SystemMessageId THE_SEAL_WILL_BE_REMOVED_FROM_THE_SELECTED_ITEM; + + @ClientString(id = 5134, message = "Cannot grow any more.") + public static SystemMessageId CANNOT_GROW_ANY_MORE; + + @ClientString(id = 5135, message = "Used all the registered items.") + public static SystemMessageId USED_ALL_THE_REGISTERED_ITEMS; + + @ClientString(id = 5136, message = "$s1 Attribute Attack Power") + public static SystemMessageId S1_ATTRIBUTE_ATTACK_POWER; + + @ClientString(id = 5137, message = "$s1 Attribute Defense") + public static SystemMessageId S1_ATTRIBUTE_DEFENSE; + + @ClientString(id = 5138, message = "$s1 Attribute Critical Rate") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_RATE; + + @ClientString(id = 5139, message = "$s1 Attribute Critical Damage") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_DAMAGE; + + @ClientString(id = 5140, message = "$s1 will be used. You can use $s2 times more.") + public static SystemMessageId S1_WILL_BE_USED_YOU_CAN_USE_S2_TIMES_MORE; + + @ClientString(id = 5141, message = "$s1 is used. $s1 will be lost because it has been used the maximum amount of times.") + public static SystemMessageId S1_IS_USED_S1_WILL_BE_LOST_BECAUSE_IT_HAS_BEEN_USED_THE_MAXIMUM_AMOUNT_OF_TIMES; + @ClientString(id = 5142, message = "Level $s1 Reward") public static SystemMessageId LEVEL_S1_REWARD; - @ClientString(id = 5300, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the plaync Homepage (www.plaync.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5300, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_94; - @ClientString(id = 5301, message = "Your account has been suspended as per our management policy for manipulating our GM service or customer support service to disrupt other users' normal gameplay or the company's game operation. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_OUR_GM_SERVICE_OR_CUSTOMER_SUPPORT_SERVICE_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_OR_THE_COMPANY_S_GAME_OPERATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5301, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_95; - @ClientString(id = 5302, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the plaync Homepage (www.plaync.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5302, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_96; - @ClientString(id = 5303, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5303, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_97; - @ClientString(id = 5304, message = "Your account has been suspended for attempting promotional activities for commercial purpose or to trade for cash or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_OR_TO_TRADE_FOR_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5304, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_98; - @ClientString(id = 5305, message = "Your account has been suspended for trading cash, or account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5305, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_99; - @ClientString(id = 5306, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5306, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_100; - @ClientString(id = 5307, message = "Your account has been suspended for using vulgar language during gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_VULGAR_LANGUAGE_DURING_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5307, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_101; - @ClientString(id = 5308, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5308, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_102; - @ClientString(id = 5309, message = "Your account has been suspended as per our management policy for manufacturing/distributing illegal programs, modifying or altering the client or server program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANUFACTURING_DISTRIBUTING_ILLEGAL_PROGRAMS_MODIFYING_OR_ALTERING_THE_CLIENT_OR_SERVER_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5309, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_103; - @ClientString(id = 5310, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5310, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_104; - @ClientString(id = 5311, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5311, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_105; - @ClientString(id = 5312, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5312, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_106; - @ClientString(id = 5313, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of another person's identification. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or, call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_ANOTHER_PERSON_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5313, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_107; - @ClientString(id = 5314, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5314, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_108; - @ClientString(id = 5315, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5315, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_109; - @ClientString(id = 5316, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5316, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_110; - @ClientString(id = 5317, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5317, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_111; - @ClientString(id = 5318, message = "Please complete user verification process for your identification. For user verification process, go to the plaync Homepage (www.plaync.com). For more information, plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId PLEASE_COMPLETE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5318, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_112; - @ClientString(id = 5319, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5319, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_113; - @ClientString(id = 5320, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5320, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_114; - @ClientString(id = 5321, message = "Your account has been suspended for trading cash or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5321, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_115; - @ClientString(id = 5322, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the plaync Homepage (www.plaync.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5322, message = "You cannot use the game services as your identity has not been verified. Please the Lineage II Support Website(https://support.4game.com) and go to ) to verify your identity. For more details, please visit the Lineage II Support Website(https://support.4game.com).") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_AND_GO_TO_FONT_COLOR_FFDF4C_FONT_TO_VERIFY_YOUR_IDENTITY_FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_2; - @ClientString(id = 5323, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5323, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_116; - @ClientString(id = 5324, message = "Your account has been suspended for failing to comply with the previous agreement over item distribution for party/group play to unjustly gain items. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_FAILING_TO_COMPLY_WITH_THE_PREVIOUS_AGREEMENT_OVER_ITEM_DISTRIBUTION_FOR_PARTY_GROUP_PLAY_TO_UNJUSTLY_GAIN_ITEMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5324, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_117; - @ClientString(id = 5325, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5325, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_118; - @ClientString(id = 5326, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit http://us.ncsoft.com/en/.") - public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTP_US_NCSOFT_COM_EN_2; + @ClientString(id = 5326, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit https://eu.4game.com/.") + public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTPS_EU_4GAME_COM_2; - @ClientString(id = 5327, message = "Your account has been suspended for engaging in the promotional activities for commercial purpose. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ENGAGING_IN_THE_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5327, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_119; - @ClientString(id = 5328, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5328, message = "Your identity verification has been temporarily suspended due to suspected account theft. If you are not involved in account theft, please verify your identity by clicking the 'Release' button in the login page. For more details, please visit the Lineage II Support Website(https://support.4game.com).") + public static SystemMessageId YOUR_IDENTITY_VERIFICATION_HAS_BEEN_TEMPORARILY_SUSPENDED_DUE_TO_SUSPECTED_ACCOUNT_THEFT_IF_YOU_ARE_NOT_INVOLVED_IN_ACCOUNT_THEFT_PLEASE_VERIFY_YOUR_IDENTITY_BY_CLICKING_THE_RELEASE_BUTTON_IN_THE_LOGIN_PAGE_FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_LINEAGE_II_SUPPORT_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT; - @ClientString(id = 5329, message = "Your account has been suspended temporarily for your gameplay resorting to abnormal methods. If this is not the case, verify your account on our Homepage for normal game service. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_YOUR_GAMEPLAY_RESORTING_TO_ABNORMAL_METHODS_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_HOMEPAGE_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5329, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_120; - @ClientString(id = 5330, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5330, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_121; - @ClientString(id = 5331, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5331, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_122; @ClientString(id = 5332, message = "Your account has been idle for a long time. If you do not play the game for a certain period, your account will become idle. You can reactivate your account at the plaync webpage (id.plaync.com/account/dormant/index).") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_IDLE_FOR_A_LONG_TIME_IF_YOU_DO_NOT_PLAY_THE_GAME_FOR_A_CERTAIN_PERIOD_YOUR_ACCOUNT_WILL_BECOME_IDLE_YOU_CAN_REACTIVATE_YOUR_ACCOUNT_AT_THE_FONT_COLOR_FFDF4C_PLAYNC_WEBPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_FONT; - @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; + + @ClientString(id = 5334, message = "Your account is temporarily banned because a suspicious attempt to sign into your account was detected. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_BANNED_BECAUSE_A_SUSPICIOUS_ATTEMPT_TO_SIGN_INTO_YOUR_ACCOUNT_WAS_DETECTED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 5501, message = "$s1 has been killed by $s2.") public static SystemMessageId S1_HAS_BEEN_KILLED_BY_S2; @@ -14004,6 +14589,93 @@ public final class SystemMessageId @ClientString(id = 5538, message = "You must be in a group to access the Group channel.") public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL; + @ClientString(id = 5539, message = "Will you accept $s1‘s group invitation?") + public static SystemMessageId WILL_YOU_ACCEPT_S1_S_GROUP_INVITATION; + + @ClientString(id = 5540, message = "$s1 joined the group.") + public static SystemMessageId S1_JOINED_THE_GROUP; + + @ClientString(id = 5541, message = "$s1 has declined to join the group.") + public static SystemMessageId S1_HAS_DECLINED_TO_JOIN_THE_GROUP; + + @ClientString(id = 5542, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND; + + @ClientString(id = 5543, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND_2; + + @ClientString(id = 5544, message = "The player belongs to another group.") + public static SystemMessageId THE_PLAYER_BELONGS_TO_ANOTHER_GROUP; + + @ClientString(id = 5545, message = "Failed to invite the player as they are fighting in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_FIGHTING_IN_THE_ARENA; + + @ClientString(id = 5546, message = "Failed to invite the player as they are preparing to fight in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_PREPARING_TO_FIGHT_IN_THE_ARENA; + + @ClientString(id = 5547, message = "Cannot find the target.") + public static SystemMessageId CANNOT_FIND_THE_TARGET; + + @ClientString(id = 5548, message = "You cannot invite yourself.") + public static SystemMessageId YOU_CANNOT_INVITE_YOURSELF; + + @ClientString(id = 5549, message = "Select a player you want to invite to the group.") + public static SystemMessageId SELECT_A_PLAYER_YOU_WANT_TO_INVITE_TO_THE_GROUP; + + @ClientString(id = 5550, message = "Cannot invite a new player because your group is full.") + public static SystemMessageId CANNOT_INVITE_A_NEW_PLAYER_BECAUSE_YOUR_GROUP_IS_FULL; + + @ClientString(id = 5551, message = "$s1 left the group.") + public static SystemMessageId S1_LEFT_THE_GROUP; + + @ClientString(id = 5552, message = "The group was disbanded.") + public static SystemMessageId THE_GROUP_WAS_DISBANDED; + + @ClientString(id = 5553, message = "You don't belong to any group.") + public static SystemMessageId YOU_DON_T_BELONG_TO_ANY_GROUP; + + @ClientString(id = 5554, message = "Dismissed $s1 from the group.") + public static SystemMessageId DISMISSED_S1_FROM_THE_GROUP; + + @ClientString(id = 5555, message = "Only the group leader can dismiss a group member.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DISMISS_A_GROUP_MEMBER; + + @ClientString(id = 5556, message = "You cannot dismiss yourself.") + public static SystemMessageId YOU_CANNOT_DISMISS_YOURSELF_2; + + @ClientString(id = 5557, message = "$s1 is now the group leader.") + public static SystemMessageId S1_IS_NOW_THE_GROUP_LEADER; + + @ClientString(id = 5558, message = "Only the group leader can delegate the privileges.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DELEGATE_THE_PRIVILEGES; + + @ClientString(id = 5559, message = "You cannot delegate privileges to yourself.") + public static SystemMessageId YOU_CANNOT_DELEGATE_PRIVILEGES_TO_YOURSELF; + + @ClientString(id = 5560, message = "You can delegate the privileges only to a group member.") + public static SystemMessageId YOU_CAN_DELEGATE_THE_PRIVILEGES_ONLY_TO_A_GROUP_MEMBER; + + @ClientString(id = 5561, message = "You must be a member of the group to use the group channel.") + public static SystemMessageId YOU_MUST_BE_A_MEMBER_OF_THE_GROUP_TO_USE_THE_GROUP_CHANNEL; + + @ClientString(id = 5562, message = "Input a name and press the Enter key to invite") + public static SystemMessageId INPUT_A_NAME_AND_PRESS_THE_ENTER_KEY_TO_INVITE; + + @ClientString(id = 5563, message = "You cannot resurrect while you're signing up for battle.") + public static SystemMessageId YOU_CANNOT_RESURRECT_WHILE_YOU_RE_SIGNING_UP_FOR_BATTLE; + + @ClientString(id = 5564, message = "You cannot apply as some of your group members are still in the arena.") + public static SystemMessageId YOU_CANNOT_APPLY_AS_SOME_OF_YOUR_GROUP_MEMBERS_ARE_STILL_IN_THE_ARENA; + + @ClientString(id = 5565, message = "Liberated $s1 Stage $s2.") + public static SystemMessageId LIBERATED_S1_STAGE_S2; + + @ClientString(id = 5566, message = "The seal of the monster can be removed.") + public static SystemMessageId THE_SEAL_OF_THE_MONSTER_CAN_BE_REMOVED; + + @ClientString(id = 5567, message = "$s1: $s2! Be careful!") + public static SystemMessageId S1_S2_BE_CAREFUL; + @ClientString(id = 6001, message = "The item has been successfully purchased.") public static SystemMessageId THE_ITEM_HAS_BEEN_SUCCESSFULLY_PURCHASED_2; @@ -14016,8 +14688,8 @@ public final class SystemMessageId @ClientString(id = 6004, message = "Enchant failed. The enchant value for the corresponding item will be exactly retained.") public static SystemMessageId ENCHANT_FAILED_THE_ENCHANT_VALUE_FOR_THE_CORRESPONDING_ITEM_WILL_BE_EXACTLY_RETAINED; - @ClientString(id = 6005, message = "You do not have enough NCoin.") - public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_NCOIN; + @ClientString(id = 6005, message = "You do not have enough Euro.") + public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_EURO; @ClientString(id = 6006, message = "The item cannot be received because the inventory weight/quantity limit has been exceeded.") public static SystemMessageId THE_ITEM_CANNOT_BE_RECEIVED_BECAUSE_THE_INVENTORY_WEIGHT_QUANTITY_LIMIT_HAS_BEEN_EXCEEDED; @@ -14160,11 +14832,11 @@ public final class SystemMessageId @ClientString(id = 6052, message = "You have receive $s1 gift(s). You can receive $s2 more. The gift delivery time will reset every day at 6:30 AM.") public static SystemMessageId YOU_HAVE_RECEIVE_S1_GIFT_S_YOU_CAN_RECEIVE_S2_MORE_THE_GIFT_DELIVERY_TIME_WILL_RESET_EVERY_DAY_AT_6_30_AM; - @ClientString(id = 6053, message = "You have earned $s1's XP through the PC Bonus.") - public static SystemMessageId YOU_HAVE_EARNED_S1_S_XP_THROUGH_THE_PC_BONUS; + @ClientString(id = 6053, message = "You have earned $s1's XP through the PA Bonus.") + public static SystemMessageId YOU_HAVE_EARNED_S1_S_XP_THROUGH_THE_PA_BONUS; - @ClientString(id = 6054, message = "You have earned $s1's Fame through the PC Bonus.") - public static SystemMessageId YOU_HAVE_EARNED_S1_S_FAME_THROUGH_THE_PC_BONUS; + @ClientString(id = 6054, message = "You have earned $s1's Fame through the PA Bonus.") + public static SystemMessageId YOU_HAVE_EARNED_S1_S_FAME_THROUGH_THE_PA_BONUS; @ClientString(id = 6055, message = "Membership cannot be changed because requirements of a clan member are not met.") public static SystemMessageId MEMBERSHIP_CANNOT_BE_CHANGED_BECAUSE_REQUIREMENTS_OF_A_CLAN_MEMBER_ARE_NOT_MET; @@ -14172,8 +14844,8 @@ public final class SystemMessageId @ClientString(id = 6056, message = "$s1 (Currently $s3 time(s) has/have been used out of maximum $s2 times)") public static SystemMessageId S1_CURRENTLY_S3_TIME_S_HAS_HAVE_BEEN_USED_OUT_OF_MAXIMUM_S2_TIMES; - @ClientString(id = 6057, message = "You cannot purchase the PC item. Make sure you have at least 10%% free space in your inventory, and make sure that you are not suffering from the weight penalty. (The item will be resupplied every 5 minutes.)") - public static SystemMessageId YOU_CANNOT_PURCHASE_THE_PC_ITEM_MAKE_SURE_YOU_HAVE_AT_LEAST_10_FREE_SPACE_IN_YOUR_INVENTORY_AND_MAKE_SURE_THAT_YOU_ARE_NOT_SUFFERING_FROM_THE_WEIGHT_PENALTY_THE_ITEM_WILL_BE_RESUPPLIED_EVERY_5_MINUTES; + @ClientString(id = 6057, message = "You cannot purchase the PA item. Make sure you have at least 10%% free space in your inventory, and make sure that you are not suffering from the weight penalty. (The item will be resupplied every 5 min.)") + public static SystemMessageId YOU_CANNOT_PURCHASE_THE_PA_ITEM_MAKE_SURE_YOU_HAVE_AT_LEAST_10_FREE_SPACE_IN_YOUR_INVENTORY_AND_MAKE_SURE_THAT_YOU_ARE_NOT_SUFFERING_FROM_THE_WEIGHT_PENALTY_THE_ITEM_WILL_BE_RESUPPLIED_EVERY_5_MIN; @ClientString(id = 6058, message = "That account is pending email authentication. Please verify authentication email with registered email account.") public static SystemMessageId THAT_ACCOUNT_IS_PENDING_EMAIL_AUTHENTICATION_PLEASE_VERIFY_AUTHENTICATION_EMAIL_WITH_REGISTERED_EMAIL_ACCOUNT; @@ -14190,8 +14862,8 @@ public final class SystemMessageId @ClientString(id = 6062, message = "Hero chatting is currently available.") public static SystemMessageId HERO_CHATTING_IS_CURRENTLY_AVAILABLE; - @ClientString(id = 6063, message = "Hero chatting has been stopped. $s1 minute(s) remaining until Hero Chatting will be available.") - public static SystemMessageId HERO_CHATTING_HAS_BEEN_STOPPED_S1_MINUTE_S_REMAINING_UNTIL_HERO_CHATTING_WILL_BE_AVAILABLE; + @ClientString(id = 6063, message = "Hero chatting has been stopped. $s1 min. remaining until Hero Chatting will be available.") + public static SystemMessageId HERO_CHATTING_HAS_BEEN_STOPPED_S1_MIN_REMAINING_UNTIL_HERO_CHATTING_WILL_BE_AVAILABLE; @ClientString(id = 6064, message = "Items that were given as gifts cannot be returned for refund. \\n\\nDo you want to gift it to $s1?") public static SystemMessageId ITEMS_THAT_WERE_GIVEN_AS_GIFTS_CANNOT_BE_RETURNED_FOR_REFUND_N_NDO_YOU_WANT_TO_GIFT_IT_TO_S1; @@ -14208,8 +14880,8 @@ public final class SystemMessageId @ClientString(id = 6068, message = "Vitality is not yet applied. Vitality is replenished every Wednesday at 6:30 a.m. A maximum of $s1 vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") public static SystemMessageId VITALITY_IS_NOT_YET_APPLIED_VITALITY_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_A_MAXIMUM_OF_S1_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; - @ClientString(id = 6069, message = "You used the Adventurer's Song. You can use $s1 more. The use limit is reset every Wednesday at 6:30 a.m.") - public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_EVERY_WEDNESDAY_AT_6_30_A_M; + @ClientString(id = 6069, message = "You used the Adventurer's Song. Today you can use $s1 more. The use limit is reset daily at 6:30 a.m.") + public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_TODAY_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_DAILY_AT_6_30_A_M; @ClientString(id = 6070, message = "A maximum of 8 non-quantity items can be given as gifts. \\nPlease confirm the quantity.") public static SystemMessageId A_MAXIMUM_OF_8_NON_QUANTITY_ITEMS_CAN_BE_GIVEN_AS_GIFTS_NPLEASE_CONFIRM_THE_QUANTITY; @@ -14253,7 +14925,7 @@ public final class SystemMessageId @ClientString(id = 6083, message = "You cannot use this system during trading, private store, and workshop setup.") public static SystemMessageId YOU_CANNOT_USE_THIS_SYSTEM_DURING_TRADING_PRIVATE_STORE_AND_WORKSHOP_SETUP; - @ClientString(id = 6084, message = " Appearance Modification or Restoration in progress. Please try again after completing this task.") + @ClientString(id = 6084, message = "Appearance Modification or Restoration in progress. Please try again after completing this task.") public static SystemMessageId APPEARANCE_MODIFICATION_OR_RESTORATION_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_TASK; @ClientString(id = 6085, message = "$s1 now has $s2's appearance.") @@ -14463,8 +15135,8 @@ public final class SystemMessageId @ClientString(id = 6153, message = "$s1 has expired.") public static SystemMessageId S1_HAS_EXPIRED_2; - @ClientString(id = 6154, message = "You cannot receive rewards for training if you have trained for less than 1 minute.") - public static SystemMessageId YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MINUTE; + @ClientString(id = 6154, message = "You cannot receive rewards for training if you have trained for less than 1 min.") + public static SystemMessageId YOU_CANNOT_RECEIVE_REWARDS_FOR_TRAINING_IF_YOU_HAVE_TRAINED_FOR_LESS_THAN_1_MIN; @ClientString(id = 6155, message = "Your character creation date does not allow for this purchase.") public static SystemMessageId YOUR_CHARACTER_CREATION_DATE_DOES_NOT_ALLOW_FOR_THIS_PURCHASE; @@ -14478,11 +15150,11 @@ public final class SystemMessageId @ClientString(id = 6158, message = "Round $s1 of Fortune Reading complete.") public static SystemMessageId ROUND_S1_OF_FORTUNE_READING_COMPLETE; - @ClientString(id = 6159, message = "Round $s1 of Luxury Fortune Reading complete.") - public static SystemMessageId ROUND_S1_OF_LUXURY_FORTUNE_READING_COMPLETE; + @ClientString(id = 6159, message = "Round $s1 of Lucky Game complete.") + public static SystemMessageId ROUND_S1_OF_LUCKY_GAME_COMPLETE; - @ClientString(id = 6160, message = "Congratulations! You have acquired $s1 of $s2.") - public static SystemMessageId CONGRATULATIONS_YOU_HAVE_ACQUIRED_S1_OF_S2; + @ClientString(id = 6160, message = "Congratulations! You won $s2 of $s1.") + public static SystemMessageId CONGRATULATIONS_YOU_WON_S2_OF_S1; @ClientString(id = 6161, message = "Calculating XP and SP obtained from training…") public static SystemMessageId CALCULATING_XP_AND_SP_OBTAINED_FROM_TRAINING; @@ -14493,8 +15165,8 @@ public final class SystemMessageId @ClientString(id = 6163, message = "You can only be rewarded as the class in which you entered the training camp.") public static SystemMessageId YOU_CAN_ONLY_BE_REWARDED_AS_THE_CLASS_IN_WHICH_YOU_ENTERED_THE_TRAINING_CAMP; - @ClientString(id = 6164, message = "Up to $s1 per $s2 day(s) per account") - public static SystemMessageId UP_TO_S1_PER_S2_DAY_S_PER_ACCOUNT; + @ClientString(id = 6164, message = "Up to $s2 per $s1 d. per account") + public static SystemMessageId UP_TO_S2_PER_S1_D_PER_ACCOUNT; @ClientString(id = 6165, message = "Up to $s1 per account") public static SystemMessageId UP_TO_S1_PER_ACCOUNT; @@ -14520,20 +15192,20 @@ public final class SystemMessageId @ClientString(id = 6172, message = "Redirecting to the Lineage II website. Proceed?") public static SystemMessageId REDIRECTING_TO_THE_LINEAGE_II_WEBSITE_PROCEED; - @ClientString(id = 6173, message = "The lower your Fame, the higher your chances of dropping items when you die with a PK count of $s1 or above.") - public static SystemMessageId THE_LOWER_YOUR_FAME_THE_HIGHER_YOUR_CHANCES_OF_DROPPING_ITEMS_WHEN_YOU_DIE_WITH_A_PK_COUNT_OF_S1_OR_ABOVE; + @ClientString(id = 6173, message = "The lower your Reputation, the higher your chances of dropping items when you die with a PK count of $s1 or above.") + public static SystemMessageId THE_LOWER_YOUR_REPUTATION_THE_HIGHER_YOUR_CHANCES_OF_DROPPING_ITEMS_WHEN_YOU_DIE_WITH_A_PK_COUNT_OF_S1_OR_ABOVE; - @ClientString(id = 6174, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 minutes after logging in.)") - public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; + @ClientString(id = 6174, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon. (You can redeem your reward 30 min. after logging in.)") + public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_YOU_CAN_REDEEM_YOUR_REWARD_30_MIN_AFTER_LOGGING_IN; - @ClientString(id = 6175, message = "Your Day $s1 PC Café Attendance Reward is ready. Click on the rewards icon.") - public static SystemMessageId YOUR_DAY_S1_PC_CAF_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON; + @ClientString(id = 6175, message = "Your Day $s1 Premium Account Attendance Reward is ready. Click on the rewards icon.") + public static SystemMessageId YOUR_DAY_S1_PREMIUM_ACCOUNT_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON; @ClientString(id = 6176, message = "You've received your Attendance Reward for Day $s1. ") public static SystemMessageId YOU_VE_RECEIVED_YOUR_ATTENDANCE_REWARD_FOR_DAY_S1; - @ClientString(id = 6177, message = "You've received your PC Café Attendance Reward for Day $s1. ") - public static SystemMessageId YOU_VE_RECEIVED_YOUR_PC_CAF_ATTENDANCE_REWARD_FOR_DAY_S1; + @ClientString(id = 6177, message = "You've received your Premium Account Attendance Reward for Day $s1. ") + public static SystemMessageId YOU_VE_RECEIVED_YOUR_PREMIUM_ACCOUNT_ATTENDANCE_REWARD_FOR_DAY_S1; @ClientString(id = 6178, message = "The Attendance Reward cannot be received because the inventory weight/quantity limit has been exceeded.") public static SystemMessageId THE_ATTENDANCE_REWARD_CANNOT_BE_RECEIVED_BECAUSE_THE_INVENTORY_WEIGHT_QUANTITY_LIMIT_HAS_BEEN_EXCEEDED; @@ -14547,8 +15219,8 @@ public final class SystemMessageId @ClientString(id = 6181, message = "You've received your VIP Attendance Reward for Day $s1. ") public static SystemMessageId YOU_VE_RECEIVED_YOUR_VIP_ATTENDANCE_REWARD_FOR_DAY_S1; - @ClientString(id = 6182, message = "You can no longer receive Attendance Check rewards. ") - public static SystemMessageId YOU_CAN_NO_LONGER_RECEIVE_ATTENDANCE_CHECK_REWARDS; + @ClientString(id = 6182, message = "You've already recieved the Attendance Check rewards.") + public static SystemMessageId YOU_VE_ALREADY_RECIEVED_THE_ATTENDANCE_CHECK_REWARDS; @ClientString(id = 6183, message = "Your VIP rank is too low to receive the reward. ") public static SystemMessageId YOUR_VIP_RANK_IS_TOO_LOW_TO_RECEIVE_THE_REWARD; @@ -14556,8 +15228,8 @@ public final class SystemMessageId @ClientString(id = 6184, message = "Items in the Pet Inventory cannot be used as offerings.") public static SystemMessageId ITEMS_IN_THE_PET_INVENTORY_CANNOT_BE_USED_AS_OFFERINGS; - @ClientString(id = 6185, message = "You can make another report in $s1-minute(s). You have $s2 point(s) remaining on this account.") - public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MINUTE_S_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT_2; + @ClientString(id = 6185, message = "You can make another report in $s1-min. You have $s2 point(s) remaining on this account.") + public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MIN_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT_2; @ClientString(id = 6186, message = "You cannot report someone who is in battle or is using a private store or shop.") public static SystemMessageId YOU_CANNOT_REPORT_SOMEONE_WHO_IS_IN_BATTLE_OR_IS_USING_A_PRIVATE_STORE_OR_SHOP; @@ -14565,11 +15237,11 @@ public final class SystemMessageId @ClientString(id = 6187, message = "Cannot continue because another report is being processed. Please try again after entering the verification number.") public static SystemMessageId CANNOT_CONTINUE_BECAUSE_ANOTHER_REPORT_IS_BEING_PROCESSED_PLEASE_TRY_AGAIN_AFTER_ENTERING_THE_VERIFICATION_NUMBER; - @ClientString(id = 6188, message = "You do not meet the level requirements to receive the Attendance Reward. Please check the required level. (You can redeem your reward 30 minutes after logging in.)") - public static SystemMessageId YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENTS_TO_RECEIVE_THE_ATTENDANCE_REWARD_PLEASE_CHECK_THE_REQUIRED_LEVEL_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; + @ClientString(id = 6188, message = "You do not meet the level requirements to receive the Attendance Reward. Please check the required level. (You can redeem your reward 30 min. after logging in.)") + public static SystemMessageId YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENTS_TO_RECEIVE_THE_ATTENDANCE_REWARD_PLEASE_CHECK_THE_REQUIRED_LEVEL_YOU_CAN_REDEEM_YOUR_REWARD_30_MIN_AFTER_LOGGING_IN; - @ClientString(id = 6189, message = "- You must receive the attendance reward in a given day to receive the next day's reward.\\n- Rewards received once cannot be reverted back.") - public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; + @ClientString(id = 6189, message = "You must receive the reward in a given day to receive the next day's reward.\\nRewards received once cannot be reverted back.") + public static SystemMessageId YOU_MUST_RECEIVE_THE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_NREWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6190, message = "This item cannot be used as an offering.") public static SystemMessageId THIS_ITEM_CANNOT_BE_USED_AS_AN_OFFERING; @@ -14583,8 +15255,8 @@ public final class SystemMessageId @ClientString(id = 6193, message = "How many $s1 would you like to remove from the offerings?") public static SystemMessageId HOW_MANY_S1_WOULD_YOU_LIKE_TO_REMOVE_FROM_THE_OFFERINGS; - @ClientString(id = 6194, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 minutes after logging in.)") - public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN_2; + @ClientString(id = 6194, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 min. after logging in.)") + public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MIN_AFTER_LOGGING_IN; @ClientString(id = 6195, message = "You've received your Attendance Reward for Day $s1. ") public static SystemMessageId YOU_VE_RECEIVED_YOUR_ATTENDANCE_REWARD_FOR_DAY_S1_2; @@ -14599,7 +15271,7 @@ public final class SystemMessageId public static SystemMessageId THERE_S_CURRENTLY_A_REWARD_AVAILABLE_WOULD_YOU_REALLY_LIKE_TO_CLOSE_THE_WINDOW_YOU_CAN_OPEN_IT_AGAIN_FROM_THE_ATTENDANCE_CHECK_IN_THE_MAIN_MENU; @ClientString(id = 6199, message = "- You must receive the attendance reward in a given day to receive the next day's reward.\\n- Rewards received once cannot be reverted back.") - public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK_2; + public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6200, message = "This item cannot be used as an offering.") public static SystemMessageId THIS_ITEM_CANNOT_BE_USED_AS_AN_OFFERING_2; @@ -14757,6 +15429,9 @@ public final class SystemMessageId @ClientString(id = 6837, message = "Please enter the OTP number. The numbers change for each login.") public static SystemMessageId PLEASE_ENTER_THE_OTP_NUMBER_THE_NUMBERS_CHANGE_FOR_EACH_LOGIN; + @ClientString(id = 6838, message = "The Secret Supplies of Balthus Knights arrived! Someone received $s1.") + public static SystemMessageId THE_SECRET_SUPPLIES_OF_BALTHUS_KNIGHTS_ARRIVED_SOMEONE_RECEIVED_S1; + @ClientString(id = 7001, message = "Cannot proceed until the current dice roll is over.") public static SystemMessageId CANNOT_PROCEED_UNTIL_THE_CURRENT_DICE_ROLL_IS_OVER; @@ -14832,17 +15507,17 @@ public final class SystemMessageId @ClientString(id = 7025, message = "$c1 rolled the highest with $s2 points and acquired + $s3$s4.") public static SystemMessageId C1_ROLLED_THE_HIGHEST_WITH_S2_POINTS_AND_ACQUIRED_S3_S4; - @ClientString(id = 7026, message = "$s1-member party") - public static SystemMessageId S1_MEMBER_PARTY; + @ClientString(id = 7026, message = "$s1 players") + public static SystemMessageId S1_PLAYERS; - @ClientString(id = 7027, message = "$s1~$s2-member party") - public static SystemMessageId S1_S2_MEMBER_PARTY; + @ClientString(id = 7027, message = "$s1~$s2 players") + public static SystemMessageId S1_S2_PLAYERS; @ClientString(id = 7028, message = "Above Lv. $s1") public static SystemMessageId ABOVE_LV_S1; @ClientString(id = 7029, message = "$s1 hr") - public static SystemMessageId S1_HR; + public static SystemMessageId S1_HR_3; @ClientString(id = 7030, message = "$s1~$s2 hrs") public static SystemMessageId S1_S2_HRS; @@ -14859,17 +15534,17 @@ public final class SystemMessageId @ClientString(id = 7034, message = "Looting Method: Manually by Party Leader") public static SystemMessageId LOOTING_METHOD_MANUALLY_BY_PARTY_LEADER; - @ClientString(id = 7035, message = "You've been playing for over 3 hours, so this action only has a 50%% chance to work. Please take a break and come back.") - public static SystemMessageId YOU_VE_BEEN_PLAYING_FOR_OVER_3_HOURS_SO_THIS_ACTION_ONLY_HAS_A_50_CHANCE_TO_WORK_PLEASE_TAKE_A_BREAK_AND_COME_BACK; + @ClientString(id = 7035, message = "You've been playing for over 3 hr., so this action only has a 50%% chance to work. Please take a break and come back.") + public static SystemMessageId YOU_VE_BEEN_PLAYING_FOR_OVER_3_HR_SO_THIS_ACTION_ONLY_HAS_A_50_CHANCE_TO_WORK_PLEASE_TAKE_A_BREAK_AND_COME_BACK; - @ClientString(id = 7036, message = "You've been playing for over 5 hours, so this action will not work. Please take a break and come back.") - public static SystemMessageId YOU_VE_BEEN_PLAYING_FOR_OVER_5_HOURS_SO_THIS_ACTION_WILL_NOT_WORK_PLEASE_TAKE_A_BREAK_AND_COME_BACK; + @ClientString(id = 7036, message = "You've been playing for over 5 hr., so this action will not work. Please take a break and come back.") + public static SystemMessageId YOU_VE_BEEN_PLAYING_FOR_OVER_5_HR_SO_THIS_ACTION_WILL_NOT_WORK_PLEASE_TAKE_A_BREAK_AND_COME_BACK; - @ClientString(id = 7037, message = "The Party Leader has been playing for over 3 hours, so the party only has a 50%% chance to obtain items.") - public static SystemMessageId THE_PARTY_LEADER_HAS_BEEN_PLAYING_FOR_OVER_3_HOURS_SO_THE_PARTY_ONLY_HAS_A_50_CHANCE_TO_OBTAIN_ITEMS; + @ClientString(id = 7037, message = "The Party Leader has been playing for over 3 hr., so the party only has a 50%% chance to obtain items.") + public static SystemMessageId THE_PARTY_LEADER_HAS_BEEN_PLAYING_FOR_OVER_3_HR_SO_THE_PARTY_ONLY_HAS_A_50_CHANCE_TO_OBTAIN_ITEMS; - @ClientString(id = 7038, message = "The Party Leader has been playing for over 3 hours, so the party cannot obtain any items.") - public static SystemMessageId THE_PARTY_LEADER_HAS_BEEN_PLAYING_FOR_OVER_3_HOURS_SO_THE_PARTY_CANNOT_OBTAIN_ANY_ITEMS; + @ClientString(id = 7038, message = "The Party Leader has been playing for over 3 hr., so the party cannot obtain any items.") + public static SystemMessageId THE_PARTY_LEADER_HAS_BEEN_PLAYING_FOR_OVER_3_HR_SO_THE_PARTY_CANNOT_OBTAIN_ANY_ITEMS; @ClientString(id = 7039, message = "The moving status of your servitor/pet/companion will be fixed to the current location.") public static SystemMessageId THE_MOVING_STATUS_OF_YOUR_SERVITOR_PET_COMPANION_WILL_BE_FIXED_TO_THE_CURRENT_LOCATION; @@ -14994,8 +15669,8 @@ public final class SystemMessageId @ClientString(id = 7079, message = "You are out of the range from the Party Leader, so you cannot get the item.") public static SystemMessageId YOU_ARE_OUT_OF_THE_RANGE_FROM_THE_PARTY_LEADER_SO_YOU_CANNOT_GET_THE_ITEM; - @ClientString(id = 7080, message = "You've been logged in for $s1 hour(s) $s2 minute(s).") - public static SystemMessageId YOU_VE_BEEN_LOGGED_IN_FOR_S1_HOUR_S_S2_MINUTE_S; + @ClientString(id = 7080, message = "You've been logged in for $s1 hr. $s2 min.") + public static SystemMessageId YOU_VE_BEEN_LOGGED_IN_FOR_S1_HR_S2_MIN; @ClientString(id = 7081, message = "$c1 has killed you!") public static SystemMessageId C1_HAS_KILLED_YOU; @@ -15045,8 +15720,8 @@ public final class SystemMessageId @ClientString(id = 7096, message = "You've used a $s1 and increased SP by $s2.") public static SystemMessageId YOU_VE_USED_A_S1_AND_INCREASED_SP_BY_S2; - @ClientString(id = 7097, message = "The timed Soul Crystal effect of $s1 will disappear in $s2 minutes.") - public static SystemMessageId THE_TIMED_SOUL_CRYSTAL_EFFECT_OF_S1_WILL_DISAPPEAR_IN_S2_MINUTES; + @ClientString(id = 7097, message = "The timed Soul Crystal effect of $s1 will disappear in $s2 min.") + public static SystemMessageId THE_TIMED_SOUL_CRYSTAL_EFFECT_OF_S1_WILL_DISAPPEAR_IN_S2_MIN; @ClientString(id = 7098, message = "The timed Soul Crystal effect of $s1 will disappear, and it will be unequipped.") public static SystemMessageId THE_TIMED_SOUL_CRYSTAL_EFFECT_OF_S1_WILL_DISAPPEAR_AND_IT_WILL_BE_UNEQUIPPED; @@ -15066,11 +15741,11 @@ public final class SystemMessageId @ClientString(id = 7103, message = "The character has been added as a foe the max number of times allowed, so you cannot add the target as a foe.") public static SystemMessageId THE_CHARACTER_HAS_BEEN_ADDED_AS_A_FOE_THE_MAX_NUMBER_OF_TIMES_ALLOWED_SO_YOU_CANNOT_ADD_THE_TARGET_AS_A_FOE; - @ClientString(id = 7104, message = "Vitality Mode will be activated for $s1 hour(s) $s2 minute(s).") - public static SystemMessageId VITALITY_MODE_WILL_BE_ACTIVATED_FOR_S1_HOUR_S_S2_MINUTE_S; + @ClientString(id = 7104, message = "Vitality Mode will be activated for $s1 hr. $s2 min.") + public static SystemMessageId VITALITY_MODE_WILL_BE_ACTIVATED_FOR_S1_HR_S2_MIN; - @ClientString(id = 7105, message = "Vitality Mode has been activated and you received \\n$s1%% bonus XP/SP.\\nTime Left: $s2 minutes\\nToday's Vitality Mode Activations: $s3 times") - public static SystemMessageId VITALITY_MODE_HAS_BEEN_ACTIVATED_AND_YOU_RECEIVED_N_S1_BONUS_XP_SP_NTIME_LEFT_S2_MINUTES_NTODAY_S_VITALITY_MODE_ACTIVATIONS_S3_TIMES; + @ClientString(id = 7105, message = "Vitality Mode has been activated and you received \\n$s1%% bonus XP/SP.\\nTime Left: $s2 min.\\nToday's Vitality Mode Activations: $s3 times") + public static SystemMessageId VITALITY_MODE_HAS_BEEN_ACTIVATED_AND_YOU_RECEIVED_N_S1_BONUS_XP_SP_NTIME_LEFT_S2_MIN_NTODAY_S_VITALITY_MODE_ACTIVATIONS_S3_TIMES; @ClientString(id = 7106, message = "Activate Vitality Mode by clicking on the Activate button to get \\n300%% bonus XP/SP.\\nThe number of times Vitality Mode is activated is reset every day at 6:30 am\\nand you get free activations for that day.") public static SystemMessageId ACTIVATE_VITALITY_MODE_BY_CLICKING_ON_THE_ACTIVATE_BUTTON_TO_GET_N300_BONUS_XP_SP_NTHE_NUMBER_OF_TIMES_VITALITY_MODE_IS_ACTIVATED_IS_RESET_EVERY_DAY_AT_6_30_AM_NAND_YOU_GET_FREE_ACTIVATIONS_FOR_THAT_DAY; @@ -15309,8 +15984,8 @@ public final class SystemMessageId @ClientString(id = 7202, message = "There are $s1 players on the queue. If you click on Cancel, you'll be disconnected from the server.") public static SystemMessageId THERE_ARE_S1_PLAYERS_ON_THE_QUEUE_IF_YOU_CLICK_ON_CANCEL_YOU_LL_BE_DISCONNECTED_FROM_THE_SERVER; - @ClientString(id = 7203, message = "There was an error on the queue. Please try again in a minute.") - public static SystemMessageId THERE_WAS_AN_ERROR_ON_THE_QUEUE_PLEASE_TRY_AGAIN_IN_A_MINUTE; + @ClientString(id = 7203, message = "There was an error on the queue. Please try again in a min.") + public static SystemMessageId THERE_WAS_AN_ERROR_ON_THE_QUEUE_PLEASE_TRY_AGAIN_IN_A_MIN; @ClientString(id = 7204, message = "Currently crafting an item. Please wait.") public static SystemMessageId CURRENTLY_CRAFTING_AN_ITEM_PLEASE_WAIT; @@ -15696,8 +16371,8 @@ public final class SystemMessageId @ClientString(id = 7331, message = "You already have 6 students, so you cannot take on another student.") public static SystemMessageId YOU_ALREADY_HAVE_6_STUDENTS_SO_YOU_CANNOT_TAKE_ON_ANOTHER_STUDENT; - @ClientString(id = 7332, message = "$s4 has a penalty, so cannot accept another request. Time left $s1 day(s) $s2 hour(s) $s3 minute(s).") - public static SystemMessageId S4_HAS_A_PENALTY_SO_CANNOT_ACCEPT_ANOTHER_REQUEST_TIME_LEFT_S1_DAY_S_S2_HOUR_S_S3_MINUTE_S; + @ClientString(id = 7332, message = "$s4 has a penalty, so cannot accept another request. Time left $s1 d. $s2 hr. $s3 min.") + public static SystemMessageId S4_HAS_A_PENALTY_SO_CANNOT_ACCEPT_ANOTHER_REQUEST_TIME_LEFT_S1_D_S2_HR_S3_MIN; @ClientString(id = 7333, message = "You've reached the maximum number of students you can have. Please check your Friends - Students tab.") public static SystemMessageId YOU_VE_REACHED_THE_MAXIMUM_NUMBER_OF_STUDENTS_YOU_CAN_HAVE_PLEASE_CHECK_YOUR_FRIENDS_STUDENTS_TAB; @@ -15762,8 +16437,8 @@ public final class SystemMessageId @ClientString(id = 7353, message = "$s1 has become your student.") public static SystemMessageId S1_HAS_BECOME_YOUR_STUDENT; - @ClientString(id = 7354, message = "$s1 day(s), $s2 hour(s), $s3 minute(s)") - public static SystemMessageId S1_DAY_S_S2_HOUR_S_S3_MINUTE_S_2; + @ClientString(id = 7354, message = "$s1 d., $s2 hr., $s3 min.") + public static SystemMessageId S1_D_S2_HR_S3_MIN_2; @ClientString(id = 7355, message = "Your student has achieved a goal so you are sending a reward.") public static SystemMessageId YOUR_STUDENT_HAS_ACHIEVED_A_GOAL_SO_YOU_ARE_SENDING_A_REWARD; @@ -15813,8 +16488,8 @@ public final class SystemMessageId @ClientString(id = 7370, message = "The information of the target cannot be viewed at this moment.") public static SystemMessageId THE_INFORMATION_OF_THE_TARGET_CANNOT_BE_VIEWED_AT_THIS_MOMENT; - @ClientString(id = 7371, message = "Cannot revoke your participation in the territory war. You can only cancel it up to 20 minutes before a territory war starts.") - public static SystemMessageId CANNOT_REVOKE_YOUR_PARTICIPATION_IN_THE_TERRITORY_WAR_YOU_CAN_ONLY_CANCEL_IT_UP_TO_20_MINUTES_BEFORE_A_TERRITORY_WAR_STARTS; + @ClientString(id = 7371, message = "Cannot revoke your participation in the territory war. You can only cancel it up to 20 min. before a territory war starts.") + public static SystemMessageId CANNOT_REVOKE_YOUR_PARTICIPATION_IN_THE_TERRITORY_WAR_YOU_CAN_ONLY_CANCEL_IT_UP_TO_20_MIN_BEFORE_A_TERRITORY_WAR_STARTS; @ClientString(id = 7372, message = "Cannot learn the skill because you do not meet the level requirement.") public static SystemMessageId CANNOT_LEARN_THE_SKILL_BECAUSE_YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENT; @@ -15882,11 +16557,11 @@ public final class SystemMessageId @ClientString(id = 7393, message = "$s1 days") public static SystemMessageId S1_DAYS_2; - @ClientString(id = 7394, message = "$s1 hours") - public static SystemMessageId S1_HOURS; + @ClientString(id = 7394, message = "$s1 hr.") + public static SystemMessageId S1_HR_4; - @ClientString(id = 7395, message = "$s1 minutes") - public static SystemMessageId S1_MINUTES; + @ClientString(id = 7395, message = "$s1 min.") + public static SystemMessageId S1_MIN_2; @ClientString(id = 7396, message = "Cannot extend the duration of this item.") public static SystemMessageId CANNOT_EXTEND_THE_DURATION_OF_THIS_ITEM; @@ -15939,8 +16614,8 @@ public final class SystemMessageId @ClientString(id = 7412, message = "Cannot deposit this item in this warehouse.") public static SystemMessageId CANNOT_DEPOSIT_THIS_ITEM_IN_THIS_WAREHOUSE; - @ClientString(id = 7413, message = "Succeeded in extending the duration. (Time Left: $s1 day(s) $s2 hour(s) $s3 minute(s))") - public static SystemMessageId SUCCEEDED_IN_EXTENDING_THE_DURATION_TIME_LEFT_S1_DAY_S_S2_HOUR_S_S3_MINUTE_S; + @ClientString(id = 7413, message = "Succeeded in extending the duration. (Time Left: $s1 d. $s2 hr. $s3 min.)") + public static SystemMessageId SUCCEEDED_IN_EXTENDING_THE_DURATION_TIME_LEFT_S1_D_S2_HR_S3_MIN; @ClientString(id = 7414, message = "Cannot participate in a territory war while transformed into a flying object.") public static SystemMessageId CANNOT_PARTICIPATE_IN_A_TERRITORY_WAR_WHILE_TRANSFORMED_INTO_A_FLYING_OBJECT; @@ -16080,8 +16755,8 @@ public final class SystemMessageId @ClientString(id = 7459, message = "Wrong level to use.") public static SystemMessageId WRONG_LEVEL_TO_USE; - @ClientString(id = 7460, message = "It hasn't been 5 seconds since you tried to teleport. Please try teleporting again in 5 seconds.") - public static SystemMessageId IT_HASN_T_BEEN_5_SECONDS_SINCE_YOU_TRIED_TO_TELEPORT_PLEASE_TRY_TELEPORTING_AGAIN_IN_5_SECONDS; + @ClientString(id = 7460, message = "It hasn't been 5 sec. since you tried to teleport. Please try teleporting again in 5 sec.") + public static SystemMessageId IT_HASN_T_BEEN_5_SEC_SINCE_YOU_TRIED_TO_TELEPORT_PLEASE_TRY_TELEPORTING_AGAIN_IN_5_SEC; @ClientString(id = 7461, message = "Cannot pick up the target when in possession of a Territory Ward, Territorial Falg, or a Combat Flag.") public static SystemMessageId CANNOT_PICK_UP_THE_TARGET_WHEN_IN_POSSESSION_OF_A_TERRITORY_WARD_TERRITORIAL_FALG_OR_A_COMBAT_FLAG; @@ -16098,8 +16773,8 @@ public final class SystemMessageId @ClientString(id = 7465, message = "Cannot obtain the item from this location.") public static SystemMessageId CANNOT_OBTAIN_THE_ITEM_FROM_THIS_LOCATION; - @ClientString(id = 7466, message = "Cannot mount/dismount from a strider while in battle.") - public static SystemMessageId CANNOT_MOUNT_DISMOUNT_FROM_A_STRIDER_WHILE_IN_BATTLE; + @ClientString(id = 7466, message = "You cannot mount or dismount from a strider that is in battle.") + public static SystemMessageId YOU_CANNOT_MOUNT_OR_DISMOUNT_FROM_A_STRIDER_THAT_IS_IN_BATTLE; @ClientString(id = 7467, message = "A team that entered first is currently in battle. Please wait until it's over.") public static SystemMessageId A_TEAM_THAT_ENTERED_FIRST_IS_CURRENTLY_IN_BATTLE_PLEASE_WAIT_UNTIL_IT_S_OVER; @@ -16197,7 +16872,7 @@ public final class SystemMessageId } catch (Exception e) { - LOGGER.log(Level.WARNING, "SystemMessageId: Failed field access for '" + field.getName() + "'", e); + LOGGER.log(Level.WARNING, "SystemMessageId: Failed field access for '"+ field.getName() + "'", e); } } } @@ -16269,11 +16944,11 @@ public final class SystemMessageId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: "+ params); } if (params > 10) { - throw new IllegalArgumentException("Maximum param count exceeded: " + params); + throw new IllegalArgumentException("Maximum param count exceeded: "+ params); } if (params != 0) { @@ -16295,6 +16970,6 @@ public final class SystemMessageId @Override public final String toString() { - return "SM[" + getId() + ": " + getName() + "]"; + return "SM["+ getId() + ": "+ getName() + "]"; } } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java index 2dd69a67f8..9c5f36edb2 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java @@ -76,7 +76,7 @@ public final class DlgAnswer implements IClientIncomingPacket AdminCommandHandler.getInstance().useAdminCommand(activeChar, cmd, false); } } - else if ((_messageId == SystemMessageId.C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT.getId()) || (_messageId == SystemMessageId.YOUR_CHARM_OF_COURAGE_IS_TRYING_TO_RESURRECT_YOU_WOULD_YOU_LIKE_TO_RESURRECT_NOW.getId())) + else if ((_messageId == SystemMessageId.C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_YOUR_XP_S2_S3_ACCEPT.getId()) || (_messageId == SystemMessageId.YOUR_CHARM_OF_COURAGE_IS_TRYING_TO_RESURRECT_YOU_WOULD_YOU_LIKE_TO_RESURRECT_NOW.getId())) { activeChar.reviveAnswer(_answer); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/EnterWorld.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/EnterWorld.java index 7e8ba5ef31..a77a3a8174 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/EnterWorld.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/EnterWorld.java @@ -550,7 +550,7 @@ public class EnterWorld implements IClientIncomingPacket if (activeChar.getClanJoinExpiryTime() > System.currentTimeMillis()) { - activeChar.sendPacket(SystemMessageId.YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HOURS); + activeChar.sendPacket(SystemMessageId.YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HR); } // remove combat flag before teleporting diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java index bcb7b1a28a..127e4d596e 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java @@ -596,7 +596,7 @@ public class MultiSellChoose implements IClientIncomingPacket { if (player.getFame() < totalCount) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } return true; @@ -614,7 +614,7 @@ public class MultiSellChoose implements IClientIncomingPacket { if (player.getPcCafePoints() < totalCount) { - player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_ARE_SHORT_OF_PC_POINTS)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_ARE_SHORT_OF_PA_POINTS)); return false; } return true; diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java index 61b88962de..f918eb66c5 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java @@ -221,7 +221,7 @@ public final class RequestCrystallizeItem implements IClientIncomingPacket if (itemToRemove.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(itemToRemove.getEnchantLevel()); sm.addItemName(itemToRemove); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java index 47b144ed9a..c95a377552 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java @@ -184,7 +184,7 @@ public final class RequestDestroyItem implements IClientIncomingPacket { if (itemToRemove.getEnchantLevel() > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(itemToRemove.getEnchantLevel()); sm.addItemName(itemToRemove); client.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java index 9e0ea8767d..24e3d807a3 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java @@ -301,7 +301,7 @@ public final class RequestEnchantItem implements IClientIncomingPacket { if (item.getEnchantLevel() > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); client.sendPacket(sm); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java index 58d564de15..88067f4e20 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java @@ -93,7 +93,7 @@ public final class RequestExSetPledgeCrestLarge implements IClientIncomingPacket { if (clan.getLevel() < 3) { - client.sendPacket(SystemMessageId.A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE); + client.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST); return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java index 766def128f..221428dfec 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java @@ -63,7 +63,7 @@ public class RequestGiveNickName implements IClientIncomingPacket if (activeChar.getClan().getLevel() < 3) { - client.sendPacket(SystemMessageId.A_PLAYER_CAN_ONLY_BE_GRANTED_A_TITLE_IF_THE_CLAN_IS_LEVEL_3_OR_ABOVE); + client.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_GRANT_A_TITLE); return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java index 7907f6e7e8..ff27a3515b 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java @@ -86,7 +86,7 @@ public final class RequestOustPledgeMember implements IClientIncomingPacket clan.setCharPenaltyExpiryTime(System.currentTimeMillis() + (Config.ALT_CLAN_JOIN_DAYS * 86400000)); // 24*60*60*1000 = 86400000 clan.updateClanInDB(); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.CLAN_MEMBER_S1_HAS_BEEN_EXPELLED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_BEEN_DISMISSED); sm.addString(member.getName()); clan.broadcastToOnlineMembers(sm); client.sendPacket(SystemMessageId.YOU_HAVE_SUCCEEDED_IN_EXPELLING_THE_CLAN_MEMBER); @@ -99,7 +99,7 @@ public final class RequestOustPledgeMember implements IClientIncomingPacket if (member.isOnline()) { final L2PcInstance player = member.getPlayerInstance(); - player.sendPacket(SystemMessageId.YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HOURS); + player.sendPacket(SystemMessageId.YOU_HAVE_RECENTLY_BEEN_DISMISSED_FROM_A_CLAN_YOU_ARE_NOT_ALLOWED_TO_JOIN_ANOTHER_CLAN_FOR_24_HR); } } } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java index 792ce9b523..67a82f7c44 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java @@ -77,7 +77,7 @@ public final class RequestPetition implements IClientIncomingPacket if (PetitionManager.getInstance().getPendingPetitionCount() == Config.MAX_PETITIONS_PENDING) { - client.sendPacket(SystemMessageId.THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_LINEAGE2_COM); + client.sendPacket(SystemMessageId.THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_4GAME_COM); return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java index 98e050af9b..66b47c4cf5 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java @@ -62,7 +62,7 @@ public class RequestPledgeDraftListApply implements IClientIncomingPacket { if (ClanEntryManager.getInstance().removeFromWaitingList(activeChar.getObjectId())) { - client.sendPacket(SystemMessageId.ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MINUTES); + client.sendPacket(SystemMessageId.ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MIN); } break; } @@ -72,11 +72,11 @@ public class RequestPledgeDraftListApply implements IClientIncomingPacket if (ClanEntryManager.getInstance().addToWaitingList(activeChar.getObjectId(), pledgeDraftList)) { - client.sendPacket(SystemMessageId.ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MINUTES); + client.sendPacket(SystemMessageId.ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MIN); } else { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MIN_DUE_TO_CANCELLING_YOUR_APPLICATION); sm.addLong(ClanEntryManager.getInstance().getPlayerLockTime(activeChar.getObjectId())); client.sendPacket(sm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java index 876ed4402d..e768db6f6e 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java @@ -87,11 +87,11 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().addToClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MIN); } else { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MIN_DUE_TO_CANCELLING_YOUR_APPLICATION); sm.addLong(ClanEntryManager.getInstance().getClanLockTime(clan.getId())); activeChar.sendPacket(sm); } @@ -101,11 +101,11 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().updateClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MIN); } else { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MIN_DUE_TO_CANCELLING_YOUR_APPLICATION); sm.addLong(ClanEntryManager.getInstance().getClanLockTime(clan.getId())); activeChar.sendPacket(sm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeWaitingApply.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeWaitingApply.java index c18021b700..475286a4d7 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeWaitingApply.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeWaitingApply.java @@ -76,7 +76,7 @@ public class RequestPledgeWaitingApply implements IClientIncomingPacket } else { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MIN_DUE_TO_CANCELLING_YOUR_APPLICATION); sm.addLong(ClanEntryManager.getInstance().getPlayerLockTime(activeChar.getObjectId())); client.sendPacket(sm); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSendPost.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSendPost.java index df6fe09714..99051cef51 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSendPost.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSendPost.java @@ -256,7 +256,7 @@ public final class RequestSendPost implements IClientIncomingPacket if (!client.getFloodProtectors().getSendMail().tryPerformAction("sendmail")) { - activeChar.sendPacket(SystemMessageId.THE_PREVIOUS_MAIL_WAS_FORWARDED_LESS_THAN_1_MINUTE_AGO_AND_THIS_CANNOT_BE_FORWARDED); + activeChar.sendPacket(SystemMessageId.THE_PREVIOUS_MAIL_WAS_FORWARDED_LESS_THAN_1_MIN_AGO_AND_THIS_CANNOT_BE_FORWARDED); return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java index 9b3557e325..0a8fcfd613 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java @@ -98,7 +98,7 @@ public final class RequestSetPledgeCrest implements IClientIncomingPacket { if (clan.getLevel() < 3) { - activeChar.sendPacket(SystemMessageId.A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE); + activeChar.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST); return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java index bbbdb16169..3a932d67fc 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java @@ -108,7 +108,7 @@ public class RequestUnEquipItem implements IClientIncomingPacket SystemMessage sm = null; if (unequipped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequipped[0].getEnchantLevel()); } else diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java index 4643fd942e..6c0b9a5326 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java @@ -74,7 +74,7 @@ public final class RequestWithdrawalPledge implements IClientIncomingPacket clan.broadcastToOnlineMembers(new PledgeShowMemberListDelete(activeChar.getName())); clan.broadcastToOnlineMembers(new ExPledgeCount(clan)); - client.sendPacket(SystemMessageId.YOU_HAVE_WITHDRAWN_FROM_THE_CLAN); + client.sendPacket(SystemMessageId.YOU_HAVE_LEFT_THE_CLAN); client.sendPacket(SystemMessageId.AFTER_LEAVING_OR_HAVING_BEEN_DISMISSED_FROM_A_CLAN_YOU_MUST_WAIT_AT_LEAST_A_DAY_BEFORE_JOINING_ANOTHER_CLAN); } } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/Say2.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/Say2.java index 43f7f3ce83..2bdbc469cf 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/Say2.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/Say2.java @@ -152,7 +152,7 @@ public final class Say2 implements IClientIncomingPacket } else if (Config.BAN_CHAT_CHANNELS.contains(chatType)) { - activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SECONDS); + activeChar.sendPacket(SystemMessageId.CHATTING_IS_CURRENTLY_PROHIBITED_IF_YOU_TRY_TO_CHAT_BEFORE_THE_PROHIBITION_IS_REMOVED_THE_PROHIBITION_TIME_WILL_INCREASE_EVEN_FURTHER_CHATTING_BAN_TIME_REMAINING_S1_SEC); } return; } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/UseItem.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/UseItem.java index 7c24354f3f..11ae75bb99 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/UseItem.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/UseItem.java @@ -306,20 +306,20 @@ public final class UseItem implements IClientIncomingPacket final SystemMessage sm; if (hours > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HOUR_S_S3_MINUTE_S_AND_S4_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_HR_S3_MIN_AND_S4_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addItemName(item); sm.addInt(hours); sm.addInt(minutes); } else if (minutes > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MINUTE_S_S3_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_MIN_S3_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addItemName(item); sm.addInt(minutes); } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SECOND_S_REMAINING_IN_S1_S_RE_USE_TIME); + sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S2_SEC_REMAINING_IN_S1_S_RE_USE_TIME); sm.addItemName(item); } sm.addInt(seconds); diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestCancelCuriousHouse.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestCancelCuriousHouse.java index d97d3e7342..cc2e6d08d9 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestCancelCuriousHouse.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestCancelCuriousHouse.java @@ -48,7 +48,7 @@ public class RequestCancelCuriousHouse implements IClientIncomingPacket if (CeremonyOfChaosManager.getInstance().unregisterPlayer(player)) { - player.sendPacket(SystemMessageId.YOU_HAVE_BEEN_TAKEN_OFF_THE_WAIT_LIST_YOU_MAY_ONLY_ENTER_THE_WAIT_LIST_ON_MON_THURS_EVERY_QUARTER_OF_AN_HOUR_FOR_5_MINUTES_BETWEEN_20_00_AND_23_40_IF_YOU_CANCEL_REGISTRATION_OR_CHOOSE_TO_FORFEIT_AFTER_ENTERING_A_MATCH_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_MUST_WAIT_UNTIL_THE_NEXT_CYCLE_TO_PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS_UPON_ENTERING_THE_ARENA_ALL_BUFFS_EXCLUDING_VITALITY_BUFFS_ARE_REMOVED); + player.sendPacket(SystemMessageId.YOU_HAVE_BEEN_TAKEN_OFF_THE_WAIT_LIST_YOU_MAY_ONLY_ENTER_THE_WAIT_LIST_ON_MON_THURS_EVERY_QUARTER_OF_AN_HR_FOR_5_MIN_BETWEEN_20_00_AND_23_40_IF_YOU_CANCEL_REGISTRATION_OR_CHOOSE_TO_FORFEIT_AFTER_ENTERING_A_MATCH_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_MUST_WAIT_UNTIL_THE_NEXT_CYCLE_TO_PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS_UPON_ENTERING_THE_ARENA_ALL_BUFFS_EXCLUDING_VITALITY_BUFFS_ARE_REMOVED); player.sendPacket(ExCuriousHouseState.IDLE_PACKET); if (CeremonyOfChaosManager.getInstance().getState() == CeremonyOfChaosState.PREPARING_FOR_TELEPORT) diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestJoinCuriousHouse.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestJoinCuriousHouse.java index 133a5cd55f..bc054dea1c 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestJoinCuriousHouse.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/ceremonyofchaos/RequestJoinCuriousHouse.java @@ -58,7 +58,7 @@ public class RequestJoinCuriousHouse implements IClientIncomingPacket if (CeremonyOfChaosManager.getInstance().registerPlayer(player)) { - player.sendPacket(SystemMessageId.YOU_ARE_NOW_ON_THE_WAITING_LIST_YOU_WILL_AUTOMATICALLY_BE_TELEPORTED_WHEN_THE_TOURNAMENT_STARTS_AND_WILL_BE_REMOVED_FROM_THE_WAITING_LIST_IF_YOU_LOG_OUT_IF_YOU_CANCEL_REGISTRATION_WITHIN_THE_LAST_MINUTE_OF_ENTERING_THE_ARENA_AFTER_SIGNING_UP_30_TIMES_OR_MORE_OR_FORFEIT_AFTER_ENTERING_THE_ARENA_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_BECOME_INELIGIBLE_FOR_PARTICIPATION_IN_THE_CEREMONY_OF_CHAOS_UNTIL_THE_NEXT_CYCLE_ALL_THE_BUFFS_EXCEPT_THE_VITALITY_BUFF_WILL_BE_REMOVED_ONCE_YOU_ENTER_THE_ARENAS); + player.sendPacket(SystemMessageId.YOU_ARE_NOW_ON_THE_WAITING_LIST_YOU_WILL_AUTOMATICALLY_BE_TELEPORTED_WHEN_THE_TOURNAMENT_STARTS_AND_WILL_BE_REMOVED_FROM_THE_WAITING_LIST_IF_YOU_LOG_OUT_IF_YOU_CANCEL_REGISTRATION_WITHIN_THE_LAST_MIN_OF_ENTERING_THE_ARENA_AFTER_SIGNING_UP_30_TIMES_OR_MORE_OR_FORFEIT_AFTER_ENTERING_THE_ARENA_30_TIMES_OR_MORE_DURING_A_CYCLE_YOU_BECOME_INELIGIBLE_FOR_PARTICIPATION_IN_THE_CEREMONY_OF_CHAOS_UNTIL_THE_NEXT_CYCLE_ALL_THE_BUFFS_EXCEPT_THE_VITALITY_BUFF_WILL_BE_REMOVED_ONCE_YOU_ENTER_THE_ARENAS); player.sendPacket(SystemMessageId.EXCEPT_THE_VITALITY_BUFF_ALL_BUFFS_INCLUDING_ART_OF_SEDUCTION_WILL_BE_DELETED); player.sendPacket(ExCuriousHouseState.PREPARE_PACKET); } diff --git a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/mentoring/ConfirmMenteeAdd.java b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/mentoring/ConfirmMenteeAdd.java index 27668b0d62..00212a6694 100644 --- a/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/mentoring/ConfirmMenteeAdd.java +++ b/L2J_Mobius_5.0_Salvation/java/com/l2jmobius/gameserver/network/clientpackets/mentoring/ConfirmMenteeAdd.java @@ -128,7 +128,7 @@ public class ConfirmMenteeAdd implements IClientIncomingPacket final int hours = (int) (remainingTime / 3600); remainingTime = remainingTime % 3600; final int minutes = (int) (remainingTime / 60); - final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.YOU_CAN_BOND_WITH_A_NEW_MENTEE_IN_S1_DAY_S_S2_HOUR_S_S3_MINUTE_S); + final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.YOU_CAN_BOND_WITH_A_NEW_MENTEE_IN_S1_D_S2_HR_S3_MIN); msg.addInt(days); msg.addInt(hours); msg.addInt(minutes); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/ImperialTomb/FourSepulchers/FourSepulchers.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/ImperialTomb/FourSepulchers/FourSepulchers.java index b8fd274198..01977006c3 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/ImperialTomb/FourSepulchers/FourSepulchers.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/ImperialTomb/FourSepulchers/FourSepulchers.java @@ -512,7 +512,7 @@ public final class FourSepulchers extends AbstractNpcAI implements IGameXmlReade } if (player.getWeightPenalty() >= 3) { - mem.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + mem.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); return; } } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/MonasteryOfSilence/MonasteryOfSilence.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/MonasteryOfSilence/MonasteryOfSilence.java index f3b9d1a095..3a72d18fbc 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/MonasteryOfSilence/MonasteryOfSilence.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/MonasteryOfSilence/MonasteryOfSilence.java @@ -65,12 +65,14 @@ public final class MonasteryOfSilence extends AbstractNpcAI NpcStringId.S1_WHY_WOULD_YOU_CHOOSE_THE_PATH_OF_DARKNESS, NpcStringId.S1_HOW_DARE_YOU_DEFY_THE_WILL_OF_EINHASAD }; - private static final NpcStringId[] SOLINA_KNIGHTS_MSG = - { - NpcStringId.PUNISH_ALL_THOSE_WHO_TREAD_FOOTSTEPS_IN_THIS_PLACE, - NpcStringId.WE_ARE_THE_SWORD_OF_TRUTH_THE_SWORD_OF_SOLINA, - NpcStringId.WE_RAISE_OUR_BLADES_FOR_THE_GLORY_OF_SOLINA - }; + + // Removed with Etina's Fate. + // private static final NpcStringId[] SOLINA_KNIGHTS_MSG = + // { + // NpcStringId.PUNISH_ALL_THOSE_WHO_TREAD_FOOTSTEPS_IN_THIS_PLACE, + // NpcStringId.WE_ARE_THE_SWORD_OF_TRUTH_THE_SWORD_OF_SOLINA, + // NpcStringId.WE_RAISE_OUR_BLADES_FOR_THE_GLORY_OF_SOLINA + // }; private MonasteryOfSilence() { @@ -94,7 +96,7 @@ public final class MonasteryOfSilence extends AbstractNpcAI { if ((character.getId() == CAPTAIN) && (getRandom(100) < 10) && npc.isScriptValue(0)) { - character.broadcastSay(ChatType.NPC_GENERAL, SOLINA_KNIGHTS_MSG[getRandom(SOLINA_KNIGHTS_MSG.length)]); + // character.broadcastSay(ChatType.NPC_GENERAL, SOLINA_KNIGHTS_MSG[getRandom(SOLINA_KNIGHTS_MSG.length)]); character.setScriptValue(1); startQuestTimer("TIMER", 10000, character, null); } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/PrimevalIsle/PrimevalIsle.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/PrimevalIsle/PrimevalIsle.java index 9827edd5dd..dbe90f5151 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/PrimevalIsle/PrimevalIsle.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/PrimevalIsle/PrimevalIsle.java @@ -475,7 +475,7 @@ public final class PrimevalIsle extends AbstractNpcAI } else { - showOnScreenMsg(player, NpcStringId.WHEN_INVENTORY_WEIGHT_NUMBER_ARE_MORE_THAN_80_THE_LIFE_STONE_FROM_THE_BEGINNING_CANNOT_BE_ACQUIRED, 2, 6000); + showOnScreenMsg(player, NpcStringId.THE_DEINONYCHUS_MESOZOIC_STONE_CANNOT_BE_OBTAINED_WHEN_INVENTORY_WEIGHT_VOLUME_IS_AT_80_OR_MORE, 2, 6000); } } return super.onKill(npc, killer, isSummon); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/TalkingIsland/AwakeningMaster/AwakeningMaster.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/TalkingIsland/AwakeningMaster/AwakeningMaster.java index 2fb0b3964c..6638fa867b 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/TalkingIsland/AwakeningMaster/AwakeningMaster.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/TalkingIsland/AwakeningMaster/AwakeningMaster.java @@ -282,7 +282,7 @@ public final class AwakeningMaster extends AbstractNpcAI if (!player.isInventoryUnder80(false)) { - player.sendPacket(SystemMessageId.YOU_CANNOT_AWAKEN_DUE_TO_YOUR_CURRENT_INVENTORY_WEIGHT_PLEASE_ORGANIZE_YOUR_INVENTORY_AND_TRY_AGAIN_DWARVEN_CHARACTERS_MUST_BE_AT_20_OR_BELOW_THE_INVENTORY_MAX_TO_AWAKEN); + player.sendPacket(SystemMessageId.YOU_CANNOT_AWAKEN_DUE_TO_YOUR_CURRENT_INVENTORY_WEIGHT_PLEASE_REDUCE_YOUR_INVENTORY_WEIGHT_AND_TRY_AGAIN_DWARVES_MUST_BE_AT_20_OR_BELOW_THE_WEIGHT_MAX_TO_AWAKEN); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/bosses/Frintezza/LastImperialTomb.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/bosses/Frintezza/LastImperialTomb.java index da34d1c897..5530871fa5 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/bosses/Frintezza/LastImperialTomb.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/bosses/Frintezza/LastImperialTomb.java @@ -130,9 +130,9 @@ public final class LastImperialTomb extends AbstractInstance static { SKILL_MSG.put(1, NpcStringId.REQUIEM_OF_HATRED); - SKILL_MSG.put(2, NpcStringId.RONDO_OF_SOLITUDE); - SKILL_MSG.put(3, NpcStringId.FRENETIC_TOCCATA); - SKILL_MSG.put(4, NpcStringId.FUGUE_OF_JUBILATION); + SKILL_MSG.put(2, NpcStringId.RONDO_OF_LONELINESS); + SKILL_MSG.put(3, NpcStringId.GALLOPING_TOCCATA); + SKILL_MSG.put(4, NpcStringId.FUGUE_OF_RAPTURE); SKILL_MSG.put(5, NpcStringId.HYPNOTIC_MAZURKA); } // Spawns diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java index 79134a9873..3440c05d5a 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/ClanHallAuctioneer/ClanHallAuctioneer.java @@ -91,9 +91,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -120,9 +120,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -172,9 +172,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return htmltext; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return htmltext; } @@ -329,9 +329,9 @@ public final class ClanHallAuctioneer extends AbstractNpcAI return; } - if (!player.isClanLeader() || (clan.getLevel() < 2)) + if (!player.isClanLeader() || (clan.getLevel() < 4)) { - player.sendPacket(SystemMessageId.ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION); + player.sendPacket(SystemMessageId.YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT); return; } final ClanHall playerClanHall = ClanHallData.getInstance().getClanHallByClan(clan); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/Minigame/Minigame.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/Minigame/Minigame.java index 3fbeed5ae7..d988b39722 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/Minigame/Minigame.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/Minigame/Minigame.java @@ -87,7 +87,8 @@ public final class Minigame extends AbstractNpcAI takeItems(player, UNLIT_TORCHLIGHT, 1); giveItems(player, TORCHLIGHT, 1); - npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.I_LL_START_THE_FURNACE_MECHANISM_WATCH_FOR_THE_PATTERN); + // Removed with Etina's Fate. + // npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.I_LL_START_THE_FURNACE_MECHANISM_WATCH_FOR_THE_PATTERN); room.getManager().setTarget(player); room.setParticipant(player); @@ -163,7 +164,8 @@ public final class Minigame extends AbstractNpcAI } case "hurry_up": { - npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.ONLY_1_MINUTE_LEFT); + // Removed with Etina's Fate. + // npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.ONLY_1_MINUTE_LEFT); startQuestTimer("hurry_up2", 60000, npc, null); break; } @@ -175,7 +177,8 @@ public final class Minigame extends AbstractNpcAI } case "expire": { - npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.TOO_LATE_THE_TORCH_HAS_RUN_OUT_MAYBE_NEXT_TIME); + // Removed with Etina's Fate. + // npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.TOO_LATE_THE_TORCH_HAS_RUN_OUT_MAYBE_NEXT_TIME); } case "end": { @@ -283,7 +286,8 @@ public final class Minigame extends AbstractNpcAI else { addSpawn(TREASURE_BOX, room.getParticipant().getLocation(), true, 0); - room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.THAT_S_IT_YOU_VE_DONE_IT); + // Removed with Etina's Fate. + // room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.THAT_S_IT_YOU_VE_DONE_IT); room.setCurrentPot(0); room.burnThemAll(); startQuestTimer("off", 2000, room.getManager(), null); @@ -292,7 +296,8 @@ public final class Minigame extends AbstractNpcAI } else if (room.getAttemptNumber() == MAX_ATTEMPTS) { - room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.I_VE_FAILED_ANY_FURTHER_ATTEMPTS_WOULD_BE_WASTEFUL); + // Removed with Etina's Fate. + // room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.I_VE_FAILED_ANY_FURTHER_ATTEMPTS_WOULD_BE_WASTEFUL); room.burnThemAll(); startQuestTimer("off", 2000, room.getManager(), null); room.getParticipant().removeListenerIf(EventType.ON_CREATURE_SKILL_USE, listener -> listener.getOwner() == room); @@ -300,7 +305,8 @@ public final class Minigame extends AbstractNpcAI } else if (room.getAttemptNumber() < MAX_ATTEMPTS) { - room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.TOO_BAD_I_WILL_NOT_GIVE_UP_ON_THIS_THOUGH); + // Removed with Etina's Fate. + // room.getManager().broadcastSay(ChatType.NPC_GENERAL, NpcStringId.TOO_BAD_I_WILL_NOT_GIVE_UP_ON_THIS_THOUGH); room.burnThemAll(); startQuestTimer("off", 2000, room.getManager(), null); room.setAttemptNumber(room.getAttemptNumber() + 1); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/MonumentOfHeroes/MonumentOfHeroes.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/MonumentOfHeroes/MonumentOfHeroes.java index 6c25cbfdcf..887d444c1d 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/MonumentOfHeroes/MonumentOfHeroes.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/MonumentOfHeroes/MonumentOfHeroes.java @@ -109,7 +109,7 @@ public final class MonumentOfHeroes extends AbstractNpcAI } else { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } } else @@ -127,7 +127,7 @@ public final class MonumentOfHeroes extends AbstractNpcAI } else { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } } else @@ -151,7 +151,7 @@ public final class MonumentOfHeroes extends AbstractNpcAI } else { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } } else @@ -170,7 +170,7 @@ public final class MonumentOfHeroes extends AbstractNpcAI } else if (!player.isInventoryUnder80(false)) { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } else { diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/OlyManager/OlyManager.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/OlyManager/OlyManager.java index 4fc084142f..a4f5abf5f5 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/OlyManager/OlyManager.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/others/OlyManager/OlyManager.java @@ -153,7 +153,7 @@ public final class OlyManager extends AbstractNpcAI implements IBypassHandler } else if (!player.isInventoryUnder80(false)) { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } else if (event.equals("register1v1")) { @@ -206,7 +206,7 @@ public final class OlyManager extends AbstractNpcAI implements IBypassHandler } else { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); } break; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/HappyHours/HappyHours.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/HappyHours/HappyHours.java index bdb9d72fae..70f5d92f6d 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/HappyHours/HappyHours.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/HappyHours/HappyHours.java @@ -80,7 +80,7 @@ public class HappyHours extends LongTimeEvent { _lastRewardTime = System.currentTimeMillis(); final ExShowScreenMessage screenMsg = new ExShowScreenMessage("You obtained 20 Sibi's coins.", ExShowScreenMessage.TOP_CENTER, 7000, 0, true, true); - final SystemMessage systemMsg = SystemMessage.getSystemMessage(SystemMessageId.YOU_OBTAINED_S1_SIBIS_COINS); + final SystemMessage systemMsg = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_SIBI_S_COINS); systemMsg.addInt(20); for (L2PcInstance plr : L2World.getInstance().getPlayers()) { diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java index f90f95264b..9c031031a4 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java @@ -120,7 +120,7 @@ public final class MasterOfEnchanting extends LongTimeEvent final int minutes = ((int) remainingTime % 3600) / 60; if (hours > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED); sm.addInt(hours); sm.addInt(minutes); player.sendPacket(sm); @@ -128,7 +128,7 @@ public final class MasterOfEnchanting extends LongTimeEvent } else if (minutes > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED); sm.addInt(minutes); player.sendPacket(sm); htmltext = "32599-scroll24.htm"; diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/bypasshandlers/QuestLink.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/bypasshandlers/QuestLink.java index c60cdea707..02f08f6bc5 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/bypasshandlers/QuestLink.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/bypasshandlers/QuestLink.java @@ -199,7 +199,7 @@ public class QuestLink implements IBypassHandler { if (((q.getId() >= 1) && (q.getId() < 20000)) && ((player.getWeightPenalty() >= 3) || !player.isInventoryUnder90(true))) { - player.sendPacket(SystemMessageId.UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); + player.sendPacket(SystemMessageId.NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java index ca9dd2fabb..ee75d2fa3f 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatGeneral.java @@ -83,7 +83,7 @@ public final class ChatGeneral implements IChatHandler if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_USE_GENERAL_CHAT_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.GENERAL_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatShout.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatShout.java index 0f1ff46dac..22c8f6cbc3 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatShout.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatShout.java @@ -54,7 +54,7 @@ public final class ChatShout implements IChatHandler } if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_SHOUT_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.SHOUT_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java index 1aec497bbc..0764ef3000 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatTrade.java @@ -54,7 +54,7 @@ public final class ChatTrade implements IChatHandler } if (activeChar.getLevel() < 20) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_USE_TRADE_CHAT_AFTER_LV_S1).addInt(20)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.TRADE_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER).addInt(20)); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java index 89e768c78d..378d24fe51 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWhisper.java @@ -109,7 +109,7 @@ public final class ChatWhisper implements IChatHandler } if ((activeChar.getLevel() < Config.MINIMUM_CHAT_LEVEL) && !activeChar.getWhisperers().contains(receiver.getObjectId()) && !activeChar.canOverrideCond(PcCondOverride.CHAT_CONDITIONS)) { - activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.PLAYERS_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_A_WHISPER_UNTIL_AFTER_LV_S1).addInt(Config.MINIMUM_CHAT_LEVEL)); + activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NON_PREMIUM_USERS_LV_S1_OR_LOWER_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_IT).addInt(Config.MINIMUM_CHAT_LEVEL)); return; } if (!BlockList.isBlocked(receiver, activeChar)) diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java index e56fad0938..28237b8960 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/chathandlers/ChatWorld.java @@ -76,7 +76,7 @@ public final class ChatWorld implements IChatHandler } else if (activeChar.getWorldChatUsed() >= activeChar.getWorldChatPoints()) { - activeChar.sendPacket(SystemMessageId.YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_A_NEW_DAY_STARTS_EVERY_DAY_AT_18_30); + activeChar.sendPacket(SystemMessageId.YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_THE_WORLD_CHAT_QUOTA_RESETS_AT_7_AM_EVERY_DAY); } else { diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java index fb13b89a3e..420192d12e 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/ConvertItem.java @@ -108,7 +108,7 @@ public final class ConvertItem extends AbstractEffect final SystemMessage sm; if (unequippedItem.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequippedItem.getEnchantLevel()); sm.addItemName(unequippedItem); } @@ -153,7 +153,7 @@ public final class ConvertItem extends AbstractEffect } else { - msg = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + msg = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); msg.addItemName(newItem); } player.sendPacket(msg); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java index 8fb26ea974..61b368b2db 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/handlers/effecthandlers/Disarmor.java @@ -81,7 +81,7 @@ public final class Disarmor extends AbstractEffect SystemMessage sm = null; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -129,7 +129,7 @@ public final class Disarmor extends AbstractEffect } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(item); } player.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10393_KekropusLetterAClueCompleted/Q10393_KekropusLetterAClueCompleted.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10393_KekropusLetterAClueCompleted/Q10393_KekropusLetterAClueCompleted.java index df88090b6a..f0a3cc76cf 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10393_KekropusLetterAClueCompleted/Q10393_KekropusLetterAClueCompleted.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10393_KekropusLetterAClueCompleted/Q10393_KekropusLetterAClueCompleted.java @@ -94,7 +94,7 @@ public final class Q10393_KekropusLetterAClueCompleted extends LetterQuest giveItems(player, EAC, 4); giveStoryQuestReward(npc, player); addExpAndSp(player, 483840, 116); - showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_52, ExShowScreenMessage.TOP_CENTER, 6000); + showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_56, ExShowScreenMessage.TOP_CENTER, 6000); htmltext = event; } break; diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java index 81aa580e7e..b5d76138cb 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10521_QueenNavarisLetterVarkaSilenosBarracks/Q10521_QueenNavarisLetterVarkaSilenosBarracks.java @@ -93,7 +93,7 @@ public class Q10521_QueenNavarisLetterVarkaSilenosBarracks extends LetterQuest { addExpAndSp(player, 1277640, 306); giveStoryQuestReward(npc, player); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(QuestType.ONE_TIME, true); htmltext = event; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java index 4a4a71dddb..87d371846a 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10525_QueenNavarisLetterKetraOrcOutpost/Q10525_QueenNavarisLetterKetraOrcOutpost.java @@ -92,7 +92,7 @@ public class Q10525_QueenNavarisLetterKetraOrcOutpost extends LetterQuest { addExpAndSp(player, 1277640, 306); giveStoryQuestReward(npc, player); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(QuestType.ONE_TIME, true); htmltext = event; } diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10774_LettersFromTheQueenCrumaTowerPart2/Q10774_LettersFromTheQueenCrumaTowerPart2.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10774_LettersFromTheQueenCrumaTowerPart2/Q10774_LettersFromTheQueenCrumaTowerPart2.java index 4cd18e72da..54df4b73e9 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10774_LettersFromTheQueenCrumaTowerPart2/Q10774_LettersFromTheQueenCrumaTowerPart2.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10774_LettersFromTheQueenCrumaTowerPart2/Q10774_LettersFromTheQueenCrumaTowerPart2.java @@ -90,7 +90,7 @@ public final class Q10774_LettersFromTheQueenCrumaTowerPart2 extends LetterQuest giveItems(player, ENCHANT_ARMOR_C, 2); giveStoryQuestReward(npc, player); addExpAndSp(player, 483840, 116); - showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_52, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.GROW_STRONGER_HERE_NUNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_56, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(false, true); } break; diff --git a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java index 91d595b696..89e481deff 100644 --- a/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java +++ b/L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/quests/Q10798_LettersFromTheQueenDragonValley/Q10798_LettersFromTheQueenDragonValley.java @@ -91,7 +91,7 @@ public class Q10798_LettersFromTheQueenDragonValley extends LetterQuest giveItems(player, EWS, 2); giveStoryQuestReward(npc, player); addExpAndSp(player, 1277640, 306); - showOnScreenMsg(player, NpcStringId.YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85, ExShowScreenMessage.TOP_CENTER, 8000); + showOnScreenMsg(player, NpcStringId.YOU_HAVE_COMPLETED_QUEEN_NAVARI_S_LETTER, ExShowScreenMessage.TOP_CENTER, 8000); qs.exitQuest(false, true); htmltext = event; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java index e808c70557..a51c7f8893 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java @@ -314,7 +314,7 @@ public class CeremonyOfChaosManager extends AbstractEventManager= 3)) { - player.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_NUMBER_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); + player.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_AMOUNT_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); player.sendPacket(SystemMessageId.CANCELLATION_OF_SALE_HAS_FAILED_BECAUSE_REQUIREMENTS_ARE_NOT_MET); player.sendPacket(ExResponseCommissionDelete.FAILED); return; @@ -351,7 +351,7 @@ public final class CommissionManager if (!player.isInventoryUnder80(false) || (player.getWeightPenalty() >= 3)) { - player.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_NUMBER_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); + player.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_AMOUNT_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); player.sendPacket(ExResponseCommissionBuyItem.FAILED); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/PcCafePointsManager.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/PcCafePointsManager.java index 3450c69ebe..acbb0c75f3 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/PcCafePointsManager.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/instancemanager/PcCafePointsManager.java @@ -41,7 +41,7 @@ public final class PcCafePointsManager if (player.getPcCafePoints() >= Config.PC_CAFE_MAX_POINTS) { - final SystemMessage message = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PC_POINTS); + final SystemMessage message = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PA_POINTS); player.sendPacket(message); return; } @@ -67,11 +67,11 @@ public final class PcCafePointsManager if (Config.PC_CAFE_ENABLE_DOUBLE_POINTS && (Rnd.get(100) < Config.PC_CAFE_DOUBLE_POINTS_CHANCE)) { points *= 2; - message = SystemMessage.getSystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_EARNED_S1_PC_POINT_S); + message = SystemMessage.getSystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_EARNED_S1_PA_POINT_S); } else { - message = SystemMessage.getSystemMessage(SystemMessageId.YOU_EARNED_S1_PC_POINT_S); + message = SystemMessage.getSystemMessage(SystemMessageId.YOU_EARNED_S1_PA_POINT_S); } if ((player.getPcCafePoints() + points) > Config.PC_CAFE_MAX_POINTS) { diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/ClanWar.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/ClanWar.java index a6624e5179..28c3b94c9a 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/ClanWar.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/ClanWar.java @@ -155,11 +155,11 @@ public final class ClanWar { _state = ClanWarState.MUTUAL; - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(victimClan.getName()); killerClan.broadcastToOnlineMembers(sm); - sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(killerClan.getName()); victimClan.broadcastToOnlineMembers(sm); @@ -234,11 +234,11 @@ public final class ClanWar { _state = ClanWarState.MUTUAL; - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(attacker.getName()); attacked.broadcastToOnlineMembers(sm); - sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); + sm = SystemMessage.getSystemMessage(SystemMessageId.A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND); sm.addString(attacked.getName()); attacker.broadcastToOnlineMembers(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CombatFlag.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CombatFlag.java index 6bb59c8fba..89abcb268d 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CombatFlag.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CombatFlag.java @@ -79,7 +79,7 @@ public class CombatFlag // Equip with the weapon _item = item; _player.getInventory().equipItem(_item); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(_item); _player.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CursedWeapon.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CursedWeapon.java index 1f6ab1c29a..236231d2b0 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CursedWeapon.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/CursedWeapon.java @@ -436,7 +436,7 @@ public class CursedWeapon implements INamable _item = item; // L2ItemInstance[] items = _player.getInventory().equipItem(_item); - SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(_item); _player.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/Fishing.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/Fishing.java index 8556a75cae..6c11402a26 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/Fishing.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/Fishing.java @@ -146,7 +146,7 @@ public class Fishing { if (minPlayerLevel == 85) { - _player.sendPacket(SystemMessageId.FISHING_IS_AVAILABLE_TO_CHARACTERS_LV_85_OR_ABOVE); + _player.sendPacket(SystemMessageId.FISHING_IS_AVAILABLE_TO_PREMIUM_USERS_ONLY); } else // In case of custom fishing level. { diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/L2Clan.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/L2Clan.java index 4f1d797d6f..32e8787555 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/L2Clan.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/L2Clan.java @@ -2252,7 +2252,7 @@ public class L2Clan implements IIdentifiable, INamable } else { - activeChar.sendPacket(SystemMessageId.THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME); + activeChar.sendPacket(SystemMessageId.THIS_CLAN_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME); } return false; } @@ -2746,7 +2746,7 @@ public class L2Clan implements IIdentifiable, INamable } // notify all the members about it - broadcastToOnlineMembers(SystemMessage.getSystemMessage(SystemMessageId.YOUR_CLAN_S_LEVEL_HAS_INCREASED)); + broadcastToOnlineMembers(SystemMessage.getSystemMessage(SystemMessageId.YOUR_CLAN_LEVEL_HAS_RISEN)); broadcastToOnlineMembers(new PledgeShowInfoUpdate(this)); } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index 5f3eda0c11..f687f438e0 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -2186,7 +2186,7 @@ public final class L2PcInstance extends L2Playable { if (item.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } @@ -2222,7 +2222,7 @@ public final class L2PcInstance extends L2Playable } else { - sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EQUIPPED_YOUR_S1); + sm = SystemMessage.getSystemMessage(SystemMessageId.EQUIPPED_S1); sm.addItemName(item); } sendPacket(sm); @@ -2362,7 +2362,7 @@ public final class L2PcInstance extends L2Playable } setLvlJoinedAcademy(0); // oust pledge member from the academy, cuz he has finished his 2nd class transfer - final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.CLAN_MEMBER_S1_HAS_BEEN_EXPELLED); + final SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_BEEN_DISMISSED); msg.addPcName(this); _clan.broadcastToOnlineMembers(msg); _clan.broadcastToOnlineMembers(new PledgeShowMemberListDelete(getName())); @@ -5958,7 +5958,7 @@ public final class L2PcInstance extends L2Playable final SystemMessage sm; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -5998,7 +5998,7 @@ public final class L2PcInstance extends L2Playable SystemMessage sm = null; if (unequiped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequiped[0].getEnchantLevel()); sm.addItemName(unequiped[0]); } @@ -6064,21 +6064,21 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden when dead sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_WHILE_DEAD); return false; } else if (pet.isDead()) { // A dead strider cannot be ridden. sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_DEAD_STRIDER_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_DEAD_MOUNT); return false; } else if (pet.isInCombat() || pet.isRooted()) { // A strider in battle cannot be ridden sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_THAT_IS_IN_BATTLE); return false; } @@ -6086,14 +6086,14 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden while in battle sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE); + sendPacket(SystemMessageId.YOU_CANNOT_USE_A_MOUNT_WHILE_IN_BATTLE); return false; } else if (_waitTypeSitting) { // A strider can be ridden only when standing sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING); + sendPacket(SystemMessageId.YOU_MUST_BE_STANDING_TO_USE_A_MOUNT); return false; } else if (isFishing()) @@ -6119,7 +6119,7 @@ public final class L2PcInstance extends L2Playable else if (pet.isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY); return false; } else if (!Util.checkIfInRange(200, this, pet, true)) @@ -6148,7 +6148,7 @@ public final class L2PcInstance extends L2Playable else if (isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY); return false; } else @@ -9463,7 +9463,7 @@ public final class L2PcInstance extends L2Playable } if (isDead() || isAlikeDead() || ((getCurrentHp() < (getMaxHp() / 2)) || (getCurrentMp() < (getMaxMp() / 2)))) { - _noDuelReason = SystemMessageId.C1_CANNOT_DUEL_BECAUSE_C1_S_HP_OR_MP_IS_BELOW_50; + _noDuelReason = SystemMessageId.CANNOT_DUEL_BECAUSE_C1_S_HP_OR_MP_IS_BELOW_50; return false; } if (_isInDuel || _startingDuel) @@ -10296,7 +10296,7 @@ public final class L2PcInstance extends L2Playable } final long restoreExp = Math.round(((_expBeforeDeath - getExp()) * _revivePower) / 100); - final ConfirmDlg dlg = new ConfirmDlg(SystemMessageId.C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT.getId()); + final ConfirmDlg dlg = new ConfirmDlg(SystemMessageId.C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_XP_S2_S3_ACCEPT.getId()); dlg.addPcName(reviver); dlg.addLong(restoreExp); dlg.addInt(power); @@ -11726,7 +11726,7 @@ public final class L2PcInstance extends L2Playable if (equippedItem.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(equippedItem.getEnchantLevel()); sm.addItemName(equippedItem); } @@ -14082,7 +14082,7 @@ public final class L2PcInstance extends L2Playable } if (oldLevel < getFactionLevel(faction)) { - sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THE_FACTION_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK).addFactionName(faction.getId())); + sendPacket(SystemMessage.getSystemMessage(SystemMessageId.THE_AMITY_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK).addFactionName(faction.getId())); } } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java index f8ecc45647..69506f563b 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java @@ -308,7 +308,7 @@ public class L2VillageMasterInstance extends L2NpcInstance final L2Clan clan = player.getClan(); if (clan.getAllyId() != 0) { - player.sendPacket(SystemMessageId.YOU_CANNOT_DISPERSE_THE_CLANS_IN_YOUR_ALLIANCE); + player.sendPacket(SystemMessageId.THE_OPPOSING_CLAN_HAS_REQUESTED_TO_DISSOLVE); return; } if (clan.isAtWar()) diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/status/PcStatus.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/status/PcStatus.java index 813634b659..b4c0097947 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/status/PcStatus.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/actor/status/PcStatus.java @@ -181,7 +181,7 @@ public class PcStatus extends PlayableStatus mpDam = (int) (value - mpDam); if (mpDam > getActiveChar().getCurrentMp()) { - getActiveChar().sendPacket(SystemMessageId.MP_BECAME_0_AND_THE_ARCANE_SHIELD_IS_DISAPPEARING); + getActiveChar().sendPacket(SystemMessageId.MP_HAS_REACHED_0_THE_MANA_ARMOR_HAS_DISAPPEARED); getActiveChar().stopSkillEffects(true, 1556); value = mpDam - getActiveChar().getCurrentMp(); getActiveChar().setCurrentMp(0); @@ -189,7 +189,7 @@ public class PcStatus extends PlayableStatus else { getActiveChar().reduceCurrentMp(mpDam); - final SystemMessage smsg = SystemMessage.getSystemMessage(SystemMessageId.ARCANE_SHIELD_DECREASED_YOUR_MP_BY_S1_INSTEAD_OF_HP); + final SystemMessage smsg = SystemMessage.getSystemMessage(SystemMessageId.MANA_ARMOR_DECREASED_YOUR_MP_BY_S1_INSTEAD_OF_HP); smsg.addInt(mpDam); getActiveChar().sendPacket(smsg); return; diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java index 08fabd97c3..f316b3d320 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java @@ -33,7 +33,7 @@ public final class ConditionGroupMin extends Condition public ConditionGroupMin(InstanceTemplate template, StatsSet parameters, boolean onlyLeader, boolean showMessageAndHtml) { super(template, parameters, true, showMessageAndHtml); - setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE, (msg, player) -> msg.addInt(getLimit())); + setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE, (msg, player) -> msg.addInt(getLimit())); } @Override diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/olympiad/OlympiadManager.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/olympiad/OlympiadManager.java index 892f3c944b..ae00540e06 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/olympiad/OlympiadManager.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/olympiad/OlympiadManager.java @@ -190,7 +190,7 @@ public class OlympiadManager final int charId = player.getObjectId(); if (Olympiad.getInstance().getRemainingWeeklyMatches(charId) < 1) { - player.sendPacket(SystemMessageId.THE_MAXIMUM_MATCHES_YOU_CAN_PARTICIPATE_IN_1_WEEK_IS_30); + player.sendPacket(SystemMessageId.YOU_MAY_PARTICIPATE_IN_UP_TO_30_MATCHES_PER_WEEK); return false; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java index a3280b6e6e..10c5f6a51a 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/model/skills/SkillCaster.java @@ -355,7 +355,7 @@ public class SkillCaster implements Runnable { if (player.getFame() < _skill.getFamePointConsume()) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } player.setFame(player.getFame() - _skill.getFamePointConsume()); @@ -1057,7 +1057,7 @@ public class SkillCaster implements Runnable if (player.getFame() < skill.getFamePointConsume()) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/NpcStringId.java index f4c2f04068..2a388f824d 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/NpcStringId.java @@ -43,8 +43,8 @@ public final class NpcStringId @ClientString(id = 4, message = "none") public static NpcStringId NONE_2; - @ClientString(id = 5, message = "Withdraw the fee for the next time at $s1/$s2 $s3") - public static NpcStringId WITHDRAW_THE_FEE_FOR_THE_NEXT_TIME_AT_S1_S2_S3; + @ClientString(id = 5, message = "Next payment on $s1/$s2 at $s3") + public static NpcStringId NEXT_PAYMENT_ON_S1_S2_AT_S3; @ClientString(id = 6, message = "($s1 Adena/$s2 Day(s))") public static NpcStringId FONT_COLOR_FFAABB_S1_FONT_ADENA_S2_DAY_S; @@ -67,8 +67,8 @@ public final class NpcStringId @ClientString(id = 102, message = "Letters of Love (In Progress)") public static NpcStringId LETTERS_OF_LOVE_IN_PROGRESS; - @ClientString(id = 103, message = "Letters of Love (Done)") - public static NpcStringId LETTERS_OF_LOVE_DONE; + @ClientString(id = 103, message = "Letters of Love (Completed)") + public static NpcStringId LETTERS_OF_LOVE_COMPLETED; @ClientString(id = 201, message = "What Women Want") public static NpcStringId WHAT_WOMEN_WANT; @@ -76,8 +76,8 @@ public final class NpcStringId @ClientString(id = 202, message = "What Women Want (In Progress)") public static NpcStringId WHAT_WOMEN_WANT_IN_PROGRESS; - @ClientString(id = 203, message = "What Women Want (Done)") - public static NpcStringId WHAT_WOMEN_WANT_DONE; + @ClientString(id = 203, message = "What Women Want (Completed)") + public static NpcStringId WHAT_WOMEN_WANT_COMPLETED; @ClientString(id = 301, message = "Will the Seal be Broken?") public static NpcStringId WILL_THE_SEAL_BE_BROKEN; @@ -85,8 +85,8 @@ public final class NpcStringId @ClientString(id = 302, message = "Will the Seal be Broken? (In Progress)") public static NpcStringId WILL_THE_SEAL_BE_BROKEN_IN_PROGRESS; - @ClientString(id = 303, message = "Will the Seal be Broken? (Done)") - public static NpcStringId WILL_THE_SEAL_BE_BROKEN_DONE; + @ClientString(id = 303, message = "Will the Seal be Broken? (Completed)") + public static NpcStringId WILL_THE_SEAL_BE_BROKEN_COMPLETED; @ClientString(id = 401, message = "Long Live the Pa'agrio Lord") public static NpcStringId LONG_LIVE_THE_PA_AGRIO_LORD; @@ -94,8 +94,8 @@ public final class NpcStringId @ClientString(id = 402, message = "Long Live the Pa'agrio Lord (In Progress)") public static NpcStringId LONG_LIVE_THE_PA_AGRIO_LORD_IN_PROGRESS; - @ClientString(id = 403, message = "Long Live the Pa'agrio Lord (Done)") - public static NpcStringId LONG_LIVE_THE_PA_AGRIO_LORD_DONE; + @ClientString(id = 403, message = "Long Live the Pa'agrio Lord (Completed)") + public static NpcStringId LONG_LIVE_THE_PA_AGRIO_LORD_COMPLETED; @ClientString(id = 501, message = "Miner's Favor") public static NpcStringId MINER_S_FAVOR; @@ -103,8 +103,8 @@ public final class NpcStringId @ClientString(id = 502, message = "Miner's Favor (In Progress)") public static NpcStringId MINER_S_FAVOR_IN_PROGRESS; - @ClientString(id = 503, message = "Miner's Favor (Done)") - public static NpcStringId MINER_S_FAVOR_DONE; + @ClientString(id = 503, message = "Miner's Favor (Completed)") + public static NpcStringId MINER_S_FAVOR_COMPLETED; @ClientString(id = 601, message = "Step Into the Future") public static NpcStringId STEP_INTO_THE_FUTURE; @@ -112,8 +112,8 @@ public final class NpcStringId @ClientString(id = 602, message = "Step Into the Future (In Progress)") public static NpcStringId STEP_INTO_THE_FUTURE_IN_PROGRESS; - @ClientString(id = 603, message = "Step Into the Future (Done)") - public static NpcStringId STEP_INTO_THE_FUTURE_DONE; + @ClientString(id = 603, message = "Step Into the Future (Completed)") + public static NpcStringId STEP_INTO_THE_FUTURE_COMPLETED; @ClientString(id = 701, message = "A Trip Begins") public static NpcStringId A_TRIP_BEGINS; @@ -121,8 +121,8 @@ public final class NpcStringId @ClientString(id = 702, message = "A Trip Begins (In Progress)") public static NpcStringId A_TRIP_BEGINS_IN_PROGRESS; - @ClientString(id = 703, message = "A Trip Begins (Done)") - public static NpcStringId A_TRIP_BEGINS_DONE; + @ClientString(id = 703, message = "A Trip Begins (Completed)") + public static NpcStringId A_TRIP_BEGINS_COMPLETED; @ClientString(id = 801, message = "An Adventure Begins") public static NpcStringId AN_ADVENTURE_BEGINS; @@ -130,8 +130,8 @@ public final class NpcStringId @ClientString(id = 802, message = "An Adventure Begins (In Progress)") public static NpcStringId AN_ADVENTURE_BEGINS_IN_PROGRESS; - @ClientString(id = 803, message = "An Adventure Begins (Done)") - public static NpcStringId AN_ADVENTURE_BEGINS_DONE; + @ClientString(id = 803, message = "An Adventure Begins (Completed)") + public static NpcStringId AN_ADVENTURE_BEGINS_COMPLETED; @ClientString(id = 901, message = "Into the City of Humans") public static NpcStringId INTO_THE_CITY_OF_HUMANS; @@ -139,8 +139,8 @@ public final class NpcStringId @ClientString(id = 902, message = "Into the City of Humans (In Progress)") public static NpcStringId INTO_THE_CITY_OF_HUMANS_IN_PROGRESS; - @ClientString(id = 903, message = "Into the City of Humans (Done)") - public static NpcStringId INTO_THE_CITY_OF_HUMANS_DONE; + @ClientString(id = 903, message = "Into the City of Humans (Completed)") + public static NpcStringId INTO_THE_CITY_OF_HUMANS_COMPLETED; @ClientString(id = 1001, message = "Into the World") public static NpcStringId INTO_THE_WORLD; @@ -148,8 +148,8 @@ public final class NpcStringId @ClientString(id = 1002, message = "Into the World (In Progress)") public static NpcStringId INTO_THE_WORLD_IN_PROGRESS; - @ClientString(id = 1003, message = "Into the World (Done)") - public static NpcStringId INTO_THE_WORLD_DONE; + @ClientString(id = 1003, message = "Into the World (Completed)") + public static NpcStringId INTO_THE_WORLD_COMPLETED; @ClientString(id = 1101, message = "Secret Meeting with Ketra Orcs") public static NpcStringId SECRET_MEETING_WITH_KETRA_ORCS; @@ -157,8 +157,8 @@ public final class NpcStringId @ClientString(id = 1102, message = "Secret Meeting with Ketra Orcs (In Progress)") public static NpcStringId SECRET_MEETING_WITH_KETRA_ORCS_IN_PROGRESS; - @ClientString(id = 1103, message = "Secret Meeting with Ketra Orcs (Done)") - public static NpcStringId SECRET_MEETING_WITH_KETRA_ORCS_DONE; + @ClientString(id = 1103, message = "Secret Meeting with Ketra Orcs (Completed)") + public static NpcStringId SECRET_MEETING_WITH_KETRA_ORCS_COMPLETED; @ClientString(id = 1104, message = "Secret Meeting with Ketra Orcs") public static NpcStringId SECRET_MEETING_WITH_KETRA_ORCS_2; @@ -169,8 +169,8 @@ public final class NpcStringId @ClientString(id = 1202, message = "Secret Meeting with Varka Silenos (In Progress)") public static NpcStringId SECRET_MEETING_WITH_VARKA_SILENOS_IN_PROGRESS; - @ClientString(id = 1203, message = "Secret Meeting with Varka Silenos (Done)") - public static NpcStringId SECRET_MEETING_WITH_VARKA_SILENOS_DONE; + @ClientString(id = 1203, message = "Secret Meeting with Varka Silenos (Completed)") + public static NpcStringId SECRET_MEETING_WITH_VARKA_SILENOS_COMPLETED; @ClientString(id = 1204, message = "Secret Meeting with Varka Silenos") public static NpcStringId SECRET_MEETING_WITH_VARKA_SILENOS_2; @@ -193,8 +193,8 @@ public final class NpcStringId @ClientString(id = 1402, message = "Whereabouts of the Archaeologist (In Progress)") public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST_IN_PROGRESS; - @ClientString(id = 1403, message = "Whereabouts of the Archaeologist (Done)") - public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST_DONE; + @ClientString(id = 1403, message = "Whereabouts of the Archaeologist (Completed)") + public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST_COMPLETED; @ClientString(id = 1404, message = "Whereabouts of the Archaeologist") public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST_2; @@ -241,8 +241,8 @@ public final class NpcStringId @ClientString(id = 1802, message = "Meeting with the Golden Ram (In Progress)") public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM_IN_PROGRESS; - @ClientString(id = 1803, message = "Meeting with the Golden Ram (Done)") - public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM_DONE; + @ClientString(id = 1803, message = "Meeting with the Golden Ram (Completed)") + public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM_COMPLETED; @ClientString(id = 1804, message = "Meeting with the Golden Ram") public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM_2; @@ -289,7 +289,7 @@ public final class NpcStringId @ClientString(id = 2010, message = "Don't worry about me.") public static NpcStringId DON_T_WORRY_ABOUT_ME; - @ClientString(id = 2011, message = "Thank you. That was delicious! ") + @ClientString(id = 2011, message = "Thank you. That was delicious!") public static NpcStringId THANK_YOU_THAT_WAS_DELICIOUS; @ClientString(id = 2012, message = "I think I am starting to like you!") @@ -328,7 +328,7 @@ public final class NpcStringId @ClientString(id = 2023, message = "I don't feel so good... Oh, my mind is very troubled...!") public static NpcStringId I_DON_T_FEEL_SO_GOOD_OH_MY_MIND_IS_VERY_TROUBLED; - @ClientString(id = 2024, message = "$s1, so what do you think it is like to be tamed? ") + @ClientString(id = 2024, message = "$s1, so what do you think it is like to be tamed?") public static NpcStringId S1_SO_WHAT_DO_YOU_THINK_IT_IS_LIKE_TO_BE_TAMED; @ClientString(id = 2025, message = "$s1, whenever I see spice, I think I will miss your hand that used to feed it to me.") @@ -379,8 +379,8 @@ public final class NpcStringId @ClientString(id = 2102, message = "Hidden Truth (In Progress)") public static NpcStringId HIDDEN_TRUTH_IN_PROGRESS; - @ClientString(id = 2103, message = "Hidden Truth (Done)") - public static NpcStringId HIDDEN_TRUTH_DONE; + @ClientString(id = 2103, message = "Hidden Truth (Completed)") + public static NpcStringId HIDDEN_TRUTH_COMPLETED; @ClientString(id = 2104, message = "Hidden Truth") public static NpcStringId HIDDEN_TRUTH_2; @@ -403,8 +403,8 @@ public final class NpcStringId @ClientString(id = 2202, message = "Tragedy in Von Hellmann Forest (In Progress)") public static NpcStringId TRAGEDY_IN_VON_HELLMANN_FOREST_IN_PROGRESS; - @ClientString(id = 2203, message = "Tragedy in Von Hellmann Forest (Done)") - public static NpcStringId TRAGEDY_IN_VON_HELLMANN_FOREST_DONE; + @ClientString(id = 2203, message = "Tragedy in Von Hellmann Forest (Completed)") + public static NpcStringId TRAGEDY_IN_VON_HELLMANN_FOREST_COMPLETED; @ClientString(id = 2204, message = "Tragedy in Von Hellmann Forest") public static NpcStringId TRAGEDY_IN_VON_HELLMANN_FOREST_2; @@ -421,8 +421,8 @@ public final class NpcStringId @ClientString(id = 2302, message = "Lidia's Heart (In Progress)") public static NpcStringId LIDIA_S_HEART_IN_PROGRESS; - @ClientString(id = 2303, message = "Lidia's Heart (Done)") - public static NpcStringId LIDIA_S_HEART_DONE; + @ClientString(id = 2303, message = "Lidia's Heart (Completed)") + public static NpcStringId LIDIA_S_HEART_COMPLETED; @ClientString(id = 2304, message = "Lidia's Heart") public static NpcStringId LIDIA_S_HEART_2; @@ -433,8 +433,8 @@ public final class NpcStringId @ClientString(id = 2402, message = "Inhabitants of the Forest of the Dead (In Progress)") public static NpcStringId INHABITANTS_OF_THE_FOREST_OF_THE_DEAD_IN_PROGRESS; - @ClientString(id = 2403, message = "Inhabitants of the Forest of the Dead (Done)") - public static NpcStringId INHABITANTS_OF_THE_FOREST_OF_THE_DEAD_DONE; + @ClientString(id = 2403, message = "Inhabitants of the Forest of the Dead (Completed)") + public static NpcStringId INHABITANTS_OF_THE_FOREST_OF_THE_DEAD_COMPLETED; @ClientString(id = 2404, message = "Inhabitants of the Forest of the Dead") public static NpcStringId INHABITANTS_OF_THE_FOREST_OF_THE_DEAD_2; @@ -448,8 +448,8 @@ public final class NpcStringId @ClientString(id = 2502, message = "Hiding Behind the Truth (In Progress)") public static NpcStringId HIDING_BEHIND_THE_TRUTH_IN_PROGRESS; - @ClientString(id = 2503, message = "Hiding Behind the Truth (Done)") - public static NpcStringId HIDING_BEHIND_THE_TRUTH_DONE; + @ClientString(id = 2503, message = "Hiding Behind the Truth (Completed)") + public static NpcStringId HIDING_BEHIND_THE_TRUTH_COMPLETED; @ClientString(id = 2504, message = "Hiding Behind the Truth") public static NpcStringId HIDING_BEHIND_THE_TRUTH_2; @@ -475,8 +475,8 @@ public final class NpcStringId @ClientString(id = 2702, message = "Chest Caught with a Wind Bait (In Progress)") public static NpcStringId CHEST_CAUGHT_WITH_A_WIND_BAIT_IN_PROGRESS; - @ClientString(id = 2703, message = "Chest Caught with a Wind Bait (Done)") - public static NpcStringId CHEST_CAUGHT_WITH_A_WIND_BAIT_DONE; + @ClientString(id = 2703, message = "Chest Caught with a Wind Bait (Completed)") + public static NpcStringId CHEST_CAUGHT_WITH_A_WIND_BAIT_COMPLETED; @ClientString(id = 2704, message = "Chest Caught with a Wind Bait") public static NpcStringId CHEST_CAUGHT_WITH_A_WIND_BAIT_2; @@ -487,8 +487,8 @@ public final class NpcStringId @ClientString(id = 2802, message = "Chest Caught with an Icy Air Bait (In Progress)") public static NpcStringId CHEST_CAUGHT_WITH_AN_ICY_AIR_BAIT_IN_PROGRESS; - @ClientString(id = 2803, message = "Chest Caught with an Icy Air Bait (Done)") - public static NpcStringId CHEST_CAUGHT_WITH_AN_ICY_AIR_BAIT_DONE; + @ClientString(id = 2803, message = "Chest Caught with an Icy Air Bait (Completed)") + public static NpcStringId CHEST_CAUGHT_WITH_AN_ICY_AIR_BAIT_COMPLETED; @ClientString(id = 2804, message = "Chest Caught with an Icy Air Bait") public static NpcStringId CHEST_CAUGHT_WITH_AN_ICY_AIR_BAIT_2; @@ -499,8 +499,8 @@ public final class NpcStringId @ClientString(id = 2902, message = "Chest Caught with an Earth Bait (In Progress)") public static NpcStringId CHEST_CAUGHT_WITH_AN_EARTH_BAIT_IN_PROGRESS; - @ClientString(id = 2903, message = "Chest Caught with an Earth Bait (Done)") - public static NpcStringId CHEST_CAUGHT_WITH_AN_EARTH_BAIT_DONE; + @ClientString(id = 2903, message = "Chest Caught with an Earth Bait (Completed)") + public static NpcStringId CHEST_CAUGHT_WITH_AN_EARTH_BAIT_COMPLETED; @ClientString(id = 2904, message = "Chest Caught with an Earth Bait") public static NpcStringId CHEST_CAUGHT_WITH_AN_EARTH_BAIT_2; @@ -511,8 +511,8 @@ public final class NpcStringId @ClientString(id = 3002, message = "Chest Caught with a Bait of Flame (In Progress)") public static NpcStringId CHEST_CAUGHT_WITH_A_BAIT_OF_FLAME_IN_PROGRESS; - @ClientString(id = 3003, message = "Chest Caught with a Bait of Flame (Done)") - public static NpcStringId CHEST_CAUGHT_WITH_A_BAIT_OF_FLAME_DONE; + @ClientString(id = 3003, message = "Chest Caught with a Bait of Flame (Completed)") + public static NpcStringId CHEST_CAUGHT_WITH_A_BAIT_OF_FLAME_COMPLETED; @ClientString(id = 3004, message = "Chest Caught with a Bait of Fire") public static NpcStringId CHEST_CAUGHT_WITH_A_BAIT_OF_FIRE; @@ -643,8 +643,8 @@ public final class NpcStringId @ClientString(id = 4102, message = "The Adventurer's Challenge (In Progress)") public static NpcStringId THE_ADVENTURER_S_CHALLENGE_IN_PROGRESS; - @ClientString(id = 4103, message = "The Adventurer's Challenge (Done)") - public static NpcStringId THE_ADVENTURER_S_CHALLENGE_DONE; + @ClientString(id = 4103, message = "The Adventurer's Challenge (Completed)") + public static NpcStringId THE_ADVENTURER_S_CHALLENGE_COMPLETED; @ClientString(id = 4151, message = "Delivery duty complete. \\n Go find the Newbie Helper.") public static NpcStringId DELIVERY_DUTY_COMPLETE_N_GO_FIND_THE_NEWBIE_HELPER; @@ -703,8 +703,8 @@ public final class NpcStringId @ClientString(id = 4502, message = "To Talking Island (In Progress)") public static NpcStringId TO_TALKING_ISLAND_IN_PROGRESS; - @ClientString(id = 4503, message = "To Talking Island (Done)") - public static NpcStringId TO_TALKING_ISLAND_DONE; + @ClientString(id = 4503, message = "To Talking Island (Completed)") + public static NpcStringId TO_TALKING_ISLAND_COMPLETED; @ClientString(id = 4601, message = "Once More In the Arms of the Mother Tree") public static NpcStringId ONCE_MORE_IN_THE_ARMS_OF_THE_MOTHER_TREE; @@ -712,8 +712,8 @@ public final class NpcStringId @ClientString(id = 4602, message = "Once More In the Arms of the Mother Tree (In Progress)") public static NpcStringId ONCE_MORE_IN_THE_ARMS_OF_THE_MOTHER_TREE_IN_PROGRESS; - @ClientString(id = 4603, message = "Once More In the Arms of the Mother Tree (Done)") - public static NpcStringId ONCE_MORE_IN_THE_ARMS_OF_THE_MOTHER_TREE_DONE; + @ClientString(id = 4603, message = "Once More In the Arms of the Mother Tree (Completed)") + public static NpcStringId ONCE_MORE_IN_THE_ARMS_OF_THE_MOTHER_TREE_COMPLETED; @ClientString(id = 4701, message = "Into the Dark Elven Forest") public static NpcStringId INTO_THE_DARK_ELVEN_FOREST; @@ -721,8 +721,8 @@ public final class NpcStringId @ClientString(id = 4702, message = "Into the Dark Elven Forest (In Progress)") public static NpcStringId INTO_THE_DARK_ELVEN_FOREST_IN_PROGRESS; - @ClientString(id = 4703, message = "Into the Dark Elven Forest (Done)") - public static NpcStringId INTO_THE_DARK_ELVEN_FOREST_DONE; + @ClientString(id = 4703, message = "Into the Dark Elven Forest (Completed)") + public static NpcStringId INTO_THE_DARK_ELVEN_FOREST_COMPLETED; @ClientString(id = 4801, message = "To the Immortal Plateau") public static NpcStringId TO_THE_IMMORTAL_PLATEAU; @@ -730,8 +730,8 @@ public final class NpcStringId @ClientString(id = 4802, message = "To the Immortal Plateau (In Progress)") public static NpcStringId TO_THE_IMMORTAL_PLATEAU_IN_PROGRESS; - @ClientString(id = 4803, message = "To the Immortal Plateau (Done)") - public static NpcStringId TO_THE_IMMORTAL_PLATEAU_DONE; + @ClientString(id = 4803, message = "To the Immortal Plateau (Completed)") + public static NpcStringId TO_THE_IMMORTAL_PLATEAU_COMPLETED; @ClientString(id = 4901, message = "The Road Home") public static NpcStringId THE_ROAD_HOME; @@ -739,8 +739,8 @@ public final class NpcStringId @ClientString(id = 4902, message = "The Road Home (In Progress)") public static NpcStringId THE_ROAD_HOME_IN_PROGRESS; - @ClientString(id = 4903, message = "The Road Home (Done)") - public static NpcStringId THE_ROAD_HOME_DONE; + @ClientString(id = 4903, message = "The Road Home (Completed)") + public static NpcStringId THE_ROAD_HOME_COMPLETED; @ClientString(id = 5001, message = "Lanosco's Special Bait") public static NpcStringId LANOSCO_S_SPECIAL_BAIT; @@ -748,8 +748,8 @@ public final class NpcStringId @ClientString(id = 5002, message = "Lanosco's Special Bait (In Progress)") public static NpcStringId LANOSCO_S_SPECIAL_BAIT_IN_PROGRESS; - @ClientString(id = 5003, message = "Lanosco's Special Bait (Done)") - public static NpcStringId LANOSCO_S_SPECIAL_BAIT_DONE; + @ClientString(id = 5003, message = "Lanosco's Special Bait (Completed)") + public static NpcStringId LANOSCO_S_SPECIAL_BAIT_COMPLETED; @ClientString(id = 5004, message = "Lasosco's Special Bait") public static NpcStringId LASOSCO_S_SPECIAL_BAIT; @@ -760,8 +760,8 @@ public final class NpcStringId @ClientString(id = 5102, message = "O'Fulle's Special Bait (In Progress)") public static NpcStringId O_FULLE_S_SPECIAL_BAIT_IN_PROGRESS; - @ClientString(id = 5103, message = "O'Fulle's Special Bait (Done)") - public static NpcStringId O_FULLE_S_SPECIAL_BAIT_DONE; + @ClientString(id = 5103, message = "O'Fulle's Special Bait (Completed)") + public static NpcStringId O_FULLE_S_SPECIAL_BAIT_COMPLETED; @ClientString(id = 5104, message = "O'Fulle's Special Bait") public static NpcStringId O_FULLE_S_SPECIAL_BAIT_2; @@ -772,8 +772,8 @@ public final class NpcStringId @ClientString(id = 5202, message = "Willie's Special Bait (In Progress)") public static NpcStringId WILLIE_S_SPECIAL_BAIT_IN_PROGRESS; - @ClientString(id = 5203, message = "Willie's Special Bait (Done)") - public static NpcStringId WILLIE_S_SPECIAL_BAIT_DONE; + @ClientString(id = 5203, message = "Willie's Special Bait (Completed)") + public static NpcStringId WILLIE_S_SPECIAL_BAIT_COMPLETED; @ClientString(id = 5204, message = "Willie's Special Bait") public static NpcStringId WILLIE_S_SPECIAL_BAIT_2; @@ -784,8 +784,8 @@ public final class NpcStringId @ClientString(id = 5302, message = "Linnaeus' Special Bait (In Progress)") public static NpcStringId LINNAEUS_SPECIAL_BAIT_IN_PROGRESS; - @ClientString(id = 5303, message = "Linnaeus' Special Bait (Done)") - public static NpcStringId LINNAEUS_SPECIAL_BAIT_DONE; + @ClientString(id = 5303, message = "Linnaeus' Special Bait (Completed)") + public static NpcStringId LINNAEUS_SPECIAL_BAIT_COMPLETED; @ClientString(id = 5304, message = "Linnaeus' Special Bait") public static NpcStringId LINNAEUS_SPECIAL_BAIT_2; @@ -796,8 +796,8 @@ public final class NpcStringId @ClientString(id = 6002, message = "Good Work's Reward (In Progress)") public static NpcStringId GOOD_WORK_S_REWARD_IN_PROGRESS; - @ClientString(id = 6003, message = "Good Work's Reward (Done)") - public static NpcStringId GOOD_WORK_S_REWARD_DONE; + @ClientString(id = 6003, message = "Good Work's Reward (Completed)") + public static NpcStringId GOOD_WORK_S_REWARD_COMPLETED; @ClientString(id = 6051, message = "$s1! I must kill you. Blame your own curiosity.") public static NpcStringId S1_I_MUST_KILL_YOU_BLAME_YOUR_OWN_CURIOSITY; @@ -829,8 +829,8 @@ public final class NpcStringId @ClientString(id = 6202, message = "Path of the Trooper (In Progress)") public static NpcStringId PATH_OF_THE_TROOPER_IN_PROGRESS; - @ClientString(id = 6203, message = "Path of the Trooper (Done)") - public static NpcStringId PATH_OF_THE_TROOPER_DONE; + @ClientString(id = 6203, message = "Path of the Trooper (Completed)") + public static NpcStringId PATH_OF_THE_TROOPER_COMPLETED; @ClientString(id = 6301, message = "Path of the Warder") public static NpcStringId PATH_OF_THE_WARDER; @@ -838,8 +838,8 @@ public final class NpcStringId @ClientString(id = 6302, message = "Path of the Warder (In Progress)") public static NpcStringId PATH_OF_THE_WARDER_IN_PROGRESS; - @ClientString(id = 6303, message = "Path of the Warder (Done)") - public static NpcStringId PATH_OF_THE_WARDER_DONE; + @ClientString(id = 6303, message = "Path of the Warder (Completed)") + public static NpcStringId PATH_OF_THE_WARDER_COMPLETED; @ClientString(id = 6401, message = "Certified Berserker") public static NpcStringId CERTIFIED_BERSERKER; @@ -847,8 +847,8 @@ public final class NpcStringId @ClientString(id = 6402, message = "Certified Berserker (In Progress)") public static NpcStringId CERTIFIED_BERSERKER_IN_PROGRESS; - @ClientString(id = 6403, message = "Certified Berserker (Done)") - public static NpcStringId CERTIFIED_BERSERKER_DONE; + @ClientString(id = 6403, message = "Certified Berserker (Completed)") + public static NpcStringId CERTIFIED_BERSERKER_COMPLETED; @ClientString(id = 6451, message = "$s1, did you come to help me?") public static NpcStringId S1_DID_YOU_COME_TO_HELP_ME; @@ -859,8 +859,8 @@ public final class NpcStringId @ClientString(id = 6502, message = "Certified Soul Breaker (In Progress)") public static NpcStringId CERTIFIED_SOUL_BREAKER_IN_PROGRESS; - @ClientString(id = 6503, message = "Certified Soul Breaker (Done)") - public static NpcStringId CERTIFIED_SOUL_BREAKER_DONE; + @ClientString(id = 6503, message = "Certified Soul Breaker (Completed)") + public static NpcStringId CERTIFIED_SOUL_BREAKER_COMPLETED; @ClientString(id = 6551, message = "Drats! How could I be so wrong??") public static NpcStringId DRATS_HOW_COULD_I_BE_SO_WRONG; @@ -871,7 +871,7 @@ public final class NpcStringId @ClientString(id = 6553, message = "$s1! I will be back soon. Stay there and don't you dare wander off!") public static NpcStringId S1_I_WILL_BE_BACK_SOON_STAY_THERE_AND_DON_T_YOU_DARE_WANDER_OFF; - @ClientString(id = 6554, message = "Grr. I've been hit... ") + @ClientString(id = 6554, message = "Grr. I've been hit...") public static NpcStringId GRR_I_VE_BEEN_HIT; @ClientString(id = 6555, message = "Grr! Who are you and why have you stopped me?") @@ -889,8 +889,8 @@ public final class NpcStringId @ClientString(id = 6602, message = "Certified Arbalester (In Progress)") public static NpcStringId CERTIFIED_ARBALESTER_IN_PROGRESS; - @ClientString(id = 6603, message = "Certified Arbalester (Done)") - public static NpcStringId CERTIFIED_ARBALESTER_DONE; + @ClientString(id = 6603, message = "Certified Arbalester (Completed)") + public static NpcStringId CERTIFIED_ARBALESTER_COMPLETED; @ClientString(id = 6701, message = "Saga of the Doombringer") public static NpcStringId SAGA_OF_THE_DOOMBRINGER; @@ -898,8 +898,8 @@ public final class NpcStringId @ClientString(id = 6702, message = "Saga of the Doombringer (In Progress)") public static NpcStringId SAGA_OF_THE_DOOMBRINGER_IN_PROGRESS; - @ClientString(id = 6703, message = "Saga of the Doombringer (Done)") - public static NpcStringId SAGA_OF_THE_DOOMBRINGER_DONE; + @ClientString(id = 6703, message = "Saga of the Doombringer (Completed)") + public static NpcStringId SAGA_OF_THE_DOOMBRINGER_COMPLETED; @ClientString(id = 6750, message = "$s1! You seek the forbidden knowledge and I cannot let you have it!") public static NpcStringId S1_YOU_SEEK_THE_FORBIDDEN_KNOWLEDGE_AND_I_CANNOT_LET_YOU_HAVE_IT; @@ -961,10 +961,10 @@ public final class NpcStringId @ClientString(id = 6802, message = "Saga of the Soul Hound (In Progress)") public static NpcStringId SAGA_OF_THE_SOUL_HOUND_IN_PROGRESS; - @ClientString(id = 6803, message = "Saga of the Soul Hound (Done)") - public static NpcStringId SAGA_OF_THE_SOUL_HOUND_DONE; + @ClientString(id = 6803, message = "Saga of the Soul Hound (Completed)") + public static NpcStringId SAGA_OF_THE_SOUL_HOUND_COMPLETED; - @ClientString(id = 6851, message = "$s1! Your time is up. Prepare to die a horrible death. ") + @ClientString(id = 6851, message = "$s1! Your time is up. Prepare to die a horrible death.") public static NpcStringId S1_YOUR_TIME_IS_UP_PREPARE_TO_DIE_A_HORRIBLE_DEATH; @ClientString(id = 6852, message = "Consider yourself lucky. The next time we meet, you will die - PERMANENTLY!") @@ -1024,8 +1024,8 @@ public final class NpcStringId @ClientString(id = 6902, message = "Saga of the Trickster (In Progress)") public static NpcStringId SAGA_OF_THE_TRICKSTER_IN_PROGRESS; - @ClientString(id = 6903, message = "Saga of the Trickster (Done)") - public static NpcStringId SAGA_OF_THE_TRICKSTER_DONE; + @ClientString(id = 6903, message = "Saga of the Trickster (Completed)") + public static NpcStringId SAGA_OF_THE_TRICKSTER_COMPLETED; @ClientString(id = 6950, message = "$s1! How dare you interfere! You shall pay for this!") public static NpcStringId S1_HOW_DARE_YOU_INTERFERE_YOU_SHALL_PAY_FOR_THIS; @@ -1093,7 +1093,7 @@ public final class NpcStringId @ClientString(id = 7004, message = "|Lv. 99+| Exalted, One Who Faces the Limit") public static NpcStringId LV_99_EXALTED_ONE_WHO_FACES_THE_LIMIT_2; - @ClientString(id = 7050, message = "You made it here, $s1. I'll show my strength. Die! ") + @ClientString(id = 7050, message = "You made it here, $s1. I'll show my strength. Die!") public static NpcStringId YOU_MADE_IT_HERE_S1_I_LL_SHOW_MY_STRENGTH_DIE; @ClientString(id = 7051, message = "Ha! You failed! Are you ready to quit?") @@ -1252,8 +1252,8 @@ public final class NpcStringId @ClientString(id = 7258, message = "$s1! Help me!") public static NpcStringId S1_HELP_ME; - @ClientString(id = 7259, message = "You must be aware of your audience when singing, %s! => Join us $s1! A song that nobody listens to is empty.") - public static NpcStringId YOU_MUST_BE_AWARE_OF_YOUR_AUDIENCE_WHEN_SINGING_S_JOIN_US_S1_A_SONG_THAT_NOBODY_LISTENS_TO_IS_EMPTY; + @ClientString(id = 7259, message = "You must be aware of your audience when singing. Join us $s1! A song that nobody listens to is empty.") + public static NpcStringId YOU_MUST_BE_AWARE_OF_YOUR_AUDIENCE_WHEN_SINGING_JOIN_US_S1_A_SONG_THAT_NOBODY_LISTENS_TO_IS_EMPTY; @ClientString(id = 7260, message = "You must work harder to be victorious, $s1.") public static NpcStringId YOU_MUST_WORK_HARDER_TO_BE_VICTORIOUS_S1; @@ -1978,7 +1978,7 @@ public final class NpcStringId @ClientString(id = 8358, message = "I'll never forget the taste of his steel, $s1! Let's fight him together!") public static NpcStringId I_LL_NEVER_FORGET_THE_TASTE_OF_HIS_STEEL_S1_LET_S_FIGHT_HIM_TOGETHER_2; - @ClientString(id = 8359, message = "$s1! Pull yourself together. ") + @ClientString(id = 8359, message = "$s1! Pull yourself together.") public static NpcStringId S1_PULL_YOURSELF_TOGETHER; @ClientString(id = 8360, message = "$s1! He'll get away!") @@ -2467,17 +2467,17 @@ public final class NpcStringId @ClientString(id = 9067, message = "$s1. You're stronger than I thought. See you next time.") public static NpcStringId S1_YOU_RE_STRONGER_THAN_I_THOUGHT_SEE_YOU_NEXT_TIME_3; - @ClientString(id = 9101, message = "|Lv. 104+| The Last Man Standing") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING; + @ClientString(id = 9101, message = "|Lv. 104+| The Last One Standing") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING; - @ClientString(id = 9102, message = "|Lv. 104+| The Last Man Standing (In progress)") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_IN_PROGRESS; + @ClientString(id = 9102, message = "|Lv. 104+| The Last One Standing (In progress)") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_IN_PROGRESS; - @ClientString(id = 9103, message = "|Lv. 104+| The Last Man Standing (Completed)") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_COMPLETED; + @ClientString(id = 9103, message = "|Lv. 104+| The Last One Standing (Completed)") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_COMPLETED; - @ClientString(id = 9104, message = "|Lv. 104+| The Last Man Standing") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_2; + @ClientString(id = 9104, message = "|Lv. 104+| The Last One Standing") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_2; @ClientString(id = 9150, message = "You carouse with evil spirits, $s1! You're not worthy of the holy wisdom!") public static NpcStringId YOU_CAROUSE_WITH_EVIL_SPIRITS_S1_YOU_RE_NOT_WORTHY_OF_THE_HOLY_WISDOM; @@ -2665,17 +2665,17 @@ public final class NpcStringId @ClientString(id = 9367, message = "You deal in darkness, $s1! I'll pay you back.") public static NpcStringId YOU_DEAL_IN_DARKNESS_S1_I_LL_PAY_YOU_BACK; - @ClientString(id = 9401, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR; + @ClientString(id = 9401, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR; - @ClientString(id = 9402, message = "|Lv. 104+| Undying Honor (In progress)") - public static NpcStringId LV_104_UNDYING_HONOR_IN_PROGRESS; + @ClientString(id = 9402, message = "|Lv. 104+| Immortal Honor (In progress)") + public static NpcStringId LV_104_IMMORTAL_HONOR_IN_PROGRESS; - @ClientString(id = 9403, message = "|Lv. 104+| Undying Honor (Completed)") - public static NpcStringId LV_104_UNDYING_HONOR_COMPLETED; + @ClientString(id = 9403, message = "|Lv. 104+| Immortal Honor (Completed)") + public static NpcStringId LV_104_IMMORTAL_HONOR_COMPLETED; - @ClientString(id = 9404, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_2; + @ClientString(id = 9404, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_2; @ClientString(id = 9450, message = "You're $s1? I won't be like Hindemith!") public static NpcStringId YOU_RE_S1_I_WON_T_BE_LIKE_HINDEMITH; @@ -2890,7 +2890,7 @@ public final class NpcStringId @ClientString(id = 9766, message = "$s1! You're a coward, aren't you!") public static NpcStringId S1_YOU_RE_A_COWARD_AREN_T_YOU; - @ClientString(id = 9767, message = "$s1! I'll kill you next time. ") + @ClientString(id = 9767, message = "$s1! I'll kill you next time.") public static NpcStringId S1_I_LL_KILL_YOU_NEXT_TIME; @ClientString(id = 9850, message = "$s1! How foolish to act against the will of god.") @@ -3097,8 +3097,8 @@ public final class NpcStringId @ClientString(id = 10102, message = "Sword of Solidarity (In Progress)") public static NpcStringId SWORD_OF_SOLIDARITY_IN_PROGRESS; - @ClientString(id = 10103, message = "Sword of Solidarity (Done)") - public static NpcStringId SWORD_OF_SOLIDARITY_DONE; + @ClientString(id = 10103, message = "Sword of Solidarity (Completed)") + public static NpcStringId SWORD_OF_SOLIDARITY_COMPLETED; @ClientString(id = 10201, message = "Sea of Spores Fever") public static NpcStringId SEA_OF_SPORES_FEVER; @@ -3106,8 +3106,8 @@ public final class NpcStringId @ClientString(id = 10202, message = "Sea of Spores Fever (In Progress)") public static NpcStringId SEA_OF_SPORES_FEVER_IN_PROGRESS; - @ClientString(id = 10203, message = "Sea of Spores Fever (Done)") - public static NpcStringId SEA_OF_SPORES_FEVER_DONE; + @ClientString(id = 10203, message = "Sea of Spores Fever (Completed)") + public static NpcStringId SEA_OF_SPORES_FEVER_COMPLETED; @ClientString(id = 10301, message = "Spirit of Craftsman") public static NpcStringId SPIRIT_OF_CRAFTSMAN; @@ -3115,8 +3115,8 @@ public final class NpcStringId @ClientString(id = 10302, message = "Spirit of Craftsman (In Progress)") public static NpcStringId SPIRIT_OF_CRAFTSMAN_IN_PROGRESS; - @ClientString(id = 10303, message = "Spirit of Craftsman (Done)") - public static NpcStringId SPIRIT_OF_CRAFTSMAN_DONE; + @ClientString(id = 10303, message = "Spirit of Craftsman (Completed)") + public static NpcStringId SPIRIT_OF_CRAFTSMAN_COMPLETED; @ClientString(id = 10401, message = "Spirit of Mirrors") public static NpcStringId SPIRIT_OF_MIRRORS; @@ -3124,8 +3124,8 @@ public final class NpcStringId @ClientString(id = 10402, message = "Spirit of Mirrors (In Progress)") public static NpcStringId SPIRIT_OF_MIRRORS_IN_PROGRESS; - @ClientString(id = 10403, message = "Spirit of Mirrors (Done)") - public static NpcStringId SPIRIT_OF_MIRRORS_DONE; + @ClientString(id = 10403, message = "Spirit of Mirrors (Completed)") + public static NpcStringId SPIRIT_OF_MIRRORS_COMPLETED; @ClientString(id = 10501, message = "Skirmish with the Orcs") public static NpcStringId SKIRMISH_WITH_THE_ORCS; @@ -3133,8 +3133,8 @@ public final class NpcStringId @ClientString(id = 10502, message = "Skirmish with the Orcs (In Progress)") public static NpcStringId SKIRMISH_WITH_THE_ORCS_IN_PROGRESS; - @ClientString(id = 10503, message = "Skirmish with the Orcs (Done)") - public static NpcStringId SKIRMISH_WITH_THE_ORCS_DONE; + @ClientString(id = 10503, message = "Skirmish with the Orcs (Completed)") + public static NpcStringId SKIRMISH_WITH_THE_ORCS_COMPLETED; @ClientString(id = 10601, message = "Forgotten Truth") public static NpcStringId FORGOTTEN_TRUTH; @@ -3142,8 +3142,8 @@ public final class NpcStringId @ClientString(id = 10602, message = "Forgotten Truth (In Progress)") public static NpcStringId FORGOTTEN_TRUTH_IN_PROGRESS; - @ClientString(id = 10603, message = "Forgotten Truth (Done)") - public static NpcStringId FORGOTTEN_TRUTH_DONE; + @ClientString(id = 10603, message = "Forgotten Truth (Completed)") + public static NpcStringId FORGOTTEN_TRUTH_COMPLETED; @ClientString(id = 10701, message = "Merciless Punishment") public static NpcStringId MERCILESS_PUNISHMENT; @@ -3151,8 +3151,8 @@ public final class NpcStringId @ClientString(id = 10702, message = "Merciless Punishment (In Progress)") public static NpcStringId MERCILESS_PUNISHMENT_IN_PROGRESS; - @ClientString(id = 10703, message = "Merciless Punishment (Done)") - public static NpcStringId MERCILESS_PUNISHMENT_DONE; + @ClientString(id = 10703, message = "Merciless Punishment (Completed)") + public static NpcStringId MERCILESS_PUNISHMENT_COMPLETED; @ClientString(id = 10801, message = "Jumble, Tumble, Diamond Fuss") public static NpcStringId JUMBLE_TUMBLE_DIAMOND_FUSS; @@ -3160,8 +3160,8 @@ public final class NpcStringId @ClientString(id = 10802, message = "Jumble, Tumble, Diamond Fuss (In Progress)") public static NpcStringId JUMBLE_TUMBLE_DIAMOND_FUSS_IN_PROGRESS; - @ClientString(id = 10803, message = "Jumble, Tumble, Diamond Fuss (Done)") - public static NpcStringId JUMBLE_TUMBLE_DIAMOND_FUSS_DONE; + @ClientString(id = 10803, message = "Jumble, Tumble, Diamond Fuss (Completed)") + public static NpcStringId JUMBLE_TUMBLE_DIAMOND_FUSS_COMPLETED; @ClientString(id = 10901, message = "|Lv. 81+| In Search of the Nest") public static NpcStringId LV_81_IN_SEARCH_OF_THE_NEST; @@ -3205,8 +3205,8 @@ public final class NpcStringId @ClientString(id = 11202, message = "Walk of Fate (In Progress)") public static NpcStringId WALK_OF_FATE_IN_PROGRESS; - @ClientString(id = 11203, message = "Walk of Fate (Done)") - public static NpcStringId WALK_OF_FATE_DONE; + @ClientString(id = 11203, message = "Walk of Fate (Completed)") + public static NpcStringId WALK_OF_FATE_COMPLETED; @ClientString(id = 11301, message = "|Lv. 80+| Status of the Beacon Tower") public static NpcStringId LV_80_STATUS_OF_THE_BEACON_TOWER; @@ -3364,17 +3364,116 @@ public final class NpcStringId @ClientString(id = 11540, message = "Congratulations! You have become a Hero of Sayha's Seers.") public static NpcStringId CONGRATULATIONS_YOU_HAVE_BECOME_A_HERO_OF_SAYHA_S_SEERS; - @ClientString(id = 11550, message = "This looks like the right place... ") - public static NpcStringId THIS_LOOKS_LIKE_THE_RIGHT_PLACE; + @ClientString(id = 11541, message = "$s1 has become a legend. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_CONGRATULATIONS; - @ClientString(id = 11551, message = "I see someone. Is this fate?") - public static NpcStringId I_SEE_SOMEONE_IS_THIS_FATE; + @ClientString(id = 11542, message = "$s1 has become a legend of Sigel Phoenix Knights. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_SIGEL_PHOENIX_KNIGHTS_CONGRATULATIONS; - @ClientString(id = 11552, message = "We meet again. ") - public static NpcStringId WE_MEET_AGAIN; + @ClientString(id = 11543, message = "$s1 has become a legend of Sigel Hell Knights. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_SIGEL_HELL_KNIGHTS_CONGRATULATIONS; - @ClientString(id = 11553, message = "Don't bother trying to find out more about me. Follow your own destiny. ") - public static NpcStringId DON_T_BOTHER_TRYING_TO_FIND_OUT_MORE_ABOUT_ME_FOLLOW_YOUR_OWN_DESTINY; + @ClientString(id = 11544, message = "$s1 has become a legend of Sigel Eva's Templars. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_SIGEL_EVA_S_TEMPLARS_CONGRATULATIONS; + + @ClientString(id = 11545, message = "$s1 has become a legend of Sigel Shillien Templars. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_SIGEL_SHILLIEN_TEMPLARS_CONGRATULATIONS; + + @ClientString(id = 11546, message = "$s1 has become a legend of Tyrr Duelists. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_DUELISTS_CONGRATULATIONS; + + @ClientString(id = 11547, message = "$s1 has become a legend of Tyrr Dreadnoughts. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_DREADNOUGHTS_CONGRATULATIONS; + + @ClientString(id = 11548, message = "$s1 has become a legend of Tyrr Titans. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_TITANS_CONGRATULATIONS; + + @ClientString(id = 11549, message = "$s1 has become a legend of Tyrr Grand Khavatari. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_GRAND_KHAVATARI_CONGRATULATIONS; + + @ClientString(id = 11550, message = "$s1 has become a legend of Tyrr Maestros. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_MAESTROS_CONGRATULATIONS; + + @ClientString(id = 11551, message = "$s1 has become a legend of Tyrr Doombringers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_TYRR_DOOMBRINGERS_CONGRATULATIONS; + + @ClientString(id = 11552, message = "$s1 has become a legend of Othell Adventurers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_OTHELL_ADVENTURERS_CONGRATULATIONS; + + @ClientString(id = 11553, message = "$s1 has become a legend of Othell Wind Riders. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_OTHELL_WIND_RIDERS_CONGRATULATIONS; + + @ClientString(id = 11554, message = "$s1 has become a legend of Othell Ghost Hunters. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_OTHELL_GHOST_HUNTERS_CONGRATULATIONS; + + @ClientString(id = 11555, message = "$s1 has become a legend of Othell Fortune Seekers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_OTHELL_FORTUNE_SEEKERS_CONGRATULATIONS; + + @ClientString(id = 11556, message = "$s1 has become a legend of Yul Sagittarius. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_YUL_SAGITTARIUS_CONGRATULATIONS; + + @ClientString(id = 11557, message = "$s1 has become a legend of Yul Moonlight Sentinels. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_YUL_MOONLIGHT_SENTINELS_CONGRATULATIONS; + + @ClientString(id = 11558, message = "$s1 has become a legend of Yul Ghost Sentinels. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_YUL_GHOST_SENTINELS_CONGRATULATIONS; + + @ClientString(id = 11559, message = "$s1 has become a legend of Yul Tricksters. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_YUL_TRICKSTERS_CONGRATULATIONS; + + @ClientString(id = 11560, message = "$s1 has become a legend of Feoh Archmages. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_FEOH_ARCHMAGES_CONGRATULATIONS; + + @ClientString(id = 11561, message = "$s1 has become a legend of Feoh Soultakers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_FEOH_SOULTAKERS_CONGRATULATIONS; + + @ClientString(id = 11562, message = "$s1 has become a legend of Feoh Mystic Muses. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_FEOH_MYSTIC_MUSES_CONGRATULATIONS; + + @ClientString(id = 11563, message = "$s1 has become a legend of Feoh Storm Screamers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_FEOH_STORM_SCREAMERS_CONGRATULATIONS; + + @ClientString(id = 11564, message = "$s1 has become a legend of Feoh Soul Hounds. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_FEOH_SOUL_HOUNDS_CONGRATULATIONS; + + @ClientString(id = 11565, message = "$s1 has become a legend of Iss Hierophants. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_ISS_HIEROPHANTS_CONGRATULATIONS; + + @ClientString(id = 11566, message = "$s1 has become a legend of Iss Sword Muses. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_ISS_SWORD_MUSES_CONGRATULATIONS; + + @ClientString(id = 11567, message = "$s1 has become a legend of Iss Spectral Dancers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_ISS_SPECTRAL_DANCERS_CONGRATULATIONS; + + @ClientString(id = 11568, message = "$s1 has become a legend of Iss Dominators. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_ISS_DOMINATORS_CONGRATULATIONS; + + @ClientString(id = 11569, message = "$s1 has become a legend of Iss Doomcryers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_ISS_DOOMCRYERS_CONGRATULATIONS; + + @ClientString(id = 11570, message = "$s1 has become a legend of Wynn Arcana Lords. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_WYNN_ARCANA_LORDS_CONGRATULATIONS; + + @ClientString(id = 11571, message = "$s1 has become a legend of Wynn Elemental Masters. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_WYNN_ELEMENTAL_MASTERS_CONGRATULATIONS; + + @ClientString(id = 11572, message = "$s1 has become a legend of Wynn Spectral Masters. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_WYNN_SPECTRAL_MASTERS_CONGRATULATIONS; + + @ClientString(id = 11573, message = "$s1 has become a legend of Aeore Cardinals. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_AEORE_CARDINALS_CONGRATULATIONS; + + @ClientString(id = 11574, message = "$s1 has become a legend of Aeore Eva's Saints. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_AEORE_EVA_S_SAINTS_CONGRATULATIONS; + + @ClientString(id = 11575, message = "$s1 has become a legend of Aeore Shillien Saints. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_AEORE_SHILLIEN_SAINTS_CONGRATULATIONS; + + @ClientString(id = 11576, message = "$s1 has become a legend of Eviscerators. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_EVISCERATORS_CONGRATULATIONS; + + @ClientString(id = 11577, message = "$s1 has become a legend of Sayha's Seers. Congratulations.") + public static NpcStringId S1_HAS_BECOME_A_LEGEND_OF_SAYHA_S_SEERS_CONGRATULATIONS; @ClientString(id = 11601, message = "Beyond the Hills of Winter") public static NpcStringId BEYOND_THE_HILLS_OF_WINTER; @@ -3382,8 +3481,8 @@ public final class NpcStringId @ClientString(id = 11602, message = "Beyond the Hills of Winter (In Progress)") public static NpcStringId BEYOND_THE_HILLS_OF_WINTER_IN_PROGRESS; - @ClientString(id = 11603, message = "Beyond the Hills of Winter (Done)") - public static NpcStringId BEYOND_THE_HILLS_OF_WINTER_DONE; + @ClientString(id = 11603, message = "Beyond the Hills of Winter (Completed)") + public static NpcStringId BEYOND_THE_HILLS_OF_WINTER_COMPLETED; @ClientString(id = 11701, message = "|Lv. 39+| The Ocean of Distant Stars") public static NpcStringId LV_39_THE_OCEAN_OF_DISTANT_STARS; @@ -3403,8 +3502,8 @@ public final class NpcStringId @ClientString(id = 11802, message = "To Lead and Be Led (In Progress)") public static NpcStringId TO_LEAD_AND_BE_LED_IN_PROGRESS; - @ClientString(id = 11803, message = "To Lead and Be Led (Done)") - public static NpcStringId TO_LEAD_AND_BE_LED_DONE; + @ClientString(id = 11803, message = "To Lead and Be Led (Completed)") + public static NpcStringId TO_LEAD_AND_BE_LED_COMPLETED; @ClientString(id = 11804, message = "To Lead and Be Led (Sponsor)") public static NpcStringId TO_LEAD_AND_BE_LED_SPONSOR; @@ -3463,8 +3562,8 @@ public final class NpcStringId @ClientString(id = 12302, message = "The Leader and the Follower (In Progress)") public static NpcStringId THE_LEADER_AND_THE_FOLLOWER_IN_PROGRESS; - @ClientString(id = 12303, message = "The Leader and the Follower (Done)") - public static NpcStringId THE_LEADER_AND_THE_FOLLOWER_DONE; + @ClientString(id = 12303, message = "The Leader and the Follower (Completed)") + public static NpcStringId THE_LEADER_AND_THE_FOLLOWER_COMPLETED; @ClientString(id = 12304, message = "The Leader and the Follower (Sponsor)") public static NpcStringId THE_LEADER_AND_THE_FOLLOWER_SPONSOR; @@ -3511,8 +3610,8 @@ public final class NpcStringId @ClientString(id = 12702, message = "Kamael: A Window to the Future (In Progress)") public static NpcStringId KAMAEL_A_WINDOW_TO_THE_FUTURE_IN_PROGRESS; - @ClientString(id = 12703, message = "Kamael: A Window to the Future (Done)") - public static NpcStringId KAMAEL_A_WINDOW_TO_THE_FUTURE_DONE; + @ClientString(id = 12703, message = "Kamael: A Window to the Future (Completed)") + public static NpcStringId KAMAEL_A_WINDOW_TO_THE_FUTURE_COMPLETED; @ClientString(id = 12801, message = "|Lv. 49 - 55| Pailaka - Song of Ice and Fire") public static NpcStringId LV_49_55_PAILAKA_SONG_OF_ICE_AND_FIRE; @@ -3541,8 +3640,8 @@ public final class NpcStringId @ClientString(id = 13002, message = "Path to Hellbound (In Progress)") public static NpcStringId PATH_TO_HELLBOUND_IN_PROGRESS; - @ClientString(id = 13003, message = "Path to Hellbound (Done)") - public static NpcStringId PATH_TO_HELLBOUND_DONE; + @ClientString(id = 13003, message = "Path to Hellbound (Completed)") + public static NpcStringId PATH_TO_HELLBOUND_COMPLETED; @ClientString(id = 13004, message = "Path to Hellbound") public static NpcStringId PATH_TO_HELLBOUND_2; @@ -3553,8 +3652,8 @@ public final class NpcStringId @ClientString(id = 13102, message = "Bird in a Cage (In Progress)") public static NpcStringId BIRD_IN_A_CAGE_IN_PROGRESS; - @ClientString(id = 13103, message = "Bird in a Cage (Done)") - public static NpcStringId BIRD_IN_A_CAGE_DONE; + @ClientString(id = 13103, message = "Bird in a Cage (Completed)") + public static NpcStringId BIRD_IN_A_CAGE_COMPLETED; @ClientString(id = 13104, message = "Bird in a Cage") public static NpcStringId BIRD_IN_A_CAGE_2; @@ -3565,8 +3664,8 @@ public final class NpcStringId @ClientString(id = 13202, message = "Curiosity of a Matras (In Progress)") public static NpcStringId CURIOSITY_OF_A_MATRAS_IN_PROGRESS; - @ClientString(id = 13203, message = "Curiosity of a Matras (Done)") - public static NpcStringId CURIOSITY_OF_A_MATRAS_DONE; + @ClientString(id = 13203, message = "Curiosity of a Matras (Completed)") + public static NpcStringId CURIOSITY_OF_A_MATRAS_COMPLETED; @ClientString(id = 13204, message = "Curiosity of a Matras") public static NpcStringId CURIOSITY_OF_A_MATRAS_2; @@ -3577,8 +3676,8 @@ public final class NpcStringId @ClientString(id = 13302, message = "That's Bloody Hot! (In Progress)") public static NpcStringId THAT_S_BLOODY_HOT_IN_PROGRESS; - @ClientString(id = 13303, message = "That's Bloody Hot! (Done)") - public static NpcStringId THAT_S_BLOODY_HOT_DONE; + @ClientString(id = 13303, message = "That's Bloody Hot! (Completed)") + public static NpcStringId THAT_S_BLOODY_HOT_COMPLETED; @ClientString(id = 13304, message = "That's Bloody Hot!") public static NpcStringId THAT_S_BLOODY_HOT_2; @@ -3718,8 +3817,8 @@ public final class NpcStringId @ClientString(id = 14702, message = "Path to Becoming an Elite Mercenary (In Progress)") public static NpcStringId PATH_TO_BECOMING_AN_ELITE_MERCENARY_IN_PROGRESS; - @ClientString(id = 14703, message = "Path to Becoming an Elite Mercenary (Done)") - public static NpcStringId PATH_TO_BECOMING_AN_ELITE_MERCENARY_DONE; + @ClientString(id = 14703, message = "Path to Becoming an Elite Mercenary (Completed)") + public static NpcStringId PATH_TO_BECOMING_AN_ELITE_MERCENARY_COMPLETED; @ClientString(id = 14801, message = "Path to Becoming an Exalted Mercenary") public static NpcStringId PATH_TO_BECOMING_AN_EXALTED_MERCENARY; @@ -3727,8 +3826,8 @@ public final class NpcStringId @ClientString(id = 14802, message = "Path to Becoming an Exalted Mercenary (In Progress)") public static NpcStringId PATH_TO_BECOMING_AN_EXALTED_MERCENARY_IN_PROGRESS; - @ClientString(id = 14803, message = "Path to Becoming an Exalted Mercenary (Done)") - public static NpcStringId PATH_TO_BECOMING_AN_EXALTED_MERCENARY_DONE; + @ClientString(id = 14803, message = "Path to Becoming an Exalted Mercenary (Completed)") + public static NpcStringId PATH_TO_BECOMING_AN_EXALTED_MERCENARY_COMPLETED; @ClientString(id = 14901, message = "|Lv. 90+| Primal Mother, Istina") public static NpcStringId LV_90_PRIMAL_MOTHER_ISTINA; @@ -3760,8 +3859,8 @@ public final class NpcStringId @ClientString(id = 15102, message = "Cure for Fever (In Progress)") public static NpcStringId CURE_FOR_FEVER_IN_PROGRESS; - @ClientString(id = 15103, message = "Cure for Fever (Done)") - public static NpcStringId CURE_FOR_FEVER_DONE; + @ClientString(id = 15103, message = "Cure for Fever (Completed)") + public static NpcStringId CURE_FOR_FEVER_COMPLETED; @ClientString(id = 15201, message = "Shards of Golem") public static NpcStringId SHARDS_OF_GOLEM; @@ -3769,8 +3868,8 @@ public final class NpcStringId @ClientString(id = 15202, message = "Shards of Golem (In Progress)") public static NpcStringId SHARDS_OF_GOLEM_IN_PROGRESS; - @ClientString(id = 15203, message = "Shards of Golem (Done)") - public static NpcStringId SHARDS_OF_GOLEM_DONE; + @ClientString(id = 15203, message = "Shards of Golem (Completed)") + public static NpcStringId SHARDS_OF_GOLEM_COMPLETED; @ClientString(id = 15301, message = "Deliver Goods") public static NpcStringId DELIVER_GOODS; @@ -3778,8 +3877,8 @@ public final class NpcStringId @ClientString(id = 15302, message = "Deliver Goods (In Progress)") public static NpcStringId DELIVER_GOODS_IN_PROGRESS; - @ClientString(id = 15303, message = "Deliver Goods (Done)") - public static NpcStringId DELIVER_GOODS_DONE; + @ClientString(id = 15303, message = "Deliver Goods (Completed)") + public static NpcStringId DELIVER_GOODS_COMPLETED; @ClientString(id = 15401, message = "Sacrifice to the Sea") public static NpcStringId SACRIFICE_TO_THE_SEA; @@ -3787,8 +3886,8 @@ public final class NpcStringId @ClientString(id = 15402, message = "Sacrifice to the Sea (In Progress)") public static NpcStringId SACRIFICE_TO_THE_SEA_IN_PROGRESS; - @ClientString(id = 15403, message = "Sacrifice to the Sea (Done)") - public static NpcStringId SACRIFICE_TO_THE_SEA_DONE; + @ClientString(id = 15403, message = "Sacrifice to the Sea (Completed)") + public static NpcStringId SACRIFICE_TO_THE_SEA_COMPLETED; @ClientString(id = 15501, message = "Find Sir Windawood") public static NpcStringId FIND_SIR_WINDAWOOD; @@ -3796,8 +3895,8 @@ public final class NpcStringId @ClientString(id = 15502, message = "Find Sir Windawood (In Progress)") public static NpcStringId FIND_SIR_WINDAWOOD_IN_PROGRESS; - @ClientString(id = 15503, message = "Find Sir Windawood (Done)") - public static NpcStringId FIND_SIR_WINDAWOOD_DONE; + @ClientString(id = 15503, message = "Find Sir Windawood (Completed)") + public static NpcStringId FIND_SIR_WINDAWOOD_COMPLETED; @ClientString(id = 15601, message = "Millennium Love") public static NpcStringId MILLENNIUM_LOVE; @@ -3805,8 +3904,8 @@ public final class NpcStringId @ClientString(id = 15602, message = "Millennium Love (In Progress)") public static NpcStringId MILLENNIUM_LOVE_IN_PROGRESS; - @ClientString(id = 15603, message = "Millennium Love (Done)") - public static NpcStringId MILLENNIUM_LOVE_DONE; + @ClientString(id = 15603, message = "Millennium Love (Completed)") + public static NpcStringId MILLENNIUM_LOVE_COMPLETED; @ClientString(id = 15701, message = "Recover Smuggled Goods") public static NpcStringId RECOVER_SMUGGLED_GOODS; @@ -3814,8 +3913,8 @@ public final class NpcStringId @ClientString(id = 15702, message = "Recover Smuggled Goods (In Progress)") public static NpcStringId RECOVER_SMUGGLED_GOODS_IN_PROGRESS; - @ClientString(id = 15703, message = "Recover Smuggled Goods (Done)") - public static NpcStringId RECOVER_SMUGGLED_GOODS_DONE; + @ClientString(id = 15703, message = "Recover Smuggled Goods (Completed)") + public static NpcStringId RECOVER_SMUGGLED_GOODS_COMPLETED; @ClientString(id = 15801, message = "Seed of Evil") public static NpcStringId SEED_OF_EVIL; @@ -3823,8 +3922,8 @@ public final class NpcStringId @ClientString(id = 15802, message = "Seed of Evil (In Progress)") public static NpcStringId SEED_OF_EVIL_IN_PROGRESS; - @ClientString(id = 15803, message = "Seed of Evil (Done)") - public static NpcStringId SEED_OF_EVIL_DONE; + @ClientString(id = 15803, message = "Seed of Evil (Completed)") + public static NpcStringId SEED_OF_EVIL_COMPLETED; @ClientString(id = 15804, message = "... How dare you challenge me!") public static NpcStringId HOW_DARE_YOU_CHALLENGE_ME; @@ -3838,8 +3937,8 @@ public final class NpcStringId @ClientString(id = 15902, message = "Protect the Water Source (In Progress)") public static NpcStringId PROTECT_THE_WATER_SOURCE_IN_PROGRESS; - @ClientString(id = 15903, message = "Protect the Water Source (Done)") - public static NpcStringId PROTECT_THE_WATER_SOURCE_DONE; + @ClientString(id = 15903, message = "Protect the Water Source (Completed)") + public static NpcStringId PROTECT_THE_WATER_SOURCE_COMPLETED; @ClientString(id = 16001, message = "Nerupa's Request") public static NpcStringId NERUPA_S_REQUEST; @@ -3847,8 +3946,8 @@ public final class NpcStringId @ClientString(id = 16002, message = "Nerupa's Request (In Progress)") public static NpcStringId NERUPA_S_REQUEST_IN_PROGRESS; - @ClientString(id = 16003, message = "Nerupa's Request (Done)") - public static NpcStringId NERUPA_S_REQUEST_DONE; + @ClientString(id = 16003, message = "Nerupa's Request (Completed)") + public static NpcStringId NERUPA_S_REQUEST_COMPLETED; @ClientString(id = 16101, message = "Fruit of the Mother Tree") public static NpcStringId FRUIT_OF_THE_MOTHER_TREE; @@ -3856,8 +3955,8 @@ public final class NpcStringId @ClientString(id = 16102, message = "Fruit of the Mother Tree (In Progress)") public static NpcStringId FRUIT_OF_THE_MOTHER_TREE_IN_PROGRESS; - @ClientString(id = 16103, message = "Fruit of the Mother Tree (Done)") - public static NpcStringId FRUIT_OF_THE_MOTHER_TREE_DONE; + @ClientString(id = 16103, message = "Fruit of the Mother Tree (Completed)") + public static NpcStringId FRUIT_OF_THE_MOTHER_TREE_COMPLETED; @ClientString(id = 16201, message = "Curse of the Fortress") public static NpcStringId CURSE_OF_THE_FORTRESS; @@ -3865,8 +3964,8 @@ public final class NpcStringId @ClientString(id = 16202, message = "Curse of the Fortress (In Progress)") public static NpcStringId CURSE_OF_THE_FORTRESS_IN_PROGRESS; - @ClientString(id = 16203, message = "Curse of the Fortress (Done)") - public static NpcStringId CURSE_OF_THE_FORTRESS_DONE; + @ClientString(id = 16203, message = "Curse of the Fortress (Completed)") + public static NpcStringId CURSE_OF_THE_FORTRESS_COMPLETED; @ClientString(id = 16301, message = "Legacy of the Poet") public static NpcStringId LEGACY_OF_THE_POET; @@ -3874,8 +3973,8 @@ public final class NpcStringId @ClientString(id = 16302, message = "Legacy of the Poet (In Progress)") public static NpcStringId LEGACY_OF_THE_POET_IN_PROGRESS; - @ClientString(id = 16303, message = "Legacy of the Poet (Done)") - public static NpcStringId LEGACY_OF_THE_POET_DONE; + @ClientString(id = 16303, message = "Legacy of the Poet (Completed)") + public static NpcStringId LEGACY_OF_THE_POET_COMPLETED; @ClientString(id = 16401, message = "Blood Fiend") public static NpcStringId BLOOD_FIEND; @@ -3883,8 +3982,8 @@ public final class NpcStringId @ClientString(id = 16402, message = "Blood Fiend (In Progress)") public static NpcStringId BLOOD_FIEND_IN_PROGRESS; - @ClientString(id = 16403, message = "Blood Fiend (Done)") - public static NpcStringId BLOOD_FIEND_DONE; + @ClientString(id = 16403, message = "Blood Fiend (Completed)") + public static NpcStringId BLOOD_FIEND_COMPLETED; @ClientString(id = 16404, message = "I will taste your blood!") public static NpcStringId I_WILL_TASTE_YOUR_BLOOD; @@ -3898,8 +3997,8 @@ public final class NpcStringId @ClientString(id = 16502, message = "Shilen's Hunt (In Progress)") public static NpcStringId SHILEN_S_HUNT_IN_PROGRESS; - @ClientString(id = 16503, message = "Shilen's Hunt (Done)") - public static NpcStringId SHILEN_S_HUNT_DONE; + @ClientString(id = 16503, message = "Shilen's Hunt (Completed)") + public static NpcStringId SHILEN_S_HUNT_COMPLETED; @ClientString(id = 16601, message = "Mass of Darkness") public static NpcStringId MASS_OF_DARKNESS; @@ -3907,8 +4006,8 @@ public final class NpcStringId @ClientString(id = 16602, message = "Mass of Darkness (In Progress)") public static NpcStringId MASS_OF_DARKNESS_IN_PROGRESS; - @ClientString(id = 16603, message = "Mass of Darkness (Done)") - public static NpcStringId MASS_OF_DARKNESS_DONE; + @ClientString(id = 16603, message = "Mass of Darkness (Completed)") + public static NpcStringId MASS_OF_DARKNESS_COMPLETED; @ClientString(id = 16701, message = "Dwarven Kinship") public static NpcStringId DWARVEN_KINSHIP; @@ -3916,8 +4015,8 @@ public final class NpcStringId @ClientString(id = 16702, message = "Dwarven Kinship (In Progress)") public static NpcStringId DWARVEN_KINSHIP_IN_PROGRESS; - @ClientString(id = 16703, message = "Dwarven Kinship (Done)") - public static NpcStringId DWARVEN_KINSHIP_DONE; + @ClientString(id = 16703, message = "Dwarven Kinship (Completed)") + public static NpcStringId DWARVEN_KINSHIP_COMPLETED; @ClientString(id = 16801, message = "Deliver Supplies") public static NpcStringId DELIVER_SUPPLIES; @@ -3925,8 +4024,8 @@ public final class NpcStringId @ClientString(id = 16802, message = "Deliver Supplies (In Progress)") public static NpcStringId DELIVER_SUPPLIES_IN_PROGRESS; - @ClientString(id = 16803, message = "Deliver Supplies (Done)") - public static NpcStringId DELIVER_SUPPLIES_DONE; + @ClientString(id = 16803, message = "Deliver Supplies (Completed)") + public static NpcStringId DELIVER_SUPPLIES_COMPLETED; @ClientString(id = 16901, message = "Offspring of Nightmares") public static NpcStringId OFFSPRING_OF_NIGHTMARES; @@ -3934,8 +4033,8 @@ public final class NpcStringId @ClientString(id = 16902, message = "Offspring of Nightmares (In Progress)") public static NpcStringId OFFSPRING_OF_NIGHTMARES_IN_PROGRESS; - @ClientString(id = 16903, message = "Offspring of Nightmares (Done)") - public static NpcStringId OFFSPRING_OF_NIGHTMARES_DONE; + @ClientString(id = 16903, message = "Offspring of Nightmares (Completed)") + public static NpcStringId OFFSPRING_OF_NIGHTMARES_COMPLETED; @ClientString(id = 17001, message = "Dangerous Seduction") public static NpcStringId DANGEROUS_SEDUCTION; @@ -3943,8 +4042,8 @@ public final class NpcStringId @ClientString(id = 17002, message = "Dangerous Seduction (In Progress)") public static NpcStringId DANGEROUS_SEDUCTION_IN_PROGRESS; - @ClientString(id = 17003, message = "Dangerous Seduction (Done)") - public static NpcStringId DANGEROUS_SEDUCTION_DONE; + @ClientString(id = 17003, message = "Dangerous Seduction (Completed)") + public static NpcStringId DANGEROUS_SEDUCTION_COMPLETED; @ClientString(id = 17004, message = "I'll cast you into an eternal nightmare!") public static NpcStringId I_LL_CAST_YOU_INTO_AN_ETERNAL_NIGHTMARE; @@ -3958,8 +4057,8 @@ public final class NpcStringId @ClientString(id = 17102, message = "Acts of Evil (In Progress)") public static NpcStringId ACTS_OF_EVIL_IN_PROGRESS; - @ClientString(id = 17103, message = "Acts of Evil (Done)") - public static NpcStringId ACTS_OF_EVIL_DONE; + @ClientString(id = 17103, message = "Acts of Evil (Completed)") + public static NpcStringId ACTS_OF_EVIL_COMPLETED; @ClientString(id = 17104, message = "Acts of Evil") public static NpcStringId ACTS_OF_EVIL_2; @@ -3973,8 +4072,8 @@ public final class NpcStringId @ClientString(id = 17202, message = "New Horizons (In Progress)") public static NpcStringId NEW_HORIZONS_IN_PROGRESS; - @ClientString(id = 17203, message = "New Horizons (Done)") - public static NpcStringId NEW_HORIZONS_DONE; + @ClientString(id = 17203, message = "New Horizons (Completed)") + public static NpcStringId NEW_HORIZONS_COMPLETED; @ClientString(id = 17301, message = "To the Isle of Souls") public static NpcStringId TO_THE_ISLE_OF_SOULS; @@ -3982,8 +4081,8 @@ public final class NpcStringId @ClientString(id = 17302, message = "To the Isle of Souls (In Progress)") public static NpcStringId TO_THE_ISLE_OF_SOULS_IN_PROGRESS; - @ClientString(id = 17303, message = "To the Isle of Souls (Done)") - public static NpcStringId TO_THE_ISLE_OF_SOULS_DONE; + @ClientString(id = 17303, message = "To the Isle of Souls (Completed)") + public static NpcStringId TO_THE_ISLE_OF_SOULS_COMPLETED; @ClientString(id = 17401, message = "Supply Check") public static NpcStringId SUPPLY_CHECK; @@ -3991,8 +4090,8 @@ public final class NpcStringId @ClientString(id = 17402, message = "Supply Check (In Progress)") public static NpcStringId SUPPLY_CHECK_IN_PROGRESS; - @ClientString(id = 17403, message = "Supply Check (Done)") - public static NpcStringId SUPPLY_CHECK_DONE; + @ClientString(id = 17403, message = "Supply Check (Completed)") + public static NpcStringId SUPPLY_CHECK_COMPLETED; @ClientString(id = 17501, message = "The Way of the Warrior") public static NpcStringId THE_WAY_OF_THE_WARRIOR; @@ -4000,8 +4099,8 @@ public final class NpcStringId @ClientString(id = 17502, message = "The Way of the Warrior (In Progress)") public static NpcStringId THE_WAY_OF_THE_WARRIOR_IN_PROGRESS; - @ClientString(id = 17503, message = "The Way of the Warrior (Done)") - public static NpcStringId THE_WAY_OF_THE_WARRIOR_DONE; + @ClientString(id = 17503, message = "The Way of the Warrior (Completed)") + public static NpcStringId THE_WAY_OF_THE_WARRIOR_COMPLETED; @ClientString(id = 17601, message = "Steps for Honor") public static NpcStringId STEPS_FOR_HONOR; @@ -4009,8 +4108,8 @@ public final class NpcStringId @ClientString(id = 17602, message = "Steps for Honor (In Progress)") public static NpcStringId STEPS_FOR_HONOR_IN_PROGRESS; - @ClientString(id = 17603, message = "Steps for Honor (Done)") - public static NpcStringId STEPS_FOR_HONOR_DONE; + @ClientString(id = 17603, message = "Steps for Honor (Completed)") + public static NpcStringId STEPS_FOR_HONOR_COMPLETED; @ClientString(id = 17604, message = "Steps for Honor") public static NpcStringId STEPS_FOR_HONOR_2; @@ -4033,8 +4132,8 @@ public final class NpcStringId @ClientString(id = 17802, message = "Iconic Trinity (In Progress)") public static NpcStringId ICONIC_TRINITY_IN_PROGRESS; - @ClientString(id = 17803, message = "Iconic Trinity (Done)") - public static NpcStringId ICONIC_TRINITY_DONE; + @ClientString(id = 17803, message = "Iconic Trinity (Completed)") + public static NpcStringId ICONIC_TRINITY_COMPLETED; @ClientString(id = 17901, message = "Into the Large Cavern") public static NpcStringId INTO_THE_LARGE_CAVERN; @@ -4042,8 +4141,8 @@ public final class NpcStringId @ClientString(id = 17902, message = "Into the Large Cavern (In Progress)") public static NpcStringId INTO_THE_LARGE_CAVERN_IN_PROGRESS; - @ClientString(id = 17903, message = "Into the Large Cavern (Done)") - public static NpcStringId INTO_THE_LARGE_CAVERN_DONE; + @ClientString(id = 17903, message = "Into the Large Cavern (Completed)") + public static NpcStringId INTO_THE_LARGE_CAVERN_COMPLETED; @ClientString(id = 17951, message = "The Veiled Creator...") public static NpcStringId THE_VEILED_CREATOR; @@ -4084,8 +4183,8 @@ public final class NpcStringId @ClientString(id = 18202, message = "New Recruits (In Progress)") public static NpcStringId NEW_RECRUITS_IN_PROGRESS; - @ClientString(id = 18203, message = "New Recruits (Done)") - public static NpcStringId NEW_RECRUITS_DONE; + @ClientString(id = 18203, message = "New Recruits (Completed)") + public static NpcStringId NEW_RECRUITS_COMPLETED; @ClientString(id = 18301, message = "|Lv. 40+| Relic Exploration") public static NpcStringId LV_40_RELIC_EXPLORATION; @@ -4189,10 +4288,10 @@ public final class NpcStringId @ClientString(id = 18567, message = "Go on an adventure! Sing with the winds with the Ertheia, children of the wind!") public static NpcStringId GO_ON_AN_ADVENTURE_SING_WITH_THE_WINDS_WITH_THE_ERTHEIA_CHILDREN_OF_THE_WIND; - @ClientString(id = 18568, message = " ") + @ClientString(id = 18568, message = "") public static NpcStringId EMPTY; - @ClientString(id = 18569, message = " ") + @ClientString(id = 18569, message = "") public static NpcStringId EMPTY_2; @ClientString(id = 18601, message = "|Lv. 41+| Contract Execution") @@ -4435,8 +4534,8 @@ public final class NpcStringId @ClientString(id = 20102, message = "Fighter's Tutorial (In Progress)") public static NpcStringId FIGHTER_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20103, message = "Fighter's Tutorial (Done)") - public static NpcStringId FIGHTER_S_TUTORIAL_DONE; + @ClientString(id = 20103, message = "Fighter's Tutorial (Completed)") + public static NpcStringId FIGHTER_S_TUTORIAL_COMPLETED; @ClientString(id = 20201, message = "Mystic's Tutorial") public static NpcStringId MYSTIC_S_TUTORIAL; @@ -4444,8 +4543,8 @@ public final class NpcStringId @ClientString(id = 20202, message = "Mystic's Tutorial (In Progress)") public static NpcStringId MYSTIC_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20203, message = "Mystic's Tutorial (Done)") - public static NpcStringId MYSTIC_S_TUTORIAL_DONE; + @ClientString(id = 20203, message = "Mystic's Tutorial (Completed)") + public static NpcStringId MYSTIC_S_TUTORIAL_COMPLETED; @ClientString(id = 20301, message = "Elf's Tutorial") public static NpcStringId ELF_S_TUTORIAL; @@ -4453,8 +4552,8 @@ public final class NpcStringId @ClientString(id = 20302, message = "Elf's Tutorial (In Progress)") public static NpcStringId ELF_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20303, message = "Elf's Tutorial (Done)") - public static NpcStringId ELF_S_TUTORIAL_DONE; + @ClientString(id = 20303, message = "Elf's Tutorial (Completed)") + public static NpcStringId ELF_S_TUTORIAL_COMPLETED; @ClientString(id = 20401, message = "Dark Elf's Tutorial") public static NpcStringId DARK_ELF_S_TUTORIAL; @@ -4462,8 +4561,8 @@ public final class NpcStringId @ClientString(id = 20402, message = "Dark Elf's Tutorial (In Progress)") public static NpcStringId DARK_ELF_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20403, message = "Dark Elf's Tutorial (Done)") - public static NpcStringId DARK_ELF_S_TUTORIAL_DONE; + @ClientString(id = 20403, message = "Dark Elf's Tutorial (Completed)") + public static NpcStringId DARK_ELF_S_TUTORIAL_COMPLETED; @ClientString(id = 20501, message = "Orc's Tutorial") public static NpcStringId ORC_S_TUTORIAL; @@ -4471,8 +4570,8 @@ public final class NpcStringId @ClientString(id = 20502, message = "Orc's Tutorial (In Progress)") public static NpcStringId ORC_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20503, message = "Orc's Tutorial (Done)") - public static NpcStringId ORC_S_TUTORIAL_DONE; + @ClientString(id = 20503, message = "Orc's Tutorial (Completed)") + public static NpcStringId ORC_S_TUTORIAL_COMPLETED; @ClientString(id = 20601, message = "Dwarf's Tutorial") public static NpcStringId DWARF_S_TUTORIAL; @@ -4480,8 +4579,8 @@ public final class NpcStringId @ClientString(id = 20602, message = "Dwarf's Tutorial (In Progress)") public static NpcStringId DWARF_S_TUTORIAL_IN_PROGRESS; - @ClientString(id = 20603, message = "Dwarf's Tutorial (Done)") - public static NpcStringId DWARF_S_TUTORIAL_DONE; + @ClientString(id = 20603, message = "Dwarf's Tutorial (Completed)") + public static NpcStringId DWARF_S_TUTORIAL_COMPLETED; @ClientString(id = 20901, message = "Kamael Tutorial") public static NpcStringId KAMAEL_TUTORIAL; @@ -4504,8 +4603,8 @@ public final class NpcStringId @ClientString(id = 21102, message = "Trial of the Challenger (In Progress)") public static NpcStringId TRIAL_OF_THE_CHALLENGER_IN_PROGRESS; - @ClientString(id = 21103, message = "Trial of the Challenger (Done)") - public static NpcStringId TRIAL_OF_THE_CHALLENGER_DONE; + @ClientString(id = 21103, message = "Trial of the Challenger (Completed)") + public static NpcStringId TRIAL_OF_THE_CHALLENGER_COMPLETED; @ClientString(id = 21201, message = "Trial of Duty") public static NpcStringId TRIAL_OF_DUTY; @@ -4513,8 +4612,8 @@ public final class NpcStringId @ClientString(id = 21202, message = "Trial of Duty (In Progress)") public static NpcStringId TRIAL_OF_DUTY_IN_PROGRESS; - @ClientString(id = 21203, message = "Trial of Duty (Done)") - public static NpcStringId TRIAL_OF_DUTY_DONE; + @ClientString(id = 21203, message = "Trial of Duty (Completed)") + public static NpcStringId TRIAL_OF_DUTY_COMPLETED; @ClientString(id = 21301, message = "Trial of the Seeker") public static NpcStringId TRIAL_OF_THE_SEEKER; @@ -4522,8 +4621,8 @@ public final class NpcStringId @ClientString(id = 21302, message = "Trial of the Seeker (In Progress)") public static NpcStringId TRIAL_OF_THE_SEEKER_IN_PROGRESS; - @ClientString(id = 21303, message = "Trial of the Seeker (Done)") - public static NpcStringId TRIAL_OF_THE_SEEKER_DONE; + @ClientString(id = 21303, message = "Trial of the Seeker (Completed)") + public static NpcStringId TRIAL_OF_THE_SEEKER_COMPLETED; @ClientString(id = 21401, message = "Trial of the Scholar") public static NpcStringId TRIAL_OF_THE_SCHOLAR; @@ -4531,8 +4630,8 @@ public final class NpcStringId @ClientString(id = 21402, message = "Trial of the Scholar (In Progress)") public static NpcStringId TRIAL_OF_THE_SCHOLAR_IN_PROGRESS; - @ClientString(id = 21403, message = "Trial of the Scholar (Done)") - public static NpcStringId TRIAL_OF_THE_SCHOLAR_DONE; + @ClientString(id = 21403, message = "Trial of the Scholar (Completed)") + public static NpcStringId TRIAL_OF_THE_SCHOLAR_COMPLETED; @ClientString(id = 21501, message = "Trial of the Pilgrim") public static NpcStringId TRIAL_OF_THE_PILGRIM; @@ -4540,8 +4639,8 @@ public final class NpcStringId @ClientString(id = 21502, message = "Trial of the Pilgrim (In Progress)") public static NpcStringId TRIAL_OF_THE_PILGRIM_IN_PROGRESS; - @ClientString(id = 21503, message = "Trial of the Pilgrim (Done)") - public static NpcStringId TRIAL_OF_THE_PILGRIM_DONE; + @ClientString(id = 21503, message = "Trial of the Pilgrim (Completed)") + public static NpcStringId TRIAL_OF_THE_PILGRIM_COMPLETED; @ClientString(id = 21601, message = "Trial of the Guildsman") public static NpcStringId TRIAL_OF_THE_GUILDSMAN; @@ -4549,8 +4648,8 @@ public final class NpcStringId @ClientString(id = 21602, message = "Trial of the Guildsman (In Progress)") public static NpcStringId TRIAL_OF_THE_GUILDSMAN_IN_PROGRESS; - @ClientString(id = 21603, message = "Trial of the Guildsman (Done)") - public static NpcStringId TRIAL_OF_THE_GUILDSMAN_DONE; + @ClientString(id = 21603, message = "Trial of the Guildsman (Completed)") + public static NpcStringId TRIAL_OF_THE_GUILDSMAN_COMPLETED; @ClientString(id = 21701, message = "Testimony of Trust") public static NpcStringId TESTIMONY_OF_TRUST; @@ -4558,8 +4657,8 @@ public final class NpcStringId @ClientString(id = 21702, message = "Testimony of Trust (In Progress)") public static NpcStringId TESTIMONY_OF_TRUST_IN_PROGRESS; - @ClientString(id = 21703, message = "Testimony of Trust (Done)") - public static NpcStringId TESTIMONY_OF_TRUST_DONE; + @ClientString(id = 21703, message = "Testimony of Trust (Completed)") + public static NpcStringId TESTIMONY_OF_TRUST_COMPLETED; @ClientString(id = 21801, message = "Testimony of Life") public static NpcStringId TESTIMONY_OF_LIFE; @@ -4567,8 +4666,8 @@ public final class NpcStringId @ClientString(id = 21802, message = "Testimony of Life (In Progress)") public static NpcStringId TESTIMONY_OF_LIFE_IN_PROGRESS; - @ClientString(id = 21803, message = "Testimony of Life (Done)") - public static NpcStringId TESTIMONY_OF_LIFE_DONE; + @ClientString(id = 21803, message = "Testimony of Life (Completed)") + public static NpcStringId TESTIMONY_OF_LIFE_COMPLETED; @ClientString(id = 21901, message = "Testimony of Fate") public static NpcStringId TESTIMONY_OF_FATE; @@ -4576,8 +4675,8 @@ public final class NpcStringId @ClientString(id = 21902, message = "Testimony of Fate (In Progress)") public static NpcStringId TESTIMONY_OF_FATE_IN_PROGRESS; - @ClientString(id = 21903, message = "Testimony of Fate (Done)") - public static NpcStringId TESTIMONY_OF_FATE_DONE; + @ClientString(id = 21903, message = "Testimony of Fate (Completed)") + public static NpcStringId TESTIMONY_OF_FATE_COMPLETED; @ClientString(id = 22001, message = "Testimony of Glory") public static NpcStringId TESTIMONY_OF_GLORY; @@ -4585,8 +4684,8 @@ public final class NpcStringId @ClientString(id = 22002, message = "Testimony of Glory (In Progress)") public static NpcStringId TESTIMONY_OF_GLORY_IN_PROGRESS; - @ClientString(id = 22003, message = "Testimony of Glory (Done)") - public static NpcStringId TESTIMONY_OF_GLORY_DONE; + @ClientString(id = 22003, message = "Testimony of Glory (Completed)") + public static NpcStringId TESTIMONY_OF_GLORY_COMPLETED; @ClientString(id = 22051, message = "Is it a lackey of Kakai?!") public static NpcStringId IS_IT_A_LACKEY_OF_KAKAI; @@ -4615,8 +4714,8 @@ public final class NpcStringId @ClientString(id = 22102, message = "Testimony of Prosperity (In Progress)") public static NpcStringId TESTIMONY_OF_PROSPERITY_IN_PROGRESS; - @ClientString(id = 22103, message = "Testimony of Prosperity (Done)") - public static NpcStringId TESTIMONY_OF_PROSPERITY_DONE; + @ClientString(id = 22103, message = "Testimony of Prosperity (Completed)") + public static NpcStringId TESTIMONY_OF_PROSPERITY_COMPLETED; @ClientString(id = 22201, message = "Test of the Duelist") public static NpcStringId TEST_OF_THE_DUELIST; @@ -4624,8 +4723,8 @@ public final class NpcStringId @ClientString(id = 22202, message = "Test of the Duelist (In Progress)") public static NpcStringId TEST_OF_THE_DUELIST_IN_PROGRESS; - @ClientString(id = 22203, message = "Test of the Duelist (Done)") - public static NpcStringId TEST_OF_THE_DUELIST_DONE; + @ClientString(id = 22203, message = "Test of the Duelist (Completed)") + public static NpcStringId TEST_OF_THE_DUELIST_COMPLETED; @ClientString(id = 22301, message = "Test of the Champion") public static NpcStringId TEST_OF_THE_CHAMPION; @@ -4633,8 +4732,8 @@ public final class NpcStringId @ClientString(id = 22302, message = "Test of the Champion (In Progress)") public static NpcStringId TEST_OF_THE_CHAMPION_IN_PROGRESS; - @ClientString(id = 22303, message = "Test of the Champion (Done)") - public static NpcStringId TEST_OF_THE_CHAMPION_DONE; + @ClientString(id = 22303, message = "Test of the Champion (Completed)") + public static NpcStringId TEST_OF_THE_CHAMPION_COMPLETED; @ClientString(id = 22401, message = "Test of Sagittarius") public static NpcStringId TEST_OF_SAGITTARIUS; @@ -4642,8 +4741,8 @@ public final class NpcStringId @ClientString(id = 22402, message = "Test of Sagittarius (In Progress)") public static NpcStringId TEST_OF_SAGITTARIUS_IN_PROGRESS; - @ClientString(id = 22403, message = "Test of Sagittarius (Done)") - public static NpcStringId TEST_OF_SAGITTARIUS_DONE; + @ClientString(id = 22403, message = "Test of Sagittarius (Completed)") + public static NpcStringId TEST_OF_SAGITTARIUS_COMPLETED; @ClientString(id = 22501, message = "Test of the Searcher") public static NpcStringId TEST_OF_THE_SEARCHER; @@ -4651,8 +4750,8 @@ public final class NpcStringId @ClientString(id = 22502, message = "Test of the Searcher (In Progress)") public static NpcStringId TEST_OF_THE_SEARCHER_IN_PROGRESS; - @ClientString(id = 22503, message = "Test of the Searcher (Done)") - public static NpcStringId TEST_OF_THE_SEARCHER_DONE; + @ClientString(id = 22503, message = "Test of the Searcher (Completed)") + public static NpcStringId TEST_OF_THE_SEARCHER_COMPLETED; @ClientString(id = 22601, message = "Test of the Healer") public static NpcStringId TEST_OF_THE_HEALER; @@ -4660,8 +4759,8 @@ public final class NpcStringId @ClientString(id = 22602, message = "Test of the Healer (In Progress)") public static NpcStringId TEST_OF_THE_HEALER_IN_PROGRESS; - @ClientString(id = 22603, message = "Test of the Healer (Done)") - public static NpcStringId TEST_OF_THE_HEALER_DONE; + @ClientString(id = 22603, message = "Test of the Healer (Completed)") + public static NpcStringId TEST_OF_THE_HEALER_COMPLETED; @ClientString(id = 22701, message = "Test of the Reformer") public static NpcStringId TEST_OF_THE_REFORMER; @@ -4669,8 +4768,8 @@ public final class NpcStringId @ClientString(id = 22702, message = "Test of the Reformer (In Progress)") public static NpcStringId TEST_OF_THE_REFORMER_IN_PROGRESS; - @ClientString(id = 22703, message = "Test of the Reformer (Done)") - public static NpcStringId TEST_OF_THE_REFORMER_DONE; + @ClientString(id = 22703, message = "Test of the Reformer (Completed)") + public static NpcStringId TEST_OF_THE_REFORMER_COMPLETED; @ClientString(id = 22719, message = "The concealed truth will always be revealed...!") public static NpcStringId THE_CONCEALED_TRUTH_WILL_ALWAYS_BE_REVEALED; @@ -4684,8 +4783,8 @@ public final class NpcStringId @ClientString(id = 22802, message = "Test of Magus (In Progress)") public static NpcStringId TEST_OF_MAGUS_IN_PROGRESS; - @ClientString(id = 22803, message = "Test of Magus (Done)") - public static NpcStringId TEST_OF_MAGUS_DONE; + @ClientString(id = 22803, message = "Test of Magus (Completed)") + public static NpcStringId TEST_OF_MAGUS_COMPLETED; @ClientString(id = 22819, message = "I am a tree of nothing... a tree... that knows where to return...") public static NpcStringId I_AM_A_TREE_OF_NOTHING_A_TREE_THAT_KNOWS_WHERE_TO_RETURN; @@ -4702,8 +4801,8 @@ public final class NpcStringId @ClientString(id = 22902, message = "Test of Witchcraft (In Progress)") public static NpcStringId TEST_OF_WITCHCRAFT_IN_PROGRESS; - @ClientString(id = 22903, message = "Test of Witchcraft (Done)") - public static NpcStringId TEST_OF_WITCHCRAFT_DONE; + @ClientString(id = 22903, message = "Test of Witchcraft (Completed)") + public static NpcStringId TEST_OF_WITCHCRAFT_COMPLETED; @ClientString(id = 22933, message = "I absolutely cannot give it to you! It is my precious jewel!") public static NpcStringId I_ABSOLUTELY_CANNOT_GIVE_IT_TO_YOU_IT_IS_MY_PRECIOUS_JEWEL; @@ -4726,8 +4825,8 @@ public final class NpcStringId @ClientString(id = 23002, message = "Test of the Summoner (In Progress)") public static NpcStringId TEST_OF_THE_SUMMONER_IN_PROGRESS; - @ClientString(id = 23003, message = "Test of the Summoner (Done)") - public static NpcStringId TEST_OF_THE_SUMMONER_DONE; + @ClientString(id = 23003, message = "Test of the Summoner (Completed)") + public static NpcStringId TEST_OF_THE_SUMMONER_COMPLETED; @ClientString(id = 23060, message = "START DUEL") public static NpcStringId START_DUEL; @@ -4807,8 +4906,8 @@ public final class NpcStringId @ClientString(id = 23102, message = "Test of the Maestro (In Progress)") public static NpcStringId TEST_OF_THE_MAESTRO_IN_PROGRESS; - @ClientString(id = 23103, message = "Test of the Maestro (Done)") - public static NpcStringId TEST_OF_THE_MAESTRO_DONE; + @ClientString(id = 23103, message = "Test of the Maestro (Completed)") + public static NpcStringId TEST_OF_THE_MAESTRO_COMPLETED; @ClientString(id = 23201, message = "Test of the Lord") public static NpcStringId TEST_OF_THE_LORD; @@ -4816,8 +4915,8 @@ public final class NpcStringId @ClientString(id = 23202, message = "Test of the Lord (In Progress)") public static NpcStringId TEST_OF_THE_LORD_IN_PROGRESS; - @ClientString(id = 23203, message = "Test of the Lord (Done)") - public static NpcStringId TEST_OF_THE_LORD_DONE; + @ClientString(id = 23203, message = "Test of the Lord (Completed)") + public static NpcStringId TEST_OF_THE_LORD_COMPLETED; @ClientString(id = 23301, message = "Test of the War Spirit") public static NpcStringId TEST_OF_THE_WAR_SPIRIT; @@ -4825,8 +4924,8 @@ public final class NpcStringId @ClientString(id = 23302, message = "Test of the War Spirit (In Progress)") public static NpcStringId TEST_OF_THE_WAR_SPIRIT_IN_PROGRESS; - @ClientString(id = 23303, message = "Test of the War Spirit (Done)") - public static NpcStringId TEST_OF_THE_WAR_SPIRIT_DONE; + @ClientString(id = 23303, message = "Test of the War Spirit (Completed)") + public static NpcStringId TEST_OF_THE_WAR_SPIRIT_COMPLETED; @ClientString(id = 23401, message = "Fate's Whisper") public static NpcStringId FATE_S_WHISPER; @@ -4834,8 +4933,8 @@ public final class NpcStringId @ClientString(id = 23402, message = "Fate's Whisper (In Progress)") public static NpcStringId FATE_S_WHISPER_IN_PROGRESS; - @ClientString(id = 23403, message = "Fate's Whisper (Done)") - public static NpcStringId FATE_S_WHISPER_DONE; + @ClientString(id = 23403, message = "Fate's Whisper (Completed)") + public static NpcStringId FATE_S_WHISPER_COMPLETED; @ClientString(id = 23404, message = "Fate's Whisper") public static NpcStringId FATE_S_WHISPER_2; @@ -4849,8 +4948,8 @@ public final class NpcStringId @ClientString(id = 23502, message = "Mimir's Elixir (In Progress)") public static NpcStringId MIMIR_S_ELIXIR_IN_PROGRESS; - @ClientString(id = 23503, message = "Mimir's Elixir (Done)") - public static NpcStringId MIMIR_S_ELIXIR_DONE; + @ClientString(id = 23503, message = "Mimir's Elixir (Completed)") + public static NpcStringId MIMIR_S_ELIXIR_COMPLETED; @ClientString(id = 23504, message = "Mimir's Elixir") public static NpcStringId MIMIR_S_ELIXIR_2; @@ -4861,8 +4960,8 @@ public final class NpcStringId @ClientString(id = 23602, message = "Seeds of Chaos (In Progress)") public static NpcStringId SEEDS_OF_CHAOS_IN_PROGRESS; - @ClientString(id = 23603, message = "Seeds of Chaos (Done)") - public static NpcStringId SEEDS_OF_CHAOS_DONE; + @ClientString(id = 23603, message = "Seeds of Chaos (Completed)") + public static NpcStringId SEEDS_OF_CHAOS_COMPLETED; @ClientString(id = 23604, message = "Seeds of Chaos") public static NpcStringId SEEDS_OF_CHAOS_2; @@ -4963,8 +5062,8 @@ public final class NpcStringId @ClientString(id = 24102, message = "Path of the Noblesse, Precious Soul - 1 (In Progress)") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_1_IN_PROGRESS; - @ClientString(id = 24103, message = "Path of the Noblesse, Precious Soul - 1 (Done)") - public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_1_DONE; + @ClientString(id = 24103, message = "Path of the Noblesse, Precious Soul - 1 (Completed)") + public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_1_COMPLETED; @ClientString(id = 24104, message = "Path of the Noblesse, Precious Soul - 1") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_1_2; @@ -4975,8 +5074,8 @@ public final class NpcStringId @ClientString(id = 24202, message = "Path of the Noblesse, Precious Soul - 2 (In Progress)") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_2_IN_PROGRESS; - @ClientString(id = 24203, message = "Path of the Noblesse, Precious Soul - 2 (Done)") - public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_2_DONE; + @ClientString(id = 24203, message = "Path of the Noblesse, Precious Soul - 2 (Completed)") + public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_2_COMPLETED; @ClientString(id = 24204, message = "Path of the Noblesse, Precious Soul - 2") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_2_2; @@ -4987,8 +5086,8 @@ public final class NpcStringId @ClientString(id = 24402, message = "Follow Me (In Progress)") public static NpcStringId FOLLOW_ME_IN_PROGRESS; - @ClientString(id = 24403, message = "Follow Me (Done)") - public static NpcStringId FOLLOW_ME_DONE; + @ClientString(id = 24403, message = "Follow Me (Completed)") + public static NpcStringId FOLLOW_ME_COMPLETED; @ClientString(id = 24404, message = "Follow Me") public static NpcStringId FOLLOW_ME_2; @@ -5017,8 +5116,8 @@ public final class NpcStringId @ClientString(id = 24602, message = "Path of the Noblesse, Precious Soul - 3 (In Progress)") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_3_IN_PROGRESS; - @ClientString(id = 24603, message = "Path of the Noblesse, Precious Soul - 3 (Done)") - public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_3_DONE; + @ClientString(id = 24603, message = "Path of the Noblesse, Precious Soul - 3 (Completed)") + public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_3_COMPLETED; @ClientString(id = 24604, message = "Path of the Noblesse, Precious Soul - 3") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_3_2; @@ -5029,8 +5128,8 @@ public final class NpcStringId @ClientString(id = 24702, message = "Path of the Noblesse, Precious Soul - 4 (In Progress)") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_4_IN_PROGRESS; - @ClientString(id = 24703, message = "Path of the Noblesse, Precious Soul - 4 (Done)") - public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_4_DONE; + @ClientString(id = 24703, message = "Path of the Noblesse, Precious Soul - 4 (Completed)") + public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_4_COMPLETED; @ClientString(id = 24704, message = "Path of the Noblesse, Precious Soul - 4") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_4_2; @@ -5050,8 +5149,8 @@ public final class NpcStringId @ClientString(id = 24902, message = "Poisoned Plains of the Lizardmen (In Progress)") public static NpcStringId POISONED_PLAINS_OF_THE_LIZARDMEN_IN_PROGRESS; - @ClientString(id = 24903, message = "Poisoned Plains of the Lizardmen (Done)") - public static NpcStringId POISONED_PLAINS_OF_THE_LIZARDMEN_DONE; + @ClientString(id = 24903, message = "Poisoned Plains of the Lizardmen (Completed)") + public static NpcStringId POISONED_PLAINS_OF_THE_LIZARDMEN_COMPLETED; @ClientString(id = 24904, message = "Poisoned Plains of the Lizardmen") public static NpcStringId POISONED_PLAINS_OF_THE_LIZARDMEN_2; @@ -5062,8 +5161,8 @@ public final class NpcStringId @ClientString(id = 25002, message = "Watch What You Eat (In Progress)") public static NpcStringId WATCH_WHAT_YOU_EAT_IN_PROGRESS; - @ClientString(id = 25003, message = "Watch What You Eat (Done)") - public static NpcStringId WATCH_WHAT_YOU_EAT_DONE; + @ClientString(id = 25003, message = "Watch What You Eat (Completed)") + public static NpcStringId WATCH_WHAT_YOU_EAT_COMPLETED; @ClientString(id = 25004, message = "Watch What You Eat") public static NpcStringId WATCH_WHAT_YOU_EAT_2; @@ -5074,8 +5173,8 @@ public final class NpcStringId @ClientString(id = 25102, message = "No Secrets (In Progress)") public static NpcStringId NO_SECRETS_IN_PROGRESS; - @ClientString(id = 25103, message = "No Secrets (Done)") - public static NpcStringId NO_SECRETS_DONE; + @ClientString(id = 25103, message = "No Secrets (Completed)") + public static NpcStringId NO_SECRETS_COMPLETED; @ClientString(id = 25104, message = "No Secrets") public static NpcStringId NO_SECRETS_2; @@ -5086,8 +5185,8 @@ public final class NpcStringId @ClientString(id = 25202, message = "It Smells Delicious! (In Progress)") public static NpcStringId IT_SMELLS_DELICIOUS_IN_PROGRESS; - @ClientString(id = 25203, message = "It Smells Delicious! (Done)") - public static NpcStringId IT_SMELLS_DELICIOUS_DONE; + @ClientString(id = 25203, message = "It Smells Delicious! (Completed)") + public static NpcStringId IT_SMELLS_DELICIOUS_COMPLETED; @ClientString(id = 25204, message = "It Smells Delicious!") public static NpcStringId IT_SMELLS_DELICIOUS_2; @@ -5107,8 +5206,8 @@ public final class NpcStringId @ClientString(id = 25702, message = "The Guard is Busy (In Progress)") public static NpcStringId THE_GUARD_IS_BUSY_IN_PROGRESS; - @ClientString(id = 25703, message = "The Guard is Busy (Done)") - public static NpcStringId THE_GUARD_IS_BUSY_DONE; + @ClientString(id = 25703, message = "The Guard is Busy (Completed)") + public static NpcStringId THE_GUARD_IS_BUSY_COMPLETED; @ClientString(id = 25801, message = "Bring Wolf Pelts") public static NpcStringId BRING_WOLF_PELTS; @@ -5116,7 +5215,7 @@ public final class NpcStringId @ClientString(id = 25802, message = "Bring Wolf Pelts (In Progress)") public static NpcStringId BRING_WOLF_PELTS_IN_PROGRESS; - @ClientString(id = 25901, message = "Request from the Farm Owner ") + @ClientString(id = 25901, message = "Request from the Farm Owner") public static NpcStringId REQUEST_FROM_THE_FARM_OWNER; @ClientString(id = 25902, message = "Request from the Farm Owner (In Progress)") @@ -5572,8 +5671,8 @@ public final class NpcStringId @ClientString(id = 33402, message = "The Wishing Potion (In Progress)") public static NpcStringId THE_WISHING_POTION_IN_PROGRESS; - @ClientString(id = 33403, message = "The Wishing Potion (Done)") - public static NpcStringId THE_WISHING_POTION_DONE; + @ClientString(id = 33403, message = "The Wishing Potion (Completed)") + public static NpcStringId THE_WISHING_POTION_COMPLETED; @ClientString(id = 33404, message = "The Wishing Potion") public static NpcStringId THE_WISHING_POTION_2; @@ -6301,7 +6400,7 @@ public final class NpcStringId @ClientString(id = 40909, message = "The sacred flame is ours!") public static NpcStringId THE_SACRED_FLAME_IS_OURS; - @ClientString(id = 40910, message = "Arrghh...we shall never.. surrender... ") + @ClientString(id = 40910, message = "Arrghh...we shall never.. surrender...") public static NpcStringId ARRGHH_WE_SHALL_NEVER_SURRENDER; @ClientString(id = 40911, message = "The sacred flame is ours") @@ -6709,10 +6808,10 @@ public final class NpcStringId @ClientString(id = 45684, message = "Dominion Crossbow") public static NpcStringId DOMINION_CROSSBOW; - @ClientString(id = 45685, message = "Blessed Scroll: Enchant Weapon (S-grade) ") + @ClientString(id = 45685, message = "Blessed Scroll: Enchant Weapon (S-grade)") public static NpcStringId BLESSED_SCROLL_ENCHANT_WEAPON_S_GRADE; - @ClientString(id = 45686, message = "Blessed Scroll: Enchant Armor (S-grade) ") + @ClientString(id = 45686, message = "Blessed Scroll: Enchant Armor (S-grade)") public static NpcStringId BLESSED_SCROLL_ENCHANT_ARMOR_S_GRADE; @ClientString(id = 45687, message = "Fire Crystal") @@ -6733,7 +6832,7 @@ public final class NpcStringId @ClientString(id = 45692, message = "Dark Crystal") public static NpcStringId DARK_CRYSTAL; - @ClientString(id = 45693, message = "Scroll: Enchant Weapon (S-grade) ") + @ClientString(id = 45693, message = "Scroll: Enchant Weapon (S-grade)") public static NpcStringId SCROLL_ENCHANT_WEAPON_S_GRADE; @ClientString(id = 45701, message = "|Lv. 82+| Lost and Found") @@ -6790,8 +6889,8 @@ public final class NpcStringId @ClientString(id = 46102, message = "Rumble in the Base (In Progress)") public static NpcStringId RUMBLE_IN_THE_BASE_IN_PROGRESS; - @ClientString(id = 46103, message = "Rumble in the Base (Done)") - public static NpcStringId RUMBLE_IN_THE_BASE_DONE; + @ClientString(id = 46103, message = "Rumble in the Base (Completed)") + public static NpcStringId RUMBLE_IN_THE_BASE_COMPLETED; @ClientString(id = 46104, message = "Rumble in the Base") public static NpcStringId RUMBLE_IN_THE_BASE_2; @@ -6994,8 +7093,8 @@ public final class NpcStringId @ClientString(id = 47802, message = "Nightmares of Dwarves (In Progress)") public static NpcStringId NIGHTMARES_OF_DWARVES_IN_PROGRESS; - @ClientString(id = 47803, message = "Nightmares of Dwarves (Done)") - public static NpcStringId NIGHTMARES_OF_DWARVES_DONE; + @ClientString(id = 47803, message = "Nightmares of Dwarves (Completed)") + public static NpcStringId NIGHTMARES_OF_DWARVES_COMPLETED; @ClientString(id = 47804, message = "Nightmares of Dwarves") public static NpcStringId NIGHTMARES_OF_DWARVES_2; @@ -7075,8 +7174,8 @@ public final class NpcStringId @ClientString(id = 47902, message = "Destroying the Eggs of Trasken (In Progress)") public static NpcStringId DESTROYING_THE_EGGS_OF_TRASKEN_IN_PROGRESS; - @ClientString(id = 47903, message = "Destroying the Eggs of Trasken (Done)") - public static NpcStringId DESTROYING_THE_EGGS_OF_TRASKEN_DONE; + @ClientString(id = 47903, message = "Destroying the Eggs of Trasken (Completed)") + public static NpcStringId DESTROYING_THE_EGGS_OF_TRASKEN_COMPLETED; @ClientString(id = 47904, message = "Destroying the Eggs of Trasken") public static NpcStringId DESTROYING_THE_EGGS_OF_TRASKEN_2; @@ -7246,89 +7345,89 @@ public final class NpcStringId @ClientString(id = 49251, message = "Thanks again for today's work. I will see you tomorrow.") public static NpcStringId THANKS_AGAIN_FOR_TODAY_S_WORK_I_WILL_SEE_YOU_TOMORROW; - @ClientString(id = 49301, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS; + @ClientString(id = 49301, message = "|Lv. 94-104| Kicking Out Unwelcome Guests") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS; - @ClientString(id = 49302, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests (In progress)") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_IN_PROGRESS; + @ClientString(id = 49302, message = "|Lv. 94-104| Kicking Out Unwelcome Guests (In progress)") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_IN_PROGRESS; - @ClientString(id = 49303, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests (Completed)") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_COMPLETED; + @ClientString(id = 49303, message = "|Lv. 94-104| Kicking Out Unwelcome Guests (Completed)") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_COMPLETED; - @ClientString(id = 49304, message = "|Lv. 95 - 105| Kicking Out Unwelcome Guests") - public static NpcStringId LV_95_105_KICKING_OUT_UNWELCOME_GUESTS_2; + @ClientString(id = 49304, message = "|Lv. 94-104| Kicking Out Unwelcome Guests") + public static NpcStringId LV_94_104_KICKING_OUT_UNWELCOME_GUESTS_2; - @ClientString(id = 49401, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA; + @ClientString(id = 49401, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY; - @ClientString(id = 49402, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (In progress)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS; + @ClientString(id = 49402, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party) (In progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_IN_PROGRESS; - @ClientString(id = 49403, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Completed)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_COMPLETED; + @ClientString(id = 49403, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party) (Completed)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_COMPLETED; - @ClientString(id = 49404, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_2; + @ClientString(id = 49404, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Party)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_PARTY_2; - @ClientString(id = 49501, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE; + @ClientString(id = 49501, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY; - @ClientString(id = 49502, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (In progress)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS; + @ClientString(id = 49502, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party) (In progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_IN_PROGRESS; - @ClientString(id = 49503, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Completed)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_COMPLETED; + @ClientString(id = 49503, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party) (Completed)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_COMPLETED; - @ClientString(id = 49504, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_2; + @ClientString(id = 49504, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Party)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_PARTY_2; - @ClientString(id = 49601, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS; + @ClientString(id = 49601, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY; - @ClientString(id = 49602, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (In progress)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS; + @ClientString(id = 49602, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party) (In progress)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_IN_PROGRESS; - @ClientString(id = 49603, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Completed)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_COMPLETED; + @ClientString(id = 49603, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party) (Completed)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_COMPLETED; - @ClientString(id = 49604, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_2; + @ClientString(id = 49604, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Party)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_PARTY_2; - @ClientString(id = 49701, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_3; + @ClientString(id = 49701, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Solo)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO; - @ClientString(id = 49702, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (In progress)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS_2; + @ClientString(id = 49702, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Solo) (In progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_IN_PROGRESS; - @ClientString(id = 49703, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka (Completed)") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_COMPLETED_2; + @ClientString(id = 49703, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Solo) (Completed)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_COMPLETED; - @ClientString(id = 49704, message = "|Lv. 85 - 89| Incarnation of Greed Zellaka") - public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_4; + @ClientString(id = 49704, message = "|Lv. 85 - 89| Incarnation of Greed, Zellaka (Solo)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_SOLO_2; - @ClientString(id = 49801, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_3; + @ClientString(id = 49801, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Solo)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO; - @ClientString(id = 49802, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (In progress)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS_2; + @ClientString(id = 49802, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Solo) (In progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_IN_PROGRESS; - @ClientString(id = 49803, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline (Completed)") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_COMPLETED_2; + @ClientString(id = 49803, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Solo) (Completed)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_COMPLETED; - @ClientString(id = 49804, message = "|Lv. 90 - 94| Incarnation of Jealousy Pelline") - public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_4; + @ClientString(id = 49804, message = "|Lv. 90 - 94| Incarnation of Jealousy, Pelline (Solo)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_SOLO_2; - @ClientString(id = 49901, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_3; + @ClientString(id = 49901, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Solo)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO; - @ClientString(id = 49902, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (In progress)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS_2; + @ClientString(id = 49902, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Solo) (In progress)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_IN_PROGRESS; - @ClientString(id = 49903, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios (Completed)") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_COMPLETED_2; + @ClientString(id = 49903, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Solo) (Completed)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_COMPLETED; - @ClientString(id = 49904, message = "|Lv. 95 - 105| Incarnation of Gluttony Kalios") - public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_4; + @ClientString(id = 49904, message = "|Lv. 95 - 105| Incarnation of Gluttony, Kalios (Solo)") + public static NpcStringId LV_95_105_INCARNATION_OF_GLUTTONY_KALIOS_SOLO_2; @ClientString(id = 50001, message = "|Lv. 85+| Brothers Bound in Chains") public static NpcStringId LV_85_BROTHERS_BOUND_IN_CHAINS; @@ -7480,6 +7579,21 @@ public final class NpcStringId @ClientString(id = 51204, message = "|Lv. 90+| Blade Under Foot") public static NpcStringId LV_90_BLADE_UNDER_FOOT_2; + @ClientString(id = 52901, message = "|Lv. 106+| Regular Barrier Maintenance") + public static NpcStringId LV_106_REGULAR_BARRIER_MAINTENANCE; + + @ClientString(id = 52902, message = "|Lv. 106+| Regular Barrier Maintenance (In progress)") + public static NpcStringId LV_106_REGULAR_BARRIER_MAINTENANCE_IN_PROGRESS; + + @ClientString(id = 52903, message = "|Lv. 106+| Regular Barrier Maintenance (Completed)") + public static NpcStringId LV_106_REGULAR_BARRIER_MAINTENANCE_COMPLETED; + + @ClientString(id = 52904, message = "|Lv. 106+| Regular Barrier Maintenance") + public static NpcStringId LV_106_REGULAR_BARRIER_MAINTENANCE_2; + + @ClientString(id = 52910, message = "Talk to Chorina") + public static NpcStringId TALK_TO_CHORINA; + @ClientString(id = 53901, message = "Put on the Analysis Hat and try Analysis on me.") public static NpcStringId PUT_ON_THE_ANALYSIS_HAT_AND_TRY_ANALYSIS_ON_ME; @@ -7504,8 +7618,8 @@ public final class NpcStringId @ClientString(id = 55202, message = "Olympiad Veteran (In Progress)") public static NpcStringId OLYMPIAD_VETERAN_IN_PROGRESS; - @ClientString(id = 55203, message = "Olympiad Veteran (Done)") - public static NpcStringId OLYMPIAD_VETERAN_DONE; + @ClientString(id = 55203, message = "Olympiad Veteran (Completed)") + public static NpcStringId OLYMPIAD_VETERAN_COMPLETED; @ClientString(id = 55301, message = "|Lv. 85+| Olympiad Undefeated") public static NpcStringId LV_85_OLYMPIAD_UNDEFEATED; @@ -7519,80 +7633,749 @@ public final class NpcStringId @ClientString(id = 55304, message = "|Lv. 85+| Olympiad Undefeated") public static NpcStringId LV_85_OLYMPIAD_UNDEFEATED_2; - @ClientString(id = 60000, message = "I'll start the furnace mechanism. Watch for the pattern.") - public static NpcStringId I_LL_START_THE_FURNACE_MECHANISM_WATCH_FOR_THE_PATTERN; + @ClientString(id = 55401, message = "|Lv. 95 - 101| Red Libra Request - Silent Valley") + public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_SILENT_VALLEY; - @ClientString(id = 60001, message = "Only 1 minute left!") - public static NpcStringId ONLY_1_MINUTE_LEFT; + @ClientString(id = 55402, message = "|Lv. 95 - 101| Red Libra Request - Silent Valley (In progress)") + public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_SILENT_VALLEY_IN_PROGRESS; - @ClientString(id = 60002, message = "Just 10 seconds left!") - public static NpcStringId JUST_10_SECONDS_LEFT; + @ClientString(id = 55403, message = "|Lv. 95 - 101| Red Libra Request - Silent Valley (Completed)") + public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_SILENT_VALLEY_COMPLETED; - @ClientString(id = 60003, message = "Now, light the furnaces in the correct order.") - public static NpcStringId NOW_LIGHT_THE_FURNACES_IN_THE_CORRECT_ORDER; + @ClientString(id = 55404, message = "|Lv. 95 - 101| Red Libra Request - Silent Valley") + public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_SILENT_VALLEY_2; - @ClientString(id = 60004, message = "Too late, the torch has run out. Maybe next time.") - public static NpcStringId TOO_LATE_THE_TORCH_HAS_RUN_OUT_MAYBE_NEXT_TIME; + @ClientString(id = 55405, message = "Defeat the monsters in the Silent Valley") + public static NpcStringId DEFEAT_THE_MONSTERS_IN_THE_SILENT_VALLEY; - @ClientString(id = 60005, message = "That's it, you've done it!") - public static NpcStringId THAT_S_IT_YOU_VE_DONE_IT; + @ClientString(id = 55411, message = "Lv. 95 - 101") + public static NpcStringId LV_95_101; - @ClientString(id = 60006, message = "Too bad… I will not give up on this though.") - public static NpcStringId TOO_BAD_I_WILL_NOT_GIVE_UP_ON_THIS_THOUGH; + @ClientString(id = 55412, message = "Silent Valley") + public static NpcStringId SILENT_VALLEY; - @ClientString(id = 60007, message = "I've failed. Any further attempts would be wasteful.") - public static NpcStringId I_VE_FAILED_ANY_FURTHER_ATTEMPTS_WOULD_BE_WASTEFUL; + @ClientString(id = 55501, message = "|Lv. 103+| Red Libra Request - Atelia Refinery") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY; - @ClientString(id = 60008, message = "Furnace of Balance") - public static NpcStringId FURNACE_OF_BALANCE; + @ClientString(id = 55502, message = "|Lv. 103+| Red Libra Request - Atelia Refinery (In progress)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_IN_PROGRESS; - @ClientString(id = 60009, message = "Furnace of Protection") - public static NpcStringId FURNACE_OF_PROTECTION; + @ClientString(id = 55503, message = "|Lv. 103+| Red Libra Request - Atelia Refinery (Completed)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_COMPLETED; - @ClientString(id = 60010, message = "Furnace of Will") - public static NpcStringId FURNACE_OF_WILL; + @ClientString(id = 55504, message = "|Lv. 103+| Red Libra Request - Atelia Refinery") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_2; - @ClientString(id = 60011, message = "Furnace of Magic") - public static NpcStringId FURNACE_OF_MAGIC; + @ClientString(id = 55505, message = "Defeat the monsters in the Atelia Refinery") + public static NpcStringId DEFEAT_THE_MONSTERS_IN_THE_ATELIA_REFINERY; - @ClientString(id = 60012, message = "Divine energy is beginning to encircle.") - public static NpcStringId DIVINE_ENERGY_IS_BEGINNING_TO_ENCIRCLE; + @ClientString(id = 55511, message = "Lv. 103+") + public static NpcStringId LV_103; - @ClientString(id = 60013, message = "For the glory of Solina!") - public static NpcStringId FOR_THE_GLORY_OF_SOLINA; + @ClientString(id = 55512, message = "Atelia Refinery") + public static NpcStringId ATELIA_REFINERY; - @ClientString(id = 60014, message = "Punish all those who tread footsteps in this place.") - public static NpcStringId PUNISH_ALL_THOSE_WHO_TREAD_FOOTSTEPS_IN_THIS_PLACE; + @ClientString(id = 55601, message = "|Lv. 103+| Red Libra Request - Fallen Emperor's Throne") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_FALLEN_EMPEROR_S_THRONE; - @ClientString(id = 60015, message = "We are the sword of truth, the sword of Solina.") - public static NpcStringId WE_ARE_THE_SWORD_OF_TRUTH_THE_SWORD_OF_SOLINA; + @ClientString(id = 55602, message = "|Lv. 103+| Red Libra Request - Fallen Emperor's Throne (In progress)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_FALLEN_EMPEROR_S_THRONE_IN_PROGRESS; - @ClientString(id = 60016, message = "We raise our blades for the glory of Solina.") - public static NpcStringId WE_RAISE_OUR_BLADES_FOR_THE_GLORY_OF_SOLINA; + @ClientString(id = 55603, message = "|Lv. 103+| Red Libra Request - Fallen Emperor's Throne (Completed)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_FALLEN_EMPEROR_S_THRONE_COMPLETED; - @ClientString(id = 60017, message = "For the glory of Solina!") - public static NpcStringId FOR_THE_GLORY_OF_SOLINA_2; + @ClientString(id = 55604, message = "|Lv. 103+| Red Libra Request - Fallen Emperor's Throne") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_FALLEN_EMPEROR_S_THRONE_2; - @ClientString(id = 60018, message = "Hey, don't go so fast.") - public static NpcStringId HEY_DON_T_GO_SO_FAST; + @ClientString(id = 55605, message = "Defeat Helios") + public static NpcStringId DEFEAT_HELIOS; - @ClientString(id = 60019, message = "It's hard to follow.") - public static NpcStringId IT_S_HARD_TO_FOLLOW; + @ClientString(id = 55611, message = "Lv. 103+") + public static NpcStringId LV_103_2; - @ClientString(id = 60020, message = "Huff huff. You're too fast. I can't follow anymore.") - public static NpcStringId HUFF_HUFF_YOU_RE_TOO_FAST_I_CAN_T_FOLLOW_ANYMORE; + @ClientString(id = 55612, message = "Fallen Emperor's Throne") + public static NpcStringId FALLEN_EMPEROR_S_THRONE; - @ClientString(id = 60021, message = "Ah... I think I remember this place.") - public static NpcStringId AH_I_THINK_I_REMEMBER_THIS_PLACE; + @ClientString(id = 55701, message = "|Lv. 104+| Red Libra Request - Fall of Etina") + public static NpcStringId LV_104_RED_LIBRA_REQUEST_FALL_OF_ETINA; - @ClientString(id = 60022, message = "Ah! Fresh air!") - public static NpcStringId AH_FRESH_AIR; + @ClientString(id = 55702, message = "|Lv. 104+| Red Libra Request - Fall of Etina (In progress)") + public static NpcStringId LV_104_RED_LIBRA_REQUEST_FALL_OF_ETINA_IN_PROGRESS; - @ClientString(id = 60023, message = "What were you doing here?") - public static NpcStringId WHAT_WERE_YOU_DOING_HERE; + @ClientString(id = 55703, message = "|Lv. 104+| Red Libra Request - Fall of Etina (Completed)") + public static NpcStringId LV_104_RED_LIBRA_REQUEST_FALL_OF_ETINA_COMPLETED; - @ClientString(id = 60024, message = "I guess you're the silent type. Then are you looking for treasure like me?") - public static NpcStringId I_GUESS_YOU_RE_THE_SILENT_TYPE_THEN_ARE_YOU_LOOKING_FOR_TREASURE_LIKE_ME; + @ClientString(id = 55704, message = "|Lv. 104+| Red Libra Request - Fall of Etina") + public static NpcStringId LV_104_RED_LIBRA_REQUEST_FALL_OF_ETINA_2; + + @ClientString(id = 55705, message = "Defeat Etis van Etina") + public static NpcStringId DEFEAT_ETIS_VAN_ETINA; + + @ClientString(id = 55711, message = "Lv. 104+") + public static NpcStringId LV_104; + + @ClientString(id = 55712, message = "Fall of Etina") + public static NpcStringId FALL_OF_ETINA; + + @ClientString(id = 56101, message = "|Lv. 85-87| Basic Mission: Harnak Underground Ruins") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS; + + @ClientString(id = 56102, message = "|Lv. 85-87| Basic Mission: Harnak Underground Ruins (In progress)") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_IN_PROGRESS; + + @ClientString(id = 56103, message = "|Lv. 85-87| Basic Mission: Harnak Underground Ruins (Completed)") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_COMPLETED; + + @ClientString(id = 56104, message = "|Lv. 85-87| Basic Mission: Harnak Underground Ruins") + public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS_2; + + @ClientString(id = 56111, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION; + + @ClientString(id = 56112, message = "Talk to Elisa") + public static NpcStringId TALK_TO_ELISA; + + @ClientString(id = 56113, message = "Talk to Milia") + public static NpcStringId TALK_TO_MILIA; + + @ClientString(id = 56114, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL; + + @ClientString(id = 56115, message = "Complete the quest 'Beyond the Memories'") + public static NpcStringId COMPLETE_THE_QUEST_BEYOND_THE_MEMORIES; + + @ClientString(id = 56116, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY; + + @ClientString(id = 56120, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL_2; + + @ClientString(id = 56201, message = "|Lv. 85-88| Basic Mission: Altar of Evil") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL; + + @ClientString(id = 56202, message = "|Lv. 85-88| Basic Mission: Altar of Evil (In progress)") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_IN_PROGRESS; + + @ClientString(id = 56203, message = "|Lv. 85-88| Basic Mission: Altar of Evil (Completed)") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_COMPLETED; + + @ClientString(id = 56204, message = "|Lv. 85-88| Basic Mission: Altar of Evil") + public static NpcStringId LV_85_88_BASIC_MISSION_ALTAR_OF_EVIL_2; + + @ClientString(id = 56211, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_2; + + @ClientString(id = 56212, message = "Talk to Elisa") + public static NpcStringId TALK_TO_ELISA_2; + + @ClientString(id = 56213, message = "Talk to Bella") + public static NpcStringId TALK_TO_BELLA; + + @ClientString(id = 56214, message = "Use the Teleport Device") + public static NpcStringId USE_THE_TELEPORT_DEVICE; + + @ClientString(id = 56215, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA; + + @ClientString(id = 56216, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_2; + + @ClientString(id = 56220, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_2; + + @ClientString(id = 56221, message = "Complete the quest 'The Purification Ritual'") + public static NpcStringId COMPLETE_THE_QUEST_THE_PURIFICATION_RITUAL; + + @ClientString(id = 56222, message = "Complete the quest 'Wash Blood with Blood'") + public static NpcStringId COMPLETE_THE_QUEST_WASH_BLOOD_WITH_BLOOD; + + @ClientString(id = 56301, message = "|Lv. 86-90| Basic Mission: Bloody Swampland") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND; + + @ClientString(id = 56302, message = "|Lv. 86-90| Basic Mission: Bloody Swampland (In progress)") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_IN_PROGRESS; + + @ClientString(id = 56303, message = "|Lv. 86-90| Basic Mission: Bloody Swampland (Completed)") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_COMPLETED; + + @ClientString(id = 56304, message = "|Lv. 86-90| Basic Mission: Bloody Swampland") + public static NpcStringId LV_86_90_BASIC_MISSION_BLOODY_SWAMPLAND_2; + + @ClientString(id = 56311, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS; + + @ClientString(id = 56312, message = "Carry out Vollodos' mission") + public static NpcStringId CARRY_OUT_VOLLODOS_MISSION; + + @ClientString(id = 56313, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_3; + + @ClientString(id = 56321, message = "Complete the quest 'Meaning of Survival'") + public static NpcStringId COMPLETE_THE_QUEST_MEANING_OF_SURVIVAL; + + @ClientString(id = 56322, message = "Complete the quest 'Never Say Good Bye'") + public static NpcStringId COMPLETE_THE_QUEST_NEVER_SAY_GOOD_BYE; + + @ClientString(id = 56401, message = "|Lv. 85 - 97| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_97_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO; + + @ClientString(id = 56402, message = "|Lv. 85 - 97| Basic Mission: Kartia's Labyrinth (Solo) (In progress)") + public static NpcStringId LV_85_97_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_IN_PROGRESS; + + @ClientString(id = 56403, message = "|Lv. 85 - 97| Basic Mission: Kartia's Labyrinth (Solo) (Completed)") + public static NpcStringId LV_85_97_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_COMPLETED; + + @ClientString(id = 56404, message = "|Lv. 85 - 97| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_97_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_2; + + @ClientString(id = 56411, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_3; + + @ClientString(id = 56412, message = "Talk to Kartia Researcher") + public static NpcStringId TALK_TO_KARTIA_RESEARCHER; + + @ClientString(id = 56413, message = "Carry out Kartia Researcher's mission") + public static NpcStringId CARRY_OUT_KARTIA_RESEARCHER_S_MISSION; + + @ClientString(id = 56414, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_4; + + @ClientString(id = 56501, message = "|Lv. 88-91| Basic Mission: Fairy Settlement - West") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST; + + @ClientString(id = 56502, message = "|Lv. 88-91| Basic Mission: Fairy Settlement - West (In progress)") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_IN_PROGRESS; + + @ClientString(id = 56503, message = "|Lv. 88-91| Basic Mission: Fairy Settlement - West (Completed)") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_COMPLETED; + + @ClientString(id = 56504, message = "|Lv. 88-91| Basic Mission: Fairy Settlement - West") + public static NpcStringId LV_88_91_BASIC_MISSION_FAIRY_SETTLEMENT_WEST_2; + + @ClientString(id = 56511, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_4; + + @ClientString(id = 56512, message = "Talk to Lada") + public static NpcStringId TALK_TO_LADA; + + @ClientString(id = 56513, message = "Complete the quest 'Shadow of Terror: Blackish Red Fog'") + public static NpcStringId COMPLETE_THE_QUEST_SHADOW_OF_TERROR_BLACKISH_RED_FOG; + + @ClientString(id = 56514, message = "Talk to Fairy Citizen") + public static NpcStringId TALK_TO_FAIRY_CITIZEN; + + @ClientString(id = 56515, message = "Complete Fairy Citizen's mission") + public static NpcStringId COMPLETE_FAIRY_CITIZEN_S_MISSION; + + @ClientString(id = 56516, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_5; + + @ClientString(id = 56521, message = "Complete the quest 'To Calm the Flood'") + public static NpcStringId COMPLETE_THE_QUEST_TO_CALM_THE_FLOOD; + + @ClientString(id = 56522, message = "Complete the quest 'Can't Go Against the Time'") + public static NpcStringId COMPLETE_THE_QUEST_CAN_T_GO_AGAINST_THE_TIME; + + @ClientString(id = 56601, message = "|Lv. 90-94| Basic Mission: Fairy Settlement - East") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST; + + @ClientString(id = 56602, message = "|Lv. 90-94| Basic Mission: Fairy Settlement - East (In progress)") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_IN_PROGRESS; + + @ClientString(id = 56603, message = "|Lv. 90-94| Basic Mission: Fairy Settlement - East (Completed)") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_COMPLETED; + + @ClientString(id = 56604, message = "|Lv. 90-94| Basic Mission: Fairy Settlement - East") + public static NpcStringId LV_90_94_BASIC_MISSION_FAIRY_SETTLEMENT_EAST_2; + + @ClientString(id = 56611, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_5; + + @ClientString(id = 56612, message = "Talk to Lada") + public static NpcStringId TALK_TO_LADA_2; + + @ClientString(id = 56613, message = "Complete the quest 'Shadow of Terror: Blackish Red Fog'") + public static NpcStringId COMPLETE_THE_QUEST_SHADOW_OF_TERROR_BLACKISH_RED_FOG_2; + + @ClientString(id = 56614, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA; + + @ClientString(id = 56615, message = "Carry out Nerupa's mission") + public static NpcStringId CARRY_OUT_NERUPA_S_MISSION; + + @ClientString(id = 56616, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_6; + + @ClientString(id = 56621, message = "Complete the quest 'Dreaming of Peace'") + public static NpcStringId COMPLETE_THE_QUEST_DREAMING_OF_PEACE; + + @ClientString(id = 56622, message = "Complete the quest 'Mutated Creatures'") + public static NpcStringId COMPLETE_THE_QUEST_MUTATED_CREATURES; + + @ClientString(id = 56701, message = "|Lv. 92 - 94| Basic Mission: Isle of Souls") + public static NpcStringId LV_92_94_BASIC_MISSION_ISLE_OF_SOULS; + + @ClientString(id = 56702, message = "|Lv. 92 - 94| Basic Mission: Isle of Souls (In progress)") + public static NpcStringId LV_92_94_BASIC_MISSION_ISLE_OF_SOULS_IN_PROGRESS; + + @ClientString(id = 56703, message = "|Lv. 92 - 94| Basic Mission: Isle of Souls (Completed)") + public static NpcStringId LV_92_94_BASIC_MISSION_ISLE_OF_SOULS_COMPLETED; + + @ClientString(id = 56704, message = "|Lv. 92 - 94| Basic Mission: Isle of Souls") + public static NpcStringId LV_92_94_BASIC_MISSION_ISLE_OF_SOULS_2; + + @ClientString(id = 56711, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_6; + + @ClientString(id = 56712, message = "Talk to Tapoy") + public static NpcStringId TALK_TO_TAPOY; + + @ClientString(id = 56713, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY; + + @ClientString(id = 56714, message = "Speak with Hesed") + public static NpcStringId SPEAK_WITH_HESED; + + @ClientString(id = 56715, message = "Carry out Hesed's mission") + public static NpcStringId CARRY_OUT_HESED_S_MISSION; + + @ClientString(id = 56716, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_7; + + @ClientString(id = 56721, message = "Complete the quest 'Uncover the Secret'") + public static NpcStringId COMPLETE_THE_QUEST_UNCOVER_THE_SECRET; + + @ClientString(id = 56722, message = "Complete the quest 'More Aggressive Operation'") + public static NpcStringId COMPLETE_THE_QUEST_MORE_AGGRESSIVE_OPERATION; + + @ClientString(id = 56801, message = "|Lv. 93-95| Special Mission: Nornil's Cave") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE; + + @ClientString(id = 56802, message = "|Lv. 93-95| Special Mission: Nornil's Cave (In progress)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_IN_PROGRESS; + + @ClientString(id = 56803, message = "|Lv. 93-95| Special Mission: Nornil's Cave (Completed)") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_COMPLETED; + + @ClientString(id = 56804, message = "|Lv. 93-95| Special Mission: Nornil's Cave") + public static NpcStringId LV_93_95_SPECIAL_MISSION_NORNIL_S_CAVE_2; + + @ClientString(id = 56811, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_7; + + @ClientString(id = 56812, message = "Talk to Tapoy") + public static NpcStringId TALK_TO_TAPOY_2; + + @ClientString(id = 56813, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY_2; + + @ClientString(id = 56814, message = "Talk to Verna") + public static NpcStringId TALK_TO_VERNA; + + @ClientString(id = 56815, message = "Carry out Verna's mission") + public static NpcStringId CARRY_OUT_VERNA_S_MISSION; + + @ClientString(id = 56816, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_8; + + @ClientString(id = 56821, message = "Complete the quest 'Reacting to a Crisis'") + public static NpcStringId COMPLETE_THE_QUEST_REACTING_TO_A_CRISIS; + + @ClientString(id = 56822, message = "Complete the quest 'Head-on Crash'") + public static NpcStringId COMPLETE_THE_QUEST_HEAD_ON_CRASH; + + @ClientString(id = 56901, message = "|Lv. 94 - 97| Basic Mission: Seal of Shilen") + public static NpcStringId LV_94_97_BASIC_MISSION_SEAL_OF_SHILEN; + + @ClientString(id = 56902, message = "|Lv. 94 - 97| Basic Mission: Seal of Shilen (In progress)") + public static NpcStringId LV_94_97_BASIC_MISSION_SEAL_OF_SHILEN_IN_PROGRESS; + + @ClientString(id = 56903, message = "|Lv. 94 - 97| Basic Mission: Seal of Shilen (Completed)") + public static NpcStringId LV_94_97_BASIC_MISSION_SEAL_OF_SHILEN_COMPLETED; + + @ClientString(id = 56904, message = "|Lv. 94 - 97| Basic Mission: Seal of Shilen") + public static NpcStringId LV_94_97_BASIC_MISSION_SEAL_OF_SHILEN_2; + + @ClientString(id = 56911, message = "Talk to Agent Georgio") + public static NpcStringId TALK_TO_AGENT_GEORGIO; + + @ClientString(id = 56912, message = "Complete the quest 'Kicking Out Unwelcome Guests'") + public static NpcStringId COMPLETE_THE_QUEST_KICKING_OUT_UNWELCOME_GUESTS; + + @ClientString(id = 56913, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_9; + + @ClientString(id = 57001, message = "|Lv. 87 - 97| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_97_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY; + + @ClientString(id = 57002, message = "|Lv. 87 - 97| Special Mission: Kartia's Labyrinth (Party) (In progress)") + public static NpcStringId LV_87_97_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_IN_PROGRESS; + + @ClientString(id = 57003, message = "|Lv. 87 - 97| Special Mission: Kartia's Labyrinth (Party) (Completed)") + public static NpcStringId LV_87_97_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_COMPLETED; + + @ClientString(id = 57004, message = "|Lv. 87 - 97| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_97_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_2; + + @ClientString(id = 57011, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_8; + + @ClientString(id = 57012, message = "Talk to Kartia Researcher") + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_2; + + @ClientString(id = 57013, message = "Carry out Kartia Researcher's mission") + public static NpcStringId CARRY_OUT_KARTIA_RESEARCHER_S_MISSION_2; + + @ClientString(id = 57014, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_10; + + @ClientString(id = 57101, message = "|Lv. 86-88| Special Mission: Proof of Unity (Field Raid)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID; + + @ClientString(id = 57102, message = "|Lv. 86-88| Special Mission: Proof of Unity (Field Raid) (In progress)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57103, message = "|Lv. 86-88| Special Mission: Proof of Unity (Field Raid) (Completed)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_COMPLETED; + + @ClientString(id = 57104, message = "|Lv. 86-88| Special Mission: Proof of Unity (Field Raid)") + public static NpcStringId LV_86_88_SPECIAL_MISSION_PROOF_OF_UNITY_FIELD_RAID_2; + + @ClientString(id = 57112, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_11; + + @ClientString(id = 57201, message = "|Lv. 88-92| Special Mission: Proof of Courage (Field Raid)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID; + + @ClientString(id = 57202, message = "|Lv. 88-92| Special Mission: Proof of Courage (Field Raid) (In progress)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57203, message = "|Lv. 88-92| Special Mission: Proof of Courage (Field Raid) (Completed)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_COMPLETED; + + @ClientString(id = 57204, message = "|Lv. 88-92| Special Mission: Proof of Courage (Field Raid)") + public static NpcStringId LV_88_92_SPECIAL_MISSION_PROOF_OF_COURAGE_FIELD_RAID_2; + + @ClientString(id = 57212, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_12; + + @ClientString(id = 57301, message = "|Lv. 92-95| Special Mission: Proof of Strength (Field Raid)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID; + + @ClientString(id = 57302, message = "|Lv. 92-95| Special Mission: Proof of Strength (Field Raid) (In progress)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_IN_PROGRESS; + + @ClientString(id = 57303, message = "|Lv. 92-95| Special Mission: Proof of Strength (Field Raid) (Completed)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_COMPLETED; + + @ClientString(id = 57304, message = "|Lv. 92-95| Special Mission: Proof of Strength (Field Raid)") + public static NpcStringId LV_92_95_SPECIAL_MISSION_PROOF_OF_STRENGTH_FIELD_RAID_2; + + @ClientString(id = 57312, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_13; + + @ClientString(id = 57401, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN; + + @ClientString(id = 57402, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden (In progress)") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_IN_PROGRESS; + + @ClientString(id = 57403, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden (Completed)") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_COMPLETED; + + @ClientString(id = 57404, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_2; + + @ClientString(id = 57411, message = "Clear Nornil's Garden") + public static NpcStringId CLEAR_NORNIL_S_GARDEN; + + @ClientString(id = 57412, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_14; + + @ClientString(id = 57501, message = "|Lv. 90-94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA; + + @ClientString(id = 57502, message = "|Lv. 90-94| Special Mission: Fortuna (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_IN_PROGRESS; + + @ClientString(id = 57503, message = "|Lv. 90-94| Special Mission: Fortuna (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_COMPLETED; + + @ClientString(id = 57504, message = "|Lv. 90-94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_2; + + @ClientString(id = 57511, message = "Clear Fortuna") + public static NpcStringId CLEAR_FORTUNA; + + @ClientString(id = 57512, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_15; + + @ClientString(id = 57601, message = "|Lv. 90-94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION; + + @ClientString(id = 57602, message = "|Lv. 90-94| Special Mission: Defeat Spezion (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_IN_PROGRESS; + + @ClientString(id = 57603, message = "|Lv. 90-94| Special Mission: Defeat Spezion (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_COMPLETED; + + @ClientString(id = 57604, message = "|Lv. 90-94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_2; + + @ClientString(id = 57611, message = "Defeat Spezion") + public static NpcStringId DEFEAT_SPEZION; + + @ClientString(id = 57612, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_16; + + @ClientString(id = 57701, message = "|Lv. 95 - 97| Basic Mission: Silent Valley") + public static NpcStringId LV_95_97_BASIC_MISSION_SILENT_VALLEY; + + @ClientString(id = 57702, message = "|Lv. 95 - 97| Basic Mission: Silent Valley (In progress)") + public static NpcStringId LV_95_97_BASIC_MISSION_SILENT_VALLEY_IN_PROGRESS; + + @ClientString(id = 57703, message = "|Lv. 95 - 97| Basic Mission: Silent Valley (Completed)") + public static NpcStringId LV_95_97_BASIC_MISSION_SILENT_VALLEY_COMPLETED; + + @ClientString(id = 57704, message = "|Lv. 95 - 97| Basic Mission: Silent Valley") + public static NpcStringId LV_95_97_BASIC_MISSION_SILENT_VALLEY_2; + + @ClientString(id = 57711, message = "Talk to Corzet") + public static NpcStringId TALK_TO_CORZET; + + @ClientString(id = 57712, message = "Complete ‘A Secret Change'") + public static NpcStringId COMPLETE_A_SECRET_CHANGE; + + @ClientString(id = 57713, message = "Complete ‘To Each Their Own'") + public static NpcStringId COMPLETE_TO_EACH_THEIR_OWN; + + @ClientString(id = 57714, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_17; + + @ClientString(id = 58001, message = "|Lv. 85-95| Beyond the Memories") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES; + + @ClientString(id = 58002, message = "|Lv. 85-95| Beyond the Memories (In progress)") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_IN_PROGRESS; + + @ClientString(id = 58003, message = "|Lv. 85-95| Beyond the Memories (Completed)") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_COMPLETED; + + @ClientString(id = 58004, message = "|Lv. 85-95| Beyond the Memories") + public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES_2; + + @ClientString(id = 58011, message = "Defeat monsters in the Underground Ruins") + public static NpcStringId DEFEAT_MONSTERS_IN_THE_UNDERGROUND_RUINS; + + @ClientString(id = 58012, message = "Talk to Hadel") + public static NpcStringId TALK_TO_HADEL_3; + + @ClientString(id = 58101, message = "|Lv. 85-95| The Purification Ritual") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL; + + @ClientString(id = 58102, message = "|Lv. 85-95| The Purification Ritual (In progress)") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_IN_PROGRESS; + + @ClientString(id = 58103, message = "|Lv. 85-95| The Purification Ritual (Completed)") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_COMPLETED; + + @ClientString(id = 58104, message = "|Lv. 85-95| The Purification Ritual") + public static NpcStringId LV_85_95_THE_PURIFICATION_RITUAL_2; + + @ClientString(id = 58111, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_3; + + @ClientString(id = 58201, message = "|Lv. 85-95| Wash Blood with Blood") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD; + + @ClientString(id = 58202, message = "|Lv. 85-95| Wash Blood with Blood (In progress)") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_IN_PROGRESS; + + @ClientString(id = 58203, message = "|Lv. 85-95| Wash Blood with Blood (Completed)") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_COMPLETED; + + @ClientString(id = 58204, message = "|Lv. 85-95| Wash Blood with Blood") + public static NpcStringId LV_85_95_WASH_BLOOD_WITH_BLOOD_2; + + @ClientString(id = 58211, message = "Talk to Lapathia") + public static NpcStringId TALK_TO_LAPATHIA_4; + + @ClientString(id = 58301, message = "|Lv. 86-96| Meaning of Survival") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL; + + @ClientString(id = 58302, message = "|Lv. 86-96| Meaning of Survival (In progress)") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_IN_PROGRESS; + + @ClientString(id = 58303, message = "|Lv. 86-96| Meaning of Survival (Completed)") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_COMPLETED; + + @ClientString(id = 58304, message = "|Lv. 86-96| Meaning of Survival") + public static NpcStringId LV_86_96_MEANING_OF_SURVIVAL_2; + + @ClientString(id = 58311, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS_2; + + @ClientString(id = 58401, message = "|Lv. 86-96| Never Say Good Bye") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE; + + @ClientString(id = 58402, message = "|Lv. 86-96| Never Say Good Bye (In progress)") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_IN_PROGRESS; + + @ClientString(id = 58403, message = "|Lv. 86-96| Never Say Good Bye (Completed)") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_COMPLETED; + + @ClientString(id = 58404, message = "|Lv. 86-96| Never Say Good Bye") + public static NpcStringId LV_86_96_NEVER_SAY_GOOD_BYE_2; + + @ClientString(id = 58411, message = "Talk to Vollodos") + public static NpcStringId TALK_TO_VOLLODOS_3; + + @ClientString(id = 58501, message = "|Lv. 88-98| Can't Go Against the Time") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME; + + @ClientString(id = 58502, message = "|Lv. 88-98| Can't Go Against the Time (In progress)") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_IN_PROGRESS; + + @ClientString(id = 58503, message = "|Lv. 88-98| Can't Go Against the Time (Completed)") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_COMPLETED; + + @ClientString(id = 58504, message = "|Lv. 88-98| Can't Go Against the Time") + public static NpcStringId LV_88_98_CAN_T_GO_AGAINST_THE_TIME_2; + + @ClientString(id = 58511, message = "Talk to Fairy Citizen") + public static NpcStringId TALK_TO_FAIRY_CITIZEN_2; + + @ClientString(id = 58601, message = "|Lv. 90-100| Mutated Creatures") + public static NpcStringId LV_90_100_MUTATED_CREATURES; + + @ClientString(id = 58602, message = "|Lv. 90-100| Mutated Creatures (In progress)") + public static NpcStringId LV_90_100_MUTATED_CREATURES_IN_PROGRESS; + + @ClientString(id = 58603, message = "|Lv. 90-100| Mutated Creatures (Completed)") + public static NpcStringId LV_90_100_MUTATED_CREATURES_COMPLETED; + + @ClientString(id = 58604, message = "|Lv. 90-100| Mutated Creatures") + public static NpcStringId LV_90_100_MUTATED_CREATURES_2; + + @ClientString(id = 58611, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_2; + + @ClientString(id = 58701, message = "|Lv. 93-103| More Aggressive Operation") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION; + + @ClientString(id = 58702, message = "|Lv. 93-103| More Aggressive Operation (In progress)") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_IN_PROGRESS; + + @ClientString(id = 58703, message = "|Lv. 93-103| More Aggressive Operation (Completed)") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_COMPLETED; + + @ClientString(id = 58704, message = "|Lv. 93-103| More Aggressive Operation") + public static NpcStringId LV_93_103_MORE_AGGRESSIVE_OPERATION_2; + + @ClientString(id = 58711, message = "Defeat monsters around the tent") + public static NpcStringId DEFEAT_MONSTERS_AROUND_THE_TENT; + + @ClientString(id = 58712, message = "Speak with Hesed") + public static NpcStringId SPEAK_WITH_HESED_2; + + @ClientString(id = 58801, message = "|Lv. 93-103| Head-on Crash") + public static NpcStringId LV_93_103_HEAD_ON_CRASH; + + @ClientString(id = 58802, message = "|Lv. 93-103| Head-on Crash (In progress)") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_IN_PROGRESS; + + @ClientString(id = 58803, message = "|Lv. 93-103| Head-on Crash (Completed)") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_COMPLETED; + + @ClientString(id = 58804, message = "|Lv. 93-103| Head-on Crash") + public static NpcStringId LV_93_103_HEAD_ON_CRASH_2; + + @ClientString(id = 58811, message = "Defeat Spicula Larva") + public static NpcStringId DEFEAT_SPICULA_LARVA; + + @ClientString(id = 58812, message = "Talk to Verna") + public static NpcStringId TALK_TO_VERNA_2; + + @ClientString(id = 58901, message = "|Lv. 95 - 105| A Secret Change") + public static NpcStringId LV_95_105_A_SECRET_CHANGE; + + @ClientString(id = 58902, message = "|Lv. 95 - 105| A Secret Change (In progress)") + public static NpcStringId LV_95_105_A_SECRET_CHANGE_IN_PROGRESS; + + @ClientString(id = 58903, message = "|Lv. 95 - 105| A Secret Change (Completed)") + public static NpcStringId LV_95_105_A_SECRET_CHANGE_COMPLETED; + + @ClientString(id = 58904, message = "|Lv. 95 - 105| A Secret Change") + public static NpcStringId LV_95_105_A_SECRET_CHANGE_2; + + @ClientString(id = 58911, message = "Talk to Corzet") + public static NpcStringId TALK_TO_CORZET_2; + + @ClientString(id = 59001, message = "|Lv. 95 - 105| To Each Their Own") + public static NpcStringId LV_95_105_TO_EACH_THEIR_OWN; + + @ClientString(id = 59002, message = "|Lv. 95 - 105| To Each Their Own (In progress)") + public static NpcStringId LV_95_105_TO_EACH_THEIR_OWN_IN_PROGRESS; + + @ClientString(id = 59003, message = "|Lv. 95 - 105| To Each Their Own (Completed)") + public static NpcStringId LV_95_105_TO_EACH_THEIR_OWN_COMPLETED; + + @ClientString(id = 59004, message = "|Lv. 95 - 105| To Each Their Own") + public static NpcStringId LV_95_105_TO_EACH_THEIR_OWN_2; + + @ClientString(id = 59011, message = "Talk to Corzet") + public static NpcStringId TALK_TO_CORZET_3; + + @ClientString(id = 59101, message = "|Lv. 99+| Great Ambitions") + public static NpcStringId LV_99_GREAT_AMBITIONS; + + @ClientString(id = 59102, message = "|Lv. 99+| Great Ambitions (In progress)") + public static NpcStringId LV_99_GREAT_AMBITIONS_IN_PROGRESS; + + @ClientString(id = 59103, message = "|Lv. 99+| Great Ambitions (Completed)") + public static NpcStringId LV_99_GREAT_AMBITIONS_COMPLETED; + + @ClientString(id = 59104, message = "|Lv. 99+| Great Ambitions") + public static NpcStringId LV_99_GREAT_AMBITIONS_2; + + @ClientString(id = 59111, message = "Select Mission") + public static NpcStringId SELECT_MISSION; + + @ClientString(id = 59901, message = "|Lv. 103+| Demons and Dimensional Energy") + public static NpcStringId LV_103_DEMONS_AND_DIMENSIONAL_ENERGY; + + @ClientString(id = 59902, message = "|Lv. 103+| Demons and Dimensional Energy (In progress)") + public static NpcStringId LV_103_DEMONS_AND_DIMENSIONAL_ENERGY_IN_PROGRESS; + + @ClientString(id = 59903, message = "|Lv. 103+| Demons and Dimensional Energy (Completed)") + public static NpcStringId LV_103_DEMONS_AND_DIMENSIONAL_ENERGY_COMPLETED; + + @ClientString(id = 59904, message = "|Lv. 103+| Demons and Dimensional Energy") + public static NpcStringId LV_103_DEMONS_AND_DIMENSIONAL_ENERGY_2; + + @ClientString(id = 59911, message = "Select Mission Stage") + public static NpcStringId SELECT_MISSION_STAGE; + + @ClientString(id = 59912, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD; + + @ClientString(id = 60001, message = "|Lv. 103+| Key to the Refining Process") + public static NpcStringId LV_103_KEY_TO_THE_REFINING_PROCESS; + + @ClientString(id = 60002, message = "|Lv. 103+| Key to the Refining Process (In progress)") + public static NpcStringId LV_103_KEY_TO_THE_REFINING_PROCESS_IN_PROGRESS; + + @ClientString(id = 60003, message = "|Lv. 103+| Key to the Refining Process (Completed)") + public static NpcStringId LV_103_KEY_TO_THE_REFINING_PROCESS_COMPLETED; + + @ClientString(id = 60004, message = "|Lv. 103+| Key to the Refining Process") + public static NpcStringId LV_103_KEY_TO_THE_REFINING_PROCESS_2; + + @ClientString(id = 60011, message = "Select Mission Stage") + public static NpcStringId SELECT_MISSION_STAGE_2; + + @ClientString(id = 60012, message = "Talk to Devianne") + public static NpcStringId TALK_TO_DEVIANNE; @ClientString(id = 60101, message = "Eye of Watchman") public static NpcStringId EYE_OF_WATCHMAN; @@ -7711,13 +8494,13 @@ public final class NpcStringId @ClientString(id = 61104, message = "Alliance with Varka Silenos") public static NpcStringId ALLIANCE_WITH_VARKA_SILENOS_2; - @ClientString(id = 61201, message = "Battle against Ketra Orcs ") + @ClientString(id = 61201, message = "Battle against Ketra Orcs") public static NpcStringId BATTLE_AGAINST_KETRA_ORCS; @ClientString(id = 61202, message = "Battle against Ketra Orcs (In Progress)") public static NpcStringId BATTLE_AGAINST_KETRA_ORCS_IN_PROGRESS; - @ClientString(id = 61204, message = "Battle against Ketra Orcs ") + @ClientString(id = 61204, message = "Battle against Ketra Orcs") public static NpcStringId BATTLE_AGAINST_KETRA_ORCS_2; @ClientString(id = 61301, message = "Prove Your Courage! (Varka)") @@ -8248,32 +9031,32 @@ public final class NpcStringId @ClientString(id = 66605, message = "Defeat Giant Monster") public static NpcStringId DEFEAT_GIANT_MONSTER; - @ClientString(id = 66701, message = "|Lv. 85+| Covering Shilen's Eye") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE; + @ClientString(id = 66701, message = "|Lv. 85+| How to Cover Shilen's Eyes") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES; - @ClientString(id = 66702, message = "|Lv. 85+| Covering Shilen's Eye (In progress)") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_IN_PROGRESS; + @ClientString(id = 66702, message = "|Lv. 85+| How to Cover Shilen's Eyes (In progress)") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_IN_PROGRESS; - @ClientString(id = 66703, message = "|Lv. 85+| Covering Shilen's Eye (Completed)") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_COMPLETED; + @ClientString(id = 66703, message = "|Lv. 85+| How to Cover Shilen's Eyes (Completed)") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_COMPLETED; - @ClientString(id = 66704, message = "|Lv. 85+| Covering Shilen's Eye") - public static NpcStringId LV_85_COVERING_SHILEN_S_EYE_2; + @ClientString(id = 66704, message = "|Lv. 85+| How to Cover Shilen's Eyes") + public static NpcStringId LV_85_HOW_TO_COVER_SHILEN_S_EYES_2; @ClientString(id = 66705, message = "Defeat Lilith or Anakim.") public static NpcStringId DEFEAT_LILITH_OR_ANAKIM; - @ClientString(id = 66801, message = "|Lv. 85+| Battle against the Giants") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS; + @ClientString(id = 66801, message = "|Lv. 85+| Fight with Giants") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS; - @ClientString(id = 66802, message = "|Lv. 85+| Battle against the Giants (In progress)") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_IN_PROGRESS; + @ClientString(id = 66802, message = "|Lv. 85+| Fight with Giants (In progress)") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_IN_PROGRESS; - @ClientString(id = 66803, message = "|Lv. 85+| Battle against the Giants (Completed)") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_COMPLETED; + @ClientString(id = 66803, message = "|Lv. 85+| Fight with Giants (Completed)") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_COMPLETED; - @ClientString(id = 66804, message = "|Lv. 85+| Battle against the Giants") - public static NpcStringId LV_85_BATTLE_AGAINST_THE_GIANTS_2; + @ClientString(id = 66804, message = "|Lv. 85+| Fight with Giants") + public static NpcStringId LV_85_FIGHT_WITH_GIANTS_2; @ClientString(id = 66805, message = "Defeat Giants' Boss") public static NpcStringId DEFEAT_GIANTS_BOSS; @@ -8353,6 +9136,96 @@ public final class NpcStringId @ClientString(id = 67305, message = "Defeat Beleth") public static NpcStringId DEFEAT_BELETH; + @ClientString(id = 67401, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 67402, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 67403, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 67404, message = "|Lv. 103+| Changes in the Shadow of the Mother Tree") + public static NpcStringId LV_103_CHANGES_IN_THE_SHADOW_OF_THE_MOTHER_TREE_2; + + @ClientString(id = 67411, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_3; + + @ClientString(id = 67412, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_3; + + @ClientString(id = 67501, message = "|Lv. 103+| What the Thread of the Past Shows") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS; + + @ClientString(id = 67502, message = "|Lv. 103+| What the Thread of the Past Shows (In progress)") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_IN_PROGRESS; + + @ClientString(id = 67503, message = "|Lv. 103+| What the Thread of the Past Shows (Completed)") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_COMPLETED; + + @ClientString(id = 67504, message = "|Lv. 103+| What the Thread of the Past Shows") + public static NpcStringId LV_103_WHAT_THE_THREAD_OF_THE_PAST_SHOWS_2; + + @ClientString(id = 67511, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_4; + + @ClientString(id = 67512, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_4; + + @ClientString(id = 67602, message = "|Lv. 96-106| Hunter Guild Request – Wasteland West (In progress)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_WEST_IN_PROGRESS; + + @ClientString(id = 67603, message = "|Lv. 96-106| Hunter Guild Request – Wasteland West (Completed)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_WEST_COMPLETED; + + @ClientString(id = 67605, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS; + + @ClientString(id = 67702, message = "|Lv. 96-106| Hunter Guild Request – Wasteland East (In progress)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_EAST_IN_PROGRESS; + + @ClientString(id = 67703, message = "|Lv. 96-106| Hunter Guild Request – Wasteland East (Completed)") + public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_WASTELAND_EAST_COMPLETED; + + @ClientString(id = 67705, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_2; + + @ClientString(id = 67802, message = "|Lv. 100+| Hunter Guild Request – Forest of the Dead (In progress)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_FOREST_OF_THE_DEAD_IN_PROGRESS; + + @ClientString(id = 67803, message = "|Lv. 100+| Hunter Guild Request – Forest of the Dead (Completed)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_FOREST_OF_THE_DEAD_COMPLETED; + + @ClientString(id = 67805, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_3; + + @ClientString(id = 67902, message = "|Lv. 100+| Hunter Guild Request – Swamp of Screams (In progress)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_SWAMP_OF_SCREAMS_IN_PROGRESS; + + @ClientString(id = 67903, message = "|Lv. 100+| Hunter Guild Request – Swamp of Screams (Completed)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_SWAMP_OF_SCREAMS_COMPLETED; + + @ClientString(id = 67905, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_4; + + @ClientString(id = 68002, message = "|Lv. 102+| Hunter Guild Request - Sea of Spores (In progress)") + public static NpcStringId LV_102_HUNTER_GUILD_REQUEST_SEA_OF_SPORES_IN_PROGRESS; + + @ClientString(id = 68003, message = "|Lv. 102+| Hunter Guild Request - Sea of Spores (Completed)") + public static NpcStringId LV_102_HUNTER_GUILD_REQUEST_SEA_OF_SPORES_COMPLETED; + + @ClientString(id = 68005, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_5; + + @ClientString(id = 68102, message = "|Lv. 102+| Hunter Guild Request - Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_102_HUNTER_GUILD_REQUEST_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 68103, message = "|Lv. 102+| Hunter Guild Request - Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_102_HUNTER_GUILD_REQUEST_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 68105, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_6; + @ClientString(id = 68801, message = "|Lv. 75 - 85| Defeat the Elrokian Raiders!") public static NpcStringId LV_75_85_DEFEAT_THE_ELROKIAN_RAIDERS; @@ -8464,6 +9337,15 @@ public final class NpcStringId @ClientString(id = 69707, message = "Good work. I've finished crafting the parts for the Keucereus Defense Battery.") public static NpcStringId GOOD_WORK_I_VE_FINISHED_CRAFTING_THE_PARTS_FOR_THE_KEUCEREUS_DEFENSE_BATTERY; + @ClientString(id = 69710, message = "Protect Ishuma") + public static NpcStringId PROTECT_ISHUMA; + + @ClientString(id = 69711, message = "Talk to Ishuma") + public static NpcStringId TALK_TO_ISHUMA; + + @ClientString(id = 69712, message = "Protect Ishuma again") + public static NpcStringId PROTECT_ISHUMA_AGAIN; + @ClientString(id = 69801, message = "Block the Lord's Escape") public static NpcStringId BLOCK_THE_LORD_S_ESCAPE; @@ -8584,7 +9466,7 @@ public final class NpcStringId @ClientString(id = 71054, message = "How infuriating! This enemy...") public static NpcStringId HOW_INFURIATING_THIS_ENEMY; - @ClientString(id = 71059, message = "$s1 has become the lord of the Town of Giran. May there be glory in the territory of Giran! ") + @ClientString(id = 71059, message = "$s1 has become the lord of the Town of Giran. May there be glory in the territory of Giran!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_GIRAN_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_GIRAN; @ClientString(id = 71101, message = "Path to Becoming a Lord - Innadril") @@ -8602,7 +9484,7 @@ public final class NpcStringId @ClientString(id = 71152, message = "$s1. Now, depart!") public static NpcStringId S1_NOW_DEPART_3; - @ClientString(id = 71159, message = "$s1 has become the lord of the Town of Innadril. May there be glory in the territory of Innadril! ") + @ClientString(id = 71159, message = "$s1 has become the lord of the Town of Innadril. May there be glory in the territory of Innadril!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_INNADRIL_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_INNADRIL; @ClientString(id = 71201, message = "Path to Becoming a Lord - Oren") @@ -8620,7 +9502,7 @@ public final class NpcStringId @ClientString(id = 71252, message = "You have found all the Nebulite Orbs!") public static NpcStringId YOU_HAVE_FOUND_ALL_THE_NEBULITE_ORBS; - @ClientString(id = 71259, message = "$s1 has become the lord of the Town of Oren. May there be glory in the territory of Oren! ") + @ClientString(id = 71259, message = "$s1 has become the lord of the Town of Oren. May there be glory in the territory of Oren!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_OREN_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_OREN; @ClientString(id = 71301, message = "Path to Becoming a Lord - Aden") @@ -8632,7 +9514,7 @@ public final class NpcStringId @ClientString(id = 71304, message = "Path to Becoming a Lord - Aden") public static NpcStringId PATH_TO_BECOMING_A_LORD_ADEN_2; - @ClientString(id = 71351, message = "$s1 has become the lord of the Town of Aden. May there be glory in the territory of Aden! ") + @ClientString(id = 71351, message = "$s1 has become the lord of the Town of Aden. May there be glory in the territory of Aden!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_ADEN_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_ADEN; @ClientString(id = 71401, message = "Path to Becoming a Lord - Schuttgart") @@ -8653,7 +9535,7 @@ public final class NpcStringId @ClientString(id = 71451, message = "Have you completed your preparations to become a lord?") public static NpcStringId HAVE_YOU_COMPLETED_YOUR_PREPARATIONS_TO_BECOME_A_LORD_5; - @ClientString(id = 71459, message = "$s1 has become the lord of the Town of Schuttgart. May there be glory in the territory of Schuttgart! ") + @ClientString(id = 71459, message = "$s1 has become the lord of the Town of Schuttgart. May there be glory in the territory of Schuttgart!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_SCHUTTGART_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_SCHUTTGART; @ClientString(id = 71501, message = "Path to Becoming a Lord - Goddard") @@ -8695,7 +9577,7 @@ public final class NpcStringId @ClientString(id = 71657, message = "The Heretic Temple is descending into chaos.") public static NpcStringId THE_HERETIC_TEMPLE_IS_DESCENDING_INTO_CHAOS; - @ClientString(id = 71659, message = "$s1 has become the lord of the Town of Rune. May there be glory in the territory of Rune! ") + @ClientString(id = 71659, message = "$s1 has become the lord of the Town of Rune. May there be glory in the territory of Rune!") public static NpcStringId S1_HAS_BECOME_THE_LORD_OF_THE_TOWN_OF_RUNE_MAY_THERE_BE_GLORY_IN_THE_TERRITORY_OF_RUNE; @ClientString(id = 71701, message = "For the Sake of the Territory - Gludio") @@ -9013,8 +9895,8 @@ public final class NpcStringId @ClientString(id = 73205, message = "Defeat Incarnation of Gluttony, Kalios") public static NpcStringId DEFEAT_INCARNATION_OF_GLUTTONY_KALIOS; - @ClientString(id = 73211, message = "95") - public static NpcStringId NINETY_FIVE; + @ClientString(id = 73211, message = "Lv. 95 - 105") + public static NpcStringId LV_95_105; @ClientString(id = 73212, message = "Kartia Labyrinth (Lv. 95 party)") public static NpcStringId KARTIA_LABYRINTH_LV_95_PARTY; @@ -9088,8 +9970,8 @@ public final class NpcStringId @ClientString(id = 73305, message = "Defeat Warden Baylor") public static NpcStringId DEFEAT_WARDEN_BAYLOR; - @ClientString(id = 73311, message = "97") - public static NpcStringId NINETY_SEVEN; + @ClientString(id = 73311, message = "Lv. 97+") + public static NpcStringId LV_97; @ClientString(id = 73312, message = "Crystal Prison (Baylor)") public static NpcStringId CRYSTAL_PRISON_BAYLOR; @@ -9163,8 +10045,8 @@ public final class NpcStringId @ClientString(id = 73405, message = "Defeat Dragon Captain Dark Rider.") public static NpcStringId DEFEAT_DRAGON_CAPTAIN_DARK_RIDER; - @ClientString(id = 73411, message = "99") - public static NpcStringId NINETY_NINE; + @ClientString(id = 73411, message = "Lv. 99+") + public static NpcStringId LV_99; @ClientString(id = 73412, message = "Nightmare Kamaloka") public static NpcStringId NIGHTMARE_KAMALOKA; @@ -9193,8 +10075,8 @@ public final class NpcStringId @ClientString(id = 73505, message = "Defeat Commander Burnstein") public static NpcStringId DEFEAT_COMMANDER_BURNSTEIN; - @ClientString(id = 73511, message = "100") - public static NpcStringId A_HUNDRED; + @ClientString(id = 73511, message = "Lv. 100+") + public static NpcStringId LV_100; @ClientString(id = 73512, message = "Embryo Command Post") public static NpcStringId EMBRYO_COMMAND_POST; @@ -9208,23 +10090,23 @@ public final class NpcStringId @ClientString(id = 73562, message = "You weakened the enemy's attack!") public static NpcStringId YOU_WEAKENED_THE_ENEMY_S_ATTACK; - @ClientString(id = 73601, message = "|Lv. 101+| Red Libra Request - Altar of Shilen") - public static NpcStringId LV_101_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN; + @ClientString(id = 73601, message = "|Lv. 103+| Red Libra Request - Altar of Shilen") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN; - @ClientString(id = 73602, message = "|Lv. 101+| Red Libra Request - Altar of Shilen (In progress)") - public static NpcStringId LV_101_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_IN_PROGRESS; + @ClientString(id = 73602, message = "|Lv. 103+| Red Libra Request - Altar of Shilen (In progress)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_IN_PROGRESS; - @ClientString(id = 73603, message = "|Lv. 101+| Red Libra Request - Altar of Shilen (Completed)") - public static NpcStringId LV_101_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_COMPLETED; + @ClientString(id = 73603, message = "|Lv. 103+| Red Libra Request - Altar of Shilen (Completed)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_COMPLETED; - @ClientString(id = 73604, message = "|Lv. 101+| Red Libra Request - Altar of Shilen") - public static NpcStringId LV_101_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_2; + @ClientString(id = 73604, message = "|Lv. 103+| Red Libra Request - Altar of Shilen") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ALTAR_OF_SHILEN_2; @ClientString(id = 73605, message = "Defeat Maliss and Isadora") public static NpcStringId DEFEAT_MALISS_AND_ISADORA; - @ClientString(id = 73611, message = "101") - public static NpcStringId A_HUNDRED_ONE; + @ClientString(id = 73611, message = "Lv. 103+") + public static NpcStringId LV_103_3; @ClientString(id = 73612, message = "Altar of Shilen") public static NpcStringId ALTAR_OF_SHILEN; @@ -9238,6 +10120,24 @@ public final class NpcStringId @ClientString(id = 73662, message = "You weakened the enemy's magic!") public static NpcStringId YOU_WEAKENED_THE_ENEMY_S_MAGIC; + @ClientString(id = 73701, message = "|Lv. 102+| A Sword Hidden in a Smile") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE; + + @ClientString(id = 73702, message = "|Lv. 102+| A Sword Hidden in a Smile (In progress)") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_IN_PROGRESS; + + @ClientString(id = 73703, message = "|Lv. 102+| A Sword Hidden in a Smile (Completed)") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_COMPLETED; + + @ClientString(id = 73704, message = "|Lv. 102+| A Sword Hidden in a Smile") + public static NpcStringId LV_102_A_SWORD_HIDDEN_IN_A_SMILE_2; + + @ClientString(id = 73711, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_5; + + @ClientString(id = 73712, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE; + @ClientString(id = 73751, message = "Defeat $s1 healers and buffers.") public static NpcStringId DEFEAT_S1_HEALERS_AND_BUFFERS; @@ -9247,6 +10147,21 @@ public final class NpcStringId @ClientString(id = 73762, message = "You have weakened the enemy's support!") public static NpcStringId YOU_HAVE_WEAKENED_THE_ENEMY_S_SUPPORT; + @ClientString(id = 73801, message = "|Lv. 95-106| Dimensional Exploration of the Unworldly Visitors") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS; + + @ClientString(id = 73802, message = "|Lv. 95-106| Dimensional Exploration of the Unworldly Visitors (In progress)") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_IN_PROGRESS; + + @ClientString(id = 73803, message = "|Lv. 95-106| Dimensional Exploration of the Unworldly Visitors (Completed)") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_COMPLETED; + + @ClientString(id = 73804, message = "|Lv. 95-106| Dimensional Exploration of the Unworldly Visitors") + public static NpcStringId LV_95_106_DIMENSIONAL_EXPLORATION_OF_THE_UNWORLDLY_VISITORS_2; + + @ClientString(id = 73805, message = "Talk to Tarti") + public static NpcStringId TALK_TO_TARTI; + @ClientString(id = 73851, message = "Defeat $s1 warsmiths and overlords.") public static NpcStringId DEFEAT_S1_WARSMITHS_AND_OVERLORDS; @@ -9286,6 +10201,21 @@ public final class NpcStringId @ClientString(id = 74252, message = "You and your comrades have completed a great feat!") public static NpcStringId YOU_AND_YOUR_COMRADES_HAVE_COMPLETED_A_GREAT_FEAT; + @ClientString(id = 74301, message = "|Lv. 102+| At the Altar of Oblivion") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION; + + @ClientString(id = 74302, message = "|Lv. 102+| At the Altar of Oblivion (In progress)") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_IN_PROGRESS; + + @ClientString(id = 74303, message = "|Lv. 102+| At the Altar of Oblivion (Completed)") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_COMPLETED; + + @ClientString(id = 74304, message = "|Lv. 102+| At the Altar of Oblivion") + public static NpcStringId LV_102_AT_THE_ALTAR_OF_OBLIVION_2; + + @ClientString(id = 74310, message = "Talk to Ferin") + public static NpcStringId TALK_TO_FERIN; + @ClientString(id = 74401, message = "|Lv. 40 - 45| The Alligator Hunter Returns") public static NpcStringId LV_40_45_THE_ALLIGATOR_HUNTER_RETURNS; @@ -9301,14 +10231,14 @@ public final class NpcStringId @ClientString(id = 74412, message = "Speak with Flutter") public static NpcStringId SPEAK_WITH_FLUTTER; - @ClientString(id = 74501, message = "|Lv. 46 - 51| The Outlaws are Incoming") - public static NpcStringId LV_46_51_THE_OUTLAWS_ARE_INCOMING; + @ClientString(id = 74501, message = "|Lv. 46 - 55| The Outlaws are Incoming") + public static NpcStringId LV_46_55_THE_OUTLAWS_ARE_INCOMING; - @ClientString(id = 74502, message = "|Lv. 46 - 51| The Outlaws are Incoming (In progress)") - public static NpcStringId LV_46_51_THE_OUTLAWS_ARE_INCOMING_IN_PROGRESS; + @ClientString(id = 74502, message = "|Lv. 46 - 55| The Outlaws are Incoming (In progress)") + public static NpcStringId LV_46_55_THE_OUTLAWS_ARE_INCOMING_IN_PROGRESS; - @ClientString(id = 74504, message = "|Lv. 46 - 51| The Outlaws are Incoming") - public static NpcStringId LV_46_51_THE_OUTLAWS_ARE_INCOMING_2; + @ClientString(id = 74504, message = "|Lv. 46 - 55| The Outlaws are Incoming") + public static NpcStringId LV_46_55_THE_OUTLAWS_ARE_INCOMING_2; @ClientString(id = 74511, message = "Speak with Kelios") public static NpcStringId SPEAK_WITH_KELIOS; @@ -9331,14 +10261,14 @@ public final class NpcStringId @ClientString(id = 74612, message = "Speak with Paterson") public static NpcStringId SPEAK_WITH_PATERSON; - @ClientString(id = 74701, message = "|Lv. 58 - 60| Defending the Forsaken Plains") - public static NpcStringId LV_58_60_DEFENDING_THE_FORSAKEN_PLAINS; + @ClientString(id = 74701, message = "|Lv. 56 - 60| Defending the Forsaken Plains") + public static NpcStringId LV_56_60_DEFENDING_THE_FORSAKEN_PLAINS; - @ClientString(id = 74702, message = "|Lv. 58 - 60| Defending the Forsaken Plains (In progress)") - public static NpcStringId LV_58_60_DEFENDING_THE_FORSAKEN_PLAINS_IN_PROGRESS; + @ClientString(id = 74702, message = "|Lv. 56 - 60| Defending the Forsaken Plains (In progress)") + public static NpcStringId LV_56_60_DEFENDING_THE_FORSAKEN_PLAINS_IN_PROGRESS; - @ClientString(id = 74704, message = "|Lv. 58 - 60| Defending the Forsaken Plains") - public static NpcStringId LV_58_60_DEFENDING_THE_FORSAKEN_PLAINS_2; + @ClientString(id = 74704, message = "|Lv. 56 - 60| Defending the Forsaken Plains") + public static NpcStringId LV_56_60_DEFENDING_THE_FORSAKEN_PLAINS_2; @ClientString(id = 74711, message = "Speak with Eblune") public static NpcStringId SPEAK_WITH_EBLUNE; @@ -9361,6 +10291,27 @@ public final class NpcStringId @ClientString(id = 74812, message = "Speak with Mathias") public static NpcStringId SPEAK_WITH_MATHIAS; + @ClientString(id = 74901, message = "|Lv. 88-100| Ties with Guardians") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS; + + @ClientString(id = 74902, message = "|Lv. 88-100| Ties with Guardians (In progress)") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_IN_PROGRESS; + + @ClientString(id = 74903, message = "|Lv. 88-100| Ties with Guardians (Completed)") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_COMPLETED; + + @ClientString(id = 74904, message = "|Lv. 88-100| Ties with Guardians") + public static NpcStringId LV_88_100_TIES_WITH_GUARDIANS_2; + + @ClientString(id = 74911, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_6; + + @ClientString(id = 74912, message = "Solve issue in the Fairy Settlement") + public static NpcStringId SOLVE_ISSUE_IN_THE_FAIRY_SETTLEMENT; + + @ClientString(id = 74913, message = "Talk to Rafini") + public static NpcStringId TALK_TO_RAFINI; + @ClientString(id = 75001, message = "|Lv. 95+| Seven Flowers") public static NpcStringId LV_95_SEVEN_FLOWERS; @@ -9436,7 +10387,7 @@ public final class NpcStringId @ClientString(id = 75059, message = "My suffering is washing away... Thank you.") public static NpcStringId MY_SUFFERING_IS_WASHING_AWAY_THANK_YOU; - @ClientString(id = 75060, message = "Your comforting feels genuine. ") + @ClientString(id = 75060, message = "Your comforting feels genuine.") public static NpcStringId YOUR_COMFORTING_FEELS_GENUINE; @ClientString(id = 75101, message = "|Lv. 95+| Liberating the Spirits") @@ -9473,7 +10424,7 @@ public final class NpcStringId public static NpcStringId LV_93_103_UNCOVER_THE_SECRET_2; @ClientString(id = 75205, message = "Speak with Hesed") - public static NpcStringId SPEAK_WITH_HESED; + public static NpcStringId SPEAK_WITH_HESED_3; @ClientString(id = 75301, message = "|Lv. 93+| Reacting to a Crisis") public static NpcStringId LV_93_REACTING_TO_A_CRISIS; @@ -9583,38 +10534,38 @@ public final class NpcStringId @ClientString(id = 75950, message = "$s1 has received $s2 as a reward from Head Priest of the Earth Daichir.") public static NpcStringId S1_HAS_RECEIVED_S2_AS_A_REWARD_FROM_HEAD_PRIEST_OF_THE_EARTH_DAICHIR; - @ClientString(id = 75951, message = "Amaranthine Shaper Fragment") - public static NpcStringId AMARANTHINE_SHAPER_FRAGMENT; + @ClientString(id = 75951, message = "Helios Shaper Fragment") + public static NpcStringId HELIOS_SHAPER_FRAGMENT; - @ClientString(id = 75952, message = "Amaranthine Cutter Fragment") - public static NpcStringId AMARANTHINE_CUTTER_FRAGMENT; + @ClientString(id = 75952, message = "Helios Cutter Fragment") + public static NpcStringId HELIOS_CUTTER_FRAGMENT; - @ClientString(id = 75953, message = "Amaranthine Slasher Fragment") - public static NpcStringId AMARANTHINE_SLASHER_FRAGMENT; + @ClientString(id = 75953, message = "Helios Slasher Fragment") + public static NpcStringId HELIOS_SLASHER_FRAGMENT; - @ClientString(id = 75954, message = "Amaranthine Avenger Fragment") - public static NpcStringId AMARANTHINE_AVENGER_FRAGMENT; + @ClientString(id = 75954, message = "Helios Avenger Fragment") + public static NpcStringId HELIOS_AVENGER_FRAGMENT; - @ClientString(id = 75955, message = "Amaranthine Fighter Fragment") - public static NpcStringId AMARANTHINE_FIGHTER_FRAGMENT; + @ClientString(id = 75955, message = "Helios Fighter Fragment") + public static NpcStringId HELIOS_FIGHTER_FRAGMENT; - @ClientString(id = 75956, message = "Amaranthine Stormer Fragment") - public static NpcStringId AMARANTHINE_STORMER_FRAGMENT; + @ClientString(id = 75956, message = "Helios Stormer Fragment") + public static NpcStringId HELIOS_STORMER_FRAGMENT; - @ClientString(id = 75957, message = "Amaranthine Thrower Fragment") - public static NpcStringId AMARANTHINE_THROWER_FRAGMENT; + @ClientString(id = 75957, message = "Helios Thrower Fragment") + public static NpcStringId HELIOS_THROWER_FRAGMENT; - @ClientString(id = 75958, message = "Amaranthine Shooter Fragment") - public static NpcStringId AMARANTHINE_SHOOTER_FRAGMENT; + @ClientString(id = 75958, message = "Helios Shooter Fragment") + public static NpcStringId HELIOS_SHOOTER_FRAGMENT; - @ClientString(id = 75959, message = "Amaranthine Buster Fragment") - public static NpcStringId AMARANTHINE_BUSTER_FRAGMENT; + @ClientString(id = 75959, message = "Helios Buster Fragment") + public static NpcStringId HELIOS_BUSTER_FRAGMENT; - @ClientString(id = 75960, message = "Amaranthine Caster Fragment") - public static NpcStringId AMARANTHINE_CASTER_FRAGMENT; + @ClientString(id = 75960, message = "Helios Caster Fragment") + public static NpcStringId HELIOS_CASTER_FRAGMENT; - @ClientString(id = 75961, message = "Amaranthine Retributer Fragment") - public static NpcStringId AMARANTHINE_RETRIBUTER_FRAGMENT; + @ClientString(id = 75961, message = "Helios Retributer Fragment") + public static NpcStringId HELIOS_RETRIBUTER_FRAGMENT; @ClientString(id = 75962, message = "Earth Wyrm Heart Necklace") public static NpcStringId EARTH_WYRM_HEART_NECKLACE_2; @@ -9817,29 +10768,17 @@ public final class NpcStringId @ClientString(id = 77104, message = "|Lv. 81 - 84| Partaking in the Purification Campaign") public static NpcStringId LV_81_84_PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_2; - @ClientString(id = 77201, message = "|Lv. 99+| Purifying Souls") - public static NpcStringId LV_99_PURIFYING_SOULS; + @ClientString(id = 77301, message = "|Lv. 88 - 100| To Calm the Flood") + public static NpcStringId LV_88_100_TO_CALM_THE_FLOOD; - @ClientString(id = 77202, message = "|Lv. 99+| Purifying Souls (In progress)") - public static NpcStringId LV_99_PURIFYING_SOULS_IN_PROGRESS; + @ClientString(id = 77302, message = "|Lv. 88 - 100| To Calm the Flood (In progress)") + public static NpcStringId LV_88_100_TO_CALM_THE_FLOOD_IN_PROGRESS; - @ClientString(id = 77203, message = "|Lv. 99+| Purifying Souls (Completed)") - public static NpcStringId LV_99_PURIFYING_SOULS_COMPLETED; + @ClientString(id = 77303, message = "|Lv. 88 - 100| To Calm the Flood (Completed)") + public static NpcStringId LV_88_100_TO_CALM_THE_FLOOD_COMPLETED; - @ClientString(id = 77204, message = "|Lv. 99+| Purifying Souls") - public static NpcStringId LV_99_PURIFYING_SOULS_2; - - @ClientString(id = 77301, message = "|Lv. 88 - 98| To Calm the Flood") - public static NpcStringId LV_88_98_TO_CALM_THE_FLOOD; - - @ClientString(id = 77302, message = "|Lv. 88 - 98| To Calm the Flood (In progress)") - public static NpcStringId LV_88_98_TO_CALM_THE_FLOOD_IN_PROGRESS; - - @ClientString(id = 77303, message = "|Lv. 88 - 98| To Calm the Flood (Completed)") - public static NpcStringId LV_88_98_TO_CALM_THE_FLOOD_COMPLETED; - - @ClientString(id = 77304, message = "|Lv. 88 - 98| To Calm the Flood") - public static NpcStringId LV_88_98_TO_CALM_THE_FLOOD_2; + @ClientString(id = 77304, message = "|Lv. 88 - 100| To Calm the Flood") + public static NpcStringId LV_88_100_TO_CALM_THE_FLOOD_2; @ClientString(id = 77401, message = "|Lv. 90 - 100| Dreaming of Peace") public static NpcStringId LV_90_100_DREAMING_OF_PEACE; @@ -9856,6 +10795,9 @@ public final class NpcStringId @ClientString(id = 77405, message = "Defeat the violent monsters") public static NpcStringId DEFEAT_THE_VIOLENT_MONSTERS; + @ClientString(id = 77406, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_5; + @ClientString(id = 77501, message = "|Lv. 99+| Retrieving the Chaos Fragment") public static NpcStringId LV_99_RETRIEVING_THE_CHAOS_FRAGMENT; @@ -10084,8 +11026,8 @@ public final class NpcStringId @ClientString(id = 78810, message = "Talk with Bodyguard Blue.") public static NpcStringId TALK_WITH_BODYGUARD_BLUE; - @ClientString(id = 78811, message = "85") - public static NpcStringId EIGHTY_FIVE; + @ClientString(id = 78811, message = "Lv. 85 - 95") + public static NpcStringId LV_85_95; @ClientString(id = 78812, message = "Bloody Swampland and Altar of Evil") public static NpcStringId BLOODY_SWAMPLAND_AND_ALTAR_OF_EVIL; @@ -10102,17 +11044,17 @@ public final class NpcStringId @ClientString(id = 78904, message = "|Lv. 97+| Waiting for Pa'agrio") public static NpcStringId LV_97_WAITING_FOR_PA_AGRIO_2; - @ClientString(id = 79001, message = "|Lv. 100+| Obtaining Ferin's Trust") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST; + @ClientString(id = 79001, message = "|Lv. 102+| Obtaining Ferin's Trust") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST; - @ClientString(id = 79002, message = "|Lv. 100+| Obtaining Ferin's Trust (In progress)") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_IN_PROGRESS; + @ClientString(id = 79002, message = "|Lv. 102+| Obtaining Ferin's Trust (In progress)") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_IN_PROGRESS; - @ClientString(id = 79003, message = "|Lv. 100+| Obtaining Ferin's Trust (Completed)") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_COMPLETED; + @ClientString(id = 79003, message = "|Lv. 102+| Obtaining Ferin's Trust (Completed)") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_COMPLETED; - @ClientString(id = 79004, message = "|Lv. 100+| Obtaining Ferin's Trust") - public static NpcStringId LV_100_OBTAINING_FERIN_S_TRUST_2; + @ClientString(id = 79004, message = "|Lv. 102+| Obtaining Ferin's Trust") + public static NpcStringId LV_102_OBTAINING_FERIN_S_TRUST_2; @ClientString(id = 79011, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_3; @@ -10135,8 +11077,8 @@ public final class NpcStringId @ClientString(id = 79105, message = "Defeat monsters in the Fairy Settlement.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_FAIRY_SETTLEMENT; - @ClientString(id = 79111, message = "85") - public static NpcStringId EIGHTY_FIVE_2; + @ClientString(id = 79111, message = "Lv. 85 - 95") + public static NpcStringId LV_85_95_2; @ClientString(id = 79112, message = "Fairy Settlement") public static NpcStringId FAIRY_SETTLEMENT; @@ -10153,8 +11095,11 @@ public final class NpcStringId @ClientString(id = 79204, message = "|Lv. 102+| The Superion Giants") public static NpcStringId LV_102_THE_SUPERION_GIANTS_2; - @ClientString(id = 79210, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE; + @ClientString(id = 79211, message = "Select mission stage") + public static NpcStringId SELECT_MISSION_STAGE_7; + + @ClientString(id = 79212, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_2; @ClientString(id = 79301, message = "|Lv. 100+| A Clue Amidst Despair") public static NpcStringId LV_100_A_CLUE_AMIDST_DESPAIR; @@ -10192,66 +11137,99 @@ public final class NpcStringId @ClientString(id = 80103, message = "|Lv. 85 - 93| Hunter Guild Request - Gludio Territory (Completed)") public static NpcStringId LV_85_93_HUNTER_GUILD_REQUEST_GLUDIO_TERRITORY_COMPLETED; + @ClientString(id = 80105, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_7; + @ClientString(id = 80202, message = "|Lv. 87 - 97| Hunter Guild Request - Turek Orc Campsite (In progress)") public static NpcStringId LV_87_97_HUNTER_GUILD_REQUEST_TUREK_ORC_CAMPSITE_IN_PROGRESS; @ClientString(id = 80203, message = "|Lv. 87 - 97| Hunter Guild Request - Turek Orc Campsite (Completed)") public static NpcStringId LV_87_97_HUNTER_GUILD_REQUEST_TUREK_ORC_CAMPSITE_COMPLETED; + @ClientString(id = 80205, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_8; + @ClientString(id = 80302, message = "|Lv. 88 - 98| Hunter Guild Request - Elven Forest (In progress)") public static NpcStringId LV_88_98_HUNTER_GUILD_REQUEST_ELVEN_FOREST_IN_PROGRESS; @ClientString(id = 80303, message = "|Lv. 88 - 98| Hunter Guild Request - Elven Forest (Completed)") public static NpcStringId LV_88_98_HUNTER_GUILD_REQUEST_ELVEN_FOREST_COMPLETED; + @ClientString(id = 80305, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_9; + @ClientString(id = 80402, message = "|Lv. 88 - 98| Hunter Guild Request - Fairy Settlement (In progress)") public static NpcStringId LV_88_98_HUNTER_GUILD_REQUEST_FAIRY_SETTLEMENT_IN_PROGRESS; @ClientString(id = 80403, message = "|Lv. 88 - 98| Hunter Guild Request - Fairy Settlement (Completed)") public static NpcStringId LV_88_98_HUNTER_GUILD_REQUEST_FAIRY_SETTLEMENT_COMPLETED; + @ClientString(id = 80405, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_10; + @ClientString(id = 80502, message = "|Lv. 89 - 99| Hunter Guild Request - Garden of Beasts (In progress)") public static NpcStringId LV_89_99_HUNTER_GUILD_REQUEST_GARDEN_OF_BEASTS_IN_PROGRESS; @ClientString(id = 80503, message = "|Lv. 89 - 89| Hunter Guild Request - Garden of Beasts (Completed)") public static NpcStringId LV_89_89_HUNTER_GUILD_REQUEST_GARDEN_OF_BEASTS_COMPLETED; + @ClientString(id = 80505, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_11; + @ClientString(id = 80602, message = "|Lv. 92 - 102| Hunter Guild Request - North of the Town of Giran (In progress)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_NORTH_OF_THE_TOWN_OF_GIRAN_IN_PROGRESS; @ClientString(id = 80603, message = "|Lv. 92 - 102| Hunter Guild Request - North of the Town of Giran (Completed)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_NORTH_OF_THE_TOWN_OF_GIRAN_COMPLETED; + @ClientString(id = 80605, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_12; + @ClientString(id = 80702, message = "|Lv. 92 - 102| Hunter Guild Request - Cruma Marshlands (In progress)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_CRUMA_MARSHLANDS_IN_PROGRESS; @ClientString(id = 80703, message = "|Lv. 92 - 102| Hunter Guild Request - Cruma Marshlands (Completed)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_CRUMA_MARSHLANDS_COMPLETED; + @ClientString(id = 80705, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_13; + @ClientString(id = 80802, message = "|Lv. 92 - 102| Hunter Guild Request - The Fields (In progress)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_THE_FIELDS_IN_PROGRESS; @ClientString(id = 80803, message = "|Lv. 92 - 102| Hunter Guild Request - The Fields (Completed)") public static NpcStringId LV_92_102_HUNTER_GUILD_REQUEST_THE_FIELDS_COMPLETED; + @ClientString(id = 80805, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_14; + @ClientString(id = 80902, message = "|Lv. 93 - 103| Hunter Guild Request - The Immortal Plateau (In progress)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_THE_IMMORTAL_PLATEAU_IN_PROGRESS; @ClientString(id = 80903, message = "|Lv. 93 - 103| Hunter Guild Request - The Immortal Plateau (Completed)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_THE_IMMORTAL_PLATEAU_COMPLETED; + @ClientString(id = 80905, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_15; + @ClientString(id = 81002, message = "|Lv. 93 - 103| Hunter Guild Request - Isle of Souls (In progress)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_ISLE_OF_SOULS_IN_PROGRESS; @ClientString(id = 81003, message = "|Lv. 93 - 103| Hunter Guild Request - Isle of Souls (Completed)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_ISLE_OF_SOULS_COMPLETED; + @ClientString(id = 81005, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_16; + @ClientString(id = 81102, message = "|Lv. 93 - 103| Hunter Guild Request - Cemetery (In progress)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_CEMETERY_IN_PROGRESS; @ClientString(id = 81103, message = "|Lv. 93 - 103| Hunter Guild Request - Cemetery (Completed)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_CEMETERY_COMPLETED; + @ClientString(id = 81105, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_17; + @ClientString(id = 81201, message = "|Lv. 101+| Barton in First Stronghold") public static NpcStringId LV_101_BARTON_IN_FIRST_STRONGHOLD; @@ -10378,6 +11356,9 @@ public final class NpcStringId @ClientString(id = 82503, message = "|Lv. 93 - 103| Hunter Guild Request - Valley of Saints (Completed)") public static NpcStringId LV_93_103_HUNTER_GUILD_REQUEST_VALLEY_OF_SAINTS_COMPLETED; + @ClientString(id = 82505, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_18; + @ClientString(id = 82601, message = "|Lv. 99+| In Search of the Secret Weapon") public static NpcStringId LV_99_IN_SEARCH_OF_THE_SECRET_WEAPON; @@ -10672,6 +11653,9 @@ public final class NpcStringId @ClientString(id = 83203, message = "|Lv. 96 - 106| Hunter Guild Request - Southern Region, Isle of Prayer (Completed)") public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_SOUTHERN_REGION_ISLE_OF_PRAYER_COMPLETED; + @ClientString(id = 83205, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_19; + @ClientString(id = 83301, message = "|Lv. 99+| Tauti the Demonic Treasure") public static NpcStringId LV_99_TAUTI_THE_DEMONIC_TREASURE; @@ -10873,7 +11857,7 @@ public final class NpcStringId @ClientString(id = 84212, message = "Speak with Sthor") public static NpcStringId SPEAK_WITH_STHOR; - @ClientString(id = 84301, message = "|Lv. 100+| Giant Evolution Control ") + @ClientString(id = 84301, message = "|Lv. 100+| Giant Evolution Control") public static NpcStringId LV_100_GIANT_EVOLUTION_CONTROL; @ClientString(id = 84302, message = "|Lv. 100+| Giant Evolution Control (In progress)") @@ -10969,8 +11953,8 @@ public final class NpcStringId @ClientString(id = 85002, message = "The Times Call for a New Hero - Aden (In Progress)") public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_ADEN_IN_PROGRESS; - @ClientString(id = 85003, message = "The Times Call for a New Hero - Aden (Done)") - public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_ADEN_DONE; + @ClientString(id = 85003, message = "The Times Call for a New Hero - Aden (Completed)") + public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_ADEN_COMPLETED; @ClientString(id = 85004, message = "The Times Call for a New Hero - Aden") public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_ADEN_2; @@ -11023,7 +12007,7 @@ public final class NpcStringId @ClientString(id = 85025, message = "This is moving properly, right? Are you sure?") public static NpcStringId THIS_IS_MOVING_PROPERLY_RIGHT_ARE_YOU_SURE; - @ClientString(id = 85026, message = "Ballista Repair has failed, ending in destruction. ") + @ClientString(id = 85026, message = "Ballista Repair has failed, ending in destruction.") public static NpcStringId BALLISTA_REPAIR_HAS_FAILED_ENDING_IN_DESTRUCTION; @ClientString(id = 85101, message = "The Times Call for a New Hero - Rune") @@ -11032,8 +12016,8 @@ public final class NpcStringId @ClientString(id = 85102, message = "The Times Call for a New Hero - Rune (In Progress)") public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_RUNE_IN_PROGRESS; - @ClientString(id = 85103, message = "The Times Call for a New Hero - Rune (Done)") - public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_RUNE_DONE; + @ClientString(id = 85103, message = "The Times Call for a New Hero - Rune (Completed)") + public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_RUNE_COMPLETED; @ClientString(id = 85104, message = "The Times Call for a New Hero - Rune") public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_RUNE_2; @@ -11128,7 +12112,7 @@ public final class NpcStringId @ClientString(id = 85707, message = "There's even more you can do now with Fantasy Isle Coins! Come take a look!") public static NpcStringId THERE_S_EVEN_MORE_YOU_CAN_DO_NOW_WITH_FANTASY_ISLE_COINS_COME_TAKE_A_LOOK; - @ClientString(id = 85708, message = "Fantasy Isle is hosting a fashion show for Andron, the greatest fashion designer in Aden! ") + @ClientString(id = 85708, message = "Fantasy Isle is hosting a fashion show for Andron, the greatest fashion designer in Aden!") public static NpcStringId FANTASY_ISLE_IS_HOSTING_A_FASHION_SHOW_FOR_ANDRON_THE_GREATEST_FASHION_DESIGNER_IN_ADEN; @ClientString(id = 85709, message = "Fantasy Isle now has a monster battle system! Come check it out.") @@ -11155,7 +12139,7 @@ public final class NpcStringId @ClientString(id = 85716, message = "Ta-da! What do you think? Like, totally trendy, right?") public static NpcStringId TA_DA_WHAT_DO_YOU_THINK_LIKE_TOTALLY_TRENDY_RIGHT; - @ClientString(id = 85717, message = "I see…a future lying ahead of you. Don't speak! I see…I see…yes, a trendsetter. You shall be the trendiest trendsetter! Muahaha! ") + @ClientString(id = 85717, message = "I see…a future lying ahead of you. Don't speak! I see…I see…yes, a trendsetter. You shall be the trendiest trendsetter! Muahaha!") public static NpcStringId I_SEE_A_FUTURE_LYING_AHEAD_OF_YOU_DON_T_SPEAK_I_SEE_I_SEE_YES_A_TRENDSETTER_YOU_SHALL_BE_THE_TRENDIEST_TRENDSETTER_MUAHAHA; @ClientString(id = 85718, message = "You are cordially invited to this year's special fashion show featuring Sir Adenia Andron.") @@ -11275,6 +12259,27 @@ public final class NpcStringId @ClientString(id = 86112, message = "Talk with Settlen.") public static NpcStringId TALK_WITH_SETTLEN; + @ClientString(id = 86301, message = "|Lv. 103+| Red Libra Request - Shadow of the Mother Tree") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 86302, message = "|Lv. 103+| Red Libra Request - Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 86303, message = "|Lv. 103+| Red Libra Request - Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 86304, message = "|Lv. 103+| Red Libra Request - Shadow of the Mother Tree") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_SHADOW_OF_THE_MOTHER_TREE_2; + + @ClientString(id = 86305, message = "Eradicate Monsters in the Shadow of the Mother Tree") + public static NpcStringId ERADICATE_MONSTERS_IN_THE_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 86311, message = "Lv. 103+") + public static NpcStringId LV_103_4; + + @ClientString(id = 86312, message = "Shadow of the Mother Tree") + public static NpcStringId SHADOW_OF_THE_MOTHER_TREE; + @ClientString(id = 89501, message = "|Above Lv 85| Another Side of the Festival – 1") public static NpcStringId ABOVE_LV_85_ANOTHER_SIDE_OF_THE_FESTIVAL_1; @@ -11305,8 +12310,8 @@ public final class NpcStringId @ClientString(id = 89604, message = "|Above Lv 85| Another Side of the Festival – 2") public static NpcStringId ABOVE_LV_85_ANOTHER_SIDE_OF_THE_FESTIVAL_2_2; - @ClientString(id = 89605, message = "Instanced Zone Dungeon Complete") - public static NpcStringId INSTANCED_ZONE_DUNGEON_COMPLETE; + @ClientString(id = 89605, message = "Instance Zone Dungeon Complete") + public static NpcStringId INSTANCE_ZONE_DUNGEON_COMPLETE; @ClientString(id = 89610, message = "Talk to Bliss") public static NpcStringId TALK_TO_BLISS_2; @@ -11410,8 +12415,8 @@ public final class NpcStringId @ClientString(id = 91005, message = "Defeat monsters in the Isle of Souls.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_ISLE_OF_SOULS; - @ClientString(id = 91011, message = "90") - public static NpcStringId NINETY; + @ClientString(id = 91011, message = "Lv. 90 - 99") + public static NpcStringId LV_90_99; @ClientString(id = 91012, message = "Isle of Souls") public static NpcStringId ISLE_OF_SOULS; @@ -11431,11 +12436,11 @@ public final class NpcStringId @ClientString(id = 91105, message = "Defeat monsters in the Seal of Shilen.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_SEAL_OF_SHILEN; - @ClientString(id = 91111, message = "90") - public static NpcStringId NINETY_2; + @ClientString(id = 91111, message = "Lv. 90 - 99") + public static NpcStringId LV_90_99_2; - @ClientString(id = 91112, message = "The Forbidden Gateway") - public static NpcStringId THE_FORBIDDEN_GATEWAY; + @ClientString(id = 91112, message = "Seal of Shilen") + public static NpcStringId SEAL_OF_SHILEN; @ClientString(id = 91201, message = "|Lv. 95 - 101| Red Libra Request - Monsters from Three Areas") public static NpcStringId LV_95_101_RED_LIBRA_REQUEST_MONSTERS_FROM_THREE_AREAS; @@ -11452,8 +12457,8 @@ public final class NpcStringId @ClientString(id = 91205, message = "Defeat Monsters from Three Areas.") public static NpcStringId DEFEAT_MONSTERS_FROM_THREE_AREAS; - @ClientString(id = 91211, message = "95") - public static NpcStringId NINETY_FIVE_2; + @ClientString(id = 91211, message = "Lv. 95 - 101") + public static NpcStringId LV_95_101_2; @ClientString(id = 91212, message = "Pagan Temple, Blazing Swamp, and The Cemetery") public static NpcStringId PAGAN_TEMPLE_BLAZING_SWAMP_AND_THE_CEMETERY; @@ -11473,11 +12478,11 @@ public final class NpcStringId @ClientString(id = 91305, message = "Defeat monsters in the Raider's Crossroad.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_RAIDER_S_CROSSROAD; - @ClientString(id = 91311, message = "95") - public static NpcStringId NINETY_FIVE_3; + @ClientString(id = 91311, message = "Lv. 95 - 101") + public static NpcStringId LV_95_101_3; - @ClientString(id = 91312, message = "Raider's Crossroad") - public static NpcStringId RAIDER_S_CROSSROAD; + @ClientString(id = 91312, message = "Raider's Crossroads") + public static NpcStringId RAIDER_S_CROSSROADS; @ClientString(id = 91401, message = "|Lv. 97 - 103| Red Libra Request - Hellbound") public static NpcStringId LV_97_103_RED_LIBRA_REQUEST_HELLBOUND; @@ -11494,8 +12499,8 @@ public final class NpcStringId @ClientString(id = 91405, message = "Defeat monsters in Hellbound.") public static NpcStringId DEFEAT_MONSTERS_IN_HELLBOUND; - @ClientString(id = 91411, message = "97") - public static NpcStringId NINETY_SEVEN_2; + @ClientString(id = 91411, message = "Lv. 97 - 103") + public static NpcStringId LV_97_103; @ClientString(id = 91412, message = "Hellbound") public static NpcStringId HELLBOUND; @@ -11515,8 +12520,8 @@ public final class NpcStringId @ClientString(id = 91505, message = "Defeat monsters in the Enchanted Valley.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_ENCHANTED_VALLEY; - @ClientString(id = 91511, message = "100") - public static NpcStringId A_HUNDRED_2; + @ClientString(id = 91511, message = "Lv. 100+") + public static NpcStringId LV_100_2; @ClientString(id = 91512, message = "Enchanted Valley") public static NpcStringId ENCHANTED_VALLEY; @@ -11536,8 +12541,8 @@ public final class NpcStringId @ClientString(id = 91605, message = "Defeat Giant's Cave Monster") public static NpcStringId DEFEAT_GIANT_S_CAVE_MONSTER; - @ClientString(id = 91611, message = "100") - public static NpcStringId A_HUNDRED_3; + @ClientString(id = 91611, message = "Lv. 100+") + public static NpcStringId LV_100_3; @ClientString(id = 91612, message = "Giant's Cave") public static NpcStringId GIANT_S_CAVE; @@ -11557,8 +12562,8 @@ public final class NpcStringId @ClientString(id = 91705, message = "Defeat monsters in the Garden of Spirits.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_GARDEN_OF_SPIRITS; - @ClientString(id = 91711, message = "100") - public static NpcStringId A_HUNDRED_4; + @ClientString(id = 91711, message = "Lv. 100+") + public static NpcStringId LV_100_4; @ClientString(id = 91712, message = "Garden of Spirits") public static NpcStringId GARDEN_OF_SPIRITS; @@ -11578,8 +12583,8 @@ public final class NpcStringId @ClientString(id = 91805, message = "Defeat monsters in the Atelia Fortress.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_ATELIA_FORTRESS; - @ClientString(id = 91811, message = "100") - public static NpcStringId A_HUNDRED_5; + @ClientString(id = 91811, message = "Lv. 100+") + public static NpcStringId LV_100_5; @ClientString(id = 91812, message = "Atelia Fortress") public static NpcStringId ATELIA_FORTRESS; @@ -11599,8 +12604,8 @@ public final class NpcStringId @ClientString(id = 91905, message = "Defeat Superion Monsters.") public static NpcStringId DEFEAT_SUPERION_MONSTERS; - @ClientString(id = 91911, message = "100") - public static NpcStringId A_HUNDRED_6; + @ClientString(id = 91911, message = "Lv. 100+") + public static NpcStringId LV_100_6; @ClientString(id = 91912, message = "Superion") public static NpcStringId SUPERION; @@ -11635,6 +12640,9 @@ public final class NpcStringId @ClientString(id = 92203, message = "|Lv. 96 - 106| Hunter Guild Request - Northern Region, Isle of Prayer (Completed)") public static NpcStringId LV_96_106_HUNTER_GUILD_REQUEST_NORTHERN_REGION_ISLE_OF_PRAYER_COMPLETED; + @ClientString(id = 92205, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_20; + @ClientString(id = 92301, message = "|Lv. 100+| Shinedust Extraction") public static NpcStringId LV_100_SHINEDUST_EXTRACTION; @@ -11674,23 +12682,26 @@ public final class NpcStringId @ClientString(id = 92411, message = "Eliminate the Giant") public static NpcStringId ELIMINATE_THE_GIANT; - @ClientString(id = 92502, message = "|Lv. 98 - 108| Hunter Guild Request - Garden of Spirits (In progress)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_IN_PROGRESS; + @ClientString(id = 92502, message = "|Lv. 100+| Hunter Guild Request - Garden of Spirits (In progress)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_IN_PROGRESS; - @ClientString(id = 92503, message = "|Lv. 98 - 108| Hunter Guild Request - Garden of Spirits (Completed)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_COMPLETED; + @ClientString(id = 92503, message = "|Lv. 100+| Hunter Guild Request - Garden of Spirits (Completed)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_GARDEN_OF_SPIRITS_COMPLETED; - @ClientString(id = 92601, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION; + @ClientString(id = 92505, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_21; - @ClientString(id = 92602, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation (In progress)") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_IN_PROGRESS; + @ClientString(id = 92601, message = "|Lv. 95-102| Exploring the Dimension-30-day Search Operation") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION; - @ClientString(id = 92603, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation (Completed)") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_COMPLETED; + @ClientString(id = 92602, message = "|Lv. 95-102| Exploring the Dimension-30-day Search Operation (In progress)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_IN_PROGRESS; - @ClientString(id = 92604, message = "|Lv. 95+| Exploring the Dimension - 30-day Search Operation") - public static NpcStringId LV_95_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_2; + @ClientString(id = 92603, message = "|Lv. 95-102| Exploring the Dimension-30-day Search Operation (Completed)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_COMPLETED; + + @ClientString(id = 92604, message = "|Lv. 95-102| Exploring the Dimension-30-day Search Operation") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION_2; @ClientString(id = 92801, message = "|Lv. 100+| 100-day Subjugation Operation") public static NpcStringId LV_100_100_DAY_SUBJUGATION_OPERATION; @@ -11710,23 +12721,23 @@ public final class NpcStringId @ClientString(id = 92810, message = "Speak with Lias") public static NpcStringId SPEAK_WITH_LIAS; - @ClientString(id = 92901, message = "|Lv. 99+| Commando Rescue") - public static NpcStringId LV_99_COMMANDO_RESCUE; + @ClientString(id = 92901, message = "|Lv. 99+| Seeker Rescue") + public static NpcStringId LV_99_SEEKER_RESCUE; - @ClientString(id = 92902, message = "|Lv. 99+| Commando Rescue (In progress)") - public static NpcStringId LV_99_COMMANDO_RESCUE_IN_PROGRESS; + @ClientString(id = 92902, message = "|Lv. 99+| Seeker Rescue (In progress)") + public static NpcStringId LV_99_SEEKER_RESCUE_IN_PROGRESS; - @ClientString(id = 92903, message = "|Lv. 99+| Commando Rescue (Completed)") - public static NpcStringId LV_99_COMMANDO_RESCUE_COMPLETED; + @ClientString(id = 92903, message = "|Lv. 99+| Seeker Rescue (Completed)") + public static NpcStringId LV_99_SEEKER_RESCUE_COMPLETED; - @ClientString(id = 92904, message = "|Lv. 99+| Commando Rescue") - public static NpcStringId LV_99_COMMANDO_RESCUE_2; + @ClientString(id = 92904, message = "|Lv. 99+| Seeker Rescue") + public static NpcStringId LV_99_SEEKER_RESCUE_2; @ClientString(id = 92911, message = "Speak with Masa") public static NpcStringId SPEAK_WITH_MASA; - @ClientString(id = 92912, message = "Commando Rescue") - public static NpcStringId COMMANDO_RESCUE; + @ClientString(id = 92912, message = "Seeker Rescue") + public static NpcStringId SEEKER_RESCUE; @ClientString(id = 92913, message = "Speak with Sporcha") public static NpcStringId SPEAK_WITH_SPORCHA; @@ -11749,17 +12760,17 @@ public final class NpcStringId @ClientString(id = 93012, message = "Speak with Sporcha") public static NpcStringId SPEAK_WITH_SPORCHA_2; - @ClientString(id = 93101, message = "|Lv. 100+| Memories of the Wind") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND; + @ClientString(id = 93101, message = "|Lv. 102+| Memories of the Wind") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND; - @ClientString(id = 93102, message = "|Lv. 100+| Memories of the Wind (In progress)") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_IN_PROGRESS; + @ClientString(id = 93102, message = "|Lv. 102+| Memories of the Wind (In progress)") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_IN_PROGRESS; - @ClientString(id = 93103, message = "|Lv. 100+| Memories of the Wind (Completed)") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_COMPLETED; + @ClientString(id = 93103, message = "|Lv. 102+| Memories of the Wind (Completed)") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_COMPLETED; - @ClientString(id = 93104, message = "|Lv. 100+| Memories of the Wind") - public static NpcStringId LV_100_MEMORIES_OF_THE_WIND_2; + @ClientString(id = 93104, message = "|Lv. 102+| Memories of the Wind") + public static NpcStringId LV_102_MEMORIES_OF_THE_WIND_2; @ClientString(id = 93111, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_14; @@ -11767,17 +12778,17 @@ public final class NpcStringId @ClientString(id = 93112, message = "Speak with Cyphona") public static NpcStringId SPEAK_WITH_CYPHONA; - @ClientString(id = 93201, message = "|Lv. 100+| Sayha's Energy") - public static NpcStringId LV_100_SAYHA_S_ENERGY; + @ClientString(id = 93201, message = "|Lv. 102+| Sayha's Energy") + public static NpcStringId LV_102_SAYHA_S_ENERGY; - @ClientString(id = 93202, message = "|Lv. 100+| Sayha's Energy (In progress)") - public static NpcStringId LV_100_SAYHA_S_ENERGY_IN_PROGRESS; + @ClientString(id = 93202, message = "|Lv. 102+| Sayha's Energy (In progress)") + public static NpcStringId LV_102_SAYHA_S_ENERGY_IN_PROGRESS; - @ClientString(id = 93203, message = "|Lv. 100+| Sayha's Energy (Completed)") - public static NpcStringId LV_100_SAYHA_S_ENERGY_COMPLETED; + @ClientString(id = 93203, message = "|Lv. 102+| Sayha's Energy (Completed)") + public static NpcStringId LV_102_SAYHA_S_ENERGY_COMPLETED; - @ClientString(id = 93204, message = "|Lv. 100+| Sayha's Energy") - public static NpcStringId LV_100_SAYHA_S_ENERGY_2; + @ClientString(id = 93204, message = "|Lv. 102+| Sayha's Energy") + public static NpcStringId LV_102_SAYHA_S_ENERGY_2; @ClientString(id = 93211, message = "Select quest stage") public static NpcStringId SELECT_QUEST_STAGE_15; @@ -11821,11 +12832,14 @@ public final class NpcStringId @ClientString(id = 93810, message = "Conversation with Santiago") public static NpcStringId CONVERSATION_WITH_SANTIAGO; - @ClientString(id = 94002, message = "|Lv. 98 - 108| Hunter Guild Request - Atelia Fortress (In progress)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_IN_PROGRESS; + @ClientString(id = 94002, message = "|Lv. 100+| Hunter Guild Request - Atelia Fortress (In progress)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_IN_PROGRESS; - @ClientString(id = 94003, message = "|Lv. 98 - 108| Hunter Guild Request - Atelia Fortress (Completed)") - public static NpcStringId LV_98_108_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_COMPLETED; + @ClientString(id = 94003, message = "|Lv. 100+| Hunter Guild Request - Atelia Fortress (Completed)") + public static NpcStringId LV_100_HUNTER_GUILD_REQUEST_ATELIA_FORTRESS_COMPLETED; + + @ClientString(id = 94005, message = "Defeating Giant Monsters") + public static NpcStringId DEFEATING_GIANT_MONSTERS_22; @ClientString(id = 94301, message = "|Lv. 90+| Filling the Energy of Destruction") public static NpcStringId LV_90_FILLING_THE_ENERGY_OF_DESTRUCTION; @@ -11858,7 +12872,7 @@ public final class NpcStringId public static NpcStringId TALK_TO_ADVENTURE_GUILDSMAN; @ClientString(id = 98511, message = "85") - public static NpcStringId EIGHTY_FIVE_3; + public static NpcStringId EIGHTY_FIVE; @ClientString(id = 98512, message = "Bloody Swampland and Altar of Evil") public static NpcStringId BLOODY_SWAMPLAND_AND_ALTAR_OF_EVIL_2; @@ -11879,7 +12893,7 @@ public final class NpcStringId public static NpcStringId DEFEAT_MONSTER_2; @ClientString(id = 98611, message = "90") - public static NpcStringId NINETY_3; + public static NpcStringId NINETY; @ClientString(id = 98612, message = "Fairy Settlement") public static NpcStringId FAIRY_SETTLEMENT_2; @@ -11921,7 +12935,7 @@ public final class NpcStringId public static NpcStringId DEFEAT_MONSTER_4; @ClientString(id = 98811, message = "97") - public static NpcStringId NINETY_SEVEN_3; + public static NpcStringId NINETY_SEVEN; @ClientString(id = 98812, message = "Pagan Temple, Blazing Swamp, and The Cemetery") public static NpcStringId PAGAN_TEMPLE_BLAZING_SWAMP_AND_THE_CEMETERY_2; @@ -11942,34 +12956,34 @@ public final class NpcStringId public static NpcStringId DEFEAT_MONSTER_5; @ClientString(id = 98911, message = "100") - public static NpcStringId A_HUNDRED_7; + public static NpcStringId A_HUNDRED; @ClientString(id = 98912, message = "Enchanted Valley and the upper levels of Giant's Cave") public static NpcStringId ENCHANTED_VALLEY_AND_THE_UPPER_LEVELS_OF_GIANT_S_CAVE; @ClientString(id = 98913, message = "Lv. 85-95") - public static NpcStringId LV_85_95; + public static NpcStringId LV_85_95_3; @ClientString(id = 98914, message = "Lv. 90-99") - public static NpcStringId LV_90_99; + public static NpcStringId LV_90_99_3; @ClientString(id = 98915, message = "Lv. 95-101") - public static NpcStringId LV_95_101; + public static NpcStringId LV_95_101_4; @ClientString(id = 98916, message = "Lv. 97-103") - public static NpcStringId LV_97_103; + public static NpcStringId LV_97_103_2; @ClientString(id = 98917, message = "Lv. 100+") - public static NpcStringId LV_100; + public static NpcStringId LV_100_7; @ClientString(id = 98918, message = "Lv. 95-105") - public static NpcStringId LV_95_105; + public static NpcStringId LV_95_105_2; @ClientString(id = 98919, message = "Lv. 97+") - public static NpcStringId LV_97; + public static NpcStringId LV_97_2; @ClientString(id = 98920, message = "Lv. 99+") - public static NpcStringId LV_99; + public static NpcStringId LV_99_2; @ClientString(id = 98921, message = "Lv. 101+") public static NpcStringId LV_101; @@ -12283,8 +13297,8 @@ public final class NpcStringId @ClientString(id = 526702, message = "Journey to Gracia (In Progress)") public static NpcStringId JOURNEY_TO_GRACIA_IN_PROGRESS; - @ClientString(id = 526703, message = "Journey to Gracia (Done)") - public static NpcStringId JOURNEY_TO_GRACIA_DONE; + @ClientString(id = 526703, message = "Journey to Gracia (Completed)") + public static NpcStringId JOURNEY_TO_GRACIA_COMPLETED; @ClientString(id = 526704, message = "Journey to Gracia") public static NpcStringId JOURNEY_TO_GRACIA_2; @@ -12295,8 +13309,8 @@ public final class NpcStringId @ClientString(id = 526802, message = "To the Seed of Infinity (In Progress)") public static NpcStringId TO_THE_SEED_OF_INFINITY_IN_PROGRESS; - @ClientString(id = 526803, message = "To the Seed of Infinity (Done)") - public static NpcStringId TO_THE_SEED_OF_INFINITY_DONE; + @ClientString(id = 526803, message = "To the Seed of Infinity (Completed)") + public static NpcStringId TO_THE_SEED_OF_INFINITY_COMPLETED; @ClientString(id = 526804, message = "To the Seed of Infinity") public static NpcStringId TO_THE_SEED_OF_INFINITY_2; @@ -12307,8 +13321,8 @@ public final class NpcStringId @ClientString(id = 526902, message = "To the Seed of Destruction (In Progress)") public static NpcStringId TO_THE_SEED_OF_DESTRUCTION_IN_PROGRESS; - @ClientString(id = 526903, message = "To the Seed of Destruction (Done)") - public static NpcStringId TO_THE_SEED_OF_DESTRUCTION_DONE; + @ClientString(id = 526903, message = "To the Seed of Destruction (Completed)") + public static NpcStringId TO_THE_SEED_OF_DESTRUCTION_COMPLETED; @ClientString(id = 526904, message = "To the Seed of Destruction") public static NpcStringId TO_THE_SEED_OF_DESTRUCTION_2; @@ -12319,8 +13333,8 @@ public final class NpcStringId @ClientString(id = 527002, message = "Birth of the Seed (In Progress)") public static NpcStringId BIRTH_OF_THE_SEED_IN_PROGRESS; - @ClientString(id = 527003, message = "Birth of the Seed (Done)") - public static NpcStringId BIRTH_OF_THE_SEED_DONE; + @ClientString(id = 527003, message = "Birth of the Seed (Completed)") + public static NpcStringId BIRTH_OF_THE_SEED_COMPLETED; @ClientString(id = 527004, message = "Birth of the Seed") public static NpcStringId BIRTH_OF_THE_SEED_2; @@ -12331,8 +13345,8 @@ public final class NpcStringId @ClientString(id = 527102, message = "The Enveloping Darkness (In Progress)") public static NpcStringId THE_ENVELOPING_DARKNESS_IN_PROGRESS; - @ClientString(id = 527103, message = "The Enveloping Darkness (Done)") - public static NpcStringId THE_ENVELOPING_DARKNESS_DONE; + @ClientString(id = 527103, message = "The Enveloping Darkness (Completed)") + public static NpcStringId THE_ENVELOPING_DARKNESS_COMPLETED; @ClientString(id = 527104, message = "The Enveloping Darkness") public static NpcStringId THE_ENVELOPING_DARKNESS_2; @@ -12343,8 +13357,8 @@ public final class NpcStringId @ClientString(id = 527202, message = "Light Fragment (In Progress)") public static NpcStringId LIGHT_FRAGMENT_IN_PROGRESS; - @ClientString(id = 527203, message = "Light Fragment (Done)") - public static NpcStringId LIGHT_FRAGMENT_DONE; + @ClientString(id = 527203, message = "Light Fragment (Completed)") + public static NpcStringId LIGHT_FRAGMENT_COMPLETED; @ClientString(id = 527204, message = "Light Fragment") public static NpcStringId LIGHT_FRAGMENT_2; @@ -12676,8 +13690,8 @@ public final class NpcStringId @ClientString(id = 529902, message = "How to Stand Up For Yourself (In Progress)") public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF_IN_PROGRESS; - @ClientString(id = 529903, message = "How to Stand Up For Yourself (Done)") - public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF_DONE; + @ClientString(id = 529903, message = "How to Stand Up For Yourself (Completed)") + public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF_COMPLETED; @ClientString(id = 529904, message = "How to Stand Up For Yourself") public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF_2; @@ -12745,6 +13759,12 @@ public final class NpcStringId @ClientString(id = 530404, message = "|Lv. 90+| For the Forgotten Heroes") public static NpcStringId LV_90_FOR_THE_FORGOTTEN_HEROES_2; + @ClientString(id = 530411, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL; + + @ClientString(id = 530412, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL_2; + @ClientString(id = 530501, message = "|Lv. 88+| Unstoppable Futile Efforts") public static NpcStringId LV_88_UNSTOPPABLE_FUTILE_EFFORTS; @@ -13108,8 +14128,8 @@ public final class NpcStringId @ClientString(id = 534002, message = "Revived Power of the Giant (In Progress)") public static NpcStringId REVIVED_POWER_OF_THE_GIANT_IN_PROGRESS; - @ClientString(id = 534003, message = "Revived Power of the Giant (Done)") - public static NpcStringId REVIVED_POWER_OF_THE_GIANT_DONE; + @ClientString(id = 534003, message = "Revived Power of the Giant (Completed)") + public static NpcStringId REVIVED_POWER_OF_THE_GIANT_COMPLETED; @ClientString(id = 534004, message = "Revived Power of the Giant") public static NpcStringId REVIVED_POWER_OF_THE_GIANT_2; @@ -13192,8 +14212,8 @@ public final class NpcStringId @ClientString(id = 534702, message = "Seven Sign, Destruction Came about like that (In Progress)") public static NpcStringId SEVEN_SIGN_DESTRUCTION_CAME_ABOUT_LIKE_THAT_IN_PROGRESS; - @ClientString(id = 534703, message = "Seven Sign, Destruction Came about like that (Done)") - public static NpcStringId SEVEN_SIGN_DESTRUCTION_CAME_ABOUT_LIKE_THAT_DONE; + @ClientString(id = 534703, message = "Seven Sign, Destruction Came about like that (Completed)") + public static NpcStringId SEVEN_SIGN_DESTRUCTION_CAME_ABOUT_LIKE_THAT_COMPLETED; @ClientString(id = 534704, message = "Seven Sign, Destruction Came about like that") public static NpcStringId SEVEN_SIGN_DESTRUCTION_CAME_ABOUT_LIKE_THAT_2; @@ -13204,8 +14224,8 @@ public final class NpcStringId @ClientString(id = 534802, message = "Seven Sign, Shadow that swallowed the moon (In Progress)") public static NpcStringId SEVEN_SIGN_SHADOW_THAT_SWALLOWED_THE_MOON_IN_PROGRESS; - @ClientString(id = 534803, message = "Seven Sign, Shadow that swallowed the moon (Done)") - public static NpcStringId SEVEN_SIGN_SHADOW_THAT_SWALLOWED_THE_MOON_DONE; + @ClientString(id = 534803, message = "Seven Sign, Shadow that swallowed the moon (Completed)") + public static NpcStringId SEVEN_SIGN_SHADOW_THAT_SWALLOWED_THE_MOON_COMPLETED; @ClientString(id = 534804, message = "Seven Sign, Shadow that swallowed the moon") public static NpcStringId SEVEN_SIGN_SHADOW_THAT_SWALLOWED_THE_MOON_2; @@ -13216,8 +14236,8 @@ public final class NpcStringId @ClientString(id = 534902, message = "Seven Signs: Dusky Dawn (In Progress)") public static NpcStringId SEVEN_SIGNS_DUSKY_DAWN_IN_PROGRESS; - @ClientString(id = 534903, message = "Seven Signs: Dusky Dawn (Done)") - public static NpcStringId SEVEN_SIGNS_DUSKY_DAWN_DONE; + @ClientString(id = 534903, message = "Seven Signs: Dusky Dawn (Completed)") + public static NpcStringId SEVEN_SIGNS_DUSKY_DAWN_COMPLETED; @ClientString(id = 534904, message = "Seven Signs: Dusky Dawn") public static NpcStringId SEVEN_SIGNS_DUSKY_DAWN_2; @@ -13228,8 +14248,8 @@ public final class NpcStringId @ClientString(id = 535002, message = "Mother of Monstrosities (In Progress)") public static NpcStringId MOTHER_OF_MONSTROSITIES_IN_PROGRESS; - @ClientString(id = 535003, message = "Mother of Monstrosities (Done)") - public static NpcStringId MOTHER_OF_MONSTROSITIES_DONE; + @ClientString(id = 535003, message = "Mother of Monstrosities (Completed)") + public static NpcStringId MOTHER_OF_MONSTROSITIES_COMPLETED; @ClientString(id = 535004, message = "Mother of Monstrosities") public static NpcStringId MOTHER_OF_MONSTROSITIES_2; @@ -13282,17 +14302,17 @@ public final class NpcStringId @ClientString(id = 535404, message = "|Lv. 95+| Resurrected Owner of Hall") public static NpcStringId LV_95_RESURRECTED_OWNER_OF_HALL_2; - @ClientString(id = 535501, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1; + @ClientString(id = 535501, message = "|Lv. 99+| Blacksmiths Soul - 1") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1; - @ClientString(id = 535502, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_IN_PROGRESS; + @ClientString(id = 535502, message = "|Lv. 99+| Blacksmiths Soul - 1 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_IN_PROGRESS; - @ClientString(id = 535503, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_COMPLETED; + @ClientString(id = 535503, message = "|Lv. 99+| Blacksmiths Soul - 1 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_COMPLETED; - @ClientString(id = 535504, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 1") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_1_2; + @ClientString(id = 535504, message = "|Lv. 99+| Blacksmiths Soul - 1") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_1_2; @ClientString(id = 535505, message = "Talk with Tafoi.") public static NpcStringId TALK_WITH_TAFOI; @@ -13312,17 +14332,17 @@ public final class NpcStringId @ClientString(id = 535510, message = "Defeat monsters in the Enchanted Valley.") public static NpcStringId DEFEAT_MONSTERS_IN_THE_ENCHANTED_VALLEY_2; - @ClientString(id = 535601, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2; + @ClientString(id = 535601, message = "|Lv. 99+| Blacksmiths Soul - 2") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2; - @ClientString(id = 535602, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_IN_PROGRESS; + @ClientString(id = 535602, message = "|Lv. 99+| Blacksmiths Soul - 2 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_IN_PROGRESS; - @ClientString(id = 535603, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_COMPLETED; + @ClientString(id = 535603, message = "|Lv. 99+| Blacksmiths Soul - 2 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_COMPLETED; - @ClientString(id = 535604, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 2") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_2_2; + @ClientString(id = 535604, message = "|Lv. 99+| Blacksmiths Soul - 2") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_2_2; @ClientString(id = 535605, message = "Bring Shadow Weapon.") public static NpcStringId BRING_SHADOW_WEAPON; @@ -13609,17 +14629,20 @@ public final class NpcStringId @ClientString(id = 537251, message = "If what you say is true, this must be very serious.") public static NpcStringId IF_WHAT_YOU_SAY_IS_TRUE_THIS_MUST_BE_VERY_SERIOUS; - @ClientString(id = 537301, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION; + @ClientString(id = 537301, message = "|Lv. 95-102| Exploring the Dimension-Sealing the Dimension") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION; - @ClientString(id = 537302, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension (In progress)") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_IN_PROGRESS; + @ClientString(id = 537302, message = "|Lv. 95-102| Exploring the Dimension-Sealing the Dimension (In progress)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_IN_PROGRESS; - @ClientString(id = 537303, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension (Completed)") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_COMPLETED; + @ClientString(id = 537303, message = "|Lv. 95-102| Exploring the Dimension-Sealing the Dimension (Completed)") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_COMPLETED; - @ClientString(id = 537304, message = "|Lv. 95 - 99| Exploring the Dimension - Sealing the Dimension") - public static NpcStringId LV_95_99_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_2; + @ClientString(id = 537304, message = "|Lv. 95-102| Exploring the Dimension-Sealing the Dimension") + public static NpcStringId LV_95_102_EXPLORING_THE_DIMENSION_SEALING_THE_DIMENSION_2; + + @ClientString(id = 537310, message = "A message has arrived from the Dimensional Rift.\\nClick the question-mark icon to read.") + public static NpcStringId A_MESSAGE_HAS_ARRIVED_FROM_THE_DIMENSIONAL_RIFT_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @ClientString(id = 537401, message = "|Lv. 80+| That Place Succubus") public static NpcStringId LV_80_THAT_PLACE_SUCCUBUS; @@ -13993,17 +15016,17 @@ public final class NpcStringId @ClientString(id = 539204, message = "|Lv. 40 - 46| Failure and its Consequences") public static NpcStringId LV_40_46_FAILURE_AND_ITS_CONSEQUENCES_2; - @ClientString(id = 539301, message = "|Lv. 46 - 51| Kekropus' Letter: A Clue Completed") - public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED; + @ClientString(id = 539301, message = "|Lv. 46 - 55| Kekropus' Letter: A Clue Completed") + public static NpcStringId LV_46_55_KEKROPUS_LETTER_A_CLUE_COMPLETED; - @ClientString(id = 539302, message = "|Lv. 46 - 51| Kekropus' Letter: A Clue Completed (In progress)") - public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_IN_PROGRESS; + @ClientString(id = 539302, message = "|Lv. 46 - 55| Kekropus' Letter: A Clue Completed (In progress)") + public static NpcStringId LV_46_55_KEKROPUS_LETTER_A_CLUE_COMPLETED_IN_PROGRESS; - @ClientString(id = 539303, message = "|Lv. 46 - 51| Kekropus' Letter: A Clue Completed (Completed)") - public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_COMPLETED; + @ClientString(id = 539303, message = "|Lv. 46 - 55| Kekropus' Letter: A Clue Completed (Completed)") + public static NpcStringId LV_46_55_KEKROPUS_LETTER_A_CLUE_COMPLETED_COMPLETED; - @ClientString(id = 539304, message = "|Lv. 46 - 51| Kekropus' Letter: A Clue Completed") - public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_2; + @ClientString(id = 539304, message = "|Lv. 46 - 55| Kekropus' Letter: A Clue Completed") + public static NpcStringId LV_46_55_KEKROPUS_LETTER_A_CLUE_COMPLETED_2; @ClientString(id = 539331, message = "Talk to Flutter") public static NpcStringId TALK_TO_FLUTTER; @@ -14017,29 +15040,29 @@ public final class NpcStringId @ClientString(id = 539354, message = "Use Vaccine on Golem Generator") public static NpcStringId USE_VACCINE_ON_GOLEM_GENERATOR; - @ClientString(id = 539401, message = "|Lv. 46 - 52| Mutual Benefit") - public static NpcStringId LV_46_52_MUTUAL_BENEFIT; + @ClientString(id = 539401, message = "|Lv. 46 - 56| Mutual Benefit") + public static NpcStringId LV_46_56_MUTUAL_BENEFIT; - @ClientString(id = 539402, message = "|Lv. 46 - 52| Mutual Benefit (In progress)") - public static NpcStringId LV_46_52_MUTUAL_BENEFIT_IN_PROGRESS; + @ClientString(id = 539402, message = "|Lv. 46 - 56| Mutual Benefit (In progress)") + public static NpcStringId LV_46_56_MUTUAL_BENEFIT_IN_PROGRESS; - @ClientString(id = 539403, message = "|Lv. 46 - 52| Mutual Benefit (Completed)") - public static NpcStringId LV_46_52_MUTUAL_BENEFIT_COMPLETED; + @ClientString(id = 539403, message = "|Lv. 46 - 56| Mutual Benefit (Completed)") + public static NpcStringId LV_46_56_MUTUAL_BENEFIT_COMPLETED; - @ClientString(id = 539404, message = "|Lv. 46 - 52| Mutual Benefit") - public static NpcStringId LV_46_52_MUTUAL_BENEFIT_2; + @ClientString(id = 539404, message = "|Lv. 46 - 56| Mutual Benefit") + public static NpcStringId LV_46_56_MUTUAL_BENEFIT_2; - @ClientString(id = 539501, message = "|Lv. 46 - 52| Not a Traitor") - public static NpcStringId LV_46_52_NOT_A_TRAITOR; + @ClientString(id = 539501, message = "|Lv. 46 - 56| Not a Traitor") + public static NpcStringId LV_46_56_NOT_A_TRAITOR; - @ClientString(id = 539502, message = "|Lv. 46 - 52| Not a Traitor (In progress)") - public static NpcStringId LV_46_52_NOT_A_TRAITOR_IN_PROGRESS; + @ClientString(id = 539502, message = "|Lv. 46 - 56| Not a Traitor (In progress)") + public static NpcStringId LV_46_56_NOT_A_TRAITOR_IN_PROGRESS; - @ClientString(id = 539503, message = "|Lv. 46 - 52| Not a Traitor (Completed)") - public static NpcStringId LV_46_52_NOT_A_TRAITOR_COMPLETED; + @ClientString(id = 539503, message = "|Lv. 46 - 56| Not a Traitor (Completed)") + public static NpcStringId LV_46_56_NOT_A_TRAITOR_COMPLETED; - @ClientString(id = 539504, message = "|Lv. 46 - 52| Not a Traitor") - public static NpcStringId LV_46_52_NOT_A_TRAITOR_2; + @ClientString(id = 539504, message = "|Lv. 46 - 56| Not a Traitor") + public static NpcStringId LV_46_56_NOT_A_TRAITOR_2; @ClientString(id = 539511, message = "Eliminate the Oel Mahum Monsters") public static NpcStringId ELIMINATE_THE_OEL_MAHUM_MONSTERS; @@ -14101,17 +15124,17 @@ public final class NpcStringId @ClientString(id = 539904, message = "|Lv. 52 - 58| The Alphabet of the Giants") public static NpcStringId LV_52_58_THE_ALPHABET_OF_THE_GIANTS_2; - @ClientString(id = 540101, message = "|Lv. 58 - 60| Kekropus' Letter: Decoding the Badge") - public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE; + @ClientString(id = 540101, message = "|Lv. 56 - 60| Kekropus' Letter: Decoding the Badge") + public static NpcStringId LV_56_60_KEKROPUS_LETTER_DECODING_THE_BADGE; - @ClientString(id = 540102, message = "|Lv. 58 - 60| Kekropus' Letter: Decoding the Badge (In progress)") - public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_IN_PROGRESS; + @ClientString(id = 540102, message = "|Lv. 56 - 60| Kekropus' Letter: Decoding the Badge (In progress)") + public static NpcStringId LV_56_60_KEKROPUS_LETTER_DECODING_THE_BADGE_IN_PROGRESS; - @ClientString(id = 540103, message = "|Lv. 58 - 60| Kekropus' Letter: Decoding the Badge (Completed)") - public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_COMPLETED; + @ClientString(id = 540103, message = "|Lv. 56 - 60| Kekropus' Letter: Decoding the Badge (Completed)") + public static NpcStringId LV_56_60_KEKROPUS_LETTER_DECODING_THE_BADGE_COMPLETED; - @ClientString(id = 540104, message = "|Lv. 58 - 60| Kekropus' Letter: Decoding the Badge") - public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_2; + @ClientString(id = 540104, message = "|Lv. 56 - 60| Kekropus' Letter: Decoding the Badge") + public static NpcStringId LV_56_60_KEKROPUS_LETTER_DECODING_THE_BADGE_2; @ClientString(id = 540131, message = "Talk to Paterson") public static NpcStringId TALK_TO_PATERSON; @@ -14122,32 +15145,32 @@ public final class NpcStringId @ClientString(id = 540151, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_4; - @ClientString(id = 540201, message = "|Lv. 58 - 61| Nowhere to Turn") - public static NpcStringId LV_58_61_NOWHERE_TO_TURN; + @ClientString(id = 540201, message = "|Lv. 56 - 61| Nowhere to Turn") + public static NpcStringId LV_56_61_NOWHERE_TO_TURN; - @ClientString(id = 540202, message = "|Lv. 58 - 61| Nowhere to Turn (In progress)") - public static NpcStringId LV_58_61_NOWHERE_TO_TURN_IN_PROGRESS; + @ClientString(id = 540202, message = "|Lv. 56 - 61| Nowhere to Turn (In progress)") + public static NpcStringId LV_56_61_NOWHERE_TO_TURN_IN_PROGRESS; - @ClientString(id = 540203, message = "|Lv. 58 - 61| Nowhere to Turn (Completed)") - public static NpcStringId LV_58_61_NOWHERE_TO_TURN_COMPLETED; + @ClientString(id = 540203, message = "|Lv. 56 - 61| Nowhere to Turn (Completed)") + public static NpcStringId LV_56_61_NOWHERE_TO_TURN_COMPLETED; - @ClientString(id = 540204, message = "|Lv. 58 - 61| Nowhere to Turn") - public static NpcStringId LV_58_61_NOWHERE_TO_TURN_2; + @ClientString(id = 540204, message = "|Lv. 56 - 61| Nowhere to Turn") + public static NpcStringId LV_56_61_NOWHERE_TO_TURN_2; @ClientString(id = 540211, message = "Eliminate Monsters in the Forsaken Plains") public static NpcStringId ELIMINATE_MONSTERS_IN_THE_FORSAKEN_PLAINS; - @ClientString(id = 540301, message = "|Lv. 58 - 61| The Guardian Giant") - public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT; + @ClientString(id = 540301, message = "|Lv. 56 - 61| The Guardian Giant") + public static NpcStringId LV_56_61_THE_GUARDIAN_GIANT; - @ClientString(id = 540302, message = "|Lv. 58 - 61| The Guardian Giant (In progress)") - public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_IN_PROGRESS; + @ClientString(id = 540302, message = "|Lv. 56 - 61| The Guardian Giant (In progress)") + public static NpcStringId LV_56_61_THE_GUARDIAN_GIANT_IN_PROGRESS; - @ClientString(id = 540303, message = "|Lv. 58 - 61| The Guardian Giant (Completed)") - public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_COMPLETED; + @ClientString(id = 540303, message = "|Lv. 56 - 61| The Guardian Giant (Completed)") + public static NpcStringId LV_56_61_THE_GUARDIAN_GIANT_COMPLETED; - @ClientString(id = 540304, message = "|Lv. 58 - 61| The Guardian Giant") - public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_2; + @ClientString(id = 540304, message = "|Lv. 56 - 61| The Guardian Giant") + public static NpcStringId LV_56_61_THE_GUARDIAN_GIANT_2; @ClientString(id = 540351, message = "Who is it…that threatens us…? You, with the power of the gods… why do you covet our powers?") public static NpcStringId WHO_IS_IT_THAT_THREATENS_US_YOU_WITH_THE_POWER_OF_THE_GODS_WHY_DO_YOU_COVET_OUR_POWERS; @@ -14743,42 +15766,6 @@ public final class NpcStringId @ClientString(id = 544152, message = "Fools…you have…also…been used…by... Shilen…argh…even if I die, the Seal of Punishment will…arghhh…") public static NpcStringId FOOLS_YOU_HAVE_ALSO_BEEN_USED_BY_SHILEN_ARGH_EVEN_IF_I_DIE_THE_SEAL_OF_PUNISHMENT_WILL_ARGHHH; - @ClientString(id = 544201, message = "|Lv. 99+| The Annihilated Plains - 1") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_1; - - @ClientString(id = 544202, message = "|Lv. 99+| The Annihilated Plains - 1 (In progress)") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_1_IN_PROGRESS; - - @ClientString(id = 544203, message = "|Lv. 99+| The Annihilated Plains - 1 (Completed)") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_1_COMPLETED; - - @ClientString(id = 544204, message = "|Lv. 99+| The Annihilated Plains - 1") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_1_2; - - @ClientString(id = 544301, message = "|Lv. 99+| The Annihilated Plains - 2") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_2; - - @ClientString(id = 544302, message = "|Lv. 99+| The Annihilated Plains - 2 (In progress)") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_2_IN_PROGRESS; - - @ClientString(id = 544303, message = "|Lv. 99+| The Annihilated Plains - 2 (Completed)") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_2_COMPLETED; - - @ClientString(id = 544304, message = "|Lv. 99+| The Annihilated Plains - 2") - public static NpcStringId LV_99_THE_ANNIHILATED_PLAINS_2_2; - - @ClientString(id = 544401, message = "|Lv. 99+| The Origin of Monsters") - public static NpcStringId LV_99_THE_ORIGIN_OF_MONSTERS; - - @ClientString(id = 544402, message = "|Lv. 99+| The Origin of Monsters (In progress)") - public static NpcStringId LV_99_THE_ORIGIN_OF_MONSTERS_IN_PROGRESS; - - @ClientString(id = 544403, message = "|Lv. 99+| The Origin of Monsters (Completed)") - public static NpcStringId LV_99_THE_ORIGIN_OF_MONSTERS_COMPLETED; - - @ClientString(id = 544404, message = "|Lv. 99+| The Origin of Monsters") - public static NpcStringId LV_99_THE_ORIGIN_OF_MONSTERS_2; - @ClientString(id = 544501, message = "|Lv. 97+| An Impending Threat") public static NpcStringId LV_97_AN_IMPENDING_THREAT; @@ -14860,17 +15847,17 @@ public final class NpcStringId @ClientString(id = 545304, message = "|Lv. 95+| Stopping the Wind Dragon") public static NpcStringId LV_95_STOPPING_THE_WIND_DRAGON_2; - @ClientString(id = 545401, message = "|Lv. 102+| Final Apostle of Embryo") - public static NpcStringId LV_102_FINAL_APOSTLE_OF_EMBRYO; + @ClientString(id = 545401, message = "|Lv. 100+| Final Apostle of Embryo") + public static NpcStringId LV_100_FINAL_APOSTLE_OF_EMBRYO; - @ClientString(id = 545402, message = "|Lv. 102+| Final Apostle of Embryo (In progress)") - public static NpcStringId LV_102_FINAL_APOSTLE_OF_EMBRYO_IN_PROGRESS; + @ClientString(id = 545402, message = "|Lv. 100+| Final Apostle of Embryo (In progress)") + public static NpcStringId LV_100_FINAL_APOSTLE_OF_EMBRYO_IN_PROGRESS; - @ClientString(id = 545403, message = "|Lv. 102+| Final Apostle of Embryo (Completed)") - public static NpcStringId LV_102_FINAL_APOSTLE_OF_EMBRYO_COMPLETED; + @ClientString(id = 545403, message = "|Lv. 100+| Final Apostle of Embryo (Completed)") + public static NpcStringId LV_100_FINAL_APOSTLE_OF_EMBRYO_COMPLETED; - @ClientString(id = 545404, message = "|Lv. 102+| Final Apostle of Embryo") - public static NpcStringId LV_102_FINAL_APOSTLE_OF_EMBRYO_2; + @ClientString(id = 545404, message = "|Lv. 100+| Final Apostle of Embryo") + public static NpcStringId LV_100_FINAL_APOSTLE_OF_EMBRYO_2; @ClientString(id = 545405, message = "Talk with Erda.") public static NpcStringId TALK_WITH_ERDA_2; @@ -15205,8 +16192,8 @@ public final class NpcStringId @ClientString(id = 550602, message = "Diana's Request (Lv. 80 and Above) (In Progress)") public static NpcStringId DIANA_S_REQUEST_LV_80_AND_ABOVE_IN_PROGRESS; - @ClientString(id = 550603, message = "Diana's Request (Lv. 80 and Above) (Done)") - public static NpcStringId DIANA_S_REQUEST_LV_80_AND_ABOVE_DONE; + @ClientString(id = 550603, message = "Diana's Request (Lv. 80 and Above) (Completed)") + public static NpcStringId DIANA_S_REQUEST_LV_80_AND_ABOVE_COMPLETED; @ClientString(id = 550604, message = "Diana's Request (Lv. 80 and Above)") public static NpcStringId DIANA_S_REQUEST_LV_80_AND_ABOVE_2; @@ -15322,6 +16309,21 @@ public final class NpcStringId @ClientString(id = 552804, message = "|Lv. 76 - 80| The Assassination of the Ketra Orc Chief") public static NpcStringId LV_76_80_THE_ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_2; + @ClientString(id = 552901, message = "|Lv. 106+| Ivory Tower's Research - Floating Sea Journal") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_FLOATING_SEA_JOURNAL; + + @ClientString(id = 552902, message = "|Lv. 106+| Ivory Tower's Research - Floating Sea Journal (In progress)") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_FLOATING_SEA_JOURNAL_IN_PROGRESS; + + @ClientString(id = 552903, message = "|Lv. 106+| Ivory Tower's Research - Floating Sea Journal (Completed)") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_FLOATING_SEA_JOURNAL_COMPLETED; + + @ClientString(id = 552904, message = "|Lv. 106+| Ivory Tower's Research - Floating Sea Journal") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_FLOATING_SEA_JOURNAL_2; + + @ClientString(id = 552910, message = "Talk to Bacon") + public static NpcStringId TALK_TO_BACON; + @ClientString(id = 553001, message = "|Lv. 81 - 84| Kekropus' Letter, The Dragon's Transition") public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_DRAGON_S_TRANSITION; @@ -15370,6 +16372,21 @@ public final class NpcStringId @ClientString(id = 553211, message = "Subjugation in the Southern Dragon Valley") public static NpcStringId SUBJUGATION_IN_THE_SOUTHERN_DRAGON_VALLEY; + @ClientString(id = 553301, message = "|Lv. 106+| Orfen's Ambition") + public static NpcStringId LV_106_ORFEN_S_AMBITION; + + @ClientString(id = 553302, message = "|Lv. 106+| Orfen's Ambition (In progress)") + public static NpcStringId LV_106_ORFEN_S_AMBITION_IN_PROGRESS; + + @ClientString(id = 553303, message = "|Lv. 106+| Orfen's Ambition (Completed)") + public static NpcStringId LV_106_ORFEN_S_AMBITION_COMPLETED; + + @ClientString(id = 553304, message = "|Lv. 106+| Orfen's Ambition") + public static NpcStringId LV_106_ORFEN_S_AMBITION_2; + + @ClientString(id = 553310, message = "Talk to Jamon") + public static NpcStringId TALK_TO_JAMON; + @ClientString(id = 553401, message = "|Lv. 81 - 84| Hatchling Research") public static NpcStringId LV_81_84_HATCHLING_RESEARCH; @@ -15385,17 +16402,17 @@ public final class NpcStringId @ClientString(id = 553405, message = "Speak with Stena") public static NpcStringId SPEAK_WITH_STENA; - @ClientString(id = 553501, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3; + @ClientString(id = 553501, message = "|Lv. 99+| Blacksmiths Soul - 3") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3; - @ClientString(id = 553502, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3 (In progress)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_IN_PROGRESS; + @ClientString(id = 553502, message = "|Lv. 99+| Blacksmiths Soul - 3 (In progress)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_IN_PROGRESS; - @ClientString(id = 553503, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3 (Completed)") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_COMPLETED; + @ClientString(id = 553503, message = "|Lv. 99+| Blacksmiths Soul - 3 (Completed)") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_COMPLETED; - @ClientString(id = 553504, message = "|Lv. 99+| Blacksmith's Soul-awakening Weapon - 3") - public static NpcStringId LV_99_BLACKSMITH_S_SOUL_AWAKENING_WEAPON_3_2; + @ClientString(id = 553504, message = "|Lv. 99+| Blacksmiths Soul - 3") + public static NpcStringId LV_99_BLACKSMITHS_SOUL_3_2; @ClientString(id = 553601, message = "|Lv. 100+| For True Independence") public static NpcStringId LV_100_FOR_TRUE_INDEPENDENCE; @@ -15586,6 +16603,750 @@ public final class NpcStringId @ClientString(id = 554408, message = "Speak with Trevor") public static NpcStringId SPEAK_WITH_TREVOR; + @ClientString(id = 555201, message = "Challenge! Balthus Knight!") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT; + + @ClientString(id = 555202, message = "Challenge! Balthus Knight! (In progress)") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_IN_PROGRESS; + + @ClientString(id = 555203, message = "Challenge! Balthus Knight! (Completed)") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_COMPLETED; + + @ClientString(id = 555204, message = "Challenge! Balthus Knight!") + public static NpcStringId CHALLENGE_BALTHUS_KNIGHT_2; + + @ClientString(id = 555210, message = "Talk to Stig Mach") + public static NpcStringId TALK_TO_STIG_MACH; + + @ClientString(id = 555211, message = "Talk to Rash") + public static NpcStringId TALK_TO_RASH; + + @ClientString(id = 555212, message = "Talk to Kale") + public static NpcStringId TALK_TO_KALE; + + @ClientString(id = 555213, message = "Talk to Tarti") + public static NpcStringId TALK_TO_TARTI_2; + + @ClientString(id = 555301, message = "What Matters More Than Ability") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY; + + @ClientString(id = 555302, message = "What Matters More Than Ability (In progress)") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_IN_PROGRESS; + + @ClientString(id = 555303, message = "What Matters More Than Ability (Completed)") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_COMPLETED; + + @ClientString(id = 555304, message = "What Matters More Than Ability") + public static NpcStringId WHAT_MATTERS_MORE_THAN_ABILITY_2; + + @ClientString(id = 555310, message = "Talk to McCoy") + public static NpcStringId TALK_TO_MCCOY; + + @ClientString(id = 555311, message = "Uses skills to defeat") + public static NpcStringId USES_SKILLS_TO_DEFEAT; + + @ClientString(id = 555401, message = "Gift for You") + public static NpcStringId GIFT_FOR_YOU; + + @ClientString(id = 555402, message = "Gift for You (In progress)") + public static NpcStringId GIFT_FOR_YOU_IN_PROGRESS; + + @ClientString(id = 555403, message = "Gift for You (Completed)") + public static NpcStringId GIFT_FOR_YOU_COMPLETED; + + @ClientString(id = 555404, message = "Gift for You") + public static NpcStringId GIFT_FOR_YOU_2; + + @ClientString(id = 555410, message = "Deliver to Camcud") + public static NpcStringId DELIVER_TO_CAMCUD; + + @ClientString(id = 555411, message = "Talk to Sibi") + public static NpcStringId TALK_TO_SIBI; + + @ClientString(id = 555412, message = "Deliver to Tarti") + public static NpcStringId DELIVER_TO_TARTI; + + @ClientString(id = 555413, message = "Deliver to Stig Mach") + public static NpcStringId DELIVER_TO_STIG_MACH; + + @ClientString(id = 555501, message = "Charge at Antharas") + public static NpcStringId CHARGE_AT_ANTHARAS; + + @ClientString(id = 555502, message = "Charge at Antharas (In progress)") + public static NpcStringId CHARGE_AT_ANTHARAS_IN_PROGRESS; + + @ClientString(id = 555503, message = "Charge at Antharas (Completed)") + public static NpcStringId CHARGE_AT_ANTHARAS_COMPLETED; + + @ClientString(id = 555504, message = "Charge at Antharas") + public static NpcStringId CHARGE_AT_ANTHARAS_2; + + @ClientString(id = 555510, message = "Join the Antharas battle") + public static NpcStringId JOIN_THE_ANTHARAS_BATTLE; + + @ClientString(id = 555511, message = "Talk to Roien") + public static NpcStringId TALK_TO_ROIEN; + + @ClientString(id = 555512, message = "Talk to Brome") + public static NpcStringId TALK_TO_BROME; + + @ClientString(id = 555513, message = "Talk to Mion") + public static NpcStringId TALK_TO_MION; + + @ClientString(id = 555514, message = "Talk to Kayleen") + public static NpcStringId TALK_TO_KAYLEEN; + + @ClientString(id = 555515, message = "Talk to Elias") + public static NpcStringId TALK_TO_ELIAS; + + @ClientString(id = 555516, message = "Talk to Takhun") + public static NpcStringId TALK_TO_TAKHUN; + + @ClientString(id = 555517, message = "Talk to Elena") + public static NpcStringId TALK_TO_ELENA; + + @ClientString(id = 555518, message = "Talk to Ultrian") + public static NpcStringId TALK_TO_ULTRIAN; + + @ClientString(id = 555519, message = "Talk to Tariah") + public static NpcStringId TALK_TO_TARIAH; + + @ClientString(id = 555520, message = "Talk to Narita") + public static NpcStringId TALK_TO_NARITA; + + @ClientString(id = 555521, message = "Talk to Stig Mach") + public static NpcStringId TALK_TO_STIG_MACH_2; + + @ClientString(id = 555522, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH; + + @ClientString(id = 555601, message = "Forgotten Power: Start of Fate") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE; + + @ClientString(id = 555602, message = "Forgotten Power: Start of Fate (In progress)") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_IN_PROGRESS; + + @ClientString(id = 555603, message = "Forgotten Power: Start of Fate (Completed)") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_COMPLETED; + + @ClientString(id = 555604, message = "Forgotten Power: Start of Fate") + public static NpcStringId FORGOTTEN_POWER_START_OF_FATE_2; + + @ClientString(id = 555610, message = "Sigel Knight's Awakening") + public static NpcStringId SIGEL_KNIGHT_S_AWAKENING; + + @ClientString(id = 555611, message = "Tyrr Warrior's Awakening") + public static NpcStringId TYRR_WARRIOR_S_AWAKENING; + + @ClientString(id = 555612, message = "Othell Rogue's Awakening") + public static NpcStringId OTHELL_ROGUE_S_AWAKENING; + + @ClientString(id = 555613, message = "Yul Archer's Awakening") + public static NpcStringId YUL_ARCHER_S_AWAKENING; + + @ClientString(id = 555614, message = "Wynn Summoner's Awakening") + public static NpcStringId WYNN_SUMMONER_S_AWAKENING; + + @ClientString(id = 555615, message = "Iss Enchanter's Awakening") + public static NpcStringId ISS_ENCHANTER_S_AWAKENING; + + @ClientString(id = 555616, message = "Feoh Wizard's Awakening") + public static NpcStringId FEOH_WIZARD_S_AWAKENING; + + @ClientString(id = 555617, message = "Aeore Healer's Awakening") + public static NpcStringId AEORE_HEALER_S_AWAKENING; + + @ClientString(id = 555701, message = "New Power, Winds of Fate") + public static NpcStringId NEW_POWER_WINDS_OF_FATE; + + @ClientString(id = 555702, message = "New Power, Winds of Fate (In progress)") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_IN_PROGRESS; + + @ClientString(id = 555703, message = "New Power, Winds of Fate (Completed)") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_COMPLETED; + + @ClientString(id = 555704, message = "New Power, Winds of Fate") + public static NpcStringId NEW_POWER_WINDS_OF_FATE_2; + + @ClientString(id = 555710, message = "Unlocking the Mass Ripper's Power") + public static NpcStringId UNLOCKING_THE_MASS_RIPPER_S_POWER; + + @ClientString(id = 555711, message = "Unlocking the Seer's Power") + public static NpcStringId UNLOCKING_THE_SEER_S_POWER; + + @ClientString(id = 555801, message = "Hidden in Chaos") + public static NpcStringId HIDDEN_IN_CHAOS; + + @ClientString(id = 555802, message = "Hidden in Chaos (In progress)") + public static NpcStringId HIDDEN_IN_CHAOS_IN_PROGRESS; + + @ClientString(id = 555803, message = "Hidden in Chaos (Completed)") + public static NpcStringId HIDDEN_IN_CHAOS_COMPLETED; + + @ClientString(id = 555804, message = "Hidden in Chaos") + public static NpcStringId HIDDEN_IN_CHAOS_2; + + @ClientString(id = 555810, message = "Talk to the Monk of Chaos") + public static NpcStringId TALK_TO_THE_MONK_OF_CHAOS; + + @ClientString(id = 555811, message = "You can learn 2 Revelation Skills by using 2 Chaos Pomanders.") + public static NpcStringId YOU_CAN_LEARN_2_REVELATION_SKILLS_BY_USING_2_CHAOS_POMANDERS; + + @ClientString(id = 555901, message = "Before the Guide") + public static NpcStringId BEFORE_THE_GUIDE; + + @ClientString(id = 555902, message = "Before the Guide (In progress)") + public static NpcStringId BEFORE_THE_GUIDE_IN_PROGRESS; + + @ClientString(id = 555903, message = "Before the Guide (Completed)") + public static NpcStringId BEFORE_THE_GUIDE_COMPLETED; + + @ClientString(id = 555904, message = "Before the Guide") + public static NpcStringId BEFORE_THE_GUIDE_2; + + @ClientString(id = 555910, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_2; + + @ClientString(id = 556001, message = "|Lv. 85 - 97| Way of Wandering Knight") + public static NpcStringId LV_85_97_WAY_OF_WANDERING_KNIGHT; + + @ClientString(id = 556002, message = "|Lv. 85 - 97| Way of Wandering Knight (In progress)") + public static NpcStringId LV_85_97_WAY_OF_WANDERING_KNIGHT_IN_PROGRESS; + + @ClientString(id = 556003, message = "|Lv. 85 - 97| Way of Wandering Knight (Completed)") + public static NpcStringId LV_85_97_WAY_OF_WANDERING_KNIGHT_COMPLETED; + + @ClientString(id = 556004, message = "|Lv. 85 - 97| Way of Wandering Knight") + public static NpcStringId LV_85_97_WAY_OF_WANDERING_KNIGHT_2; + + @ClientString(id = 556010, message = "A message has arrived from Herphah.\\nClick the question-mark icon to read.") + public static NpcStringId A_MESSAGE_HAS_ARRIVED_FROM_HERPHAH_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; + + @ClientString(id = 556011, message = "Hear about Clans") + public static NpcStringId HEAR_ABOUT_CLANS; + + @ClientString(id = 556012, message = "Talk to Adventurers' Guide") + public static NpcStringId TALK_TO_ADVENTURERS_GUIDE; + + @ClientString(id = 556013, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_3; + + @ClientString(id = 556014, message = "Hear about Factions") + public static NpcStringId HEAR_ABOUT_FACTIONS; + + @ClientString(id = 556015, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_18; + + @ClientString(id = 556016, message = "Reach Faction Amity Level 1") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_1; + + @ClientString(id = 556017, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_4; + + @ClientString(id = 556101, message = "|Lv. 85 - 97| Across the Death Line") + public static NpcStringId LV_85_97_ACROSS_THE_DEATH_LINE; + + @ClientString(id = 556102, message = "|Lv. 85 - 97| Across the Death Line (In progress)") + public static NpcStringId LV_85_97_ACROSS_THE_DEATH_LINE_IN_PROGRESS; + + @ClientString(id = 556103, message = "|Lv. 85 - 97| Across the Death Line (Completed)") + public static NpcStringId LV_85_97_ACROSS_THE_DEATH_LINE_COMPLETED; + + @ClientString(id = 556104, message = "|Lv. 85 - 97| Across the Death Line") + public static NpcStringId LV_85_97_ACROSS_THE_DEATH_LINE_2; + + @ClientString(id = 556111, message = "Hear about the Death Penalty") + public static NpcStringId HEAR_ABOUT_THE_DEATH_PENALTY; + + @ClientString(id = 556112, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_19; + + @ClientString(id = 556113, message = "Reach Faction Amity Level 2") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_2; + + @ClientString(id = 556114, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH; + + @ClientString(id = 556201, message = "|Lv. 85 - 97| Take Up Arms") + public static NpcStringId LV_85_97_TAKE_UP_ARMS; + + @ClientString(id = 556202, message = "|Lv. 85 - 97| Take Up Arms (In progress)") + public static NpcStringId LV_85_97_TAKE_UP_ARMS_IN_PROGRESS; + + @ClientString(id = 556203, message = "|Lv. 85 - 97| Take Up Arms (Completed)") + public static NpcStringId LV_85_97_TAKE_UP_ARMS_COMPLETED; + + @ClientString(id = 556204, message = "|Lv. 85 - 97| Take Up Arms") + public static NpcStringId LV_85_97_TAKE_UP_ARMS_2; + + @ClientString(id = 556211, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY; + + @ClientString(id = 556212, message = "Reach Faction Amity Level 3 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_3_OR_HIGHER; + + @ClientString(id = 556213, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_2; + + @ClientString(id = 556301, message = "|Lv. 85 - 97| Control of Power") + public static NpcStringId LV_85_97_CONTROL_OF_POWER; + + @ClientString(id = 556302, message = "|Lv. 85 - 97| Control of Power (In progress)") + public static NpcStringId LV_85_97_CONTROL_OF_POWER_IN_PROGRESS; + + @ClientString(id = 556303, message = "|Lv. 85-97| Control of Power (Completed)") + public static NpcStringId LV_85_97_CONTROL_OF_POWER_COMPLETED; + + @ClientString(id = 556304, message = "|Lv. 85 - 97| Control of Power") + public static NpcStringId LV_85_97_CONTROL_OF_POWER_2; + + @ClientString(id = 556311, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_2; + + @ClientString(id = 556312, message = "Reach Faction Amity Level 4 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_4_OR_HIGHER; + + @ClientString(id = 556313, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_3; + + @ClientString(id = 556401, message = "|Lv. 85 - 97| Prove Progress") + public static NpcStringId LV_85_97_PROVE_PROGRESS; + + @ClientString(id = 556402, message = "|Lv. 85 - 97| Prove Progress (In progress)") + public static NpcStringId LV_85_97_PROVE_PROGRESS_IN_PROGRESS; + + @ClientString(id = 556403, message = "|Lv. 85 - 97| Prove Progress (Completed)") + public static NpcStringId LV_85_97_PROVE_PROGRESS_COMPLETED; + + @ClientString(id = 556404, message = "|Lv. 85 - 97| Prove Progress") + public static NpcStringId LV_85_97_PROVE_PROGRESS_2; + + @ClientString(id = 556411, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_3; + + @ClientString(id = 556412, message = "Reach Faction Amity Level 5 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_5_OR_HIGHER; + + @ClientString(id = 556413, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_4; + + @ClientString(id = 556501, message = "|Lv. 85 - 97| Nothing Is Impossible") + public static NpcStringId LV_85_97_NOTHING_IS_IMPOSSIBLE; + + @ClientString(id = 556502, message = "|Lv. 85 - 97| Nothing Is Impossible (In progress)") + public static NpcStringId LV_85_97_NOTHING_IS_IMPOSSIBLE_IN_PROGRESS; + + @ClientString(id = 556503, message = "|Lv. 85 - 97| Nothing Is Impossible (Completed)") + public static NpcStringId LV_85_97_NOTHING_IS_IMPOSSIBLE_COMPLETED; + + @ClientString(id = 556504, message = "|Lv. 85 - 97| Nothing Is Impossible") + public static NpcStringId LV_85_97_NOTHING_IS_IMPOSSIBLE_2; + + @ClientString(id = 556511, message = "Meet with Penny") + public static NpcStringId MEET_WITH_PENNY_4; + + @ClientString(id = 556512, message = "Reach Faction Amity Level 6 or higher") + public static NpcStringId REACH_FACTION_AMITY_LEVEL_6_OR_HIGHER; + + @ClientString(id = 556513, message = "Return to Herphah") + public static NpcStringId RETURN_TO_HERPHAH_5; + + @ClientString(id = 556601, message = "|Lv. 95+| Best Choice") + public static NpcStringId LV_95_BEST_CHOICE; + + @ClientString(id = 556602, message = "|Lv. 95+| Best Choice (In progress)") + public static NpcStringId LV_95_BEST_CHOICE_IN_PROGRESS; + + @ClientString(id = 556603, message = "|Lv. 95+| Best Choice (Completed)") + public static NpcStringId LV_95_BEST_CHOICE_COMPLETED; + + @ClientString(id = 556604, message = "|Lv. 95+| Best Choice") + public static NpcStringId LV_95_BEST_CHOICE_2; + + @ClientString(id = 556611, message = "Talk to Herphah") + public static NpcStringId TALK_TO_HERPHAH_5; + + @ClientString(id = 556701, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_3; + + @ClientString(id = 556702, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden (In progress)") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_IN_PROGRESS_2; + + @ClientString(id = 556703, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden (Completed)") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_COMPLETED_2; + + @ClientString(id = 556704, message = "|Lv. 93 - 96| Special Mission: Nornil's Garden") + public static NpcStringId LV_93_96_SPECIAL_MISSION_NORNIL_S_GARDEN_4; + + @ClientString(id = 556711, message = "Hear about the mission") + public static NpcStringId HEAR_ABOUT_THE_MISSION_9; + + @ClientString(id = 556712, message = "Complete the quest 'Mysterious Journey'") + public static NpcStringId COMPLETE_THE_QUEST_MYSTERIOUS_JOURNEY_3; + + @ClientString(id = 556713, message = "Carry out Tapoy's mission") + public static NpcStringId CARRY_OUT_TAPOY_S_MISSION; + + @ClientString(id = 556714, message = "Speak with Hesed") + public static NpcStringId SPEAK_WITH_HESED_4; + + @ClientString(id = 556715, message = "Complete the quest 'Soulless One'") + public static NpcStringId COMPLETE_THE_QUEST_SOULLESS_ONE; + + @ClientString(id = 556716, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_20; + + @ClientString(id = 556801, message = "|Lv. 102+| Kamael's Technological Advancement") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT; + + @ClientString(id = 556802, message = "|Lv. 102+| Kamael's Technological Advancement (In progress)") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_IN_PROGRESS; + + @ClientString(id = 556803, message = "|Lv. 102+| Kamael's Technological Advancement (Completed)") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_COMPLETED; + + @ClientString(id = 556804, message = "|Lv. 102+| Kamael's Technological Advancement") + public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT_2; + + @ClientString(id = 556805, message = "Defeat the Hunter") + public static NpcStringId DEFEAT_THE_HUNTER; + + @ClientString(id = 556810, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_3; + + @ClientString(id = 556901, message = "|Lv. 102+| Declaration of War") + public static NpcStringId LV_102_DECLARATION_OF_WAR; + + @ClientString(id = 556902, message = "|Lv. 102+| Declaration of War (In progress)") + public static NpcStringId LV_102_DECLARATION_OF_WAR_IN_PROGRESS; + + @ClientString(id = 556903, message = "|Lv. 102+| Declaration of War (Completed)") + public static NpcStringId LV_102_DECLARATION_OF_WAR_COMPLETED; + + @ClientString(id = 556904, message = "|Lv. 102+| Declaration of War") + public static NpcStringId LV_102_DECLARATION_OF_WAR_2; + + @ClientString(id = 556905, message = "Defeat the Hunter") + public static NpcStringId DEFEAT_THE_HUNTER_2; + + @ClientString(id = 556906, message = "Eliminate the Giant at the Superion Fortress") + public static NpcStringId ELIMINATE_THE_GIANT_AT_THE_SUPERION_FORTRESS; + + @ClientString(id = 556910, message = "Talk to Histie") + public static NpcStringId TALK_TO_HISTIE_4; + + @ClientString(id = 556911, message = "Talk to Kekropus") + public static NpcStringId TALK_TO_KEKROPUS_5; + + @ClientString(id = 557001, message = "|Lv. 102+| Hurrah for Kamael's Independence") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE; + + @ClientString(id = 557002, message = "|Lv. 102+| Hurrah for Kamael's Independence (In progress)") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_IN_PROGRESS; + + @ClientString(id = 557003, message = "|Lv. 102+| Hurrah for Kamael's Independence (Completed)") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_COMPLETED; + + @ClientString(id = 557004, message = "|Lv. 102+| Hurrah for Kamael's Independence") + public static NpcStringId LV_102_HURRAH_FOR_KAMAEL_S_INDEPENDENCE_2; + + @ClientString(id = 557005, message = "Defeat Helios") + public static NpcStringId DEFEAT_HELIOS_2; + + @ClientString(id = 557006, message = "Eliminate the Enchant Type Giant") + public static NpcStringId ELIMINATE_THE_ENCHANT_TYPE_GIANT; + + @ClientString(id = 557010, message = "Talk to Kekropus") + public static NpcStringId TALK_TO_KEKROPUS_6; + + @ClientString(id = 557101, message = "|Lv. 95-106| Strategic Reconciliation") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION; + + @ClientString(id = 557102, message = "|Lv. 95-106| Strategic Reconciliation (In progress)") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_IN_PROGRESS; + + @ClientString(id = 557103, message = "|Lv. 95-106| Strategic Reconciliation (Completed)") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_COMPLETED; + + @ClientString(id = 557104, message = "|Lv. 95-106| Strategic Reconciliation") + public static NpcStringId LV_95_106_STRATEGIC_RECONCILIATION_2; + + @ClientString(id = 557105, message = "Talk to Tarti") + public static NpcStringId TALK_TO_TARTI_3; + + @ClientString(id = 557201, message = "|Lv. 101+| To Expel the Embryo's Forces") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES; + + @ClientString(id = 557202, message = "|Lv. 101+| To Expel the Embryo's Forces (In progress)") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_IN_PROGRESS; + + @ClientString(id = 557203, message = "|Lv. 101+| To Expel the Embryo's Forces (Completed)") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_COMPLETED; + + @ClientString(id = 557204, message = "|Lv. 101+| To Expel the Embryo's Forces") + public static NpcStringId LV_101_TO_EXPEL_THE_EMBRYO_S_FORCES_2; + + @ClientString(id = 557205, message = "Defeat the Embryo's Apostle") + public static NpcStringId DEFEAT_THE_EMBRYO_S_APOSTLE; + + @ClientString(id = 557210, message = "Talk to Logart van Dyke") + public static NpcStringId TALK_TO_LOGART_VAN_DYKE; + + @ClientString(id = 557401, message = "|Lv. 90-94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_3; + + @ClientString(id = 557402, message = "|Lv. 90-94| Special Mission: Fortuna (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_IN_PROGRESS_2; + + @ClientString(id = 557403, message = "|Lv. 90-94| Special Mission: Fortuna (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_COMPLETED_2; + + @ClientString(id = 557404, message = "|Lv. 90-94| Special Mission: Fortuna") + public static NpcStringId LV_90_94_SPECIAL_MISSION_FORTUNA_4; + + @ClientString(id = 557411, message = "Talk to Izael") + public static NpcStringId TALK_TO_IZAEL_3; + + @ClientString(id = 557412, message = "Complete the quest 'For the Forgotten Heroes'") + public static NpcStringId COMPLETE_THE_QUEST_FOR_THE_FORGOTTEN_HEROES; + + @ClientString(id = 557413, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_21; + + @ClientString(id = 557501, message = "|Lv. 95+| Let's Go Fishing") + public static NpcStringId LV_95_LET_S_GO_FISHING; + + @ClientString(id = 557502, message = "|Lv. 95+| Let's Go Fishing (In progress)") + public static NpcStringId LV_95_LET_S_GO_FISHING_IN_PROGRESS; + + @ClientString(id = 557503, message = "|Lv. 95+| Let's Go Fishing (Completed)") + public static NpcStringId LV_95_LET_S_GO_FISHING_COMPLETED; + + @ClientString(id = 557504, message = "|Lv. 95+| Let's Go Fishing") + public static NpcStringId LV_95_LET_S_GO_FISHING_2; + + @ClientString(id = 557511, message = "Hear about fishing") + public static NpcStringId HEAR_ABOUT_FISHING_2; + + @ClientString(id = 557512, message = "Catch Practice Fish") + public static NpcStringId CATCH_PRACTICE_FISH; + + @ClientString(id = 557513, message = "Talk to Santiago") + public static NpcStringId TALK_TO_SANTIAGO; + + @ClientString(id = 557601, message = "|Lv. 95+| Glittering Weapons") + public static NpcStringId LV_95_GLITTERING_WEAPONS; + + @ClientString(id = 557602, message = "|Lv. 95+| Glittering Weapons (In progress)") + public static NpcStringId LV_95_GLITTERING_WEAPONS_IN_PROGRESS; + + @ClientString(id = 557603, message = "|Lv. 95+| Glittering Weapons (Completed)") + public static NpcStringId LV_95_GLITTERING_WEAPONS_COMPLETED; + + @ClientString(id = 557604, message = "|Lv. 95+| Glittering Weapons") + public static NpcStringId LV_95_GLITTERING_WEAPONS_2; + + @ClientString(id = 557611, message = "Hear about Enchantment") + public static NpcStringId HEAR_ABOUT_ENCHANTMENT; + + @ClientString(id = 557612, message = "+7 Enhancement Practice Long Sword") + public static NpcStringId SEVEN_ENHANCEMENT_PRACTICE_LONG_SWORD; + + @ClientString(id = 557613, message = "+3 Enhancement Practice Long Sword") + public static NpcStringId THREE_ENHANCEMENT_PRACTICE_LONG_SWORD; + + @ClientString(id = 557614, message = "Talk to Rupio") + public static NpcStringId TALK_TO_RUPIO; + + @ClientString(id = 557701, message = "|Lv. 95+| Temper a Rusting Blade") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE; + + @ClientString(id = 557702, message = "|Lv. 95+| Temper a Rusting Blade (In progress)") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_IN_PROGRESS; + + @ClientString(id = 557703, message = "|Lv. 95+| Temper a Rusting Blade (Completed)") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_COMPLETED; + + @ClientString(id = 557704, message = "|Lv. 95+| Temper a Rusting Blade") + public static NpcStringId LV_95_TEMPER_A_RUSTING_BLADE_2; + + @ClientString(id = 557711, message = "Hear about Augmenting") + public static NpcStringId HEAR_ABOUT_AUGMENTING; + + @ClientString(id = 557712, message = "Practice Augmenting") + public static NpcStringId PRACTICE_AUGMENTING; + + @ClientString(id = 557713, message = "Talk to Flutter") + public static NpcStringId TALK_TO_FLUTTER_2; + + @ClientString(id = 557801, message = "|Lv. 95+| The Soul of a Sword") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD; + + @ClientString(id = 557802, message = "|Lv. 95+| The Soul of a Sword (In progress)") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_IN_PROGRESS; + + @ClientString(id = 557803, message = "|Lv. 95+| The Soul of a Sword (Completed)") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_COMPLETED; + + @ClientString(id = 557804, message = "|Lv. 95+| The Soul of a Sword") + public static NpcStringId LV_95_THE_SOUL_OF_A_SWORD_2; + + @ClientString(id = 557811, message = "Hear about Soul Crystal Enhancing") + public static NpcStringId HEAR_ABOUT_SOUL_CRYSTAL_ENHANCING; + + @ClientString(id = 557812, message = "Practice Soul Crystal Enhancing") + public static NpcStringId PRACTICE_SOUL_CRYSTAL_ENHANCING; + + @ClientString(id = 557813, message = "Talk to Vincenz") + public static NpcStringId TALK_TO_VINCENZ; + + @ClientString(id = 557901, message = "|Lv. 95+| Containing the Attribute Power") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER; + + @ClientString(id = 557902, message = "|Lv. 95+| Containing the Attribute Power (In progress)") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_IN_PROGRESS; + + @ClientString(id = 557903, message = "|Lv. 95+| Containing the Attribute Power (Completed)") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_COMPLETED; + + @ClientString(id = 557904, message = "|Lv. 95+| Containing the Attribute Power") + public static NpcStringId LV_95_CONTAINING_THE_ATTRIBUTE_POWER_2; + + @ClientString(id = 557911, message = "Hear about Attributes") + public static NpcStringId HEAR_ABOUT_ATTRIBUTES; + + @ClientString(id = 557912, message = "Choose supplies") + public static NpcStringId CHOOSE_SUPPLIES; + + @ClientString(id = 557913, message = "Practice Attributes") + public static NpcStringId PRACTICE_ATTRIBUTES; + + @ClientString(id = 557914, message = "Talk to Ferris") + public static NpcStringId TALK_TO_FERRIS; + + @ClientString(id = 558001, message = "|Lv. 90-94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_3; + + @ClientString(id = 558002, message = "|Lv. 90-94| Special Mission: Defeat Spezion (In progress)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_IN_PROGRESS_2; + + @ClientString(id = 558003, message = "|Lv. 90-94| Special Mission: Defeat Spezion (Completed)") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_COMPLETED_2; + + @ClientString(id = 558004, message = "|Lv. 90-94| Special Mission: Defeat Spezion") + public static NpcStringId LV_90_94_SPECIAL_MISSION_DEFEAT_SPEZION_4; + + @ClientString(id = 558011, message = "Talk to Opera") + public static NpcStringId TALK_TO_OPERA; + + @ClientString(id = 558012, message = "Complete the quest 'Undecaying Memory of the Past'") + public static NpcStringId COMPLETE_THE_QUEST_UNDECAYING_MEMORY_OF_THE_PAST; + + @ClientString(id = 558013, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_22; + + @ClientString(id = 559401, message = "|Lv. 97+| Fergason's Scheme") + public static NpcStringId LV_97_FERGASON_S_SCHEME; + + @ClientString(id = 559402, message = "|Lv. 97+| Fergason's Scheme (In progress)") + public static NpcStringId LV_97_FERGASON_S_SCHEME_IN_PROGRESS; + + @ClientString(id = 559403, message = "|Lv. 97+| Fergason's Scheme (Completed)") + public static NpcStringId LV_97_FERGASON_S_SCHEME_COMPLETED; + + @ClientString(id = 559404, message = "|Lv. 97+| Fergason's Scheme") + public static NpcStringId LV_97_FERGASON_S_SCHEME_2; + + @ClientString(id = 559410, message = "Talk to Sizrak") + public static NpcStringId TALK_TO_SIZRAK_2; + + @ClientString(id = 559411, message = "Talk to Aku") + public static NpcStringId TALK_TO_AKU; + + @ClientString(id = 559412, message = "Talk to Fergason") + public static NpcStringId TALK_TO_FERGASON; + + @ClientString(id = 559501, message = "|Lv. 99+| The Dimensional Warp, Part 8") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8; + + @ClientString(id = 559502, message = "|Lv. 99+| The Dimensional Warp, Part 8 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_IN_PROGRESS; + + @ClientString(id = 559503, message = "|Lv. 99+| The Dimensional Warp, Part 8 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_COMPLETED; + + @ClientString(id = 559504, message = "|Lv. 99+| The Dimensional Warp, Part 8") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_8_2; + + @ClientString(id = 559510, message = "Talk to Resed") + public static NpcStringId TALK_TO_RESED; + + @ClientString(id = 559601, message = "|Lv. 99+| The Dimensional Warp, Part 9") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9; + + @ClientString(id = 559602, message = "|Lv. 99+| The Dimensional Warp, Part 9 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_IN_PROGRESS; + + @ClientString(id = 559603, message = "|Lv. 99+| The Dimensional Warp, Part 9 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_COMPLETED; + + @ClientString(id = 559604, message = "|Lv. 99+| The Dimensional Warp, Part 9") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_9_2; + + @ClientString(id = 559701, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE; + + @ClientString(id = 559702, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree (In progress)") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 559703, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree (Completed)") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 559704, message = "|Lv. 103+| Escape to the Shadow of the Mother Tree") + public static NpcStringId LV_103_ESCAPE_TO_THE_SHADOW_OF_THE_MOTHER_TREE_2; + + @ClientString(id = 559710, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_6; + + @ClientString(id = 559801, message = "|Lv. 103+| With All Your Might") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT; + + @ClientString(id = 559802, message = "|Lv. 103+| With All Your Might (In progress)") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_IN_PROGRESS; + + @ClientString(id = 559803, message = "|Lv. 103+| With All Your Might (Completed)") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_COMPLETED; + + @ClientString(id = 559804, message = "|Lv. 103+| With All Your Might") + public static NpcStringId LV_103_WITH_ALL_YOUR_MIGHT_2; + + @ClientString(id = 559810, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_7; + + @ClientString(id = 559811, message = "Talk to Asterios") + public static NpcStringId TALK_TO_ASTERIOS; + + @ClientString(id = 559901, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE; + + @ClientString(id = 559902, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree (In progress)") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_IN_PROGRESS; + + @ClientString(id = 559903, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree (Completed)") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_COMPLETED; + + @ClientString(id = 559904, message = "|Lv. 103+| Thread of Fate Hanging on the Mother Tree") + public static NpcStringId LV_103_THREAD_OF_FATE_HANGING_ON_THE_MOTHER_TREE_2; + + @ClientString(id = 559910, message = "Confirm Nerupa's Power") + public static NpcStringId CONFIRM_NERUPA_S_POWER; + + @ClientString(id = 559911, message = "Talk to Nerupa") + public static NpcStringId TALK_TO_NERUPA_8; + + @ClientString(id = 559912, message = "Defeat Repeat") + public static NpcStringId DEFEAT_REPEAT; + @ClientString(id = 565801, message = "|Lv. 100+| Makkum in the Dimension") public static NpcStringId LV_100_MAKKUM_IN_THE_DIMENSION; @@ -15661,17 +17422,17 @@ public final class NpcStringId @ClientString(id = 570504, message = "|Lv. 97+| Bottle of Tauti's Soul") public static NpcStringId LV_97_BOTTLE_OF_TAUTI_S_SOUL_2; - @ClientString(id = 570701, message = "|Lv. 46 - 51| Flames of Sorrow") - public static NpcStringId LV_46_51_FLAMES_OF_SORROW; + @ClientString(id = 570701, message = "|Lv. 46 - 56| Flames of Sorrow") + public static NpcStringId LV_46_56_FLAMES_OF_SORROW; - @ClientString(id = 570702, message = "|Lv. 46 - 51| Flames of Sorrow (In progress)") - public static NpcStringId LV_46_51_FLAMES_OF_SORROW_IN_PROGRESS; + @ClientString(id = 570702, message = "|Lv. 46 - 56| Flames of Sorrow (In progress)") + public static NpcStringId LV_46_56_FLAMES_OF_SORROW_IN_PROGRESS; - @ClientString(id = 570703, message = "|Lv. 46 - 51| Flames of Sorrow (Completed)") - public static NpcStringId LV_46_51_FLAMES_OF_SORROW_COMPLETED; + @ClientString(id = 570703, message = "|Lv. 46 - 56| Flames of Sorrow (Completed)") + public static NpcStringId LV_46_56_FLAMES_OF_SORROW_COMPLETED; - @ClientString(id = 570704, message = "|Lv. 46 - 51| Flames of Sorrow") - public static NpcStringId LV_46_51_FLAMES_OF_SORROW_2; + @ClientString(id = 570704, message = "|Lv. 46 - 56| Flames of Sorrow") + public static NpcStringId LV_46_56_FLAMES_OF_SORROW_2; @ClientString(id = 570801, message = "|Lv. 52 - 57| Strengthen the Barrier") public static NpcStringId LV_52_57_STRENGTHEN_THE_BARRIER; @@ -15688,17 +17449,17 @@ public final class NpcStringId @ClientString(id = 570811, message = "Activate the Barrier Enforcer") public static NpcStringId ACTIVATE_THE_BARRIER_ENFORCER; - @ClientString(id = 570901, message = "|Lv. 58 - 61| The Stolen Seed") - public static NpcStringId LV_58_61_THE_STOLEN_SEED; + @ClientString(id = 570901, message = "|Lv. 56 - 61| The Stolen Seed") + public static NpcStringId LV_56_61_THE_STOLEN_SEED; - @ClientString(id = 570902, message = "|Lv. 58 - 61| The Stolen Seed (In progress)") - public static NpcStringId LV_58_61_THE_STOLEN_SEED_IN_PROGRESS; + @ClientString(id = 570902, message = "|Lv. 56 - 61| The Stolen Seed (In progress)") + public static NpcStringId LV_56_61_THE_STOLEN_SEED_IN_PROGRESS; - @ClientString(id = 570903, message = "|Lv. 58 - 61| The Stolen Seed (Completed)") - public static NpcStringId LV_58_61_THE_STOLEN_SEED_COMPLETED; + @ClientString(id = 570903, message = "|Lv. 56 - 61| The Stolen Seed (Completed)") + public static NpcStringId LV_56_61_THE_STOLEN_SEED_COMPLETED; - @ClientString(id = 570904, message = "|Lv. 58 - 61| The Stolen Seed") - public static NpcStringId LV_58_61_THE_STOLEN_SEED_2; + @ClientString(id = 570904, message = "|Lv. 56 - 61| The Stolen Seed") + public static NpcStringId LV_56_61_THE_STOLEN_SEED_2; @ClientString(id = 570911, message = "Activate the Magic Circle Control Device") public static NpcStringId ACTIVATE_THE_MAGIC_CIRCLE_CONTROL_DEVICE; @@ -15718,23 +17479,8 @@ public final class NpcStringId @ClientString(id = 571011, message = "Find the Life Energy Repository") public static NpcStringId FIND_THE_LIFE_ENERGY_REPOSITORY; - @ClientString(id = 571200, message = "A minstrel has sent an invitation.\\nClick the question-mark icon to read.") - public static NpcStringId A_MINSTREL_HAS_SENT_AN_INVITATION_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; - - @ClientString(id = 571201, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1; - - @ClientString(id = 571202, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1 (In progress)") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_IN_PROGRESS; - - @ClientString(id = 571203, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1 (Completed)") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_COMPLETED; - - @ClientString(id = 571204, message = "|Lv. 85 - 87| The Minstrel's Song, Part 1") - public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_2; - - @ClientString(id = 571211, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO; + @ClientString(id = 571200, message = "Tulesir has sent an invitation.\\nClick the question-mark icon to read.") + public static NpcStringId TULESIR_HAS_SENT_AN_INVITATION_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @ClientString(id = 571301, message = "|Lv. 85+| The Hero's Journey: Bloody Swampland") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND; @@ -15749,13 +17495,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_2; @ClientString(id = 571311, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_2; + public static NpcStringId TALK_TO_LIBERATTO; @ClientString(id = 571312, message = "Talk to Vollodos") - public static NpcStringId TALK_TO_VOLLODOS; + public static NpcStringId TALK_TO_VOLLODOS_4; @ClientString(id = 571313, message = "Talk to Vollodos") - public static NpcStringId TALK_TO_VOLLODOS_2; + public static NpcStringId TALK_TO_VOLLODOS_5; @ClientString(id = 571401, message = "|Lv. 85+| The Hero's Journey: Seed of Annihilation") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION; @@ -15770,7 +17516,7 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_2; @ClientString(id = 571411, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_3; + public static NpcStringId TALK_TO_LIBERATTO_2; @ClientString(id = 571412, message = "Talk to Klemis") public static NpcStringId TALK_TO_KLEMIS_2; @@ -15791,13 +17537,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_2; @ClientString(id = 571511, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_4; + public static NpcStringId TALK_TO_LIBERATTO_3; @ClientString(id = 571512, message = "Talk to Hadel") - public static NpcStringId TALK_TO_HADEL; + public static NpcStringId TALK_TO_HADEL_4; @ClientString(id = 571513, message = "Talk to Hadel") - public static NpcStringId TALK_TO_HADEL_2; + public static NpcStringId TALK_TO_HADEL_5; @ClientString(id = 571601, message = "|Lv. 85+| The Hero's Journey: Kartia's Labyrinth") public static NpcStringId LV_85_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH; @@ -15812,31 +17558,13 @@ public final class NpcStringId public static NpcStringId LV_85_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_2; @ClientString(id = 571611, message = "Talk to Liberatto") - public static NpcStringId TALK_TO_LIBERATTO_5; + public static NpcStringId TALK_TO_LIBERATTO_4; @ClientString(id = 571612, message = "Talk to Kartia Researcher") - public static NpcStringId TALK_TO_KARTIA_RESEARCHER; + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_3; @ClientString(id = 571613, message = "Talk to Kartia Researcher") - public static NpcStringId TALK_TO_KARTIA_RESEARCHER_2; - - @ClientString(id = 571701, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2; - - @ClientString(id = 571702, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2 (In progress)") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_IN_PROGRESS; - - @ClientString(id = 571703, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2 (Completed)") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_COMPLETED; - - @ClientString(id = 571704, message = "|Lv. 88 - 89| The Minstrel's Song, Part 2") - public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_2; - - @ClientString(id = 571711, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO; - - @ClientString(id = 571712, message = "Speak with Lada") - public static NpcStringId SPEAK_WITH_LADA; + public static NpcStringId TALK_TO_KARTIA_RESEARCHER_4; @ClientString(id = 571801, message = "|Lv. 88+| The Hero's Journey: Fairy Settlement") public static NpcStringId LV_88_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT; @@ -15851,7 +17579,7 @@ public final class NpcStringId public static NpcStringId LV_88_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_2; @ClientString(id = 571811, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_2; + public static NpcStringId TALK_TO_MISO; @ClientString(id = 571812, message = "Talk to Fairy Refugee") public static NpcStringId TALK_TO_FAIRY_REFUGEE; @@ -15859,24 +17587,6 @@ public final class NpcStringId @ClientString(id = 571813, message = "Talk to Fairy Refugee") public static NpcStringId TALK_TO_FAIRY_REFUGEE_2; - @ClientString(id = 572001, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3; - - @ClientString(id = 572002, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3 (In progress)") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_IN_PROGRESS; - - @ClientString(id = 572003, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3 (Completed)") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_COMPLETED; - - @ClientString(id = 572004, message = "|Lv. 90 - 92| The Minstrel's Song, Part 3") - public static NpcStringId LV_90_92_THE_MINSTREL_S_SONG_PART_3_2; - - @ClientString(id = 572011, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_3; - - @ClientString(id = 572012, message = "Speak with Nerupa") - public static NpcStringId SPEAK_WITH_NERUPA; - @ClientString(id = 572101, message = "|Lv. 90+| The Hero's Journey: Prison of Darkness") public static NpcStringId LV_90_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS; @@ -15890,13 +17600,13 @@ public final class NpcStringId public static NpcStringId LV_90_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_2; @ClientString(id = 572111, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_4; + public static NpcStringId TALK_TO_MISO_2; @ClientString(id = 572112, message = "Talk to Opera") - public static NpcStringId TALK_TO_OPERA; + public static NpcStringId TALK_TO_OPERA_2; @ClientString(id = 572113, message = "Talk to Opera") - public static NpcStringId TALK_TO_OPERA_2; + public static NpcStringId TALK_TO_OPERA_3; @ClientString(id = 572201, message = "|Lv. 90+| The Hero's Journey: Fortuna") public static NpcStringId LV_90_THE_HERO_S_JOURNEY_FORTUNA; @@ -15911,31 +17621,13 @@ public final class NpcStringId public static NpcStringId LV_90_THE_HERO_S_JOURNEY_FORTUNA_2; @ClientString(id = 572211, message = "Talk to Miso") - public static NpcStringId TALK_TO_MISO_5; + public static NpcStringId TALK_TO_MISO_3; @ClientString(id = 572212, message = "Talk to Izael") - public static NpcStringId TALK_TO_IZAEL; + public static NpcStringId TALK_TO_IZAEL_4; @ClientString(id = 572213, message = "Talk to Izael") - public static NpcStringId TALK_TO_IZAEL_2; - - @ClientString(id = 572301, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4; - - @ClientString(id = 572302, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4 (In progress)") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4_IN_PROGRESS; - - @ClientString(id = 572303, message = "|Lv. 93 - 94| The Minstrel's Song, Part 4 (Completed)") - public static NpcStringId LV_93_94_THE_MINSTREL_S_SONG_PART_4_COMPLETED; - - @ClientString(id = 572304, message = "|Lv. 92 - 94| The Minstrel's Song, Part 4") - public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4; - - @ClientString(id = 572311, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE; - - @ClientString(id = 572312, message = "Speak with Tapoy") - public static NpcStringId SPEAK_WITH_TAPOY; + public static NpcStringId TALK_TO_IZAEL_5; @ClientString(id = 572401, message = "|Lv. 92+| The Hero's Journey: Isle of Souls") public static NpcStringId LV_92_THE_HERO_S_JOURNEY_ISLE_OF_SOULS; @@ -15950,7 +17642,7 @@ public final class NpcStringId public static NpcStringId LV_92_THE_HERO_S_JOURNEY_ISLE_OF_SOULS_2; @ClientString(id = 572411, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE_2; + public static NpcStringId TALK_TO_MARMIE; @ClientString(id = 572412, message = "Talk to Tauresia") public static NpcStringId TALK_TO_TAURESIA; @@ -15971,25 +17663,25 @@ public final class NpcStringId public static NpcStringId LV_92_THE_HERO_S_JOURNEY_NORNIL_S_CAVE_2; @ClientString(id = 572511, message = "Talk to Marmie") - public static NpcStringId TALK_TO_MARMIE_3; + public static NpcStringId TALK_TO_MARMIE_2; @ClientString(id = 572512, message = "Talk to Verna") - public static NpcStringId TALK_TO_VERNA; + public static NpcStringId TALK_TO_VERNA_3; @ClientString(id = 572513, message = "Talk to Verna") - public static NpcStringId TALK_TO_VERNA_2; + public static NpcStringId TALK_TO_VERNA_4; - @ClientString(id = 572601, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5; + @ClientString(id = 572601, message = "|Lv. 95-96| Tulesir's Song, Part 1") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1; - @ClientString(id = 572602, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5 (In progress)") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_IN_PROGRESS; + @ClientString(id = 572602, message = "|Lv. 95-96| Tulesir's Song, Part 1 (In progress)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_IN_PROGRESS; - @ClientString(id = 572603, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5 (Completed)") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_COMPLETED; + @ClientString(id = 572603, message = "|Lv. 95-96| Tulesir's Song, Part 1 (Completed)") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_COMPLETED; - @ClientString(id = 572604, message = "|Lv. 95 - 96| The Minstrel's Song, Part 5") - public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_2; + @ClientString(id = 572604, message = "|Lv. 95-96| Tulesir's Song, Part 1") + public static NpcStringId LV_95_96_TULESIR_S_SONG_PART_1_2; @ClientString(id = 572611, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR; @@ -16081,17 +17773,17 @@ public final class NpcStringId @ClientString(id = 573013, message = "Talk to Severin") public static NpcStringId TALK_TO_SEVERIN_2; - @ClientString(id = 573101, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6; + @ClientString(id = 573101, message = "|Lv. 97-99| Tulesir's Song, Part 2") + public static NpcStringId LV_97_99_TULESIR_S_SONG_PART_2; - @ClientString(id = 573102, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6 (In progress)") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_IN_PROGRESS; + @ClientString(id = 573102, message = "|Lv. 97-99| Tulesir's Song, Part 2 (In progress)") + public static NpcStringId LV_97_99_TULESIR_S_SONG_PART_2_IN_PROGRESS; - @ClientString(id = 573103, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6 (Completed)") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_COMPLETED; + @ClientString(id = 573103, message = "|Lv. 97-99| Tulesir's Song, Part 2 (Completed)") + public static NpcStringId LV_97_99_TULESIR_S_SONG_PART_2_COMPLETED; - @ClientString(id = 573104, message = "|Lv. 97 - 99| The Minstrel's Song, Part 6") - public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_2; + @ClientString(id = 573104, message = "|Lv. 97-99| Tulesir's Song, Part 2") + public static NpcStringId LV_97_99_TULESIR_S_SONG_PART_2_2; @ClientString(id = 573111, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_6; @@ -16720,17 +18412,17 @@ public final class NpcStringId @ClientString(id = 577212, message = "Talk to the Owl") public static NpcStringId TALK_TO_THE_OWL; - @ClientString(id = 577401, message = "|Lv. 46 - 50| Letters from the Queen: Cruma Tower, Part 2") - public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2; + @ClientString(id = 577401, message = "|Lv. 46 - 55| Letters from the Queen: Cruma Tower, Part 2") + public static NpcStringId LV_46_55_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2; - @ClientString(id = 577402, message = "|Lv. 46 - 50| Letters from the Queen: Cruma Tower, Part 2 (In progress)") - public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_IN_PROGRESS; + @ClientString(id = 577402, message = "|Lv. 46 - 55| Letters from the Queen: Cruma Tower, Part 2 (In progress)") + public static NpcStringId LV_46_55_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_IN_PROGRESS; - @ClientString(id = 577403, message = "|Lv. 46 - 50| Letters from the Queen: Cruma Tower, Part 2 (Completed)") - public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_COMPLETED; + @ClientString(id = 577403, message = "|Lv. 46 - 55| Letters from the Queen: Cruma Tower, Part 2 (Completed)") + public static NpcStringId LV_46_55_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_COMPLETED; - @ClientString(id = 577404, message = "|Lv. 46 - 50| Letters from the Queen: Cruma Tower, Part 2") - public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_2; + @ClientString(id = 577404, message = "|Lv. 46 - 55| Letters from the Queen: Cruma Tower, Part 2") + public static NpcStringId LV_46_55_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_2; @ClientString(id = 577411, message = "Talk to Sylvain") public static NpcStringId TALK_TO_SYLVAIN_2; @@ -16738,32 +18430,32 @@ public final class NpcStringId @ClientString(id = 577412, message = "Talk to Rombel") public static NpcStringId TALK_TO_ROMBEL; - @ClientString(id = 577501, message = "|Lv. 46+| In Search of an Ancient Giant") - public static NpcStringId LV_46_IN_SEARCH_OF_AN_ANCIENT_GIANT; + @ClientString(id = 577501, message = "|Lv. 46 - 56| In Search of an Ancient Giant") + public static NpcStringId LV_46_56_IN_SEARCH_OF_AN_ANCIENT_GIANT; - @ClientString(id = 577502, message = "|Lv. 46+| In Search of an Ancient Giant (In progress)") - public static NpcStringId LV_46_IN_SEARCH_OF_AN_ANCIENT_GIANT_IN_PROGRESS; + @ClientString(id = 577502, message = "|Lv. 46 - 56| In Search of an Ancient Giant (In progress)") + public static NpcStringId LV_46_56_IN_SEARCH_OF_AN_ANCIENT_GIANT_IN_PROGRESS; - @ClientString(id = 577503, message = "|Lv. 46+| In Search of an Ancient Giant (Completed)") - public static NpcStringId LV_46_IN_SEARCH_OF_AN_ANCIENT_GIANT_COMPLETED; + @ClientString(id = 577503, message = "|Lv. 46 - 56| In Search of an Ancient Giant (Completed)") + public static NpcStringId LV_46_56_IN_SEARCH_OF_AN_ANCIENT_GIANT_COMPLETED; - @ClientString(id = 577504, message = "|Lv. 46+| In Search of an Ancient Giant") - public static NpcStringId LV_46_IN_SEARCH_OF_AN_ANCIENT_GIANT_2; + @ClientString(id = 577504, message = "|Lv. 46 - 56| In Search of an Ancient Giant") + public static NpcStringId LV_46_56_IN_SEARCH_OF_AN_ANCIENT_GIANT_2; @ClientString(id = 577511, message = "Go to Underground Lv. 2") public static NpcStringId GO_TO_UNDERGROUND_LV_2; - @ClientString(id = 577601, message = "|Lv. 48+| The Wrath of the Giants") - public static NpcStringId LV_48_THE_WRATH_OF_THE_GIANTS; + @ClientString(id = 577601, message = "|Lv. 46 - 56| The Wrath of the Giants") + public static NpcStringId LV_46_56_THE_WRATH_OF_THE_GIANTS; - @ClientString(id = 577602, message = "|Lv. 48+| The Wrath of the Giants (In progress)") - public static NpcStringId LV_48_THE_WRATH_OF_THE_GIANTS_IN_PROGRESS; + @ClientString(id = 577602, message = "|Lv. 46 - 56| The Wrath of the Giants (In progress)") + public static NpcStringId LV_46_56_THE_WRATH_OF_THE_GIANTS_IN_PROGRESS; - @ClientString(id = 577603, message = "|Lv. 48+| The Wrath of the Giants (Completed)") - public static NpcStringId LV_48_THE_WRATH_OF_THE_GIANTS_COMPLETED; + @ClientString(id = 577603, message = "|Lv. 46 - 56| The Wrath of the Giants (Completed)") + public static NpcStringId LV_46_56_THE_WRATH_OF_THE_GIANTS_COMPLETED; - @ClientString(id = 577604, message = "|Lv. 48+| The Wrath of the Giants") - public static NpcStringId LV_48_THE_WRATH_OF_THE_GIANTS_2; + @ClientString(id = 577604, message = "|Lv. 46 - 56| The Wrath of the Giants") + public static NpcStringId LV_46_56_THE_WRATH_OF_THE_GIANTS_2; @ClientString(id = 577611, message = "Find the Broken Device") public static NpcStringId FIND_THE_BROKEN_DEVICE; @@ -16771,17 +18463,17 @@ public final class NpcStringId @ClientString(id = 577612, message = "Talk to the Ancient Giant") public static NpcStringId TALK_TO_THE_ANCIENT_GIANT; - @ClientString(id = 577701, message = "|Lv. 49+| Reports from Cruma Tower, Part 2") - public static NpcStringId LV_49_REPORTS_FROM_CRUMA_TOWER_PART_2; + @ClientString(id = 577701, message = "|Lv. 46 - 56| Reports from Cruma Tower, Part 2") + public static NpcStringId LV_46_56_REPORTS_FROM_CRUMA_TOWER_PART_2; - @ClientString(id = 577702, message = "|Lv. 49+| Reports from Cruma Tower, Part 2 (In progress)") - public static NpcStringId LV_49_REPORTS_FROM_CRUMA_TOWER_PART_2_IN_PROGRESS; + @ClientString(id = 577702, message = "|Lv. 46 - 56| Reports from Cruma Tower, Part 2 (In progress)") + public static NpcStringId LV_46_56_REPORTS_FROM_CRUMA_TOWER_PART_2_IN_PROGRESS; - @ClientString(id = 577703, message = "|Lv. 49+| Reports from Cruma Tower, Part 2 (Completed)") - public static NpcStringId LV_49_REPORTS_FROM_CRUMA_TOWER_PART_2_COMPLETED; + @ClientString(id = 577703, message = "|Lv. 46 - 56| Reports from Cruma Tower, Part 2 (Completed)") + public static NpcStringId LV_46_56_REPORTS_FROM_CRUMA_TOWER_PART_2_COMPLETED; - @ClientString(id = 577704, message = "|Lv. 49+| Reports from Cruma Tower, Part 2") - public static NpcStringId LV_49_REPORTS_FROM_CRUMA_TOWER_PART_2_2; + @ClientString(id = 577704, message = "|Lv. 46 - 56| Reports from Cruma Tower, Part 2") + public static NpcStringId LV_46_56_REPORTS_FROM_CRUMA_TOWER_PART_2_2; @ClientString(id = 577711, message = "Ask Belkadhi to Summon an Owl") public static NpcStringId ASK_BELKADHI_TO_SUMMON_AN_OWL; @@ -16834,17 +18526,17 @@ public final class NpcStringId @ClientString(id = 578104, message = "|Lv. 52 - 58| Ingredients to Enforcements") public static NpcStringId LV_52_58_INGREDIENTS_TO_ENFORCEMENTS_2; - @ClientString(id = 578201, message = "|Lv. 58 - 60| Letters from the Queen: Forsaken Plains") - public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS; + @ClientString(id = 578201, message = "|Lv. 56 - 60| Letters from the Queen: Forsaken Plains") + public static NpcStringId LV_56_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS; - @ClientString(id = 578202, message = "|Lv. 58 - 60| Letters from the Queen: Forsaken Plains (In progress)") - public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_IN_PROGRESS; + @ClientString(id = 578202, message = "|Lv. 56 - 60| Letters from the Queen: Forsaken Plains (In progress)") + public static NpcStringId LV_56_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_IN_PROGRESS; - @ClientString(id = 578203, message = "|Lv. 58 - 60| Letters from the Queen: Forsaken Plains (Completed)") - public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_COMPLETED; + @ClientString(id = 578203, message = "|Lv. 56 - 60| Letters from the Queen: Forsaken Plains (Completed)") + public static NpcStringId LV_56_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_COMPLETED; - @ClientString(id = 578204, message = "|Lv. 58 - 60| Letters from the Queen: Forsaken Plains") - public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_2; + @ClientString(id = 578204, message = "|Lv. 56 - 60| Letters from the Queen: Forsaken Plains") + public static NpcStringId LV_56_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_2; @ClientString(id = 578211, message = "Talk to Orven") public static NpcStringId TALK_TO_ORVEN; @@ -16852,17 +18544,17 @@ public final class NpcStringId @ClientString(id = 578212, message = "Talk to Novain") public static NpcStringId TALK_TO_NOVAIN; - @ClientString(id = 578301, message = "|Lv. 58 - 61| Traces of an Ambush") - public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH; + @ClientString(id = 578301, message = "|Lv. 56 - 61| Traces of an Ambush") + public static NpcStringId LV_56_61_TRACES_OF_AN_AMBUSH; - @ClientString(id = 578302, message = "|Lv. 58 - 61| Traces of an Ambush (In progress)") - public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_IN_PROGRESS; + @ClientString(id = 578302, message = "|Lv. 56 - 61| Traces of an Ambush (In progress)") + public static NpcStringId LV_56_61_TRACES_OF_AN_AMBUSH_IN_PROGRESS; - @ClientString(id = 578303, message = "|Lv. 58 - 61| Traces of an Ambush (Completed)") - public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_COMPLETED; + @ClientString(id = 578303, message = "|Lv. 56 - 61| Traces of an Ambush (Completed)") + public static NpcStringId LV_56_61_TRACES_OF_AN_AMBUSH_COMPLETED; - @ClientString(id = 578304, message = "|Lv. 58 - 61| Traces of an Ambush") - public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_2; + @ClientString(id = 578304, message = "|Lv. 56 - 61| Traces of an Ambush") + public static NpcStringId LV_56_61_TRACES_OF_AN_AMBUSH_2; @ClientString(id = 578351, message = "I will give you death!") public static NpcStringId I_WILL_GIVE_YOU_DEATH; @@ -16873,17 +18565,17 @@ public final class NpcStringId @ClientString(id = 578353, message = "You little punk! Take that!") public static NpcStringId YOU_LITTLE_PUNK_TAKE_THAT; - @ClientString(id = 578401, message = "|Lv. 58 - 61| Broken Magic Device") - public static NpcStringId LV_58_61_BROKEN_MAGIC_DEVICE; + @ClientString(id = 578401, message = "|Lv. 56 - 61| Broken Magic Device") + public static NpcStringId LV_56_61_BROKEN_MAGIC_DEVICE; - @ClientString(id = 578402, message = "|Lv. 58 - 61| Broken Magic Device (In progress)") - public static NpcStringId LV_58_61_BROKEN_MAGIC_DEVICE_IN_PROGRESS; + @ClientString(id = 578402, message = "|Lv. 56 - 61| Broken Magic Device (In progress)") + public static NpcStringId LV_56_61_BROKEN_MAGIC_DEVICE_IN_PROGRESS; - @ClientString(id = 578403, message = "|Lv. 58 - 61| Broken Magic Device (Completed)") - public static NpcStringId LV_58_61_BROKEN_MAGIC_DEVICE_COMPLETED; + @ClientString(id = 578403, message = "|Lv. 56 - 61| Broken Magic Device (Completed)") + public static NpcStringId LV_56_61_BROKEN_MAGIC_DEVICE_COMPLETED; - @ClientString(id = 578404, message = "|Lv. 58 - 61| Broken Magic Device") - public static NpcStringId LV_58_61_BROKEN_MAGIC_DEVICE_2; + @ClientString(id = 578404, message = "|Lv. 56 - 61| Broken Magic Device") + public static NpcStringId LV_56_61_BROKEN_MAGIC_DEVICE_2; @ClientString(id = 578501, message = "|Lv. 61 - 64| Letters from the Queen: Fields of Massacre") public static NpcStringId LV_61_64_LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE; @@ -17098,6 +18790,9 @@ public final class NpcStringId @ClientString(id = 579812, message = "Talk to Namo") public static NpcStringId TALK_TO_NAMO; + @ClientString(id = 579820, message = "You can grow stronger here.\\nYou can obtain the next Queen Navari's Letter at Lv. 81!") + public static NpcStringId YOU_CAN_GROW_STRONGER_HERE_NYOU_CAN_OBTAIN_THE_NEXT_QUEEN_NAVARI_S_LETTER_AT_LV_81; + @ClientString(id = 579901, message = "|Lv. 81 - 84| Strange Things Afoot in the Valley") public static NpcStringId LV_81_84_STRANGE_THINGS_AFOOT_IN_THE_VALLEY; @@ -17128,89 +18823,89 @@ public final class NpcStringId @ClientString(id = 580011, message = "Subjugation in the Southern Dragon Valley") public static NpcStringId SUBJUGATION_IN_THE_SOUTHERN_DRAGON_VALLEY_2; - @ClientString(id = 580101, message = "The Dimensional Warp, Part 1") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1; + @ClientString(id = 580101, message = "|Lv. 99+| The Dimensional Warp, Part 1") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1; - @ClientString(id = 580102, message = "The Dimensional Warp, Part 1 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_IN_PROGRESS; + @ClientString(id = 580102, message = "|Lv. 99+| The Dimensional Warp, Part 1 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_IN_PROGRESS; - @ClientString(id = 580103, message = "The Dimensional Warp, Part 1 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_DONE; + @ClientString(id = 580103, message = "|Lv. 99+| The Dimensional Warp, Part 1 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_COMPLETED; - @ClientString(id = 580104, message = "The Dimensional Warp, Part 1") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_1_2; + @ClientString(id = 580104, message = "|Lv. 99+| The Dimensional Warp, Part 1") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_1_2; - @ClientString(id = 580201, message = "The Dimensional Warp, Part 2") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2; + @ClientString(id = 580201, message = "|Lv. 99+| The Dimensional Warp, Part 2") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2; - @ClientString(id = 580202, message = "The Dimensional Warp, Part 2 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_IN_PROGRESS; + @ClientString(id = 580202, message = "|Lv. 99+| The Dimensional Warp, Part 2 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_IN_PROGRESS; - @ClientString(id = 580203, message = "The Dimensional Warp, Part 2 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_DONE; + @ClientString(id = 580203, message = "|Lv. 99+| The Dimensional Warp, Part 2 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_COMPLETED; - @ClientString(id = 580204, message = "The Dimensional Warp, Part 2") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_2_2; + @ClientString(id = 580204, message = "|Lv. 99+| The Dimensional Warp, Part 2") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_2_2; - @ClientString(id = 580301, message = "The Dimensional Warp, Part 3") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3; + @ClientString(id = 580301, message = "|Lv. 99+| The Dimensional Warp, Part 3") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3; - @ClientString(id = 580302, message = "The Dimensional Warp, Part 3 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_IN_PROGRESS; + @ClientString(id = 580302, message = "|Lv. 99+| The Dimensional Warp, Part 3 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_IN_PROGRESS; - @ClientString(id = 580303, message = "The Dimensional Warp, Part 3 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_DONE; + @ClientString(id = 580303, message = "|Lv. 99+| The Dimensional Warp, Part 3 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_COMPLETED; - @ClientString(id = 580304, message = "The Dimensional Warp, Part 3") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_3_2; + @ClientString(id = 580304, message = "|Lv. 99+| The Dimensional Warp, Part 3") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_3_2; - @ClientString(id = 580401, message = "The Dimensional Warp, Part 4") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4; + @ClientString(id = 580401, message = "|Lv. 99+| The Dimensional Warp, Part 4") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4; - @ClientString(id = 580402, message = "The Dimensional Warp, Part 4 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_IN_PROGRESS; + @ClientString(id = 580402, message = "|Lv. 99+| The Dimensional Warp, Part 4 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_IN_PROGRESS; - @ClientString(id = 580403, message = "The Dimensional Warp, Part 4 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_DONE; + @ClientString(id = 580403, message = "|Lv. 99+| The Dimensional Warp, Part 4 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_COMPLETED; - @ClientString(id = 580404, message = "The Dimensional Warp, Part 4") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_4_2; + @ClientString(id = 580404, message = "|Lv. 99+| The Dimensional Warp, Part 4") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_4_2; - @ClientString(id = 580501, message = "The Dimensional Warp, Part 5") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5; + @ClientString(id = 580501, message = "|Lv. 99+| The Dimensional Warp, Part 5") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5; - @ClientString(id = 580502, message = "The Dimensional Warp, Part 5 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_IN_PROGRESS; + @ClientString(id = 580502, message = "|Lv. 99+| The Dimensional Warp, Part 5 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_IN_PROGRESS; - @ClientString(id = 580503, message = "The Dimensional Warp, Part 5 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_DONE; + @ClientString(id = 580503, message = "|Lv. 99+| The Dimensional Warp, Part 5 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_COMPLETED; - @ClientString(id = 580504, message = "The Dimensional Warp, Part 5") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_5_2; + @ClientString(id = 580504, message = "|Lv. 99+| The Dimensional Warp, Part 5") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_5_2; - @ClientString(id = 580601, message = "The Dimensional Warp, Part 6") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6; + @ClientString(id = 580601, message = "|Lv. 99+| The Dimensional Warp, Part 6") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6; - @ClientString(id = 580602, message = "The Dimensional Warp, Part 6 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_IN_PROGRESS; + @ClientString(id = 580602, message = "|Lv. 99+| The Dimensional Warp, Part 6 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_IN_PROGRESS; - @ClientString(id = 580603, message = "The Dimensional Warp, Part 6 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_DONE; + @ClientString(id = 580603, message = "|Lv. 99+| The Dimensional Warp, Part 6 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_COMPLETED; - @ClientString(id = 580604, message = "The Dimensional Warp, Part 6") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_6_2; + @ClientString(id = 580604, message = "|Lv. 99+| The Dimensional Warp, Part 6") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_6_2; - @ClientString(id = 580701, message = "The Dimensional Warp, Part 7") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7; + @ClientString(id = 580701, message = "|Lv. 99+| The Dimensional Warp, Part 7") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7; - @ClientString(id = 580702, message = "The Dimensional Warp, Part 7 (In Progress)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_IN_PROGRESS; + @ClientString(id = 580702, message = "|Lv. 99+| The Dimensional Warp, Part 7 (In progress)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_IN_PROGRESS; - @ClientString(id = 580703, message = "The Dimensional Warp, Part 7 (Done)") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_DONE; + @ClientString(id = 580703, message = "|Lv. 99+| The Dimensional Warp, Part 7 (Completed)") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_COMPLETED; - @ClientString(id = 580704, message = "The Dimensional Warp, Part 7") - public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_2; + @ClientString(id = 580704, message = "|Lv. 99+| The Dimensional Warp, Part 7") + public static NpcStringId LV_99_THE_DIMENSIONAL_WARP_PART_7_2; @ClientString(id = 580901, message = "|Lv. 97 - 99| The Hero's Journey: Blazing Swamp") public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP; @@ -17557,83 +19252,83 @@ public final class NpcStringId @ClientString(id = 582712, message = "Talk with Sir Gustav Athebaldt") public static NpcStringId TALK_WITH_SIR_GUSTAV_ATHEBALDT; - @ClientString(id = 582901, message = "|Lv. 100+| In Search of the Cause") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE; + @ClientString(id = 582901, message = "|Lv. 102+| In Search of the Cause") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE; - @ClientString(id = 582902, message = "|Lv. 100+| In Search of the Cause (In progress)") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_IN_PROGRESS; + @ClientString(id = 582902, message = "|Lv. 102+| In Search of the Cause (In progress)") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_IN_PROGRESS; - @ClientString(id = 582903, message = "|Lv. 100+| In Search of the Cause (Completed)") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_COMPLETED; + @ClientString(id = 582903, message = "|Lv. 102+| In Search of the Cause (Completed)") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_COMPLETED; - @ClientString(id = 582904, message = "|Lv. 100+| In Search of the Cause") - public static NpcStringId LV_100_IN_SEARCH_OF_THE_CAUSE_2; + @ClientString(id = 582904, message = "|Lv. 102+| In Search of the Cause") + public static NpcStringId LV_102_IN_SEARCH_OF_THE_CAUSE_2; @ClientString(id = 582911, message = "Go to the Blackbird Campsite") public static NpcStringId GO_TO_THE_BLACKBIRD_CAMPSITE; @ClientString(id = 582912, message = "Talk to Ferin") - public static NpcStringId TALK_TO_FERIN; + public static NpcStringId TALK_TO_FERIN_2; @ClientString(id = 582913, message = "Talk to Cyphona") public static NpcStringId TALK_TO_CYPHONA; - @ClientString(id = 583001, message = "|Lv. 100+| The Lost Garden of Spirits") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS; + @ClientString(id = 583001, message = "|Lv. 102+| The Lost Garden of Spirits") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS; - @ClientString(id = 583002, message = "|Lv. 100+| The Lost Garden of Spirits (In progress)") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_IN_PROGRESS; + @ClientString(id = 583002, message = "|Lv. 102+| The Lost Garden of Spirits (In progress)") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_IN_PROGRESS; - @ClientString(id = 583003, message = "|Lv. 100+| The Lost Garden of Spirits (Completed)") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_COMPLETED; + @ClientString(id = 583003, message = "|Lv. 102+| The Lost Garden of Spirits (Completed)") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_COMPLETED; - @ClientString(id = 583004, message = "|Lv. 100+| The Lost Garden of Spirits") - public static NpcStringId LV_100_THE_LOST_GARDEN_OF_SPIRITS_2; + @ClientString(id = 583004, message = "|Lv. 102+| The Lost Garden of Spirits") + public static NpcStringId LV_102_THE_LOST_GARDEN_OF_SPIRITS_2; @ClientString(id = 583012, message = "Speak with Cyphona") public static NpcStringId SPEAK_WITH_CYPHONA_2; - @ClientString(id = 583101, message = "|Lv. 100+| Unbelievable Sight") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT; + @ClientString(id = 583101, message = "|Lv. 102+| Unbelievable Sight") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT; - @ClientString(id = 583102, message = "|Lv. 100+| Unbelievable Sight (In progress)") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_IN_PROGRESS; + @ClientString(id = 583102, message = "|Lv. 102+| Unbelievable Sight (In progress)") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_IN_PROGRESS; - @ClientString(id = 583103, message = "|Lv. 100+| Unbelievable Sight (Completed)") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_COMPLETED; + @ClientString(id = 583103, message = "|Lv. 102+| Unbelievable Sight (Completed)") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_COMPLETED; - @ClientString(id = 583104, message = "|Lv. 100+| Unbelievable Sight") - public static NpcStringId LV_100_UNBELIEVABLE_SIGHT_2; + @ClientString(id = 583104, message = "|Lv. 102+| Unbelievable Sight") + public static NpcStringId LV_102_UNBELIEVABLE_SIGHT_2; @ClientString(id = 583112, message = "Speak with Belas") public static NpcStringId SPEAK_WITH_BELAS_2; - @ClientString(id = 583201, message = "|Lv. 100+| Energy of Sadness and Anger") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER; + @ClientString(id = 583201, message = "|Lv. 102+| Energy of Sadness and Anger") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER; - @ClientString(id = 583202, message = "|Lv. 100+| Energy of Sadness and Anger (In progress)") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_IN_PROGRESS; + @ClientString(id = 583202, message = "|Lv. 102+| Energy of Sadness and Anger (In progress)") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_IN_PROGRESS; - @ClientString(id = 583203, message = "|Lv. 100+| Energy of Sadness and Anger (Completed)") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_COMPLETED; + @ClientString(id = 583203, message = "|Lv. 102+| Energy of Sadness and Anger (Completed)") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_COMPLETED; - @ClientString(id = 583204, message = "|Lv. 100+| Energy of Sadness and Anger") - public static NpcStringId LV_100_ENERGY_OF_SADNESS_AND_ANGER_2; + @ClientString(id = 583204, message = "|Lv. 102+| Energy of Sadness and Anger") + public static NpcStringId LV_102_ENERGY_OF_SADNESS_AND_ANGER_2; @ClientString(id = 583212, message = "Speak with Belas") public static NpcStringId SPEAK_WITH_BELAS_3; - @ClientString(id = 583301, message = "|Lv. 100+| Put the Queen of Spirits to Sleep") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP; + @ClientString(id = 583301, message = "|Lv. 102+| Put the Queen of Spirits to Sleep") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP; - @ClientString(id = 583302, message = "|Lv. 100+| Put the Queen of Spirits to Sleep (In progress)") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_IN_PROGRESS; + @ClientString(id = 583302, message = "|Lv. 102+| Put the Queen of Spirits to Sleep (In Progress)") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_IN_PROGRESS; - @ClientString(id = 583303, message = "|Lv. 100+| Put the Queen of Spirits to Sleep (Completed)") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_COMPLETED; + @ClientString(id = 583303, message = "|Lv. 102+| Put the Queen of Spirits to Sleep (Completed)") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_COMPLETED; - @ClientString(id = 583304, message = "|Lv. 100+| Put the Queen of Spirits to Sleep") - public static NpcStringId LV_100_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_2; + @ClientString(id = 583304, message = "|Lv. 102+| Put the Queen of Spirits to Sleep") + public static NpcStringId LV_102_PUT_THE_QUEEN_OF_SPIRITS_TO_SLEEP_2; @ClientString(id = 583312, message = "Speak with Ferin") public static NpcStringId SPEAK_WITH_FERIN; @@ -17767,17 +19462,17 @@ public final class NpcStringId @ClientString(id = 584405, message = "Supply Guards") public static NpcStringId SUPPLY_GUARDS; - @ClientString(id = 584501, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS; + @ClientString(id = 584501, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS; - @ClientString(id = 584502, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths (In progress)") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_IN_PROGRESS; + @ClientString(id = 584502, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths (In progress)") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_IN_PROGRESS; - @ClientString(id = 584503, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths (Completed)") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_COMPLETED; + @ClientString(id = 584503, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths (Completed)") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_COMPLETED; - @ClientString(id = 584504, message = "|Lv. 101+| Bloody Battle - Rescuing the Blacksmiths") - public static NpcStringId LV_101_BLOODY_BATTLE_RESCUING_THE_BLACKSMITHS_2; + @ClientString(id = 584504, message = "|Lv. 101+| Bloody Battle - Rescue the Smiths") + public static NpcStringId LV_101_BLOODY_BATTLE_RESCUE_THE_SMITHS_2; @ClientString(id = 584505, message = "Rescuing Karrod") public static NpcStringId RESCUING_KARROD; @@ -17785,7 +19480,7 @@ public final class NpcStringId @ClientString(id = 584506, message = "Rescuing Aios") public static NpcStringId RESCUING_AIOS; - @ClientString(id = 584507, message = "You dare steal our supplies?! ") + @ClientString(id = 584507, message = "You dare steal our supplies?!") public static NpcStringId YOU_DARE_STEAL_OUR_SUPPLIES; @ClientString(id = 584508, message = "Rescuing Brunon") @@ -17813,7 +19508,7 @@ public final class NpcStringId public static NpcStringId DEFEAT_BURNSTEIN; @ClientString(id = 584606, message = "Talk to Devianne") - public static NpcStringId TALK_TO_DEVIANNE; + public static NpcStringId TALK_TO_DEVIANNE_2; @ClientString(id = 584801, message = "|Lv. 99+| Trials before the Battle") public static NpcStringId LV_99_TRIALS_BEFORE_THE_BATTLE; @@ -17842,17 +19537,17 @@ public final class NpcStringId @ClientString(id = 584815, message = "Speak with Leona") public static NpcStringId SPEAK_WITH_LEONA_4; - @ClientString(id = 584901, message = "|Lv. 100+| Trials for Adaptation") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION; + @ClientString(id = 584901, message = "|Lv. 102+| Trials for Adaptation") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION; - @ClientString(id = 584902, message = "|Lv. 100+| Trials for Adaptation (In progress)") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_IN_PROGRESS; + @ClientString(id = 584902, message = "|Lv. 102+| Trials for Adaptation (In progress)") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_IN_PROGRESS; - @ClientString(id = 584903, message = "|Lv. 100+| Trials for Adaptation (Completed)") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_COMPLETED; + @ClientString(id = 584903, message = "|Lv. 102+| Trials for Adaptation (Completed)") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_COMPLETED; - @ClientString(id = 584904, message = "|Lv. 100+| Trials for Adaptation") - public static NpcStringId LV_100_TRIALS_FOR_ADAPTATION_2; + @ClientString(id = 584904, message = "|Lv. 102+| Trials for Adaptation") + public static NpcStringId LV_102_TRIALS_FOR_ADAPTATION_2; @ClientString(id = 584911, message = "Speak with Ferin") public static NpcStringId SPEAK_WITH_FERIN_2; @@ -17951,10 +19646,10 @@ public final class NpcStringId public static NpcStringId TALK_TO_MELDINA; @ClientString(id = 585606, message = "Talk to Kekropus") - public static NpcStringId TALK_TO_KEKROPUS_5; + public static NpcStringId TALK_TO_KEKROPUS_7; @ClientString(id = 585607, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE_2; + public static NpcStringId TALK_TO_HISTIE_5; @ClientString(id = 585701, message = "|Lv. 102+| Secret Teleport") public static NpcStringId LV_102_SECRET_TELEPORT; @@ -17969,10 +19664,10 @@ public final class NpcStringId public static NpcStringId LV_102_SECRET_TELEPORT_2; @ClientString(id = 585705, message = "Talk to Histie") - public static NpcStringId TALK_TO_HISTIE_3; + public static NpcStringId TALK_TO_HISTIE_6; @ClientString(id = 585706, message = "Talk to Kekropus") - public static NpcStringId TALK_TO_KEKROPUS_6; + public static NpcStringId TALK_TO_KEKROPUS_8; @ClientString(id = 585801, message = "|Lv. 102+| Queen Ramona, Controller of the Vessel") public static NpcStringId LV_102_QUEEN_RAMONA_CONTROLLER_OF_THE_VESSEL; @@ -18097,17 +19792,17 @@ public final class NpcStringId @ClientString(id = 587912, message = "Talk with Lionel Hunter.") public static NpcStringId TALK_WITH_LIONEL_HUNTER_2; - @ClientString(id = 588001, message = "|Lv. 104+| The Last Man Standing") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_3; + @ClientString(id = 588001, message = "|Lv. 104+| The Last One Standing") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_3; - @ClientString(id = 588002, message = "|Lv. 104+| The Last Man Standing (In progress)") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_IN_PROGRESS_2; + @ClientString(id = 588002, message = "|Lv. 104+| The Last One Standing (In progress)") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_IN_PROGRESS_2; - @ClientString(id = 588003, message = "|Lv. 104+| The Last Man Standing (Completed)") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_COMPLETED_2; + @ClientString(id = 588003, message = "|Lv. 104+| The Last One Standing (Completed)") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_COMPLETED_2; - @ClientString(id = 588004, message = "|Lv. 104+| The Last Man Standing") - public static NpcStringId LV_104_THE_LAST_MAN_STANDING_4; + @ClientString(id = 588004, message = "|Lv. 104+| The Last One Standing") + public static NpcStringId LV_104_THE_LAST_ONE_STANDING_4; @ClientString(id = 588011, message = "Talk with Ferin.") public static NpcStringId TALK_WITH_FERIN; @@ -18142,21 +19837,186 @@ public final class NpcStringId @ClientString(id = 588211, message = "Talk with Settlen.") public static NpcStringId TALK_WITH_SETTLEN_2; - @ClientString(id = 588301, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_3; + @ClientString(id = 588301, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_3; - @ClientString(id = 588302, message = "|Lv. 104+| Undying Honor (In progress)") - public static NpcStringId LV_104_UNDYING_HONOR_IN_PROGRESS_2; + @ClientString(id = 588302, message = "|Lv. 104+| Immortal Honor (In progress)") + public static NpcStringId LV_104_IMMORTAL_HONOR_IN_PROGRESS_2; - @ClientString(id = 588303, message = "|Lv. 104+| Undying Honor (Completed)") - public static NpcStringId LV_104_UNDYING_HONOR_COMPLETED_2; + @ClientString(id = 588303, message = "|Lv. 104+| Immortal Honor (Completed)") + public static NpcStringId LV_104_IMMORTAL_HONOR_COMPLETED_2; - @ClientString(id = 588304, message = "|Lv. 104+| Undying Honor") - public static NpcStringId LV_104_UNDYING_HONOR_4; + @ClientString(id = 588304, message = "|Lv. 104+| Immortal Honor") + public static NpcStringId LV_104_IMMORTAL_HONOR_4; @ClientString(id = 588311, message = "Talk with Keucereus.") public static NpcStringId TALK_WITH_KEUCEREUS; + @ClientString(id = 588500, message = "A message has arrived from Leona Blackbird.\\nClick the question mark icon to read it.") + public static NpcStringId A_MESSAGE_HAS_ARRIVED_FROM_LEONA_BLACKBIRD_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_IT; + + @ClientString(id = 588501, message = "|Lv. 103+| Savior's Path - Discovery") + public static NpcStringId LV_103_SAVIOR_S_PATH_DISCOVERY; + + @ClientString(id = 588502, message = "|Lv. 103+| Savior's Path - Discovery (In progress)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DISCOVERY_IN_PROGRESS; + + @ClientString(id = 588503, message = "|Lv. 103+| Savior's Path - Discovery (Completed)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DISCOVERY_COMPLETED; + + @ClientString(id = 588504, message = "|Lv. 103+| Savior's Path - Discovery") + public static NpcStringId LV_103_SAVIOR_S_PATH_DISCOVERY_2; + + @ClientString(id = 588511, message = "Talk to Elikia") + public static NpcStringId TALK_TO_ELIKIA_2; + + @ClientString(id = 588512, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_2; + + @ClientString(id = 588601, message = "|Lv. 103+| Savior's Path - Search the Refinery") + public static NpcStringId LV_103_SAVIOR_S_PATH_SEARCH_THE_REFINERY; + + @ClientString(id = 588602, message = "|Lv. 103+| Savior's Path - Search the Refinery (In progress)") + public static NpcStringId LV_103_SAVIOR_S_PATH_SEARCH_THE_REFINERY_IN_PROGRESS; + + @ClientString(id = 588603, message = "|Lv. 103+| Savior's Path - Search the Refinery (Completed)") + public static NpcStringId LV_103_SAVIOR_S_PATH_SEARCH_THE_REFINERY_COMPLETED; + + @ClientString(id = 588604, message = "|Lv. 103+| Savior's Path - Search the Refinery") + public static NpcStringId LV_103_SAVIOR_S_PATH_SEARCH_THE_REFINERY_2; + + @ClientString(id = 588610, message = "Talk to Devianne") + public static NpcStringId TALK_TO_DEVIANNE_3; + + @ClientString(id = 588611, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_3; + + @ClientString(id = 588701, message = "|Lv. 103+| Savior's Path - Demons and Atelia") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEMONS_AND_ATELIA; + + @ClientString(id = 588702, message = "|Lv. 103+| Savior's Path - Demons and Atelia (In progress)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEMONS_AND_ATELIA_IN_PROGRESS; + + @ClientString(id = 588703, message = "|Lv. 103+| Savior's Path - Demons and Atelia (Completed)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEMONS_AND_ATELIA_COMPLETED; + + @ClientString(id = 588704, message = "|Lv. 103+| Savior's Path - Demons and Atelia") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEMONS_AND_ATELIA_2; + + @ClientString(id = 588710, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_4; + + @ClientString(id = 588801, message = "|Lv. 103+| Savior's Path - Defeat the Embryo") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEFEAT_THE_EMBRYO; + + @ClientString(id = 588802, message = "|Lv. 103+| Savior's Path - Defeat the Embryo (In progress)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEFEAT_THE_EMBRYO_IN_PROGRESS; + + @ClientString(id = 588803, message = "|Lv. 103+| Savior's Path - Defeat the Embryo (Completed)") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEFEAT_THE_EMBRYO_COMPLETED; + + @ClientString(id = 588804, message = "|Lv. 103+| Savior's Path - Defeat the Embryo") + public static NpcStringId LV_103_SAVIOR_S_PATH_DEFEAT_THE_EMBRYO_2; + + @ClientString(id = 588810, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_5; + + @ClientString(id = 588901, message = "|Lv. 103+| Savior's Path - Fallen Emperor's Throne") + public static NpcStringId LV_103_SAVIOR_S_PATH_FALLEN_EMPEROR_S_THRONE; + + @ClientString(id = 588902, message = "|Lv. 103+| Savior's Path - Fallen Emperor's Throne (In progress)") + public static NpcStringId LV_103_SAVIOR_S_PATH_FALLEN_EMPEROR_S_THRONE_IN_PROGRESS; + + @ClientString(id = 588903, message = "|Lv. 103+| Savior's Path - Fallen Emperor's Throne (Completed)") + public static NpcStringId LV_103_SAVIOR_S_PATH_FALLEN_EMPEROR_S_THRONE_COMPLETED; + + @ClientString(id = 588904, message = "|Lv. 103+| Savior's Path - Fallen Emperor's Throne") + public static NpcStringId LV_103_SAVIOR_S_PATH_FALLEN_EMPEROR_S_THRONE_2; + + @ClientString(id = 588910, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_6; + + @ClientString(id = 588911, message = "You discovered the Origin of Giants below the Throne of Helios.") + public static NpcStringId YOU_DISCOVERED_THE_ORIGIN_OF_GIANTS_BELOW_THE_THRONE_OF_HELIOS; + + @ClientString(id = 588912, message = "You discovered the Origin of Giants below the Throne of Helios.\\nReturn to Atelia Refinery and talk to Leona Blackbird.") + public static NpcStringId YOU_DISCOVERED_THE_ORIGIN_OF_GIANTS_BELOW_THE_THRONE_OF_HELIOS_NRETURN_TO_ATELIA_REFINERY_AND_TALK_TO_LEONA_BLACKBIRD; + + @ClientString(id = 589001, message = "|Lv. 104+| Savior's Path - Fall of Etina") + public static NpcStringId LV_104_SAVIOR_S_PATH_FALL_OF_ETINA; + + @ClientString(id = 589002, message = "|Lv. 104+| Savior's Path - Fall of Etina (In progress)") + public static NpcStringId LV_104_SAVIOR_S_PATH_FALL_OF_ETINA_IN_PROGRESS; + + @ClientString(id = 589003, message = "|Lv. 104+| Savior's Path - Fall of Etina (Completed)") + public static NpcStringId LV_104_SAVIOR_S_PATH_FALL_OF_ETINA_COMPLETED; + + @ClientString(id = 589004, message = "|Lv. 104+| Savior's Path - Fall of Etina") + public static NpcStringId LV_104_SAVIOR_S_PATH_FALL_OF_ETINA_2; + + @ClientString(id = 589010, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_7; + + @ClientString(id = 589101, message = "|Lv. 103+| At a New Place") + public static NpcStringId LV_103_AT_A_NEW_PLACE; + + @ClientString(id = 589102, message = "|Lv. 103+| At a New Place (In progress)") + public static NpcStringId LV_103_AT_A_NEW_PLACE_IN_PROGRESS; + + @ClientString(id = 589103, message = "|Lv. 103+| At a New Place (Completed)") + public static NpcStringId LV_103_AT_A_NEW_PLACE_COMPLETED; + + @ClientString(id = 589104, message = "|Lv. 103+| At a New Place") + public static NpcStringId LV_103_AT_A_NEW_PLACE_2; + + @ClientString(id = 589110, message = "Talk to Logart Van Dyke") + public static NpcStringId TALK_TO_LOGART_VAN_DYKE_2; + + @ClientString(id = 589111, message = "Talk to Ferin") + public static NpcStringId TALK_TO_FERIN_3; + + @ClientString(id = 589112, message = "Talk to Elikia") + public static NpcStringId TALK_TO_ELIKIA_3; + + @ClientString(id = 589113, message = "Talk to Devianne") + public static NpcStringId TALK_TO_DEVIANNE_4; + + @ClientString(id = 589114, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_8; + + @ClientString(id = 589201, message = "|Lv. 103+| Revenge, One Step at a Time") + public static NpcStringId LV_103_REVENGE_ONE_STEP_AT_A_TIME; + + @ClientString(id = 589202, message = "|Lv. 103+| Revenge, One Step at a Time (In progress)") + public static NpcStringId LV_103_REVENGE_ONE_STEP_AT_A_TIME_IN_PROGRESS; + + @ClientString(id = 589203, message = "|Lv. 103+| Revenge, One Step at a Time (Completed)") + public static NpcStringId LV_103_REVENGE_ONE_STEP_AT_A_TIME_COMPLETED; + + @ClientString(id = 589204, message = "|Lv. 103+| Revenge, One Step at a Time") + public static NpcStringId LV_103_REVENGE_ONE_STEP_AT_A_TIME_2; + + @ClientString(id = 589210, message = "Defeat the Atelia Guardian") + public static NpcStringId DEFEAT_THE_ATELIA_GUARDIAN; + + @ClientString(id = 589211, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_9; + + @ClientString(id = 589301, message = "|Lv. 103+| End of Twisted Fate") + public static NpcStringId LV_103_END_OF_TWISTED_FATE; + + @ClientString(id = 589302, message = "|Lv. 103+| End of Twisted Fate (In progress)") + public static NpcStringId LV_103_END_OF_TWISTED_FATE_IN_PROGRESS; + + @ClientString(id = 589303, message = "|Lv. 103+| End of Twisted Fate (Completed)") + public static NpcStringId LV_103_END_OF_TWISTED_FATE_COMPLETED; + + @ClientString(id = 589304, message = "|Lv. 103+| End of Twisted Fate") + public static NpcStringId LV_103_END_OF_TWISTED_FATE_2; + + @ClientString(id = 589310, message = "Talk to Leona Blackbird") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_10; + @ClientString(id = 1000001, message = "A non-permitted target has been discovered.") public static NpcStringId A_NON_PERMITTED_TARGET_HAS_BEEN_DISCOVERED; @@ -18298,7 +20158,7 @@ public final class NpcStringId @ClientString(id = 1000047, message = "Step forward, you worthless creatures who challenge my authority!") public static NpcStringId STEP_FORWARD_YOU_WORTHLESS_CREATURES_WHO_CHALLENGE_MY_AUTHORITY; - @ClientString(id = 1000048, message = "My creator... The unchanging faithfulness to my master... ") + @ClientString(id = 1000048, message = "My creator... The unchanging faithfulness to my master...") public static NpcStringId MY_CREATOR_THE_UNCHANGING_FAITHFULNESS_TO_MY_MASTER; @ClientString(id = 1000049, message = "Master of the tower... My master... master... Where is he?") @@ -19624,7 +21484,7 @@ public final class NpcStringId @ClientString(id = 1000515, message = "Begone, thief! Let our bones rest in peace.") public static NpcStringId BEGONE_THIEF_LET_OUR_BONES_REST_IN_PEACE; - @ClientString(id = 1000516, message = " Leave us be, Hestui scum!") + @ClientString(id = 1000516, message = "Leave us be, Hestui scum!") public static NpcStringId LEAVE_US_BE_HESTUI_SCUM; @ClientString(id = 1000517, message = "Thieving Kakai, may bloodbugs gnaw you in your sleep!") @@ -19645,11 +21505,11 @@ public final class NpcStringId @ClientString(id = 1000522, message = "Requiem of Hatred") public static NpcStringId REQUIEM_OF_HATRED; - @ClientString(id = 1000523, message = "Fugue of Jubilation") - public static NpcStringId FUGUE_OF_JUBILATION; + @ClientString(id = 1000523, message = "Fugue of Rapture") + public static NpcStringId FUGUE_OF_RAPTURE; - @ClientString(id = 1000524, message = "Frenetic Toccata") - public static NpcStringId FRENETIC_TOCCATA; + @ClientString(id = 1000524, message = "Galloping Toccata") + public static NpcStringId GALLOPING_TOCCATA; @ClientString(id = 1000525, message = "Hypnotic Mazurka") public static NpcStringId HYPNOTIC_MAZURKA; @@ -19657,8 +21517,8 @@ public final class NpcStringId @ClientString(id = 1000526, message = "Mournful Chorale Prelude") public static NpcStringId MOURNFUL_CHORALE_PRELUDE; - @ClientString(id = 1000527, message = "Rondo of Solitude") - public static NpcStringId RONDO_OF_SOLITUDE; + @ClientString(id = 1000527, message = "Rondo of Loneliness") + public static NpcStringId RONDO_OF_LONELINESS; @ClientString(id = 1000528, message = "Olympiad Token") public static NpcStringId OLYMPIAD_TOKEN; @@ -19886,7 +21746,7 @@ public final class NpcStringId public static NpcStringId ENTRANCE_TO_THE_FOREST_OF_MIRRORS; @ClientString(id = 1010064, message = "Seal of Shilen") - public static NpcStringId SEAL_OF_SHILEN; + public static NpcStringId SEAL_OF_SHILEN_2; @ClientString(id = 1010065, message = "Entrance to the Tower of Insolence") public static NpcStringId ENTRANCE_TO_THE_TOWER_OF_INSOLENCE_2; @@ -20056,8 +21916,8 @@ public final class NpcStringId @ClientString(id = 1010120, message = "Antharas' Lair (Lv. 85)") public static NpcStringId ANTHARAS_LAIR_LV_85; - @ClientString(id = 1010121, message = "Sea of Spores (Lv. 52)") - public static NpcStringId SEA_OF_SPORES_LV_52; + @ClientString(id = 1010121, message = "Sea of Spores (Lv. 106)") + public static NpcStringId SEA_OF_SPORES_LV_106; @ClientString(id = 1010122, message = "Outlaw Forest (Lv. 46)") public static NpcStringId OUTLAW_FOREST_LV_46; @@ -20065,7 +21925,7 @@ public final class NpcStringId @ClientString(id = 1010123, message = "Forest of Evil and the Ivory Tower") public static NpcStringId FOREST_OF_EVIL_AND_THE_IVORY_TOWER; - @ClientString(id = 1010124, message = "Timak Outpost ") + @ClientString(id = 1010124, message = "Timak Outpost") public static NpcStringId TIMAK_OUTPOST; @ClientString(id = 1010125, message = "Great Plains of Oren") @@ -20239,8 +22099,8 @@ public final class NpcStringId @ClientString(id = 1010181, message = "Fields of Massacre (Lv. 61)") public static NpcStringId FIELDS_OF_MASSACRE_LV_61; - @ClientString(id = 1010182, message = "Silent Valley (Lv. 75)") - public static NpcStringId SILENT_VALLEY_LV_75; + @ClientString(id = 1010182, message = "Silent Valley (Lv. 95)") + public static NpcStringId SILENT_VALLEY_LV_95; @ClientString(id = 1010183, message = "Northern Area of the Immortal Plateau, Northern Region") public static NpcStringId NORTHERN_AREA_OF_THE_IMMORTAL_PLATEAU_NORTHERN_REGION; @@ -20449,7 +22309,7 @@ public final class NpcStringId @ClientString(id = 1010422, message = "Ah! Fafurion! Ah! Ah!") public static NpcStringId AH_FAFURION_AH_AH; - @ClientString(id = 1010423, message = "Rakul! Rakul! Ra-kul! ") + @ClientString(id = 1010423, message = "Rakul! Rakul! Ra-kul!") public static NpcStringId RAKUL_RAKUL_RA_KUL; @ClientString(id = 1010424, message = "Eh..Enmity...Fish...") @@ -20704,7 +22564,7 @@ public final class NpcStringId @ClientString(id = 1010507, message = "Giran Arena") public static NpcStringId GIRAN_ARENA; - @ClientString(id = 1010508, message = "Entrance to Antharas' Lair ") + @ClientString(id = 1010508, message = "Entrance to Antharas' Lair") public static NpcStringId ENTRANCE_TO_ANTHARAS_LAIR; @ClientString(id = 1010509, message = "Antharas' Lair - 1st Level") @@ -20881,8 +22741,8 @@ public final class NpcStringId @ClientString(id = 1010566, message = "Ant Nest (Lv. 29)") public static NpcStringId ANT_NEST_LV_29; - @ClientString(id = 1010567, message = "Devil's Isle (Lv. 92)") - public static NpcStringId DEVIL_S_ISLE_LV_92; + @ClientString(id = 1010567, message = "Devil's Isle") + public static NpcStringId DEVIL_S_ISLE_2; @ClientString(id = 1010568, message = "Wall of Argos (Lv. 71)") public static NpcStringId WALL_OF_ARGOS_LV_71; @@ -20896,8 +22756,8 @@ public final class NpcStringId @ClientString(id = 1010571, message = "Crypts of Disgrace (Lv. 80)") public static NpcStringId CRYPTS_OF_DISGRACE_LV_80; - @ClientString(id = 1010572, message = "Plunderous Plains (Lv. 30)") - public static NpcStringId PLUNDEROUS_PLAINS_LV_30; + @ClientString(id = 1010572, message = "Plunderous Plains (Lv. 103)") + public static NpcStringId PLUNDEROUS_PLAINS_LV_103; @ClientString(id = 1010573, message = "Pavel Ruins (Lv. 85)") public static NpcStringId PAVEL_RUINS_LV_85; @@ -20923,7 +22783,7 @@ public final class NpcStringId @ClientString(id = 1010580, message = "Bwah-ha-ha! Your doom is at hand! Behold the Ultra Secret Super Weapon!") public static NpcStringId BWAH_HA_HA_YOUR_DOOM_IS_AT_HAND_BEHOLD_THE_ULTRA_SECRET_SUPER_WEAPON; - @ClientString(id = 1010581, message = "Foolish, insignificant creatures! How dare you challenge me! ") + @ClientString(id = 1010581, message = "Foolish, insignificant creatures! How dare you challenge me!") public static NpcStringId FOOLISH_INSIGNIFICANT_CREATURES_HOW_DARE_YOU_CHALLENGE_ME; @ClientString(id = 1010582, message = "I see that none will challenge me now!") @@ -21094,7 +22954,7 @@ public final class NpcStringId @ClientString(id = 1010637, message = "Arise, my faithful servants! You, my people who have inherited the blood. It is the calling of my daughter. The feast of blood will now begin!") public static NpcStringId ARISE_MY_FAITHFUL_SERVANTS_YOU_MY_PEOPLE_WHO_HAVE_INHERITED_THE_BLOOD_IT_IS_THE_CALLING_OF_MY_DAUGHTER_THE_FEAST_OF_BLOOD_WILL_NOW_BEGIN; - @ClientString(id = 1010638, message = "You may have lordship over the forest for now…but remember! The true lord will return… Enjoy your power while it lasts, if you can manage to sleep at night! Hahaha! ") + @ClientString(id = 1010638, message = "You may have lordship over the forest for now…but remember! The true lord will return… Enjoy your power while it lasts, if you can manage to sleep at night! Hahaha!") public static NpcStringId YOU_MAY_HAVE_LORDSHIP_OVER_THE_FOREST_FOR_NOW_BUT_REMEMBER_THE_TRUE_LORD_WILL_RETURN_ENJOY_YOUR_POWER_WHILE_IT_LASTS_IF_YOU_CAN_MANAGE_TO_SLEEP_AT_NIGHT_HAHAHA; @ClientString(id = 1010639, message = "Grarr! For the next 2 minutes or so, the game arena are will be cleaned. Throw any items you don't need to the floor now.") @@ -21370,8 +23230,8 @@ public final class NpcStringId @ClientString(id = 1010729, message = "Parnassus (Lv. 97)") public static NpcStringId PARNASSUS_LV_97; - @ClientString(id = 1010730, message = "Gludio Wharf") - public static NpcStringId GLUDIO_WHARF; + @ClientString(id = 1010730, message = "Wharf of Gludio Airships") + public static NpcStringId WHARF_OF_GLUDIO_AIRSHIPS; @ClientString(id = 1010731, message = "Keucereus Alliance Base") public static NpcStringId KEUCEREUS_ALLIANCE_BASE; @@ -21400,8 +23260,8 @@ public final class NpcStringId @ClientString(id = 1010739, message = "Ruins of Ye Sagira") public static NpcStringId RUINS_OF_YE_SAGIRA; - @ClientString(id = 1010740, message = "Reliquary of the Giants") - public static NpcStringId RELIQUARY_OF_THE_GIANTS; + @ClientString(id = 1010740, message = "Heroic Tomb") + public static NpcStringId HEROIC_TOMB; @ClientString(id = 1010741, message = "Faeron Village") public static NpcStringId FAERON_VILLAGE; @@ -21409,18 +23269,21 @@ public final class NpcStringId @ClientString(id = 1010742, message = "Whispering Woods") public static NpcStringId WHISPERING_WOODS; - @ClientString(id = 1010743, message = "Blackbird Campsite (Lv.100)") - public static NpcStringId BLACKBIRD_CAMPSITE_LV_100; + @ClientString(id = 1010743, message = "Blackbird Campsite (Lv. 101)") + public static NpcStringId BLACKBIRD_CAMPSITE_LV_101; @ClientString(id = 1010744, message = "Enchanted Valley (Lv. 102)") public static NpcStringId ENCHANTED_VALLEY_LV_102; - @ClientString(id = 1010745, message = "Gludio Airship Wharf") - public static NpcStringId GLUDIO_AIRSHIP_WHARF; + @ClientString(id = 1010745, message = "Wharf of Gludio Airships") + public static NpcStringId WHARF_OF_GLUDIO_AIRSHIPS_2; @ClientString(id = 1010746, message = "Underground Gainak") public static NpcStringId UNDERGROUND_GAINAK; + @ClientString(id = 1010747, message = "Freya's Garden") + public static NpcStringId FREYA_S_GARDEN; + @ClientString(id = 1029350, message = "What took so long? I waited for ever.") public static NpcStringId WHAT_TOOK_SO_LONG_I_WAITED_FOR_EVER; @@ -21787,12 +23650,93 @@ public final class NpcStringId @ClientString(id = 1036344, message = "Don't toy with the dead!") public static NpcStringId DON_T_TOY_WITH_THE_DEAD; + @ClientString(id = 1083474, message = "The battle time has ended in the Throne of Heroes. The Instance Zone will be closed shortly.") + public static NpcStringId THE_BATTLE_TIME_HAS_ENDED_IN_THE_THRONE_OF_HEROES_THE_INSTANCE_ZONE_WILL_BE_CLOSED_SHORTLY; + + @ClientString(id = 1083475, message = "Subclass/Dual Class Master Raina's message has arrived.\\nClick the question mark icon to check the message.") + public static NpcStringId SUBCLASS_DUAL_CLASS_MASTER_RAINA_S_MESSAGE_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_CHECK_THE_MESSAGE; + + @ClientString(id = 1083476, message = "A Lithra Bud has appeared.") + public static NpcStringId A_LITHRA_BUD_HAS_APPEARED; + + @ClientString(id = 1083477, message = "Nerupa's power resonates with Mother Tree Guardian $s1 and begins to turn back time.") + public static NpcStringId NERUPA_S_POWER_RESONATES_WITH_MOTHER_TREE_GUARDIAN_S1_AND_BEGINS_TO_TURN_BACK_TIME; + + @ClientString(id = 1083478, message = "A Nerupa Bud has appeared.") + public static NpcStringId A_NERUPA_BUD_HAS_APPEARED; + + @ClientString(id = 1083479, message = "Lithra Bloom") + public static NpcStringId LITHRA_BLOOM; + + @ClientString(id = 1083480, message = "Nerupa Bloom") + public static NpcStringId NERUPA_BLOOM; + + @ClientString(id = 1083481, message = "The Raid Boss uses the Limit Barrier.\\nFocus your attacks to destroy the Limit Barrier in 15 seconds.") + public static NpcStringId THE_RAID_BOSS_USES_THE_LIMIT_BARRIER_NFOCUS_YOUR_ATTACKS_TO_DESTROY_THE_LIMIT_BARRIER_IN_15_SECONDS; + + @ClientString(id = 1083482, message = "Soul Plunderer Death Reaper has appeared to guide the dead Raid Boss.") + public static NpcStringId SOUL_PLUNDERER_DEATH_REAPER_HAS_APPEARED_TO_GUIDE_THE_DEAD_RAID_BOSS; + @ClientString(id = 1083483, message = "Cannon Loaded") public static NpcStringId CANNON_LOADED; @ClientString(id = 1083484, message = "Fire Cannon (Preparing)") public static NpcStringId FIRE_CANNON_PREPARING; + @ClientString(id = 1083485, message = "Those foolish ones, bound by their past!") + public static NpcStringId THOSE_FOOLISH_ONES_BOUND_BY_THEIR_PAST; + + @ClientString(id = 1083486, message = "A deadly scent! Protect me!") + public static NpcStringId A_DEADLY_SCENT_PROTECT_ME; + + @ClientString(id = 1083487, message = "Where is the cowardly Nerupa?") + public static NpcStringId WHERE_IS_THE_COWARDLY_NERUPA; + + @ClientString(id = 1083488, message = "Do you believe you can turn the Mother Tree back to what it once was?") + public static NpcStringId DO_YOU_BELIEVE_YOU_CAN_TURN_THE_MOTHER_TREE_BACK_TO_WHAT_IT_ONCE_WAS; + + @ClientString(id = 1083489, message = "Nerupa... he really isn't showing himself…") + public static NpcStringId NERUPA_HE_REALLY_ISN_T_SHOWING_HIMSELF; + + @ClientString(id = 1083490, message = "As long as the Mother Tree exists... I... won't go either…") + public static NpcStringId AS_LONG_AS_THE_MOTHER_TREE_EXISTS_I_WON_T_GO_EITHER; + + @ClientString(id = 1083491, message = "Who read you your fate and sent you here?") + public static NpcStringId WHO_READ_YOU_YOUR_FATE_AND_SENT_YOU_HERE; + + @ClientString(id = 1083492, message = "You have destroyed the Limit Barrier!") + public static NpcStringId YOU_HAVE_DESTROYED_THE_LIMIT_BARRIER; + + @ClientString(id = 1083493, message = "You have failed to destroy the Limit Barrier.\\nThe raid boss fully recovers its CON.") + public static NpcStringId YOU_HAVE_FAILED_TO_DESTROY_THE_LIMIT_BARRIER_NTHE_RAID_BOSS_FULLY_RECOVERS_ITS_CON; + + @ClientString(id = 1083494, message = "1 hour has passed.\\nDeath Reaper leaves leisurely with the soul of the raid boss.") + public static NpcStringId ONE_HOUR_HAS_PASSED_NDEATH_REAPER_LEAVES_LEISURELY_WITH_THE_SOUL_OF_THE_RAID_BOSS; + + @ClientString(id = 1083495, message = "Lithra has revealed herself.") + public static NpcStringId LITHRA_HAS_REVEALED_HERSELF; + + @ClientString(id = 1083496, message = "Nerupa Aprias is beginning to appear.") + public static NpcStringId NERUPA_APRIAS_IS_BEGINNING_TO_APPEAR; + + @ClientString(id = 1083497, message = "Lithra's power has weakened.") + public static NpcStringId LITHRA_S_POWER_HAS_WEAKENED; + + @ClientString(id = 1083498, message = "Nerupa's power has weakened.") + public static NpcStringId NERUPA_S_POWER_HAS_WEAKENED; + + @ClientString(id = 1083499, message = "Lithra Aprias is beginning to appear.") + public static NpcStringId LITHRA_APRIAS_IS_BEGINNING_TO_APPEAR; + + @ClientString(id = 1083500, message = "Lithra has hidden herself in the fragrance of flowers.") + public static NpcStringId LITHRA_HAS_HIDDEN_HERSELF_IN_THE_FRAGRANCE_OF_FLOWERS; + + @ClientString(id = 1083501, message = "Lithra's defeat has tipped the balance of power, and Nerupa's power grows stronger.") + public static NpcStringId LITHRA_S_DEFEAT_HAS_TIPPED_THE_BALANCE_OF_POWER_AND_NERUPA_S_POWER_GROWS_STRONGER; + + @ClientString(id = 1083502, message = "Nerupa's power begins to turn back time.") + public static NpcStringId NERUPA_S_POWER_BEGINS_TO_TURN_BACK_TIME; + @ClientString(id = 1110001, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_419_REPLY_0_CAN_BE_USED_FOR_ITEM_TRANSPORTATION_BUTTON; @@ -22723,7 +24667,7 @@ public final class NpcStringId @ClientString(id = 1116136, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_2_REPLY_420_JUDICATOR_BUTTON; - @ClientString(id = 1119999, message = " ") + @ClientString(id = 1119999, message = "") public static NpcStringId EMPTY_4; @ClientString(id = 1120001, message = "Greyclaw Kutus (lv23)") @@ -23383,8 +25327,8 @@ public final class NpcStringId @ClientString(id = 1120219, message = "Aenkinel (Lv. 84)") public static NpcStringId AENKINEL_LV_84; - @ClientString(id = 1120220, message = "Tacrakahn (Lv. 89)") - public static NpcStringId TACRAKAHN_LV_89; + @ClientString(id = 1120220, message = "Taklacan (Lv. 89)") + public static NpcStringId TAKLACAN_LV_89; @ClientString(id = 1120221, message = "Torumba (Lv. 89)") public static NpcStringId TORUMBA_LV_89; @@ -24079,8 +26023,8 @@ public final class NpcStringId @ClientString(id = 1300134, message = "Boundary Fortress") public static NpcStringId BOUNDARY_FORTRESS; - @ClientString(id = 1300135, message = "$s1hour $s2minute") - public static NpcStringId S1HOUR_S2MINUTE; + @ClientString(id = 1300135, message = "$s1 h. $s2 min.") + public static NpcStringId S1_H_S2_MIN; @ClientString(id = 1300136, message = "Not designated") public static NpcStringId NOT_DESIGNATED; @@ -24268,7 +26212,7 @@ public final class NpcStringId @ClientString(id = 1300197, message = "You have obtained the Dimensional Castle…! Well then, my lord, I have something for you.") public static NpcStringId YOU_HAVE_OBTAINED_THE_DIMENSIONAL_CASTLE_WELL_THEN_MY_LORD_I_HAVE_SOMETHING_FOR_YOU; - @ClientString(id = 1300198, message = "I wish you luck on your next endeavors, heroes of the dimensions. ") + @ClientString(id = 1300198, message = "I wish you luck on your next endeavors, heroes of the dimensions.") public static NpcStringId I_WISH_YOU_LUCK_ON_YOUR_NEXT_ENDEAVORS_HEROES_OF_THE_DIMENSIONS; @ClientString(id = 1300199, message = "Aden's heroes have seized victory in the Dimensional Space.") @@ -24467,13 +26411,13 @@ public final class NpcStringId public static NpcStringId THE_4_GATHERING_DEVICES_ARE_ACTIVATED_THE_DARK_SUMMON_CIRCLE_WILL_SOON_DISAPPEAR; @ClientString(id = 1600052, message = "3 seconds until arrival. 3 seconds until arrival.") - public static NpcStringId THREE_SECONDS_UNTIL_ARRIVAL_3_SECONDS_UNTIL_ARRIVAL; + public static NpcStringId THREE_SECONDS_UNTIL_ARRIVAL_THREE_SECONDS_UNTIL_ARRIVAL; @ClientString(id = 1600053, message = "2 seconds until arrival. 2 seconds until arrival.") - public static NpcStringId TWO_SECONDS_UNTIL_ARRIVAL_2_SECONDS_UNTIL_ARRIVAL; + public static NpcStringId TWO_SECONDS_UNTIL_ARRIVAL_TWO_SECONDS_UNTIL_ARRIVAL; @ClientString(id = 1600054, message = "1 second until arrival. 1 second until arrival.") - public static NpcStringId ONE_SECOND_UNTIL_ARRIVAL_1_SECOND_UNTIL_ARRIVAL; + public static NpcStringId ONE_SECOND_UNTIL_ARRIVAL_ONE_SECOND_UNTIL_ARRIVAL; @ClientString(id = 1600055, message = "Reinforcements arrived. Reinforcements arrived.") public static NpcStringId REINFORCEMENTS_ARRIVED_REINFORCEMENTS_ARRIVED; @@ -25039,8 +26983,8 @@ public final class NpcStringId @ClientString(id = 1717834, message = "Use the Defense Battery in the 2nd floor and defeat the Embryo Colony.") public static NpcStringId USE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_AND_DEFEAT_THE_EMBRYO_COLONY; - @ClientString(id = 1717835, message = "You received the cannon dedicated to the Defense Battery. Use the Defense Battery in the 2nd floor to inflict critical damage on Kain.\\nOpen the Quest window and check out the mission.") - public static NpcStringId YOU_RECEIVED_THE_CANNON_DEDICATED_TO_THE_DEFENSE_BATTERY_USE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_TO_INFLICT_CRITICAL_DAMAGE_ON_KAIN_NOPEN_THE_QUEST_WINDOW_AND_CHECK_OUT_THE_MISSION; + @ClientString(id = 1717835, message = "You received the cannon dedicated to the Defense Battery.\\nUse the Defense Battery in the 2nd floor to inflict critical damage on Kain.\\nOpen the Quest window and check out the mission.") + public static NpcStringId YOU_RECEIVED_THE_CANNON_DEDICATED_TO_THE_DEFENSE_BATTERY_NUSE_THE_DEFENSE_BATTERY_IN_THE_2ND_FLOOR_TO_INFLICT_CRITICAL_DAMAGE_ON_KAIN_NOPEN_THE_QUEST_WINDOW_AND_CHECK_OUT_THE_MISSION; @ClientString(id = 1717836, message = "A critical damage is inflicted on Kain due to the attack on the Defense Battery.") public static NpcStringId A_CRITICAL_DAMAGE_IS_INFLICTED_ON_KAIN_DUE_TO_THE_ATTACK_ON_THE_DEFENSE_BATTERY; @@ -25174,6 +27118,381 @@ public final class NpcStringId @ClientString(id = 1717889, message = "Go to where Kain and your allies are.") public static NpcStringId GO_TO_WHERE_KAIN_AND_YOUR_ALLIES_ARE; + @ClientString(id = 1717890, message = "The Spirit's Evil Thoughts are being concentrated.") + public static NpcStringId THE_SPIRIT_S_EVIL_THOUGHTS_ARE_BEING_CONCENTRATED; + + @ClientString(id = 1717891, message = "The concentrated Spirit's Evil Thoughts have grown more powerful.") + public static NpcStringId THE_CONCENTRATED_SPIRIT_S_EVIL_THOUGHTS_HAVE_GROWN_MORE_POWERFUL; + + @ClientString(id = 1717892, message = "The concentrated Spirit's Evil Thoughts have turned into Harpe.") + public static NpcStringId THE_CONCENTRATED_SPIRIT_S_EVIL_THOUGHTS_HAVE_TURNED_INTO_HARPE; + + @ClientString(id = 1717893, message = "A door that leads to Isabella has opened.") + public static NpcStringId A_DOOR_THAT_LEADS_TO_ISABELLA_HAS_OPENED; + + @ClientString(id = 1717894, message = "Leona Blackbird has appeared at the Primeval Isle Wharf and will wait 15 minutes for the warrior who has to report to Admiral Keucereus.") + public static NpcStringId LEONA_BLACKBIRD_HAS_APPEARED_AT_THE_PRIMEVAL_ISLE_WHARF_AND_WILL_WAIT_15_MINUTES_FOR_THE_WARRIOR_WHO_HAS_TO_REPORT_TO_ADMIRAL_KEUCEREUS; + + @ClientString(id = 1717895, message = "You can pick up the Hatchling Scales.") + public static NpcStringId YOU_CAN_PICK_UP_THE_HATCHLING_SCALES; + + @ClientString(id = 1717896, message = "Use your skills to attack.") + public static NpcStringId USE_YOUR_SKILLS_TO_ATTACK; + + @ClientString(id = 1717897, message = "Double-click the equipment in your inventory to equip it.") + public static NpcStringId DOUBLE_CLICK_THE_EQUIPMENT_IN_YOUR_INVENTORY_TO_EQUIP_IT; + + @ClientString(id = 1717898, message = "Tarti is worried about $s1.") + public static NpcStringId TARTI_IS_WORRIED_ABOUT_S1; + + @ClientString(id = 1717899, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Soulshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_SOULSHOTS; + + @ClientString(id = 1717900, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Blessed Spiritshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_BLESSED_SPIRITSHOTS; + + @ClientString(id = 1717901, message = "Use a skill to become free of the monster's petrifaction.") + public static NpcStringId USE_A_SKILL_TO_BECOME_FREE_OF_THE_MONSTER_S_PETRIFACTION; + + @ClientString(id = 1717902, message = "Fight together with Stig Mach to slay the Gem Dragon.") + public static NpcStringId FIGHT_TOGETHER_WITH_STIG_MACH_TO_SLAY_THE_GEM_DRAGON; + + @ClientString(id = 1717903, message = "The blood spilled by my comrades will not have been in vain.") + public static NpcStringId THE_BLOOD_SPILLED_BY_MY_COMRADES_WILL_NOT_HAVE_BEEN_IN_VAIN; + + @ClientString(id = 1717904, message = "Don't take us lightly!") + public static NpcStringId DON_T_TAKE_US_LIGHTLY; + + @ClientString(id = 1717905, message = "Herphah. I didn't know you'd come.") + public static NpcStringId HERPHAH_I_DIDN_T_KNOW_YOU_D_COME; + + @ClientString(id = 1717906, message = "It's not the time to be wandering around anymore!") + public static NpcStringId IT_S_NOT_THE_TIME_TO_BE_WANDERING_AROUND_ANYMORE; + + @ClientString(id = 1717907, message = "Try to keep up with me if you can, kid.") + public static NpcStringId TRY_TO_KEEP_UP_WITH_ME_IF_YOU_CAN_KID; + + @ClientString(id = 1717908, message = "There's no time to look back.") + public static NpcStringId THERE_S_NO_TIME_TO_LOOK_BACK; + + @ClientString(id = 1717909, message = "Don't think that we'll lose!") + public static NpcStringId DON_T_THINK_THAT_WE_LL_LOSE; + + @ClientString(id = 1717910, message = "Trust the weapon in your hand!") + public static NpcStringId TRUST_THE_WEAPON_IN_YOUR_HAND; + + @ClientString(id = 1717911, message = "As long as I'm here, you will survive!") + public static NpcStringId AS_LONG_AS_I_M_HERE_YOU_WILL_SURVIVE; + + @ClientString(id = 1717912, message = "How come we didn't know that Antharas had these abilities until now?") + public static NpcStringId HOW_COME_WE_DIDN_T_KNOW_THAT_ANTHARAS_HAD_THESE_ABILITIES_UNTIL_NOW; + + @ClientString(id = 1717913, message = "I won't let you take more lives of my comrades.") + public static NpcStringId I_WON_T_LET_YOU_TAKE_MORE_LIVES_OF_MY_COMRADES; + + @ClientString(id = 1717914, message = "Say thanks when you feel grateful.") + public static NpcStringId SAY_THANKS_WHEN_YOU_FEEL_GRATEFUL; + + @ClientString(id = 1717915, message = "Who'll be the most surprised if we become the Balthus Knights?") + public static NpcStringId WHO_LL_BE_THE_MOST_SURPRISED_IF_WE_BECOME_THE_BALTHUS_KNIGHTS; + + @ClientString(id = 1717916, message = "You think that will scare me?") + public static NpcStringId YOU_THINK_THAT_WILL_SCARE_ME; + + @ClientString(id = 1717917, message = "I'll catch Antharas! I won't give him up, not even to you!") + public static NpcStringId I_LL_CATCH_ANTHARAS_I_WON_T_GIVE_HIM_UP_NOT_EVEN_TO_YOU; + + @ClientString(id = 1717918, message = "You look just like that hatchling I met!") + public static NpcStringId YOU_LOOK_JUST_LIKE_THAT_HATCHLING_I_MET; + + @ClientString(id = 1717919, message = "You're not trying to get to Antharas without us, are you?") + public static NpcStringId YOU_RE_NOT_TRYING_TO_GET_TO_ANTHARAS_WITHOUT_US_ARE_YOU; + + @ClientString(id = 1717920, message = "I'll protect you!") + public static NpcStringId I_LL_PROTECT_YOU; + + @ClientString(id = 1717921, message = "I wasn't aware that Antharas could change forms…") + public static NpcStringId I_WASN_T_AWARE_THAT_ANTHARAS_COULD_CHANGE_FORMS; + + @ClientString(id = 1717922, message = "Do you think I could get alchemy ingredients?") + public static NpcStringId DO_YOU_THINK_I_COULD_GET_ALCHEMY_INGREDIENTS; + + @ClientString(id = 1717923, message = "Thanks, that really was quite dangerous just then.") + public static NpcStringId THANKS_THAT_REALLY_WAS_QUITE_DANGEROUS_JUST_THEN; + + @ClientString(id = 1717924, message = "Never forget that the lives of your comrades lie behind your shield.") + public static NpcStringId NEVER_FORGET_THAT_THE_LIVES_OF_YOUR_COMRADES_LIE_BEHIND_YOUR_SHIELD; + + @ClientString(id = 1717925, message = "Be careful! You need to live so your comrades can survive!") + public static NpcStringId BE_CAREFUL_YOU_NEED_TO_LIVE_SO_YOUR_COMRADES_CAN_SURVIVE; + + @ClientString(id = 1717926, message = "Your job is to distract the enemy!") + public static NpcStringId YOUR_JOB_IS_TO_DISTRACT_THE_ENEMY; + + @ClientString(id = 1717927, message = "Don't worry about the shapeshifting. We will survive this!") + public static NpcStringId DON_T_WORRY_ABOUT_THE_SHAPESHIFTING_WE_WILL_SURVIVE_THIS; + + @ClientString(id = 1717928, message = "This weapon will give you power!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_POWER; + + @ClientString(id = 1717929, message = "The bigger they are, the slower they move!") + public static NpcStringId THE_BIGGER_THEY_ARE_THE_SLOWER_THEY_MOVE; + + @ClientString(id = 1717930, message = "And I was worried about the polymorph! Piece of cake!") + public static NpcStringId AND_I_WAS_WORRIED_ABOUT_THE_POLYMORPH_PIECE_OF_CAKE; + + @ClientString(id = 1717931, message = "Hey, newbie! Were you scared?") + public static NpcStringId HEY_NEWBIE_WERE_YOU_SCARED; + + @ClientString(id = 1717932, message = "If we don't attack him with all our might, this battle will never end!") + public static NpcStringId IF_WE_DON_T_ATTACK_HIM_WITH_ALL_OUR_MIGHT_THIS_BATTLE_WILL_NEVER_END; + + @ClientString(id = 1717933, message = "This weapon will give you strength!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717934, message = "Find the enemy's weakness and exploit it! That can be crucial!") + public static NpcStringId FIND_THE_ENEMY_S_WEAKNESS_AND_EXPLOIT_IT_THAT_CAN_BE_CRUCIAL; + + @ClientString(id = 1717935, message = "This is the chance to fire our most powerful attack at the enemy.") + public static NpcStringId THIS_IS_THE_CHANCE_TO_FIRE_OUR_MOST_POWERFUL_ATTACK_AT_THE_ENEMY; + + @ClientString(id = 1717936, message = "Attacking the enemy from behind can be quite effective.") + public static NpcStringId ATTACKING_THE_ENEMY_FROM_BEHIND_CAN_BE_QUITE_EFFECTIVE; + + @ClientString(id = 1717937, message = "In moments of danger, we can hide.") + public static NpcStringId IN_MOMENTS_OF_DANGER_WE_CAN_HIDE; + + @ClientString(id = 1717938, message = "This weapon will give you power!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_POWER_2; + + @ClientString(id = 1717939, message = "We must stay strong so our comrades can find strength in us.") + public static NpcStringId WE_MUST_STAY_STRONG_SO_OUR_COMRADES_CAN_FIND_STRENGTH_IN_US; + + @ClientString(id = 1717940, message = "A powerful attack and a critical wound!") + public static NpcStringId A_POWERFUL_ATTACK_AND_A_CRITICAL_WOUND; + + @ClientString(id = 1717941, message = "Don't get distracted! Attack!") + public static NpcStringId DON_T_GET_DISTRACTED_ATTACK; + + @ClientString(id = 1717942, message = "Trust your comrades. And never stop attacking.") + public static NpcStringId TRUST_YOUR_COMRADES_AND_NEVER_STOP_ATTACKING; + + @ClientString(id = 1717943, message = "This weapon will give you power!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_POWER_3; + + @ClientString(id = 1717944, message = "You're in my way. Don't stay too close!") + public static NpcStringId YOU_RE_IN_MY_WAY_DON_T_STAY_TOO_CLOSE; + + @ClientString(id = 1717945, message = "You need to concentrate during battle. Shouldn't you take care of your Servitor?") + public static NpcStringId YOU_NEED_TO_CONCENTRATE_DURING_BATTLE_SHOULDN_T_YOU_TAKE_CARE_OF_YOUR_SERVITOR; + + @ClientString(id = 1717946, message = "You and your Servitor are one. Don't let down your guard because you're not hurt.") + public static NpcStringId YOU_AND_YOUR_SERVITOR_ARE_ONE_DON_T_LET_DOWN_YOUR_GUARD_BECAUSE_YOU_RE_NOT_HURT; + + @ClientString(id = 1717947, message = "Idiot! Now I'm getting pissed off.") + public static NpcStringId IDIOT_NOW_I_M_GETTING_PISSED_OFF; + + @ClientString(id = 1717948, message = "This weapon will give you strength!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_2; + + @ClientString(id = 1717949, message = "No need to be afraid of dragons. They are just one of many enemies we encounter.") + public static NpcStringId NO_NEED_TO_BE_AFRAID_OF_DRAGONS_THEY_ARE_JUST_ONE_OF_MANY_ENEMIES_WE_ENCOUNTER; + + @ClientString(id = 1717950, message = "Your power makes us strong.") + public static NpcStringId YOUR_POWER_MAKES_US_STRONG; + + @ClientString(id = 1717951, message = "When you run out of CON, you need to pull all stops.") + public static NpcStringId WHEN_YOU_RUN_OUT_OF_CON_YOU_NEED_TO_PULL_ALL_STOPS; + + @ClientString(id = 1717952, message = "This is not good. Time to change our strategy.") + public static NpcStringId THIS_IS_NOT_GOOD_TIME_TO_CHANGE_OUR_STRATEGY; + + @ClientString(id = 1717953, message = "This weapon will give you strength!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_3; + + @ClientString(id = 1717954, message = "We must see this through to the end.") + public static NpcStringId WE_MUST_SEE_THIS_THROUGH_TO_THE_END; + + @ClientString(id = 1717955, message = "Hey, if you go too far, I can't heal you!") + public static NpcStringId HEY_IF_YOU_GO_TOO_FAR_I_CAN_T_HEAL_YOU; + + @ClientString(id = 1717956, message = "Everyone's life depends on the decisions you make in battle.") + public static NpcStringId EVERYONE_S_LIFE_DEPENDS_ON_THE_DECISIONS_YOU_MAKE_IN_BATTLE; + + @ClientString(id = 1717957, message = "Hah... now what's that? I didn't hear about that before.") + public static NpcStringId HAH_NOW_WHAT_S_THAT_I_DIDN_T_HEAR_ABOUT_THAT_BEFORE; + + @ClientString(id = 1717958, message = "This weapon will give you strength!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_STRENGTH_4; + + @ClientString(id = 1717959, message = "That dragon is just big, nothing else.") + public static NpcStringId THAT_DRAGON_IS_JUST_BIG_NOTHING_ELSE; + + @ClientString(id = 1717960, message = "Hey, don't you have any stronger attacks?") + public static NpcStringId HEY_DON_T_YOU_HAVE_ANY_STRONGER_ATTACKS; + + @ClientString(id = 1717961, message = "Don't rest! Attack! That's the smartest thing you can do.") + public static NpcStringId DON_T_REST_ATTACK_THAT_S_THE_SMARTEST_THING_YOU_CAN_DO; + + @ClientString(id = 1717962, message = "Oh, now it's time to really show what you can do.") + public static NpcStringId OH_NOW_IT_S_TIME_TO_REALLY_SHOW_WHAT_YOU_CAN_DO; + + @ClientString(id = 1717963, message = "Use this weapon. It will give you strength.") + public static NpcStringId USE_THIS_WEAPON_IT_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717964, message = "How old is that dragon?") + public static NpcStringId HOW_OLD_IS_THAT_DRAGON; + + @ClientString(id = 1717965, message = "I'm really quick, huh? I can attack even quicker.") + public static NpcStringId I_M_REALLY_QUICK_HUH_I_CAN_ATTACK_EVEN_QUICKER; + + @ClientString(id = 1717966, message = "Find the right time to use your power.") + public static NpcStringId FIND_THE_RIGHT_TIME_TO_USE_YOUR_POWER; + + @ClientString(id = 1717967, message = "Wow! I really wanted to do something like that.") + public static NpcStringId WOW_I_REALLY_WANTED_TO_DO_SOMETHING_LIKE_THAT; + + @ClientString(id = 1717968, message = "That's more difficult than I thought. This weapon will give you strength!") + public static NpcStringId THAT_S_MORE_DIFFICULT_THAN_I_THOUGHT_THIS_WEAPON_WILL_GIVE_YOU_STRENGTH; + + @ClientString(id = 1717969, message = "Never let your guard down, or danger will find you before you know it.") + public static NpcStringId NEVER_LET_YOUR_GUARD_DOWN_OR_DANGER_WILL_FIND_YOU_BEFORE_YOU_KNOW_IT; + + @ClientString(id = 1717970, message = "You need to use the Energy of Wind well.") + public static NpcStringId YOU_NEED_TO_USE_THE_ENERGY_OF_WIND_WELL; + + @ClientString(id = 1717971, message = "Trust in your comrades and give your best.") + public static NpcStringId TRUST_IN_YOUR_COMRADES_AND_GIVE_YOUR_BEST; + + @ClientString(id = 1717972, message = "There must be more we don't know about Antharas.") + public static NpcStringId THERE_MUST_BE_MORE_WE_DON_T_KNOW_ABOUT_ANTHARAS; + + @ClientString(id = 1717973, message = "This weapon will give you power!") + public static NpcStringId THIS_WEAPON_WILL_GIVE_YOU_POWER_4; + + @ClientString(id = 1717974, message = "We'll see a lot of each other in the future.") + public static NpcStringId WE_LL_SEE_A_LOT_OF_EACH_OTHER_IN_THE_FUTURE; + + @ClientString(id = 1717975, message = "It's important to prepare supply items.") + public static NpcStringId IT_S_IMPORTANT_TO_PREPARE_SUPPLY_ITEMS; + + @ClientString(id = 1717976, message = "Use the skill Shield Impact.") + public static NpcStringId USE_THE_SKILL_SHIELD_IMPACT; + + @ClientString(id = 1717977, message = "Use the skill Armor Destruction.") + public static NpcStringId USE_THE_SKILL_ARMOR_DESTRUCTION; + + @ClientString(id = 1717978, message = "Use the skill Chain Blow.") + public static NpcStringId USE_THE_SKILL_CHAIN_BLOW; + + @ClientString(id = 1717979, message = "Use the skill Quick Shot.") + public static NpcStringId USE_THE_SKILL_QUICK_SHOT; + + @ClientString(id = 1717980, message = "Use the skill Elemental Storm.") + public static NpcStringId USE_THE_SKILL_ELEMENTAL_STORM; + + @ClientString(id = 1717981, message = "Use the skill Resolving Bash.") + public static NpcStringId USE_THE_SKILL_RESOLVING_BASH; + + @ClientString(id = 1717982, message = "Use the skill Mark of Weakness.") + public static NpcStringId USE_THE_SKILL_MARK_OF_WEAKNESS; + + @ClientString(id = 1717983, message = "Use the skill Dark Blast.") + public static NpcStringId USE_THE_SKILL_DARK_BLAST; + + @ClientString(id = 1717984, message = "Use the skill Lateral Hit.") + public static NpcStringId USE_THE_SKILL_LATERAL_HIT; + + @ClientString(id = 1717985, message = "When 'Sign of Storm' reaches Lv. 3 by using 'Hydro Attack',\\ntry using 'Hydro Flare'.") + public static NpcStringId WHEN_SIGN_OF_STORM_REACHES_LV_3_BY_USING_HYDRO_ATTACK_NTRY_USING_HYDRO_FLARE; + + @ClientString(id = 1717986, message = "You cannot continue this quest because it has been deleted.") + public static NpcStringId YOU_CANNOT_CONTINUE_THIS_QUEST_BECAUSE_IT_HAS_BEEN_DELETED; + + @ClientString(id = 1717987, message = "You have to restart the quest because the battle has ended.") + public static NpcStringId YOU_HAVE_TO_RESTART_THE_QUEST_BECAUSE_THE_BATTLE_HAS_ENDED; + + @ClientString(id = 1717988, message = "Press the Tab key to check your inventory.") + public static NpcStringId PRESS_THE_TAB_KEY_TO_CHECK_YOUR_INVENTORY; + + @ClientString(id = 1717989, message = "Double-click Paulina's equipment set to obtain the equipment.") + public static NpcStringId DOUBLE_CLICK_PAULINA_S_EQUIPMENT_SET_TO_OBTAIN_THE_EQUIPMENT; + + @ClientString(id = 1717990, message = "Double-click weapons and armor to equip them.") + public static NpcStringId DOUBLE_CLICK_WEAPONS_AND_ARMOR_TO_EQUIP_THEM; + + @ClientString(id = 1717991, message = "Roien is calling for $s1.") + public static NpcStringId ROIEN_IS_CALLING_FOR_S1; + + @ClientString(id = 1717992, message = "Brome is calling for $s1.") + public static NpcStringId BROME_IS_CALLING_FOR_S1; + + @ClientString(id = 1717993, message = "Mion is calling for $s1.") + public static NpcStringId MION_IS_CALLING_FOR_S1; + + @ClientString(id = 1717994, message = "Kayleen is calling for $s1.") + public static NpcStringId KAYLEEN_IS_CALLING_FOR_S1; + + @ClientString(id = 1717995, message = "Takhun is calling for $s1.") + public static NpcStringId TAKHUN_IS_CALLING_FOR_S1; + + @ClientString(id = 1717996, message = "Elena is calling for $s1.") + public static NpcStringId ELENA_IS_CALLING_FOR_S1; + + @ClientString(id = 1717997, message = "Ultrian is calling for $s1.") + public static NpcStringId ULTRIAN_IS_CALLING_FOR_S1; + + @ClientString(id = 1717998, message = "Tariah is calling for $s1.") + public static NpcStringId TARIAH_IS_CALLING_FOR_S1; + + @ClientString(id = 1717999, message = "Narita is calling for $s1.") + public static NpcStringId NARITA_IS_CALLING_FOR_S1; + + @ClientString(id = 1718000, message = "Elias is calling for $s1.") + public static NpcStringId ELIAS_IS_CALLING_FOR_S1; + + @ClientString(id = 1718001, message = "Equip an Antharas Shaper.") + public static NpcStringId EQUIP_AN_ANTHARAS_SHAPER; + + @ClientString(id = 1718002, message = "Equip an Antharas Slasher.") + public static NpcStringId EQUIP_AN_ANTHARAS_SLASHER; + + @ClientString(id = 1718003, message = "Equip an Antharas Thrower.") + public static NpcStringId EQUIP_AN_ANTHARAS_THROWER; + + @ClientString(id = 1718004, message = "Equip an Antharas Buster.") + public static NpcStringId EQUIP_AN_ANTHARAS_BUSTER; + + @ClientString(id = 1718005, message = "Equip an Antharas Cutter.") + public static NpcStringId EQUIP_AN_ANTHARAS_CUTTER; + + @ClientString(id = 1718006, message = "Equip an Antharas Stormer.") + public static NpcStringId EQUIP_AN_ANTHARAS_STORMER; + + @ClientString(id = 1718007, message = "Equip an Antharas Fighter.") + public static NpcStringId EQUIP_AN_ANTHARAS_FIGHTER; + + @ClientString(id = 1718008, message = "Equip an Antharas Dualsword.") + public static NpcStringId EQUIP_AN_ANTHARAS_DUALSWORD; + + @ClientString(id = 1718009, message = "Use the item skill Antharas Breath on Antharas.") + public static NpcStringId USE_THE_ITEM_SKILL_ANTHARAS_BREATH_ON_ANTHARAS; + + @ClientString(id = 1718010, message = "Press Alt + K to open the 'Learn Skill' tab and learn new skills.\\nThe skills in the 'Active' tab can be added to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_LEARN_SKILL_TAB_AND_LEARN_NEW_SKILLS_NTHE_SKILLS_IN_THE_ACTIVE_TAB_CAN_BE_ADDED_TO_THE_SHORTCUTS; + + @ClientString(id = 1718011, message = "Talk to Herphah.") + public static NpcStringId TALK_TO_HERPHAH_6; + + @ClientString(id = 1718012, message = "New reinforcements have arrived.") + public static NpcStringId NEW_REINFORCEMENTS_HAVE_ARRIVED; + + @ClientString(id = 1718013, message = "Antharas has polymorphed.") + public static NpcStringId ANTHARAS_HAS_POLYMORPHED; + + @ClientString(id = 1718014, message = "Please return to the Balthus Knight Barracks and recover...") + public static NpcStringId PLEASE_RETURN_TO_THE_BALTHUS_KNIGHT_BARRACKS_AND_RECOVER; + @ClientString(id = 1800001, message = "(Queen Ant) # $s1's Command Channel has looting rights.") public static NpcStringId QUEEN_ANT_S1_S_COMMAND_CHANNEL_HAS_LOOTING_RIGHTS; @@ -25663,22 +27982,22 @@ public final class NpcStringId @ClientString(id = 1800163, message = "Huh... No one would have guessed that a doomed creature would be so powerful...") public static NpcStringId HUH_NO_ONE_WOULD_HAVE_GUESSED_THAT_A_DOOMED_CREATURE_WOULD_BE_SO_POWERFUL; - @ClientString(id = 1800164, message = "S-grade ") + @ClientString(id = 1800164, message = "S-grade") public static NpcStringId S_GRADE; - @ClientString(id = 1800165, message = "A-grade ") + @ClientString(id = 1800165, message = "A-grade") public static NpcStringId A_GRADE; - @ClientString(id = 1800166, message = "B-grade ") + @ClientString(id = 1800166, message = "B-grade") public static NpcStringId B_GRADE; - @ClientString(id = 1800167, message = "C-grade ") + @ClientString(id = 1800167, message = "C-grade") public static NpcStringId C_GRADE; - @ClientString(id = 1800168, message = "D-grade ") + @ClientString(id = 1800168, message = "D-grade") public static NpcStringId D_GRADE; - @ClientString(id = 1800169, message = "F-grade ") + @ClientString(id = 1800169, message = "F-grade") public static NpcStringId F_GRADE; @ClientString(id = 1800170, message = "This is... This is a great achievement that is worthy of the true heroes of legend!") @@ -26047,10 +28366,10 @@ public final class NpcStringId @ClientString(id = 1800291, message = "Nom nom!") public static NpcStringId NOM_NOM; - @ClientString(id = 1800292, message = "You've sustained $s1 damage as Tumor's shell started melting after touching the sacred seal on the shield! ") + @ClientString(id = 1800292, message = "You've sustained $s1 damage as Tumor's shell started melting after touching the sacred seal on the shield!") public static NpcStringId YOU_VE_SUSTAINED_S1_DAMAGE_AS_TUMOR_S_SHELL_STARTED_MELTING_AFTER_TOUCHING_THE_SACRED_SEAL_ON_THE_SHIELD; - @ClientString(id = 1800293, message = "You've sustained $s1 damage as Soul Coffin's shell started melting after touching the sacred seal on the shield! ") + @ClientString(id = 1800293, message = "You've sustained $s1 damage as Soul Coffin's shell started melting after touching the sacred seal on the shield!") public static NpcStringId YOU_VE_SUSTAINED_S1_DAMAGE_AS_SOUL_COFFIN_S_SHELL_STARTED_MELTING_AFTER_TOUCHING_THE_SACRED_SEAL_ON_THE_SHIELD; @ClientString(id = 1800294, message = "Raid rewards are given to the attacker <$s1>.") @@ -27337,7 +29656,7 @@ public final class NpcStringId @ClientString(id = 1800721, message = "Now! Why don't you take up the challenge?") public static NpcStringId NOW_WHY_DON_T_YOU_TAKE_UP_THE_CHALLENGE; - @ClientString(id = 1800722, message = "Come on, I'll take all of you on! ") + @ClientString(id = 1800722, message = "Come on, I'll take all of you on!") public static NpcStringId COME_ON_I_LL_TAKE_ALL_OF_YOU_ON; @ClientString(id = 1800723, message = "How about it? I think I won?") @@ -27361,7 +29680,7 @@ public final class NpcStringId @ClientString(id = 1800729, message = "You're cursed!! Oh.. What?") public static NpcStringId YOU_RE_CURSED_OH_WHAT; - @ClientString(id = 1800730, message = "Have you done nothing but rock-paper-scissors?? ") + @ClientString(id = 1800730, message = "Have you done nothing but rock-paper-scissors??") public static NpcStringId HAVE_YOU_DONE_NOTHING_BUT_ROCK_PAPER_SCISSORS; @ClientString(id = 1800731, message = "Stop it, no more... I did it because I was too lonely...") @@ -27370,7 +29689,7 @@ public final class NpcStringId @ClientString(id = 1800732, message = "I have to release Santa... How infuriating!!!") public static NpcStringId I_HAVE_TO_RELEASE_SANTA_HOW_INFURIATING; - @ClientString(id = 1800733, message = "I hate happy Happy Holidays!!! ") + @ClientString(id = 1800733, message = "I hate happy Happy Holidays!!!") public static NpcStringId I_HATE_HAPPY_HAPPY_HOLIDAYS; @ClientString(id = 1800734, message = "Oh. I'm bored.") @@ -27379,7 +29698,7 @@ public final class NpcStringId @ClientString(id = 1800735, message = "Shall I go to take a look if Santa is still there? Hehe") public static NpcStringId SHALL_I_GO_TO_TAKE_A_LOOK_IF_SANTA_IS_STILL_THERE_HEHE; - @ClientString(id = 1800736, message = "Oh ho ho.... Happy Holidays!! ") + @ClientString(id = 1800736, message = "Oh ho ho.... Happy Holidays!!") public static NpcStringId OH_HO_HO_HAPPY_HOLIDAYS; @ClientString(id = 1800737, message = "Santa could give nice presents only if he's released from the Turkey...") @@ -27388,19 +29707,19 @@ public final class NpcStringId @ClientString(id = 1800738, message = "Oh ho ho... Oh ho ho... Thank you. Ladies and gentlemen! I will repay you for sure.") public static NpcStringId OH_HO_HO_OH_HO_HO_THANK_YOU_LADIES_AND_GENTLEMEN_I_WILL_REPAY_YOU_FOR_SURE; - @ClientString(id = 1800739, message = "Happy Holidays~ You're doing a good job. ") + @ClientString(id = 1800739, message = "Happy Holidays~ You're doing a good job.") public static NpcStringId HAPPY_HOLIDAYS_YOU_RE_DOING_A_GOOD_JOB; - @ClientString(id = 1800740, message = "Happy Holidays~ Thank you for rescuing me from that wretched Turkey. ") + @ClientString(id = 1800740, message = "Happy Holidays~ Thank you for rescuing me from that wretched Turkey.") public static NpcStringId HAPPY_HOLIDAYS_THANK_YOU_FOR_RESCUING_ME_FROM_THAT_WRETCHED_TURKEY; - @ClientString(id = 1800741, message = "$s1 . I have prepared a gift for you. ") + @ClientString(id = 1800741, message = "$s1 . I have prepared a gift for you.") public static NpcStringId S1_I_HAVE_PREPARED_A_GIFT_FOR_YOU; @ClientString(id = 1800742, message = "I have a gift for $s1.") public static NpcStringId I_HAVE_A_GIFT_FOR_S1; - @ClientString(id = 1800743, message = "Take a look at the inventory. I hope you like the gift I gave you. ") + @ClientString(id = 1800743, message = "Take a look at the inventory. I hope you like the gift I gave you.") public static NpcStringId TAKE_A_LOOK_AT_THE_INVENTORY_I_HOPE_YOU_LIKE_THE_GIFT_I_GAVE_YOU; @ClientString(id = 1800744, message = "Take a look at the inventory. Perhaps there might be a big present~") @@ -27478,7 +29797,7 @@ public final class NpcStringId @ClientString(id = 1800768, message = "My energy is overflowing!!! I don't need any Energy Potion~") public static NpcStringId MY_ENERGY_IS_OVERFLOWING_I_DON_T_NEED_ANY_ENERGY_POTION; - @ClientString(id = 1800769, message = "What's the matter? That's an amateur move! ") + @ClientString(id = 1800769, message = "What's the matter? That's an amateur move!") public static NpcStringId WHAT_S_THE_MATTER_THAT_S_AN_AMATEUR_MOVE; @ClientString(id = 1800770, message = "Fortune Timer: Reward increases 2 times if completed within 10 seconds!") @@ -27599,10 +29918,10 @@ public final class NpcStringId public static NpcStringId FOUR_SECONDS_ARE_REMAINING; @ClientString(id = 1800809, message = "3 seconds are remaining.") - public static NpcStringId THREE_SECONDS_ARE_REMAINING_3; + public static NpcStringId THREE_SECONDS_ARE_REMAINING; @ClientString(id = 1800810, message = "2 seconds are remaining.") - public static NpcStringId TWO_SECONDS_ARE_REMAINING_3; + public static NpcStringId TWO_SECONDS_ARE_REMAINING; @ClientString(id = 1800811, message = "1 seconds are remaining.") public static NpcStringId ONE_SECONDS_ARE_REMAINING; @@ -27625,7 +29944,7 @@ public final class NpcStringId @ClientString(id = 1800817, message = "I'll pass on an amateur's meridian massage. Use a Cupid's Energy Potion already!") public static NpcStringId I_LL_PASS_ON_AN_AMATEUR_S_MERIDIAN_MASSAGE_USE_A_CUPID_S_ENERGY_POTION_ALREADY; - @ClientString(id = 1800818, message = "I already feel more energetic. Thanks, $s1 - ") + @ClientString(id = 1800818, message = "I already feel more energetic. Thanks, $s1 -") public static NpcStringId I_ALREADY_FEEL_MORE_ENERGETIC_THANKS_S1; @ClientString(id = 1800819, message = "How refreshing! You wouldn't happen to be a master masseuse, $s1, would you?") @@ -27766,7 +30085,7 @@ public final class NpcStringId @ClientString(id = 1800864, message = "I am tired! Do not wake me up again!") public static NpcStringId I_AM_TIRED_DO_NOT_WAKE_ME_UP_AGAIN; - @ClientString(id = 1800865, message = " Intruder detected ") + @ClientString(id = 1800865, message = "Intruder detected") public static NpcStringId INTRUDER_DETECTED; @ClientString(id = 1800866, message = "The candles can lead you to Zaken. Destroy him") @@ -27808,8 +30127,8 @@ public final class NpcStringId @ClientString(id = 1800878, message = "Life Stone from the Beginning acquired") public static NpcStringId LIFE_STONE_FROM_THE_BEGINNING_ACQUIRED; - @ClientString(id = 1800879, message = "When inventory weight/number are more than 80%, the Life Stone from the Beginning cannot be acquired.") - public static NpcStringId WHEN_INVENTORY_WEIGHT_NUMBER_ARE_MORE_THAN_80_THE_LIFE_STONE_FROM_THE_BEGINNING_CANNOT_BE_ACQUIRED; + @ClientString(id = 1800879, message = "The Deinonychus Mesozoic Stone cannot be obtained when inventory weight/volume is at 80%% or more.") + public static NpcStringId THE_DEINONYCHUS_MESOZOIC_STONE_CANNOT_BE_OBTAINED_WHEN_INVENTORY_WEIGHT_VOLUME_IS_AT_80_OR_MORE; @ClientString(id = 1800880, message = "You are under my thumb!!") public static NpcStringId YOU_ARE_UNDER_MY_THUMB; @@ -28468,7 +30787,7 @@ public final class NpcStringId @ClientString(id = 1801098, message = "How could I... fall... in a place like this...") public static NpcStringId HOW_COULD_I_FALL_IN_A_PLACE_LIKE_THIS; - @ClientString(id = 1801099, message = "I can finally take a breather. By the way, who are you? Hmm... I think I know who sent you. ") + @ClientString(id = 1801099, message = "I can finally take a breather. By the way, who are you? Hmm... I think I know who sent you.") public static NpcStringId I_CAN_FINALLY_TAKE_A_BREATHER_BY_THE_WAY_WHO_ARE_YOU_HMM_I_THINK_I_KNOW_WHO_SENT_YOU; @ClientString(id = 1801100, message = "$s1 of Balance") @@ -28552,8 +30871,8 @@ public final class NpcStringId @ClientString(id = 1801126, message = "Taklacan is gathering its strength and launching an attack.") public static NpcStringId TAKLACAN_IS_GATHERING_ITS_STRENGTH_AND_LAUNCHING_AN_ATTACK; - @ClientString(id = 1801127, message = "Taklacan received Kokracon and became weaker.") - public static NpcStringId TAKLACAN_RECEIVED_KOKRACON_AND_BECAME_WEAKER; + @ClientString(id = 1801127, message = "Taklacan is weakened by the power of Kokracon.") + public static NpcStringId TAKLACAN_IS_WEAKENED_BY_THE_POWER_OF_KOKRACON; @ClientString(id = 1801128, message = "Kokracon's power can be felt nearby.") public static NpcStringId KOKRACON_S_POWER_CAN_BE_FELT_NEARBY; @@ -28720,7 +31039,7 @@ public final class NpcStringId @ClientString(id = 1801182, message = "My body feels as light as a feather~") public static NpcStringId MY_BODY_FEELS_AS_LIGHT_AS_A_FEATHER_2; - @ClientString(id = 1801183, message = "My energy was recovered so quickly. Thanks, $s1 - ") + @ClientString(id = 1801183, message = "My energy was recovered so quickly. Thanks, $s1 -") public static NpcStringId MY_ENERGY_WAS_RECOVERED_SO_QUICKLY_THANKS_S1; @ClientString(id = 1801184, message = "How refreshing! You wouldn't happen to be a master masseuse, $s1, would you?") @@ -28774,7 +31093,7 @@ public final class NpcStringId @ClientString(id = 1801200, message = "The portal to the next room is now open.") public static NpcStringId THE_PORTAL_TO_THE_NEXT_ROOM_IS_NOW_OPEN; - @ClientString(id = 1801201, message = "Golem entered the required zone. ") + @ClientString(id = 1801201, message = "Golem entered the required zone.") public static NpcStringId GOLEM_ENTERED_THE_REQUIRED_ZONE; @ClientString(id = 1801202, message = "Golem location successful: Entry Accessed") @@ -29071,7 +31390,7 @@ public final class NpcStringId @ClientString(id = 1801301, message = "Stop right there. I will be your opponent.") public static NpcStringId STOP_RIGHT_THERE_I_WILL_BE_YOUR_OPPONENT; - @ClientString(id = 1801302, message = "I will show you the justice of Aden. ") + @ClientString(id = 1801302, message = "I will show you the justice of Aden.") public static NpcStringId I_WILL_SHOW_YOU_THE_JUSTICE_OF_ADEN; @ClientString(id = 1801303, message = "It's not over.") @@ -29146,7 +31465,7 @@ public final class NpcStringId @ClientString(id = 1801326, message = "You puny insects don't know your place. You cannot stop me.") public static NpcStringId YOU_PUNY_INSECTS_DON_T_KNOW_YOUR_PLACE_YOU_CANNOT_STOP_ME; - @ClientString(id = 1801327, message = "No... How could this be... I can't go back to Nihil like this... ") + @ClientString(id = 1801327, message = "No... How could this be... I can't go back to Nihil like this...") public static NpcStringId NO_HOW_COULD_THIS_BE_I_CAN_T_GO_BACK_TO_NIHIL_LIKE_THIS; @ClientString(id = 1801328, message = "Kyeeeek. Kyaaaah.") @@ -30085,8 +32404,8 @@ public final class NpcStringId @ClientString(id = 1801639, message = "Aren't I cute?!") public static NpcStringId AREN_T_I_CUTE; - @ClientString(id = 1801640, message = "Incubating is 1 percent luck and 99 percent effort~") - public static NpcStringId INCUBATING_IS_1_PERCENT_LUCK_AND_99_PERCENT_EFFORT; + @ClientString(id = 1801640, message = "Incubating is 1%% luck and 99%% effort!") + public static NpcStringId INCUBATING_IS_1_LUCK_AND_99_EFFORT; @ClientString(id = 1801641, message = "Director! I want to be incubated.") public static NpcStringId DIRECTOR_I_WANT_TO_BE_INCUBATED; @@ -30340,7 +32659,7 @@ public final class NpcStringId @ClientString(id = 1801724, message = "Hello... Huhuhuhu...") public static NpcStringId HELLO_HUHUHUHU; - @ClientString(id = 1801725, message = "You know, so do it. ") + @ClientString(id = 1801725, message = "You know, so do it.") public static NpcStringId YOU_KNOW_SO_DO_IT; @ClientString(id = 1801726, message = "So... Kuhuhuhuhuhu!!!") @@ -30505,10 +32824,10 @@ public final class NpcStringId @ClientString(id = 1801779, message = "Hey, you! Help me out a little with this incubation.") public static NpcStringId HEY_YOU_HELP_ME_OUT_A_LITTLE_WITH_THIS_INCUBATION; - @ClientString(id = 1801780, message = " * Draco's Birth Event in Progress *") + @ClientString(id = 1801780, message = "* Draco's Birth Event in Progress *") public static NpcStringId DRACO_S_BIRTH_EVENT_IN_PROGRESS; - @ClientString(id = 1801781, message = " * Reach for Good Luck *") + @ClientString(id = 1801781, message = "* Reach for Good Luck *") public static NpcStringId REACH_FOR_GOOD_LUCK; @ClientString(id = 1801782, message = "Chaos Shield Weakened") @@ -30739,13 +33058,13 @@ public final class NpcStringId @ClientString(id = 1802042, message = "\\nA clan has risen up to challenge Nurka!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_RISEN_UP_TO_CHALLENGE_NURKA; - @ClientString(id = 1802043, message = "\\nA clan has decreased Nurka's HP to 70%!") + @ClientString(id = 1802043, message = "\\nA clan has decreased Nurka's HP to 70%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_70; - @ClientString(id = 1802044, message = "\\nA clan has decreased Nurka's HP to 40%!") + @ClientString(id = 1802044, message = "\\nA clan has decreased Nurka's HP to 40%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_40; - @ClientString(id = 1802045, message = "\\nA clan has decreased Nurka's HP to 10%!") + @ClientString(id = 1802045, message = "\\nA clan has decreased Nurka's HP to 10%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_10; @ClientString(id = 1802046, message = "\\nA clan has defeated Nurka for the first time!") @@ -30919,7 +33238,7 @@ public final class NpcStringId @ClientString(id = 1802102, message = "The Request Manager will disappear in 1 minute.") public static NpcStringId THE_REQUEST_MANAGER_WILL_DISAPPEAR_IN_1_MINUTE; - @ClientString(id = 1802103, message = "Dismantling is $s1% complete!") + @ClientString(id = 1802103, message = "Dismantling is $s1%% complete!") public static NpcStringId DISMANTLING_IS_S1_COMPLETE; @ClientString(id = 1802104, message = "The Life Plunderer's true form is revealed.") @@ -30988,10 +33307,10 @@ public final class NpcStringId @ClientString(id = 1802125, message = "Wake up as many Milk Cows as possible for fast milk production.") public static NpcStringId WAKE_UP_AS_MANY_MILK_COWS_AS_POSSIBLE_FOR_FAST_MILK_PRODUCTION; - @ClientString(id = 1802126, message = "You must continuously wake up the Milk Cows while the chefs interrupt. ") + @ClientString(id = 1802126, message = "You must continuously wake up the Milk Cows while the chefs interrupt.") public static NpcStringId YOU_MUST_CONTINUOUSLY_WAKE_UP_THE_MILK_COWS_WHILE_THE_CHEFS_INTERRUPT; - @ClientString(id = 1802127, message = "You must keep your Request Progress at + % by waking up as many cows as possible within the given time.") + @ClientString(id = 1802127, message = "You must keep your Request Progress at +%% by waking up as many cows as possible within the given time.") public static NpcStringId YOU_MUST_KEEP_YOUR_REQUEST_PROGRESS_AT_BY_WAKING_UP_AS_MANY_COWS_AS_POSSIBLE_WITHIN_THE_GIVEN_TIME; @ClientString(id = 1802128, message = "Click on Summon Clan Member to bring the clan member to your location.") @@ -31135,13 +33454,13 @@ public final class NpcStringId @ClientString(id = 1802174, message = "Your clan has defeated Gustav for the first time! Congratulations!") public static NpcStringId YOUR_CLAN_HAS_DEFEATED_GUSTAV_FOR_THE_FIRST_TIME_CONGRATULATIONS; - @ClientString(id = 1802175, message = "Your clan has decreased Nurka's HP to 70% for the first time!") + @ClientString(id = 1802175, message = "Your clan has decreased Nurka's HP to 70%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_70_FOR_THE_FIRST_TIME; - @ClientString(id = 1802176, message = "Your clan has decreased Nurka's HP to 40% for the first time!") + @ClientString(id = 1802176, message = "Your clan has decreased Nurka's HP to 40%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_40_FOR_THE_FIRST_TIME; - @ClientString(id = 1802177, message = "Your clan has decreased Nurka's HP to 10% for the first time!") + @ClientString(id = 1802177, message = "Your clan has decreased Nurka's HP to 10%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_10_FOR_THE_FIRST_TIME; @ClientString(id = 1802178, message = "Your clan has defeated Nurka for the first time! Congratulations!") @@ -31303,7 +33622,7 @@ public final class NpcStringId @ClientString(id = 1802230, message = "I'm ten steps ahead of you. Don't bother trying.") public static NpcStringId I_M_TEN_STEPS_AHEAD_OF_YOU_DON_T_BOTHER_TRYING; - @ClientString(id = 1802231, message = "We haven't even begun yet. ") + @ClientString(id = 1802231, message = "We haven't even begun yet.") public static NpcStringId WE_HAVEN_T_EVEN_BEGUN_YET; @ClientString(id = 1802232, message = "Are you watching? Watch… and feel what true fear is!") @@ -31333,7 +33652,7 @@ public final class NpcStringId @ClientString(id = 1802240, message = "What foolishness.") public static NpcStringId WHAT_FOOLISHNESS; - @ClientString(id = 1802241, message = "I will end that sorry life. ") + @ClientString(id = 1802241, message = "I will end that sorry life.") public static NpcStringId I_WILL_END_THAT_SORRY_LIFE; @ClientString(id = 1802242, message = "Well, what do you know… you're gutsier than you look.") @@ -31636,10 +33955,10 @@ public final class NpcStringId @ClientString(id = 1802342, message = "Equip the 9th Anniversary Instrument. You can get it from Angel Cat right here.") public static NpcStringId EQUIP_THE_9TH_ANNIVERSARY_INSTRUMENT_YOU_CAN_GET_IT_FROM_ANGEL_CAT_RIGHT_HERE; - @ClientString(id = 1802343, message = "Hide. Hide. ") + @ClientString(id = 1802343, message = "Hide. Hide.") public static NpcStringId HIDE_HIDE; - @ClientString(id = 1802344, message = "Aak, there goes the Hide! ") + @ClientString(id = 1802344, message = "Aak, there goes the Hide!") public static NpcStringId AAK_THERE_GOES_THE_HIDE; @ClientString(id = 1802345, message = "Nooo…avenge me!") @@ -31771,7 +34090,7 @@ public final class NpcStringId @ClientString(id = 1802387, message = "Ho ho ho! Happy Holidays!") public static NpcStringId HO_HO_HO_HAPPY_HOLIDAYS; - @ClientString(id = 1802388, message = "Hey there, kid! Try the Wintermelon Event, will you? ") + @ClientString(id = 1802388, message = "Hey there, kid! Try the Wintermelon Event, will you?") public static NpcStringId HEY_THERE_KID_TRY_THE_WINTERMELON_EVENT_WILL_YOU; @ClientString(id = 1802389, message = "How far did you look? Come on, try breaking a Wintermelon. You'll get a lot of rewards!") @@ -31837,8 +34156,8 @@ public final class NpcStringId @ClientString(id = 1802409, message = "The magic circle has become abnormal.") public static NpcStringId THE_MAGIC_CIRCLE_HAS_BECOME_ABNORMAL; - @ClientString(id = 1802410, message = "Kefensis' Hallucination appeared.") - public static NpcStringId KEFENSIS_HALLUCINATION_APPEARED; + @ClientString(id = 1802410, message = "Kefensis' Illusion appeared.") + public static NpcStringId KEFENSIS_ILLUSION_APPEARED; @ClientString(id = 1802411, message = "The Oasis Mirage appeared.") public static NpcStringId THE_OASIS_MIRAGE_APPEARED; @@ -31864,7 +34183,7 @@ public final class NpcStringId @ClientString(id = 1802418, message = "You may fall into danger with a sudden attack, so be careful!") public static NpcStringId YOU_MAY_FALL_INTO_DANGER_WITH_A_SUDDEN_ATTACK_SO_BE_CAREFUL; - @ClientString(id = 1802419, message = "$s1, thank you for saving me. I wish you good fortune... ") + @ClientString(id = 1802419, message = "$s1, thank you for saving me. I wish you good fortune...") public static NpcStringId S1_THANK_YOU_FOR_SAVING_ME_I_WISH_YOU_GOOD_FORTUNE; @ClientString(id = 1802420, message = "Gasp... gasp...") @@ -32086,11 +34405,11 @@ public final class NpcStringId @ClientString(id = 1802493, message = "Magic and arrows, hm? Well, take a dose of Tauti's Typhoon!") public static NpcStringId MAGIC_AND_ARROWS_HM_WELL_TAKE_A_DOSE_OF_TAUTI_S_TYPHOON; - @ClientString(id = 1802494, message = "Talk to Victory for reward.") - public static NpcStringId TALK_TO_VICTORY_FOR_REWARD; + @ClientString(id = 1802494, message = "Talk to Victory for a reward.") + public static NpcStringId TALK_TO_VICTORY_FOR_A_REWARD; - @ClientString(id = 1802495, message = "Talk to Difeet for reward.") - public static NpcStringId TALK_TO_DIFEET_FOR_REWARD; + @ClientString(id = 1802495, message = "Talk to Defeat for a reward.") + public static NpcStringId TALK_TO_DEFEAT_FOR_A_REWARD; @ClientString(id = 1802496, message = "The Repository is attacked! Fight! Fight!") public static NpcStringId THE_REPOSITORY_IS_ATTACKED_FIGHT_FIGHT; @@ -32305,8 +34624,8 @@ public final class NpcStringId @ClientString(id = 1802566, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 46!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_46; - @ClientString(id = 1802567, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 52!") - public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_52; + @ClientString(id = 1802567, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 56!") + public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_56; @ClientString(id = 1802568, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 58!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_58; @@ -32326,8 +34645,8 @@ public final class NpcStringId @ClientString(id = 1802573, message = "Grow stronger here until you receive the next letter from Kekropus at Lv. 81!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_KEKROPUS_AT_LV_81; - @ClientString(id = 1802574, message = "You have finished all of Kekropus' Letters! Grow stronger here until you receive letters from a minstrel at Lv. 85.") - public static NpcStringId YOU_HAVE_FINISHED_ALL_OF_KEKROPUS_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85; + @ClientString(id = 1802574, message = "You have completed all of Kekropus' Letter.") + public static NpcStringId YOU_HAVE_COMPLETED_ALL_OF_KEKROPUS_LETTER; @ClientString(id = 1802575, message = "Dimensional Warp Lv. $s1") public static NpcStringId DIMENSIONAL_WARP_LV_S1; @@ -32431,8 +34750,8 @@ public final class NpcStringId @ClientString(id = 1802608, message = "A powerful monster has come to face you!") public static NpcStringId A_POWERFUL_MONSTER_HAS_COME_TO_FACE_YOU; - @ClientString(id = 1802609, message = "$s1 seconds have been added to the instanced zone duration.") - public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCED_ZONE_DURATION; + @ClientString(id = 1802609, message = "$s1 seconds have been added to the Instance Zone duration.") + public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION; @ClientString(id = 1802610, message = "Master Katalin has sent a letter.\\nClick the question-mark icon to read.") public static NpcStringId MASTER_KATALIN_HAS_SENT_A_LETTER_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @@ -32569,7 +34888,7 @@ public final class NpcStringId @ClientString(id = 1802654, message = "A dragon appears, confused by the dimensional gale!") public static NpcStringId A_DRAGON_APPEARS_CONFUSED_BY_THE_DIMENSIONAL_GALE; - @ClientString(id = 1802655, message = "You have been branded with the Reaper's Seal due to $s1‘s Red Energy. ") + @ClientString(id = 1802655, message = "You have been branded with the Reaper's Seal due to $s1's Red Energy.") public static NpcStringId YOU_HAVE_BEEN_BRANDED_WITH_THE_REAPER_S_SEAL_DUE_TO_S1_S_RED_ENERGY; @ClientString(id = 1802656, message = "You can go to Underground Lv. 3 using the elevator in the back.") @@ -32620,8 +34939,8 @@ public final class NpcStringId @ClientString(id = 1802671, message = "Grow stronger here until you receive the next letter from Queen Navari at Lv. 46!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_46; - @ClientString(id = 1802672, message = "Grow stronger here until you receive the next letter from Queen Navari at Lv. 52!") - public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_52; + @ClientString(id = 1802672, message = "Grow stronger here\\nuntil you receive the next letter from Queen Navari at Lv. 56!") + public static NpcStringId GROW_STRONGER_HERE_NUNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_56; @ClientString(id = 1802673, message = "Grow stronger here until you receive the next letter from Queen Navari at Lv. 58!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_58; @@ -32638,8 +34957,8 @@ public final class NpcStringId @ClientString(id = 1802677, message = "Grow stronger here until you receive the next letter from Queen Navari at Lv. 76!") public static NpcStringId GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_THE_NEXT_LETTER_FROM_QUEEN_NAVARI_AT_LV_76; - @ClientString(id = 1802678, message = "You have finished all of Queen Navari's Letters! Grow stronger here until you receive letters from a minstrel at Lv. 85.") - public static NpcStringId YOU_HAVE_FINISHED_ALL_OF_QUEEN_NAVARI_S_LETTERS_GROW_STRONGER_HERE_UNTIL_YOU_RECEIVE_LETTERS_FROM_A_MINSTREL_AT_LV_85; + @ClientString(id = 1802678, message = "You have completed Queen Navari's Letter.") + public static NpcStringId YOU_HAVE_COMPLETED_QUEEN_NAVARI_S_LETTER; @ClientString(id = 1802679, message = "So good, neigh!") public static NpcStringId SO_GOOD_NEIGH; @@ -32716,8 +35035,8 @@ public final class NpcStringId @ClientString(id = 1802703, message = "Happy New Year! Heh heh!") public static NpcStringId HAPPY_NEW_YEAR_HEH_HEH; - @ClientString(id = 1802704, message = "The instanced zone will close soon!") - public static NpcStringId THE_INSTANCED_ZONE_WILL_CLOSE_SOON; + @ClientString(id = 1802704, message = "The Instance Zone will close soon!") + public static NpcStringId THE_INSTANCE_ZONE_WILL_CLOSE_SOON; @ClientString(id = 1802705, message = "Nooo…not enough Vitality yet!") public static NpcStringId NOOO_NOT_ENOUGH_VITALITY_YET; @@ -32764,7 +35083,7 @@ public final class NpcStringId @ClientString(id = 1802719, message = "$s1") public static NpcStringId S1_2; - @ClientString(id = 1802720, message = "Monsters have appeared around Aden! Maliss is at the West Gate, Isadora at the East Gate, and Flint is at the South Gate. ") + @ClientString(id = 1802720, message = "Monsters have appeared around Aden! Maliss is at the West Gate, Isadora at the East Gate, and Flint is at the South Gate.") public static NpcStringId MONSTERS_HAVE_APPEARED_AROUND_ADEN_MALISS_IS_AT_THE_WEST_GATE_ISADORA_AT_THE_EAST_GATE_AND_FLINT_IS_AT_THE_SOUTH_GATE; @ClientString(id = 1802721, message = "Harp has appeared at the North Gate of Aden!") @@ -32779,7 +35098,7 @@ public final class NpcStringId @ClientString(id = 1802724, message = "The warriors have defeated Isadora who had appeared at the East Gate of Aden.") public static NpcStringId THE_WARRIORS_HAVE_DEFEATED_ISADORA_WHO_HAD_APPEARED_AT_THE_EAST_GATE_OF_ADEN; - @ClientString(id = 1802725, message = "The warriors have defeated Flint who had appeared at the South Gate of Aden. ") + @ClientString(id = 1802725, message = "The warriors have defeated Flint who had appeared at the South Gate of Aden.") public static NpcStringId THE_WARRIORS_HAVE_DEFEATED_FLINT_WHO_HAD_APPEARED_AT_THE_SOUTH_GATE_OF_ADEN; @ClientString(id = 1802726, message = "The warriors have defeated Harp who had appeared at the North Gate of Aden.") @@ -32791,13 +35110,13 @@ public final class NpcStringId @ClientString(id = 1802728, message = "All the monsters who had appeared in Aden have disappeared.") public static NpcStringId ALL_THE_MONSTERS_WHO_HAD_APPEARED_IN_ADEN_HAVE_DISAPPEARED; - @ClientString(id = 1802729, message = "The warriors are fighting against Maliss at the West Gate. ") + @ClientString(id = 1802729, message = "The warriors are fighting against Maliss at the West Gate.") public static NpcStringId THE_WARRIORS_ARE_FIGHTING_AGAINST_MALISS_AT_THE_WEST_GATE; @ClientString(id = 1802730, message = "The warriors are about to defeat Maliss at the West Gate.") public static NpcStringId THE_WARRIORS_ARE_ABOUT_TO_DEFEAT_MALISS_AT_THE_WEST_GATE; - @ClientString(id = 1802731, message = "The warriors are fighting against Isadora at the East Gate. ") + @ClientString(id = 1802731, message = "The warriors are fighting against Isadora at the East Gate.") public static NpcStringId THE_WARRIORS_ARE_FIGHTING_AGAINST_ISADORA_AT_THE_EAST_GATE; @ClientString(id = 1802732, message = "The warriors are about to defeat Isadora at the East Gate.") @@ -32809,7 +35128,7 @@ public final class NpcStringId @ClientString(id = 1802734, message = "The warriors are about to defeat Flint at the South Gate.") public static NpcStringId THE_WARRIORS_ARE_ABOUT_TO_DEFEAT_FLINT_AT_THE_SOUTH_GATE; - @ClientString(id = 1802735, message = "The warriors are fighting against Harp at the North Gate. ") + @ClientString(id = 1802735, message = "The warriors are fighting against Harp at the North Gate.") public static NpcStringId THE_WARRIORS_ARE_FIGHTING_AGAINST_HARP_AT_THE_NORTH_GATE; @ClientString(id = 1802736, message = "The warriors are about to defeat Harp at the North Gate.") @@ -32839,7 +35158,7 @@ public final class NpcStringId @ClientString(id = 1802744, message = "Wealth makes me stronger!") public static NpcStringId WEALTH_MAKES_ME_STRONGER; - @ClientString(id = 1802745, message = "It feels like an ant is trying to bite me. ") + @ClientString(id = 1802745, message = "It feels like an ant is trying to bite me.") public static NpcStringId IT_FEELS_LIKE_AN_ANT_IS_TRYING_TO_BITE_ME; @ClientString(id = 1802746, message = "It doesn't hurt! Not at all!") @@ -32854,16 +35173,16 @@ public final class NpcStringId @ClientString(id = 1802749, message = "Strength alone will not help you against me.") public static NpcStringId STRENGTH_ALONE_WILL_NOT_HELP_YOU_AGAINST_ME; - @ClientString(id = 1802750, message = "With that kind of brain, you won't be able to surpass me! ") + @ClientString(id = 1802750, message = "With that kind of brain, you won't be able to surpass me!") public static NpcStringId WITH_THAT_KIND_OF_BRAIN_YOU_WON_T_BE_ABLE_TO_SURPASS_ME; @ClientString(id = 1802751, message = "How did this happen!") public static NpcStringId HOW_DID_THIS_HAPPEN; - @ClientString(id = 1802752, message = "Learn what it is to fear! ") + @ClientString(id = 1802752, message = "Learn what it is to fear!") public static NpcStringId LEARN_WHAT_IT_IS_TO_FEAR; - @ClientString(id = 1802753, message = "Ha, ha, ha! That won't be enough to defeat me! ") + @ClientString(id = 1802753, message = "Ha, ha, ha! That won't be enough to defeat me!") public static NpcStringId HA_HA_HA_THAT_WON_T_BE_ENOUGH_TO_DEFEAT_ME; @ClientString(id = 1802754, message = "Bow down to my power!") @@ -32878,7 +35197,7 @@ public final class NpcStringId @ClientString(id = 1802757, message = "How much did your weapon cost?") public static NpcStringId HOW_MUCH_DID_YOUR_WEAPON_COST; - @ClientString(id = 1802758, message = "Your equipment looks so cheap. ") + @ClientString(id = 1802758, message = "Your equipment looks so cheap.") public static NpcStringId YOUR_EQUIPMENT_LOOKS_SO_CHEAP; @ClientString(id = 1802759, message = "Don't even think for a second that I'll let this go easily!") @@ -32911,8 +35230,8 @@ public final class NpcStringId @ClientString(id = 1802768, message = "A strong monster has appeared.") public static NpcStringId A_STRONG_MONSTER_HAS_APPEARED; - @ClientString(id = 1802769, message = "$s1, Blazing Seal!") - public static NpcStringId S1_BLAZING_SEAL; + @ClientString(id = 1802769, message = "$s1, get Fire Stigma!") + public static NpcStringId S1_GET_FIRE_STIGMA; @ClientString(id = 1802770, message = "$s1, dangerous figure recognized / Type - High") public static NpcStringId S1_DANGEROUS_FIGURE_RECOGNIZED_TYPE_HIGH; @@ -32932,7 +35251,7 @@ public final class NpcStringId @ClientString(id = 1802775, message = "You measly creatures are so bothersome!") public static NpcStringId YOU_MEASLY_CREATURES_ARE_SO_BOTHERSOME; - @ClientString(id = 1802776, message = "We are two in one! We won't lose to you! ") + @ClientString(id = 1802776, message = "We are two in one! We won't lose to you!") public static NpcStringId WE_ARE_TWO_IN_ONE_WE_WON_T_LOSE_TO_YOU; @ClientString(id = 1802777, message = "How did this happen? Please avenge me!") @@ -32947,7 +35266,7 @@ public final class NpcStringId @ClientString(id = 1802780, message = "We have the power to do anything, you lowly creatures!") public static NpcStringId WE_HAVE_THE_POWER_TO_DO_ANYTHING_YOU_LOWLY_CREATURES; - @ClientString(id = 1802781, message = "Those weak attacks can't even scratch my armor! ") + @ClientString(id = 1802781, message = "Those weak attacks can't even scratch my armor!") public static NpcStringId THOSE_WEAK_ATTACKS_CAN_T_EVEN_SCRATCH_MY_ARMOR; @ClientString(id = 1802782, message = "I would never lose to some weaklings who can't even invest this much!") @@ -32956,7 +35275,7 @@ public final class NpcStringId @ClientString(id = 1802783, message = "My dear other half, please avenge me.") public static NpcStringId MY_DEAR_OTHER_HALF_PLEASE_AVENGE_ME; - @ClientString(id = 1802784, message = "I lost? Do I have to invest even more? ") + @ClientString(id = 1802784, message = "I lost? Do I have to invest even more?") public static NpcStringId I_LOST_DO_I_HAVE_TO_INVEST_EVEN_MORE; @ClientString(id = 1802785, message = "You dare challenge me? How foolish!") @@ -32968,7 +35287,7 @@ public final class NpcStringId @ClientString(id = 1802787, message = "Your arrogance will lead to even more pain.") public static NpcStringId YOUR_ARROGANCE_WILL_LEAD_TO_EVEN_MORE_PAIN; - @ClientString(id = 1802788, message = "How foolish. Not knowing is a sin! ") + @ClientString(id = 1802788, message = "How foolish. Not knowing is a sin!") public static NpcStringId HOW_FOOLISH_NOT_KNOWING_IS_A_SIN; @ClientString(id = 1802789, message = "How did I lose to these worthless creatures?") @@ -32983,10 +35302,10 @@ public final class NpcStringId @ClientString(id = 1802792, message = "Is this it?") public static NpcStringId IS_THIS_IT; - @ClientString(id = 1802793, message = "Ha, ha, ha! Be afraid! ") + @ClientString(id = 1802793, message = "Ha, ha, ha! Be afraid!") public static NpcStringId HA_HA_HA_BE_AFRAID; - @ClientString(id = 1802794, message = "Leave these monsters to us and go find their leader. ") + @ClientString(id = 1802794, message = "Leave these monsters to us and go find their leader.") public static NpcStringId LEAVE_THESE_MONSTERS_TO_US_AND_GO_FIND_THEIR_LEADER; @ClientString(id = 1802795, message = "There's no end to this. We have to defeat their leader.") @@ -33154,7 +35473,7 @@ public final class NpcStringId @ClientString(id = 1802849, message = "The HP of Isadora in the Town of Aden has fallen below 10%%.") public static NpcStringId THE_HP_OF_ISADORA_IN_THE_TOWN_OF_ADEN_HAS_FALLEN_BELOW_10; - @ClientString(id = 1802850, message = "The HP of Crook the Mad in the Town of Giran has fallen below 10%%. ") + @ClientString(id = 1802850, message = "The HP of Crook the Mad in the Town of Giran has fallen below 10%%.") public static NpcStringId THE_HP_OF_CROOK_THE_MAD_IN_THE_TOWN_OF_GIRAN_HAS_FALLEN_BELOW_10; @ClientString(id = 1802851, message = "The HP of Houpon the Warden Overseer in the Town of Giran has fallen below 10%%.") @@ -33433,7 +35752,7 @@ public final class NpcStringId @ClientString(id = 1802942, message = "Warriors of the Embryo. Attack!") public static NpcStringId WARRIORS_OF_THE_EMBRYO_ATTACK; - @ClientString(id = 1802943, message = "How did I lose? ") + @ClientString(id = 1802943, message = "How did I lose?") public static NpcStringId HOW_DID_I_LOSE; @ClientString(id = 1802944, message = "Kelbim is transforming to battle with his magic powers.") @@ -33481,13 +35800,13 @@ public final class NpcStringId @ClientString(id = 1802958, message = "You're the lucky winner!") public static NpcStringId YOU_RE_THE_LUCKY_WINNER; - @ClientString(id = 1802959, message = "Um... Um... ") + @ClientString(id = 1802959, message = "Um... Um...") public static NpcStringId UM_UM; @ClientString(id = 1802960, message = "Toot!") public static NpcStringId TOOT; - @ClientString(id = 1802961, message = "Gurgle... ") + @ClientString(id = 1802961, message = "Gurgle...") public static NpcStringId GURGLE; @ClientString(id = 1802962, message = "Pop!") @@ -33508,7 +35827,7 @@ public final class NpcStringId @ClientString(id = 1802967, message = "$s1, keep going, and you will be the winner!") public static NpcStringId S1_KEEP_GOING_AND_YOU_WILL_BE_THE_WINNER; - @ClientString(id = 1802968, message = "Almost there, %s1! You can do it!") + @ClientString(id = 1802968, message = "Almost there, $s1! You can do it!") public static NpcStringId ALMOST_THERE_S1_YOU_CAN_DO_IT; @ClientString(id = 1802969, message = "$s1, you might win~ Good luck!") @@ -33547,7 +35866,7 @@ public final class NpcStringId @ClientString(id = 1802980, message = "We must alert the Commander about these intruders!") public static NpcStringId WE_MUST_ALERT_THE_COMMANDER_ABOUT_THESE_INTRUDERS; - @ClientString(id = 1802981, message = "Alert everyone! ") + @ClientString(id = 1802981, message = "Alert everyone!") public static NpcStringId ALERT_EVERYONE; @ClientString(id = 1802982, message = "How did you know I was here?") @@ -33562,16 +35881,16 @@ public final class NpcStringId @ClientString(id = 1802985, message = "You think you can leave this place alive after seeing me?") public static NpcStringId YOU_THINK_YOU_CAN_LEAVE_THIS_PLACE_ALIVE_AFTER_SEEING_ME; - @ClientString(id = 1802986, message = "Wait, wait. It will be better for you if you let me live. ") + @ClientString(id = 1802986, message = "Wait, wait. It will be better for you if you let me live.") public static NpcStringId WAIT_WAIT_IT_WILL_BE_BETTER_FOR_YOU_IF_YOU_LET_ME_LIVE; @ClientString(id = 1802987, message = "Stop! I only helped the Ashen Shadow Revolutionaries for a little!") public static NpcStringId STOP_I_ONLY_HELPED_THE_ASHEN_SHADOW_REVOLUTIONARIES_FOR_A_LITTLE; - @ClientString(id = 1802988, message = "Ashen Shadow Revolutionaries! Keep the formation! ") + @ClientString(id = 1802988, message = "Ashen Shadow Revolutionaries! Keep the formation!") public static NpcStringId ASHEN_SHADOW_REVOLUTIONARIES_KEEP_THE_FORMATION; - @ClientString(id = 1802989, message = "Ashen Shadow Revolutionaries! Keep the formation! ") + @ClientString(id = 1802989, message = "Ashen Shadow Revolutionaries! Keep the formation!") public static NpcStringId ASHEN_SHADOW_REVOLUTIONARIES_KEEP_THE_FORMATION_2; @ClientString(id = 1802990, message = "Unit 8! Requesting reinforcements!") @@ -33607,13 +35926,13 @@ public final class NpcStringId @ClientString(id = 1803000, message = "All the recruits are to train and follow the sergeants!") public static NpcStringId ALL_THE_RECRUITS_ARE_TO_TRAIN_AND_FOLLOW_THE_SERGEANTS; - @ClientString(id = 1803001, message = "Soldiers, we have guests. Welcome them. ") + @ClientString(id = 1803001, message = "Soldiers, we have guests. Welcome them.") public static NpcStringId SOLDIERS_WE_HAVE_GUESTS_WELCOME_THEM; @ClientString(id = 1803002, message = "Commander Burnstein, there's no need for you to deal with these. I'll take care of them.") public static NpcStringId COMMANDER_BURNSTEIN_THERE_S_NO_NEED_FOR_YOU_TO_DEAL_WITH_THESE_I_LL_TAKE_CARE_OF_THEM; - @ClientString(id = 1803003, message = "I'll show you something interesting. Come to the second floor. ") + @ClientString(id = 1803003, message = "I'll show you something interesting. Come to the second floor.") public static NpcStringId I_LL_SHOW_YOU_SOMETHING_INTERESTING_COME_TO_THE_SECOND_FLOOR; @ClientString(id = 1803004, message = "Stop the infiltrators!") @@ -33622,7 +35941,7 @@ public final class NpcStringId @ClientString(id = 1803005, message = "Don't let a single one leave this place alive!") public static NpcStringId DON_T_LET_A_SINGLE_ONE_LEAVE_THIS_PLACE_ALIVE; - @ClientString(id = 1803006, message = "This is the place where your comrades are reborn as a soldier of Embryo. ") + @ClientString(id = 1803006, message = "This is the place where your comrades are reborn as a soldier of Embryo.") public static NpcStringId THIS_IS_THE_PLACE_WHERE_YOUR_COMRADES_ARE_REBORN_AS_A_SOLDIER_OF_EMBRYO; @ClientString(id = 1803007, message = "Look closely. You might recognize some of them. Let's see if they are ready to become our soldiers.") @@ -33904,7 +36223,7 @@ public final class NpcStringId @ClientString(id = 1803099, message = "Phew.. Those Stakatos.. They shouldn't come out for a while now.") public static NpcStringId PHEW_THOSE_STAKATOS_THEY_SHOULDN_T_COME_OUT_FOR_A_WHILE_NOW; - @ClientString(id = 1803100, message = "A Flame Flower! Can you believe it? It's a very magical flower. ") + @ClientString(id = 1803100, message = "A Flame Flower! Can you believe it? It's a very magical flower.") public static NpcStringId A_FLAME_FLOWER_CAN_YOU_BELIEVE_IT_IT_S_A_VERY_MAGICAL_FLOWER; @ClientString(id = 1803101, message = "To save a Flame Flower.. Yes, you need to use Radiant Heal!") @@ -34084,7 +36403,7 @@ public final class NpcStringId @ClientString(id = 1803159, message = "This power.. I can feel it! Hm? Huh? What's this? Gwahhh!") public static NpcStringId THIS_POWER_I_CAN_FEEL_IT_HM_HUH_WHAT_S_THIS_GWAHHH; - @ClientString(id = 1803160, message = "You are all fighting so hard for me! ") + @ClientString(id = 1803160, message = "You are all fighting so hard for me!") public static NpcStringId YOU_ARE_ALL_FIGHTING_SO_HARD_FOR_ME; @ClientString(id = 1803161, message = "You fools! These treasures are mine! I was just using you all. Kuhaha.") @@ -34204,7 +36523,7 @@ public final class NpcStringId @ClientString(id = 1803199, message = "Should I start? Let's see if we're ready..") public static NpcStringId SHOULD_I_START_LET_S_SEE_IF_WE_RE_READY; - @ClientString(id = 1803200, message = "I'll be starting now, so take a seat. ") + @ClientString(id = 1803200, message = "I'll be starting now, so take a seat.") public static NpcStringId I_LL_BE_STARTING_NOW_SO_TAKE_A_SEAT; @ClientString(id = 1803201, message = "Which story do you want to hear?") @@ -34342,13 +36661,13 @@ public final class NpcStringId @ClientString(id = 1803245, message = "Please get rid of all the Flame Scarabs!") public static NpcStringId PLEASE_GET_RID_OF_ALL_THE_FLAME_SCARABS; - @ClientString(id = 1803246, message = "A Sealed Tablet, huh.. ") + @ClientString(id = 1803246, message = "A Sealed Tablet, huh..") public static NpcStringId A_SEALED_TABLET_HUH; @ClientString(id = 1803247, message = "It looks like something will happen if we attack the Sealed Tablet.") public static NpcStringId IT_LOOKS_LIKE_SOMETHING_WILL_HAPPEN_IF_WE_ATTACK_THE_SEALED_TABLET; - @ClientString(id = 1803248, message = "Who would have thought there would be a secret region like this! Please! After you. ") + @ClientString(id = 1803248, message = "Who would have thought there would be a secret region like this! Please! After you.") public static NpcStringId WHO_WOULD_HAVE_THOUGHT_THERE_WOULD_BE_A_SECRET_REGION_LIKE_THIS_PLEASE_AFTER_YOU; @ClientString(id = 1803249, message = "I'll follow you soon. Go on ahead.") @@ -34459,8 +36778,8 @@ public final class NpcStringId @ClientString(id = 1803284, message = "Relic Guardian who has responded to $s1") public static NpcStringId RELIC_GUARDIAN_WHO_HAS_RESPONDED_TO_S1; - @ClientString(id = 1803285, message = "Shaqrima Bathus responds to attacks from party members who have a faction level of 4 or higher with the Giant Trackers.") - public static NpcStringId SHAQRIMA_BATHUS_RESPONDS_TO_ATTACKS_FROM_PARTY_MEMBERS_WHO_HAVE_A_FACTION_LEVEL_OF_4_OR_HIGHER_WITH_THE_GIANT_TRACKERS; + @ClientString(id = 1803285, message = "Shaqrima Bathus responds to attacks from party members who have a Amity Level of 4 or higher with the Giant Trackers.") + public static NpcStringId SHAQRIMA_BATHUS_RESPONDS_TO_ATTACKS_FROM_PARTY_MEMBERS_WHO_HAVE_A_AMITY_LEVEL_OF_4_OR_HIGHER_WITH_THE_GIANT_TRACKERS; @ClientString(id = 1803286, message = "The warrior $s1 has obtained an Enchant Scroll from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_FROM_THE_DIMENSION_DISSOLVER; @@ -34471,17 +36790,17 @@ public final class NpcStringId @ClientString(id = 1803288, message = "The warrior $s1 has obtained an Enchant Scroll and Soul Crystal from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_SOUL_CRYSTAL_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803289, message = "The warrior $s1 has obtained an Enchant Scroll and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803289, message = "The warrior $s1 has obtained an Enchant Scroll and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803290, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and all R99 Amaranthine Weapons from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_ALL_R99_AMARANTHINE_WEAPONS_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803290, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and all R99 Helios Weapons from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_ALL_R99_HELIOS_WEAPONS_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803291, message = "The warrior $s1 has obtained an Enchant Scroll, a Soul Crystal, and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_SOUL_CRYSTAL_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803291, message = "The warrior $s1 has obtained an Enchant Scroll, a Soul Crystal, and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_SOUL_CRYSTAL_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; - @ClientString(id = 1803292, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and an R99 Amaranthine Weapon from the Dimension Dissolver.") - public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_AN_R99_AMARANTHINE_WEAPON_FROM_THE_DIMENSION_DISSOLVER; + @ClientString(id = 1803292, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv. 5 Dye, and an R99 Helios Weapon from the Dimension Dissolver.") + public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_AN_R99_HELIOS_WEAPON_FROM_THE_DIMENSION_DISSOLVER; @ClientString(id = 1803293, message = "The warrior $s1 has obtained an Enchant Scroll, a Lv.5 Dye, and a Soul Crystal from the Dimension Dissolver.") public static NpcStringId THE_WARRIOR_S1_HAS_OBTAINED_AN_ENCHANT_SCROLL_A_LV_5_DYE_AND_A_SOUL_CRYSTAL_FROM_THE_DIMENSION_DISSOLVER; @@ -34627,8 +36946,8 @@ public final class NpcStringId @ClientString(id = 1803341, message = "The enemy committed all their reserves... We won't be able to hold out for long!") public static NpcStringId THE_ENEMY_COMMITTED_ALL_THEIR_RESERVES_WE_WON_T_BE_ABLE_TO_HOLD_OUT_FOR_LONG; - @ClientString(id = 1803342, message = "Lord Leona! Lord Leona!") - public static NpcStringId LORD_LEONA_LORD_LEONA; + @ClientString(id = 1803342, message = "Lady Leona! Lady Leona!") + public static NpcStringId LADY_LEONA_LADY_LEONA; @ClientString(id = 1803343, message = "We have no choice, then. We have to trust the heroes and move to the outer castle!") public static NpcStringId WE_HAVE_NO_CHOICE_THEN_WE_HAVE_TO_TRUST_THE_HEROES_AND_MOVE_TO_THE_OUTER_CASTLE; @@ -34663,8 +36982,8 @@ public final class NpcStringId @ClientString(id = 1803353, message = "Hush! Don't speak that name!") public static NpcStringId HUSH_DON_T_SPEAK_THAT_NAME; - @ClientString(id = 1803354, message = "Lord Leona!") - public static NpcStringId LORD_LEONA; + @ClientString(id = 1803354, message = "Lady Leona!") + public static NpcStringId LADY_LEONA; @ClientString(id = 1803355, message = "Enemies are fighting back hard! Be prepared!") public static NpcStringId ENEMIES_ARE_FIGHTING_BACK_HARD_BE_PREPARED; @@ -34759,6 +37078,648 @@ public final class NpcStringId @ClientString(id = 1803385, message = "Impede them so that the Defense Battery can't be activated!") public static NpcStringId IMPEDE_THEM_SO_THAT_THE_DEFENSE_BATTERY_CAN_T_BE_ACTIVATED; + @ClientString(id = 1803386, message = "The 33333 Event is on! The user who lands the 33333rd hit on Dandy will hit the jackpot!") + public static NpcStringId THE_33333_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_33333RD_HIT_ON_DANDY_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803387, message = "The 77777 Event is on! The user who lands the 77777th hit on Super Cat will hit the jackpot!") + public static NpcStringId THE_77777_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_77777TH_HIT_ON_SUPER_CAT_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803388, message = "The 77777 Event is on! The user who lands the 77777th hit on the Dancing Bard will hit the jackpot!") + public static NpcStringId THE_77777_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_77777TH_HIT_ON_THE_DANCING_BARD_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803389, message = "The 33333 Event is on! The user who lands the 33333rd hit on Dandy will hit the jackpot!") + public static NpcStringId THE_33333_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_33333RD_HIT_ON_DANDY_WILL_HIT_THE_JACKPOT_2; + + @ClientString(id = 1803390, message = "The 99999 Event is on! The user who lands the 99999th hit on Snowman will hit the jackpot!") + public static NpcStringId THE_99999_EVENT_IS_ON_THE_USER_WHO_LANDS_THE_99999TH_HIT_ON_SNOWMAN_WILL_HIT_THE_JACKPOT; + + @ClientString(id = 1803391, message = "3 seconds") + public static NpcStringId THREE_SECONDS; + + @ClientString(id = 1803392, message = "2 seconds") + public static NpcStringId TWO_SECONDS; + + @ClientString(id = 1803393, message = "1 second") + public static NpcStringId ONE_SECOND; + + @ClientString(id = 1803394, message = "Start!!") + public static NpcStringId START_2; + + @ClientString(id = 1803395, message = "The winner of this event is $s1. Congratulations!") + public static NpcStringId THE_WINNER_OF_THIS_EVENT_IS_S1_CONGRATULATIONS; + + @ClientString(id = 1803396, message = "Has been hit $s1 times.") + public static NpcStringId HAS_BEEN_HIT_S1_TIMES; + + @ClientString(id = 1803397, message = "There's no time to hesitate! Hurry and follow me.") + public static NpcStringId THERE_S_NO_TIME_TO_HESITATE_HURRY_AND_FOLLOW_ME; + + @ClientString(id = 1803398, message = "This is a dangerous place, but just trust me!") + public static NpcStringId THIS_IS_A_DANGEROUS_PLACE_BUT_JUST_TRUST_ME; + + @ClientString(id = 1803399, message = "Even if I'm here with you, you shouldn't let up on your attacks.") + public static NpcStringId EVEN_IF_I_M_HERE_WITH_YOU_YOU_SHOULDN_T_LET_UP_ON_YOUR_ATTACKS; + + @ClientString(id = 1803400, message = "Here! Hurry and attack!") + public static NpcStringId HERE_HURRY_AND_ATTACK; + + @ClientString(id = 1803401, message = "Be aware of your surroundings.") + public static NpcStringId BE_AWARE_OF_YOUR_SURROUNDINGS; + + @ClientString(id = 1803402, message = "Since we work great together, we'll do well.") + public static NpcStringId SINCE_WE_WORK_GREAT_TOGETHER_WE_LL_DO_WELL; + + @ClientString(id = 1803403, message = "We're good friends, aren't we?") + public static NpcStringId WE_RE_GOOD_FRIENDS_AREN_T_WE; + + @ClientString(id = 1803404, message = "I heard that Spicula Zero is dangerous. We'd better be careful.") + public static NpcStringId I_HEARD_THAT_SPICULA_ZERO_IS_DANGEROUS_WE_D_BETTER_BE_CAREFUL; + + @ClientString(id = 1803405, message = "I'll show you the results of my training, so look forward to it!") + public static NpcStringId I_LL_SHOW_YOU_THE_RESULTS_OF_MY_TRAINING_SO_LOOK_FORWARD_TO_IT; + + @ClientString(id = 1803406, message = "See? There's nothing you and I can't do when we're together!") + public static NpcStringId SEE_THERE_S_NOTHING_YOU_AND_I_CAN_T_DO_WHEN_WE_RE_TOGETHER; + + @ClientString(id = 1803407, message = "The challenge for the Throne of Heroes will begin shortly. Please get ready.") + public static NpcStringId THE_CHALLENGE_FOR_THE_THRONE_OF_HEROES_WILL_BEGIN_SHORTLY_PLEASE_GET_READY; + + @ClientString(id = 1803408, message = "The first challenge will begin in 10 seconds.") + public static NpcStringId THE_FIRST_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803409, message = "5 seconds") + public static NpcStringId FIVE_SECONDS; + + @ClientString(id = 1803410, message = "4 seconds") + public static NpcStringId FOUR_SECONDS; + + @ClientString(id = 1803411, message = "3 seconds") + public static NpcStringId THREE_SECONDS_2; + + @ClientString(id = 1803412, message = "2 seconds") + public static NpcStringId TWO_SECONDS_2; + + @ClientString(id = 1803413, message = "1 second") + public static NpcStringId ONE_SECOND_2; + + @ClientString(id = 1803414, message = "The first challenge begins.") + public static NpcStringId THE_FIRST_CHALLENGE_BEGINS; + + @ClientString(id = 1803415, message = "Darion frees himself from the restraints that suppressed him and reveals his true power.") + public static NpcStringId DARION_FREES_HIMSELF_FROM_THE_RESTRAINTS_THAT_SUPPRESSED_HIM_AND_REVEALS_HIS_TRUE_POWER; + + @ClientString(id = 1803416, message = "The first challenge has been completed successfully. The second challenge will begin shortly.") + public static NpcStringId THE_FIRST_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY_THE_SECOND_CHALLENGE_WILL_BEGIN_SHORTLY; + + @ClientString(id = 1803417, message = "The second challenge will begin in 10 seconds.") + public static NpcStringId THE_SECOND_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803418, message = "The second challenge will begin.") + public static NpcStringId THE_SECOND_CHALLENGE_WILL_BEGIN; + + @ClientString(id = 1803419, message = "Goldberg will summon his minions in 5 seconds.") + public static NpcStringId GOLDBERG_WILL_SUMMON_HIS_MINIONS_IN_5_SECONDS; + + @ClientString(id = 1803420, message = "Goldberg brings out all of the power within him.") + public static NpcStringId GOLDBERG_BRINGS_OUT_ALL_OF_THE_POWER_WITHIN_HIM; + + @ClientString(id = 1803421, message = "The second challenge has been completed successfully. The third challenge will begin shortly.") + public static NpcStringId THE_SECOND_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY_THE_THIRD_CHALLENGE_WILL_BEGIN_SHORTLY; + + @ClientString(id = 1803422, message = "The third challenge will begin in 10 seconds.") + public static NpcStringId THE_THIRD_CHALLENGE_WILL_BEGIN_IN_10_SECONDS; + + @ClientString(id = 1803423, message = "The third challenge will begin.") + public static NpcStringId THE_THIRD_CHALLENGE_WILL_BEGIN; + + @ClientString(id = 1803424, message = "The third challenge has been completed successfully. The fourth challenge will begin in a moment.") + public static NpcStringId THE_THIRD_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY_THE_FOURTH_CHALLENGE_WILL_BEGIN_IN_A_MOMENT; + + @ClientString(id = 1803425, message = "Zaken summons monsters from another world.") + public static NpcStringId ZAKEN_SUMMONS_MONSTERS_FROM_ANOTHER_WORLD; + + @ClientString(id = 1803426, message = "Your blood is mine!") + public static NpcStringId YOUR_BLOOD_IS_MINE; + + @ClientString(id = 1803427, message = "Cowards, you can't even approach me. Behold my power.") + public static NpcStringId COWARDS_YOU_CAN_T_EVEN_APPROACH_ME_BEHOLD_MY_POWER; + + @ClientString(id = 1803428, message = "Zaken reveals his hidden power.") + public static NpcStringId ZAKEN_REVEALS_HIS_HIDDEN_POWER; + + @ClientString(id = 1803429, message = "Tiat summons his minions.") + public static NpcStringId TIAT_SUMMONS_HIS_MINIONS; + + @ClientString(id = 1803430, message = "Tiat reveals his dignity.") + public static NpcStringId TIAT_REVEALS_HIS_DIGNITY; + + @ClientString(id = 1803431, message = "Tauti summons his mechanical contraption.") + public static NpcStringId TAUTI_SUMMONS_HIS_MECHANICAL_CONTRAPTION; + + @ClientString(id = 1803432, message = "Tauti intends to show off his power to his followers.") + public static NpcStringId TAUTI_INTENDS_TO_SHOW_OFF_HIS_POWER_TO_HIS_FOLLOWERS; + + @ClientString(id = 1803433, message = "Tauti intends to show off his power to those who avoid him.") + public static NpcStringId TAUTI_INTENDS_TO_SHOW_OFF_HIS_POWER_TO_THOSE_WHO_AVOID_HIM; + + @ClientString(id = 1803434, message = "Antharas has disappeared inside his nest for recovery.") + public static NpcStringId ANTHARAS_HAS_DISAPPEARED_INSIDE_HIS_NEST_FOR_RECOVERY; + + @ClientString(id = 1803435, message = "Press Alt + K to open the Skill window.\\nYou can add the skills in the 'Active' tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NYOU_CAN_ADD_THE_SKILLS_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803436, message = "Are you looking for the captain? Follow this path, go up the stairs and turn left. Ah, but I recommend you see Kale first.") + public static NpcStringId ARE_YOU_LOOKING_FOR_THE_CAPTAIN_FOLLOW_THIS_PATH_GO_UP_THE_STAIRS_AND_TURN_LEFT_AH_BUT_I_RECOMMEND_YOU_SEE_KALE_FIRST; + + @ClientString(id = 1803437, message = "Hurry and return after reporting to Captain Stig Mach! Just go up the stairs next to me.") + public static NpcStringId HURRY_AND_RETURN_AFTER_REPORTING_TO_CAPTAIN_STIG_MACH_JUST_GO_UP_THE_STAIRS_NEXT_TO_ME; + + @ClientString(id = 1803438, message = "Talk to the Monk of Chaos.\\nYou can learn about the Revelation skills.") + public static NpcStringId TALK_TO_THE_MONK_OF_CHAOS_NYOU_CAN_LEARN_ABOUT_THE_REVELATION_SKILLS; + + @ClientString(id = 1803439, message = "Talk to Balthus Knight Captain Stig Mach again.") + public static NpcStringId TALK_TO_BALTHUS_KNIGHT_CAPTAIN_STIG_MACH_AGAIN; + + @ClientString(id = 1803440, message = "Talk to Hatchling Manager McCoy again.") + public static NpcStringId TALK_TO_HATCHLING_MANAGER_MCCOY_AGAIN; + + @ClientString(id = 1803441, message = "Go find and talk to Balthus Knight Camcud.") + public static NpcStringId GO_FIND_AND_TALK_TO_BALTHUS_KNIGHT_CAMCUD; + + @ClientString(id = 1803442, message = "Go find and talk to Balthus Knight Sibi.") + public static NpcStringId GO_FIND_AND_TALK_TO_BALTHUS_KNIGHT_SIBI; + + @ClientString(id = 1803443, message = "Go find and talk to Tarti.") + public static NpcStringId GO_FIND_AND_TALK_TO_TARTI; + + @ClientString(id = 1803444, message = "Go up the stairs to the 2nd floor and\\ntalk to Balthus Knight Captain Stig Mach.") + public static NpcStringId GO_UP_THE_STAIRS_TO_THE_2ND_FLOOR_AND_NTALK_TO_BALTHUS_KNIGHT_CAPTAIN_STIG_MACH; + + @ClientString(id = 1803445, message = "Open your inventory and double-click the Balthus Knight Supply Box\\nto check the Beast Soulshots.") + public static NpcStringId OPEN_YOUR_INVENTORY_AND_DOUBLE_CLICK_THE_BALTHUS_KNIGHT_SUPPLY_BOX_NTO_CHECK_THE_BEAST_SOULSHOTS; + + @ClientString(id = 1803446, message = "Learn 2 Revelation skills and talk to the Monk of Chaos again.") + public static NpcStringId LEARN_2_REVELATION_SKILLS_AND_TALK_TO_THE_MONK_OF_CHAOS_AGAIN; + + @ClientString(id = 1803447, message = "Antharas' CON has decreased.") + public static NpcStringId ANTHARAS_CON_HAS_DECREASED; + + @ClientString(id = 1803448, message = "Antharas has suffered critical injuries.") + public static NpcStringId ANTHARAS_HAS_SUFFERED_CRITICAL_INJURIES; + + @ClientString(id = 1803449, message = "Mary Reed summons her minions.") + public static NpcStringId MARY_REED_SUMMONS_HER_MINIONS; + + @ClientString(id = 1803450, message = "Mary Reed reveals her true power.") + public static NpcStringId MARY_REED_REVEALS_HER_TRUE_POWER; + + @ClientString(id = 1803451, message = "Antharas has appeared.") + public static NpcStringId ANTHARAS_HAS_APPEARED; + + @ClientString(id = 1803452, message = "At last, Antharas is here!") + public static NpcStringId AT_LAST_ANTHARAS_IS_HERE; + + @ClientString(id = 1803453, message = "Now, it's time for us to shine!") + public static NpcStringId NOW_IT_S_TIME_FOR_US_TO_SHINE; + + @ClientString(id = 1803454, message = "As there hasn't been a boss battle for some time, the Throne of Heroes will end shortly.") + public static NpcStringId AS_THERE_HASN_T_BEEN_A_BOSS_BATTLE_FOR_SOME_TIME_THE_THRONE_OF_HEROES_WILL_END_SHORTLY; + + @ClientString(id = 1803455, message = "Injured comrades have retreated,\\nand Herphah has arrived with new reinforcements.") + public static NpcStringId INJURED_COMRADES_HAVE_RETREATED_NAND_HERPHAH_HAS_ARRIVED_WITH_NEW_REINFORCEMENTS; + + @ClientString(id = 1803456, message = "I won't let some Gem Dragon defeat me!") + public static NpcStringId I_WON_T_LET_SOME_GEM_DRAGON_DEFEAT_ME; + + @ClientString(id = 1803457, message = "What in the world is going on here?!") + public static NpcStringId WHAT_IN_THE_WORLD_IS_GOING_ON_HERE; + + @ClientString(id = 1803458, message = "Press Alt + K to open the Skill window\\nand add Hydro Attack in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_HYDRO_ATTACK_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803459, message = "Press Alt + K to open the Skill window\\nand add Elemental Spike in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_ELEMENTAL_SPIKE_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803460, message = "Press Alt + K to open the Skill window\\nand add Dark Blast in the Active tab to the Shortcuts.") + public static NpcStringId PRESS_ALT_K_TO_OPEN_THE_SKILL_WINDOW_NAND_ADD_DARK_BLAST_IN_THE_ACTIVE_TAB_TO_THE_SHORTCUTS; + + @ClientString(id = 1803461, message = "Use a skill on the Gem Dragon.") + public static NpcStringId USE_A_SKILL_ON_THE_GEM_DRAGON; + + @ClientString(id = 1803462, message = "Antharas summons Hatchlings.") + public static NpcStringId ANTHARAS_SUMMONS_HATCHLINGS; + + @ClientString(id = 1803463, message = "Antharas summons Gem Dragons.") + public static NpcStringId ANTHARAS_SUMMONS_GEM_DRAGONS; + + @ClientString(id = 1803464, message = "Talk to Hatchling Manager McCoy.") + public static NpcStringId TALK_TO_HATCHLING_MANAGER_MCCOY; + + @ClientString(id = 1803465, message = "Equip the armor obtained from Paulina's Heavy Armor Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_FROM_PAULINA_S_HEAVY_ARMOR_BOX; + + @ClientString(id = 1803466, message = "Equip the armor obtained from Paulina's Light Armor Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_FROM_PAULINA_S_LIGHT_ARMOR_BOX; + + @ClientString(id = 1803467, message = "Equip the armor obtained from Paulina's Robe Box.") + public static NpcStringId EQUIP_THE_ARMOR_OBTAINED_FROM_PAULINA_S_ROBE_BOX; + + @ClientString(id = 1803468, message = "Other comrades have returned first to recover.") + public static NpcStringId OTHER_COMRADES_HAVE_RETURNED_FIRST_TO_RECOVER; + + @ClientString(id = 1803469, message = "Antharas summons young dragons.") + public static NpcStringId ANTHARAS_SUMMONS_YOUNG_DRAGONS; + + @ClientString(id = 1803470, message = "Antharas summons Hatchling Bombers.") + public static NpcStringId ANTHARAS_SUMMONS_HATCHLING_BOMBERS; + + @ClientString(id = 1803471, message = "Press Alt + K to check Summon Cute Bear and Summon Saber Tooth Cougar, then use the skills\\nto continue the battle using Servitors.") + public static NpcStringId PRESS_ALT_K_TO_CHECK_SUMMON_CUTE_BEAR_AND_SUMMON_SABER_TOOTH_COUGAR_THEN_USE_THE_SKILLS_NTO_CONTINUE_THE_BATTLE_USING_SERVITORS; + + @ClientString(id = 1803472, message = "Double-click a Servitor to give it orders.") + public static NpcStringId DOUBLE_CLICK_A_SERVITOR_TO_GIVE_IT_ORDERS; + + @ClientString(id = 1803473, message = "Attack a Hatchling.") + public static NpcStringId ATTACK_A_HATCHLING; + + @ClientString(id = 1803503, message = "The cannon is sealed") + public static NpcStringId THE_CANNON_IS_SEALED; + + @ClientString(id = 1803504, message = "The Prison Warden is dead and the cannon in the sector is activated.") + public static NpcStringId THE_PRISON_WARDEN_IS_DEAD_AND_THE_CANNON_IN_THE_SECTOR_IS_ACTIVATED; + + @ClientString(id = 1803505, message = "All Prison Wardens are dead and Spezion is released from his seal.") + public static NpcStringId ALL_PRISON_WARDENS_ARE_DEAD_AND_SPEZION_IS_RELEASED_FROM_HIS_SEAL; + + @ClientString(id = 1803506, message = "Spezion recalls his clones and brings out his true power.") + public static NpcStringId SPEZION_RECALLS_HIS_CLONES_AND_BRINGS_OUT_HIS_TRUE_POWER; + + @ClientString(id = 1803507, message = "$s1 has gained a Cannonball of Despair.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_DESPAIR; + + @ClientString(id = 1803508, message = "$s1 has gained a Cannonball of Rage.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_RAGE; + + @ClientString(id = 1803509, message = "$s1 has gained a Cannonball of Lunacy.") + public static NpcStringId S1_HAS_GAINED_A_CANNONBALL_OF_LUNACY; + + @ClientString(id = 1803510, message = "Spezion's invincibility has been fallen for 1 minute and 30 seconds.") + public static NpcStringId SPEZION_S_INVINCIBILITY_HAS_BEEN_FALLEN_FOR_1_MINUTE_AND_30_SECONDS; + + @ClientString(id = 1803511, message = "Spezion is engulfed in the Memories of Despair.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_DESPAIR; + + @ClientString(id = 1803512, message = "Spezion is engulfed in the Memories of Lunacy.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_LUNACY; + + @ClientString(id = 1803513, message = "Spezion is engulfed in the Memories of Rage.") + public static NpcStringId SPEZION_IS_ENGULFED_IN_THE_MEMORIES_OF_RAGE; + + @ClientString(id = 1803514, message = "The 33333 Event is on!\\nLand the 33333rd hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_33333_EVENT_IS_ON_NLAND_THE_33333RD_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803515, message = "The 77777 Event is on!\\nLand the 77777th hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_77777_EVENT_IS_ON_NLAND_THE_77777TH_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803516, message = "The 99999 Event is on!\\nLand the 99999th hit on the raid boss to receive amazing rewards!") + public static NpcStringId THE_99999_EVENT_IS_ON_NLAND_THE_99999TH_HIT_ON_THE_RAID_BOSS_TO_RECEIVE_AMAZING_REWARDS; + + @ClientString(id = 1803517, message = "$s1 uses the clone generator to summon the elite guards.") + public static NpcStringId S1_USES_THE_CLONE_GENERATOR_TO_SUMMON_THE_ELITE_GUARDS; + + @ClientString(id = 1803518, message = "$s1 has been refused entry. Required quests have not been completed.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_REQUIRED_QUESTS_HAVE_NOT_BEEN_COMPLETED; + + @ClientString(id = 1803519, message = "$s1 has reached +20 Enchantment Level and gained a Sayha Talisman - Stage 9 Box.") + public static NpcStringId S1_HAS_REACHED_20_ENCHANTMENT_LEVEL_AND_GAINED_A_SAYHA_TALISMAN_STAGE_9_BOX; + + @ClientString(id = 1803520, message = "$s1 has reached +21 Enchantment Level and gained a +16 Bloody Helios Weapon.") + public static NpcStringId S1_HAS_REACHED_21_ENCHANTMENT_LEVEL_AND_GAINED_A_16_BLOODY_HELIOS_WEAPON; + + @ClientString(id = 1803521, message = "$s1 has reached +22 Enchantment Level and gained a +18 Bloody Helios Weapon.") + public static NpcStringId S1_HAS_REACHED_22_ENCHANTMENT_LEVEL_AND_GAINED_A_18_BLOODY_HELIOS_WEAPON; + + @ClientString(id = 1803522, message = "$s1 has reached +23 Enchantment Level and gained a Rare Accessory Box.") + public static NpcStringId S1_HAS_REACHED_23_ENCHANTMENT_LEVEL_AND_GAINED_A_RARE_ACCESSORY_BOX; + + @ClientString(id = 1803523, message = "$s1 has reached +24 Enchantment Level and gained a Dragons Klaus Fragment.") + public static NpcStringId S1_HAS_REACHED_24_ENCHANTMENT_LEVEL_AND_GAINED_A_DRAGONS_KLAUS_FRAGMENT; + + @ClientString(id = 1803524, message = "$s1 has reached +25 Enchantment Level and gained a Dragons Klaus Standard.") + public static NpcStringId S1_HAS_REACHED_25_ENCHANTMENT_LEVEL_AND_GAINED_A_DRAGONS_KLAUS_STANDARD; + + @ClientString(id = 1803525, message = "Talk to Leona Blackbird.") + public static NpcStringId TALK_TO_LEONA_BLACKBIRD_11; + + @ClientString(id = 1803526, message = "You can't defeat Paragon while Paragon's minions are alive.") + public static NpcStringId YOU_CAN_T_DEFEAT_PARAGON_WHILE_PARAGON_S_MINIONS_ARE_ALIVE; + + @ClientString(id = 1803527, message = "The Seal of Gnosis is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_GNOSIS_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803528, message = "The Seal of Strife is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_STRIFE_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803529, message = "The Seal of Avarice is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_AVARICE_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803530, message = "The Seal of Punishment is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_PUNISHMENT_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803531, message = "The Seal of Awakening is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_AWAKENING_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803532, message = "The Seal of Calamity is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_CALAMITY_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803533, message = "The Seal of Destruction is activated and power is flowing out.") + public static NpcStringId THE_SEAL_OF_DESTRUCTION_IS_ACTIVATED_AND_POWER_IS_FLOWING_OUT; + + @ClientString(id = 1803534, message = "Etis van Etina and the power of seven seals are weakening.") + public static NpcStringId ETIS_VAN_ETINA_AND_THE_POWER_OF_SEVEN_SEALS_ARE_WEAKENING; + + @ClientString(id = 1803535, message = "Alright, let's go defeat Etis van Etina.") + public static NpcStringId ALRIGHT_LET_S_GO_DEFEAT_ETIS_VAN_ETINA; + + @ClientString(id = 1803536, message = "Don't get in my way!") + public static NpcStringId DON_T_GET_IN_MY_WAY; + + @ClientString(id = 1803537, message = "Today is the day that I will enter!") + public static NpcStringId TODAY_IS_THE_DAY_THAT_I_WILL_ENTER; + + @ClientString(id = 1803538, message = "We've cleared a hurdle. Now we can reach Etina.") + public static NpcStringId WE_VE_CLEARED_A_HURDLE_NOW_WE_CAN_REACH_ETINA; + + @ClientString(id = 1803539, message = "Giselle...? No, is she Camille in that state?") + public static NpcStringId GISELLE_NO_IS_SHE_CAMILLE_IN_THAT_STATE; + + @ClientString(id = 1803540, message = "Kain is our enemy now. Be on guard!") + public static NpcStringId KAIN_IS_OUR_ENEMY_NOW_BE_ON_GUARD; + + @ClientString(id = 1803541, message = "Kain, I won't feel guilty about this.") + public static NpcStringId KAIN_I_WON_T_FEEL_GUILTY_ABOUT_THIS; + + @ClientString(id = 1803542, message = "Etis van Etina! We finally meet.") + public static NpcStringId ETIS_VAN_ETINA_WE_FINALLY_MEET; + + @ClientString(id = 1803543, message = "Even the mighty Etina seems to fear us.") + public static NpcStringId EVEN_THE_MIGHTY_ETINA_SEEMS_TO_FEAR_US; + + @ClientString(id = 1803544, message = "Rage against all that stands in our way!") + public static NpcStringId RAGE_AGAINST_ALL_THAT_STANDS_IN_OUR_WAY; + + @ClientString(id = 1803545, message = "Etis van Etina approaches.") + public static NpcStringId ETIS_VAN_ETINA_APPROACHES; + + @ClientString(id = 1803546, message = "Etis van Etina and his Apostles have appeared.") + public static NpcStringId ETIS_VAN_ETINA_AND_HIS_APOSTLES_HAVE_APPEARED; + + @ClientString(id = 1803547, message = "Behold the power of the Ivory Tower Wizards!") + public static NpcStringId BEHOLD_THE_POWER_OF_THE_IVORY_TOWER_WIZARDS; + + @ClientString(id = 1803548, message = "Etis van Etina summons his Apostles' minions.") + public static NpcStringId ETIS_VAN_ETINA_SUMMONS_HIS_APOSTLES_MINIONS; + + @ClientString(id = 1803549, message = "$s1 has found 'Atelia Energy', which can take you to the Dark Atelia Outlet.") + public static NpcStringId S1_HAS_FOUND_ATELIA_ENERGY_WHICH_CAN_TAKE_YOU_TO_THE_DARK_ATELIA_OUTLET; + + @ClientString(id = 1803550, message = "Aliber is casting a spell to destroy the barricade.") + public static NpcStringId ALIBER_IS_CASTING_A_SPELL_TO_DESTROY_THE_BARRICADE; + + @ClientString(id = 1803551, message = "In the end, we have won.") + public static NpcStringId IN_THE_END_WE_HAVE_WON; + + @ClientString(id = 1803552, message = "Watch, the furnaces will light up.") + public static NpcStringId WATCH_THE_FURNACES_WILL_LIGHT_UP; + + @ClientString(id = 1803553, message = "Around a minute left!") + public static NpcStringId AROUND_A_MINUTE_LEFT; + + @ClientString(id = 1803554, message = "Just 10 seconds left!") + public static NpcStringId JUST_10_SECONDS_LEFT; + + @ClientString(id = 1803555, message = "Now, light the furnaces in the correct order.") + public static NpcStringId NOW_LIGHT_THE_FURNACES_IN_THE_CORRECT_ORDER; + + @ClientString(id = 1803556, message = "Too late, time has run out. Maybe next time.") + public static NpcStringId TOO_LATE_TIME_HAS_RUN_OUT_MAYBE_NEXT_TIME; + + @ClientString(id = 1803557, message = "Oh, you succeeded! That was amazing.") + public static NpcStringId OH_YOU_SUCCEEDED_THAT_WAS_AMAZING; + + @ClientString(id = 1803558, message = "Ah, you failed? Don't worry, you can try again.") + public static NpcStringId AH_YOU_FAILED_DON_T_WORRY_YOU_CAN_TRY_AGAIN; + + @ClientString(id = 1803559, message = "Ah, you failed. Maybe next time.") + public static NpcStringId AH_YOU_FAILED_MAYBE_NEXT_TIME; + + @ClientString(id = 1803560, message = "Furnace of Balance") + public static NpcStringId FURNACE_OF_BALANCE; + + @ClientString(id = 1803561, message = "Furnace of Protection") + public static NpcStringId FURNACE_OF_PROTECTION; + + @ClientString(id = 1803562, message = "Furnace of Fighting Spirit") + public static NpcStringId FURNACE_OF_FIGHTING_SPIRIT; + + @ClientString(id = 1803563, message = "Furnace of Magic") + public static NpcStringId FURNACE_OF_MAGIC; + + @ClientString(id = 1803564, message = "Divine energy is starting to rise.") + public static NpcStringId DIVINE_ENERGY_IS_STARTING_TO_RISE; + + @ClientString(id = 1803565, message = "For the glory of Solina!") + public static NpcStringId FOR_THE_GLORY_OF_SOLINA; + + @ClientString(id = 1803566, message = "Punish all who have set foot in this place.") + public static NpcStringId PUNISH_ALL_WHO_HAVE_SET_FOOT_IN_THIS_PLACE; + + @ClientString(id = 1803567, message = "We are the blades of Truth, the swords of Solina.") + public static NpcStringId WE_ARE_THE_BLADES_OF_TRUTH_THE_SWORDS_OF_SOLINA; + + @ClientString(id = 1803568, message = "Raise your sword for the glory of Solina.") + public static NpcStringId RAISE_YOUR_SWORD_FOR_THE_GLORY_OF_SOLINA; + + @ClientString(id = 1803569, message = "For the glory of Solina!") + public static NpcStringId FOR_THE_GLORY_OF_SOLINA_2; + + @ClientString(id = 1803570, message = "Hey, don't go too fast.") + public static NpcStringId HEY_DON_T_GO_TOO_FAST; + + @ClientString(id = 1803571, message = "It's hard for me to keep up.") + public static NpcStringId IT_S_HARD_FOR_ME_TO_KEEP_UP; + + @ClientString(id = 1803572, message = "Huff huff, you're too fast, I can't follow you anymore.") + public static NpcStringId HUFF_HUFF_YOU_RE_TOO_FAST_I_CAN_T_FOLLOW_YOU_ANYMORE; + + @ClientString(id = 1803573, message = "Ah... I think I remember this place!") + public static NpcStringId AH_I_THINK_I_REMEMBER_THIS_PLACE; + + @ClientString(id = 1803574, message = "Ah! Fresh air!") + public static NpcStringId AH_FRESH_AIR; + + @ClientString(id = 1803575, message = "What were you doing here, adventurer?") + public static NpcStringId WHAT_WERE_YOU_DOING_HERE_ADVENTURER; + + @ClientString(id = 1803576, message = "Aren't you a quiet one. Wait, are you after treasures like me?") + public static NpcStringId AREN_T_YOU_A_QUIET_ONE_WAIT_ARE_YOU_AFTER_TREASURES_LIKE_ME; + + @ClientString(id = 1803577, message = "Devianne") + public static NpcStringId DEVIANNE; + + @ClientString(id = 1803578, message = "Nevit") + public static NpcStringId NEVIT; + + @ClientString(id = 1803579, message = "Cara") + public static NpcStringId CARA; + + @ClientString(id = 1803580, message = "Tersi") + public static NpcStringId TERSI; + + @ClientString(id = 1803581, message = "Bremnon") + public static NpcStringId BREMNON; + + @ClientString(id = 1803582, message = "Lionel") + public static NpcStringId LIONEL; + + @ClientString(id = 1803583, message = "Bartz") + public static NpcStringId BARTZ; + + @ClientString(id = 1803584, message = "Sieghardt") + public static NpcStringId SIEGHARDT; + + @ClientString(id = 1803585, message = "Kain van Halter") + public static NpcStringId KAIN_VAN_HALTER; + + @ClientString(id = 1803586, message = "Test Server") + public static NpcStringId TEST_SERVER; + + @ClientString(id = 1803587, message = "Paragon is no longer invincible.") + public static NpcStringId PARAGON_IS_NO_LONGER_INVINCIBLE; + + @ClientString(id = 1803588, message = "Atelia Guardian will disappear in 10 minutes.") + public static NpcStringId ATELIA_GUARDIAN_WILL_DISAPPEAR_IN_10_MINUTES; + + @ClientString(id = 1803589, message = "Atelia Guardian will disappear in 5 minutes.") + public static NpcStringId ATELIA_GUARDIAN_WILL_DISAPPEAR_IN_5_MINUTES; + + @ClientString(id = 1803590, message = "Dark Atelia Energy has been depleted. The Atelia Guardian will disappear.") + public static NpcStringId DARK_ATELIA_ENERGY_HAS_BEEN_DEPLETED_THE_ATELIA_GUARDIAN_WILL_DISAPPEAR; + + @ClientString(id = 1803591, message = "You will be teleported to the inner Atelia Refinery entrance in 5 minutes.") + public static NpcStringId YOU_WILL_BE_TELEPORTED_TO_THE_INNER_ATELIA_REFINERY_ENTRANCE_IN_5_MINUTES; + + @ClientString(id = 1803592, message = "$s1 hasn't received the 1st place reward and is unable to enter.") + public static NpcStringId S1_HASN_T_RECEIVED_THE_1ST_PLACE_REWARD_AND_IS_UNABLE_TO_ENTER; + + @ClientString(id = 1803593, message = "Alpha") + public static NpcStringId ALPHA; + + @ClientString(id = 1803594, message = "Freya uses her power to drop a huge icicle.") + public static NpcStringId FREYA_USES_HER_POWER_TO_DROP_A_HUGE_ICICLE; + + @ClientString(id = 1803595, message = "Minion Randek") + public static NpcStringId MINION_RANDEK; + + @ClientString(id = 1803596, message = "Minion Tybel") + public static NpcStringId MINION_TYBEL; + + @ClientString(id = 1803597, message = "Talk to Support Troop Lieutenant Rash.") + public static NpcStringId TALK_TO_SUPPORT_TROOP_LIEUTENANT_RASH; + + @ClientString(id = 1803598, message = "Talk to Balthus Knight Captain Stig Mach.") + public static NpcStringId TALK_TO_BALTHUS_KNIGHT_CAPTAIN_STIG_MACH; + + @ClientString(id = 1803599, message = "The fourth challenge begins.") + public static NpcStringId THE_FOURTH_CHALLENGE_BEGINS; + + @ClientString(id = 1803600, message = "The fourth challenge has been completed successfully.") + public static NpcStringId THE_FOURTH_CHALLENGE_HAS_BEEN_COMPLETED_SUCCESSFULLY; + + @ClientString(id = 1803601, message = "Ekimus summons his minions.") + public static NpcStringId EKIMUS_SUMMONS_HIS_MINIONS; + + @ClientString(id = 1803602, message = "Ekimus is using all of his powers.") + public static NpcStringId EKIMUS_IS_USING_ALL_OF_HIS_POWERS; + + @ClientString(id = 1803603, message = "You're all fools!") + public static NpcStringId YOU_RE_ALL_FOOLS; + + @ClientString(id = 1803604, message = "You'll regret comparing me to that pathetic Lithra!") + public static NpcStringId YOU_LL_REGRET_COMPARING_ME_TO_THAT_PATHETIC_LITHRA; + + @ClientString(id = 1803605, message = "See who is the true Master of the Floating Sea!") + public static NpcStringId SEE_WHO_IS_THE_TRUE_MASTER_OF_THE_FLOATING_SEA; + + @ClientString(id = 1803606, message = "Creatures! Witness my power!") + public static NpcStringId CREATURES_WITNESS_MY_POWER; + + @ClientString(id = 1803607, message = "I will condemn you all to hell!") + public static NpcStringId I_WILL_CONDEMN_YOU_ALL_TO_HELL; + + @ClientString(id = 1803608, message = "Fools who cannot see the future...") + public static NpcStringId FOOLS_WHO_CANNOT_SEE_THE_FUTURE; + + @ClientString(id = 1803609, message = "You detect Orfen's Handmaidens and the Energy of the Floating Sea.") + public static NpcStringId YOU_DETECT_ORFEN_S_HANDMAIDENS_AND_THE_ENERGY_OF_THE_FLOATING_SEA; + + @ClientString(id = 1803610, message = "An enraged Orfen lifts a cloud of hallucination dust from the ground.") + public static NpcStringId AN_ENRAGED_ORFEN_LIFTS_A_CLOUD_OF_HALLUCINATION_DUST_FROM_THE_GROUND; + + @ClientString(id = 1803611, message = "A Rift of Power has formed on Orfen.") + public static NpcStringId A_RIFT_OF_POWER_HAS_FORMED_ON_ORFEN; + + @ClientString(id = 1803612, message = "Orfen's Handmaidens have appeared to absorb the Energy of the Floating Sea.") + public static NpcStringId ORFEN_S_HANDMAIDENS_HAVE_APPEARED_TO_ABSORB_THE_ENERGY_OF_THE_FLOATING_SEA; + + @ClientString(id = 1803613, message = "Orfen's Handmaidens begin absorbing the Energy of the Floating Sea.\\nYou can gain Vitality by defeating Orfen's Handmaidens before they can finish obtaining the Energy of the Floating Sea.") + public static NpcStringId ORFEN_S_HANDMAIDENS_BEGIN_ABSORBING_THE_ENERGY_OF_THE_FLOATING_SEA_NYOU_CAN_GAIN_VITALITY_BY_DEFEATING_ORFEN_S_HANDMAIDENS_BEFORE_THEY_CAN_FINISH_OBTAINING_THE_ENERGY_OF_THE_FLOATING_SEA; + + @ClientString(id = 1803614, message = "Orfen's Handmaidens have finished absorbing the Energy of the Floating Sea.\\nAs the Energy of the Floating Sea has been absorbed, you can't gain Vitality even if you defeat Orfen's Handmaidens.") + public static NpcStringId ORFEN_S_HANDMAIDENS_HAVE_FINISHED_ABSORBING_THE_ENERGY_OF_THE_FLOATING_SEA_NAS_THE_ENERGY_OF_THE_FLOATING_SEA_HAS_BEEN_ABSORBED_YOU_CAN_T_GAIN_VITALITY_EVEN_IF_YOU_DEFEAT_ORFEN_S_HANDMAIDENS; + + @ClientString(id = 1803615, message = "The dead are rising and starting to attack.") + public static NpcStringId THE_DEAD_ARE_RISING_AND_STARTING_TO_ATTACK; + + @ClientString(id = 1803616, message = "The $s1th dead are rising and starting to attack.") + public static NpcStringId THE_S1TH_DEAD_ARE_RISING_AND_STARTING_TO_ATTACK; + + @ClientString(id = 1803617, message = "Guardian of the Altar Votan awakens.") + public static NpcStringId GUARDIAN_OF_THE_ALTAR_VOTAN_AWAKENS; + + @ClientString(id = 1803618, message = "Death Knight Votan awakens.") + public static NpcStringId DEATH_KNIGHT_VOTAN_AWAKENS; + + @ClientString(id = 1803619, message = "Berserk Death Knight Votan awakens.") + public static NpcStringId BERSERK_DEATH_KNIGHT_VOTAN_AWAKENS; + + @ClientString(id = 1803620, message = "The $s1th dead are rising and starting to attack after Votan's defeat.") + public static NpcStringId THE_S1TH_DEAD_ARE_RISING_AND_STARTING_TO_ATTACK_AFTER_VOTAN_S_DEFEAT; + + @ClientString(id = 1803621, message = "Merkios awakens from his slumber and the altar activates.") + public static NpcStringId MERKIOS_AWAKENS_FROM_HIS_SLUMBER_AND_THE_ALTAR_ACTIVATES; + + @ClientString(id = 1803622, message = "Grand Wizard Merkios awakens and the altar activates with a mighty surge of energy.") + public static NpcStringId GRAND_WIZARD_MERKIOS_AWAKENS_AND_THE_ALTAR_ACTIVATES_WITH_A_MIGHTY_SURGE_OF_ENERGY; + + @ClientString(id = 1803623, message = "Berserk Grand Wizard Merkios awakens and the altar begins to shake violently.") + public static NpcStringId BERSERK_GRAND_WIZARD_MERKIOS_AWAKENS_AND_THE_ALTAR_BEGINS_TO_SHAKE_VIOLENTLY; + + @ClientString(id = 1803624, message = "Merkios falls and the light begins to fade from the altar, settling into silence.") + public static NpcStringId MERKIOS_FALLS_AND_THE_LIGHT_BEGINS_TO_FADE_FROM_THE_ALTAR_SETTLING_INTO_SILENCE; + + @ClientString(id = 1803625, message = "$s1 has reached +26 Enchantment Level and gained a High-grade Dragon Claw.") + public static NpcStringId S1_HAS_REACHED_26_ENCHANTMENT_LEVEL_AND_GAINED_A_HIGH_GRADE_DRAGON_CLAW; + + @ClientString(id = 1803626, message = "$s1 has reached +27 Enchantment Level and gained a Top-grade Dragon Claw.") + public static NpcStringId S1_HAS_REACHED_27_ENCHANTMENT_LEVEL_AND_GAINED_A_TOP_GRADE_DRAGON_CLAW; + + @ClientString(id = 1803627, message = "Orfen recovers her power by using the Energy of the Floating Sea.") + public static NpcStringId ORFEN_RECOVERS_HER_POWER_BY_USING_THE_ENERGY_OF_THE_FLOATING_SEA; + + @ClientString(id = 1803628, message = "You now have the dropped item looting right.") + public static NpcStringId YOU_NOW_HAVE_THE_DROPPED_ITEM_LOOTING_RIGHT; + @ClientString(id = 1810363, message = "You are too far from the corpse.") public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; @@ -35299,7 +38260,7 @@ public final class NpcStringId @ClientString(id = 1811211, message = "Messenger, tell the allies of the alliance! I command you to charge Istina's Habitat!") public static NpcStringId MESSENGER_TELL_THE_ALLIES_OF_THE_ALLIANCE_I_COMMAND_YOU_TO_CHARGE_ISTINA_S_HABITAT; - @ClientString(id = 1811212, message = "Messenger, tell the allies of the alliance! We're not doing well here in Seed of Annihilation, but supply must be provided! ") + @ClientString(id = 1811212, message = "Messenger, tell the allies of the alliance! We're not doing well here in Seed of Annihilation, but supply must be provided!") public static NpcStringId MESSENGER_TELL_THE_ALLIES_OF_THE_ALLIANCE_WE_RE_NOT_DOING_WELL_HERE_IN_SEED_OF_ANNIHILATION_BUT_SUPPLY_MUST_BE_PROVIDED; @ClientString(id = 1811213, message = "I, Hermuncus, give my power to those who fight for me.") @@ -35360,19 +38321,19 @@ public final class NpcStringId public static NpcStringId TEN_SECONDS_ARE_REMAINING_2; @ClientString(id = 1811232, message = "5 Seconds") - public static NpcStringId FIVE_SECONDS; + public static NpcStringId FIVE_SECONDS_2; @ClientString(id = 1811233, message = "4 Seconds") - public static NpcStringId FOUR_SECONDS; + public static NpcStringId FOUR_SECONDS_2; @ClientString(id = 1811234, message = "3 Seconds") - public static NpcStringId THREE_SECONDS; + public static NpcStringId THREE_SECONDS_3; @ClientString(id = 1811235, message = "2 Seconds") - public static NpcStringId TWO_SECONDS; + public static NpcStringId TWO_SECONDS_3; @ClientString(id = 1811236, message = "1 Second") - public static NpcStringId ONE_SECOND; + public static NpcStringId ONE_SECOND_3; @ClientString(id = 1811237, message = "You may not teleport in middle of a siege.") public static NpcStringId YOU_MAY_NOT_TELEPORT_IN_MIDDLE_OF_A_SIEGE; @@ -35506,7 +38467,7 @@ public final class NpcStringId @ClientString(id = 1811280, message = "I will put you to sleep with my subordinates. In your tomb!") public static NpcStringId I_WILL_PUT_YOU_TO_SLEEP_WITH_MY_SUBORDINATES_IN_YOUR_TOMB; - @ClientString(id = 1811281, message = "Aggressive greetings. Try hard. ") + @ClientString(id = 1811281, message = "Aggressive greetings. Try hard.") public static NpcStringId AGGRESSIVE_GREETINGS_TRY_HARD; @ClientString(id = 1811282, message = "Attack all of a sudden... try me.") @@ -35677,7 +38638,7 @@ public final class NpcStringId @ClientString(id = 1811337, message = "$s1 seems a little shy.") public static NpcStringId S1_SEEMS_A_LITTLE_SHY; - @ClientString(id = 1811338, message = "Wahaha~ How fun! ") + @ClientString(id = 1811338, message = "Wahaha~ How fun!") public static NpcStringId WAHAHA_HOW_FUN; @ClientString(id = 1811339, message = "Put your hands up!") @@ -35788,11 +38749,11 @@ public final class NpcStringId @ClientString(id = 1900020, message = "Happy Holidays~ Thank you for rescuing me from that wretched Turkey.") public static NpcStringId HAPPY_HOLIDAYS_THANK_YOU_FOR_RESCUING_ME_FROM_THAT_WRETCHED_TURKEY_2; - @ClientString(id = 1900021, message = "%s. I have prepared a gift for you.") - public static NpcStringId S_I_HAVE_PREPARED_A_GIFT_FOR_YOU; + @ClientString(id = 1900021, message = "I have prepared a gift for you, $s1.") + public static NpcStringId I_HAVE_PREPARED_A_GIFT_FOR_YOU_S1; - @ClientString(id = 1900022, message = "I have a gift for %s.") - public static NpcStringId I_HAVE_A_GIFT_FOR_S; + @ClientString(id = 1900022, message = "I have a gift for $s1.") + public static NpcStringId I_HAVE_A_GIFT_FOR_S1_2; @ClientString(id = 1900023, message = "Take a look at the inventory. I hope you like the gift I gave you.") public static NpcStringId TAKE_A_LOOK_AT_THE_INVENTORY_I_HOPE_YOU_LIKE_THE_GIFT_I_GAVE_YOU_2; @@ -35806,8 +38767,8 @@ public final class NpcStringId @ClientString(id = 1900026, message = "When are you going to stop? I'm slowly getting tired of this.") public static NpcStringId WHEN_ARE_YOU_GOING_TO_STOP_I_M_SLOWLY_GETTING_TIRED_OF_THIS; - @ClientString(id = 1900027, message = "Message from Santa: Many blessings to %s, who saved me~") - public static NpcStringId MESSAGE_FROM_SANTA_MANY_BLESSINGS_TO_S_WHO_SAVED_ME; + @ClientString(id = 1900027, message = "Message from Santa: Many blessings to my savior, $s1!") + public static NpcStringId MESSAGE_FROM_SANTA_MANY_BLESSINGS_TO_MY_SAVIOR_S1; @ClientString(id = 1900028, message = "How dare you awaken me. Feel the pain of the flames.") public static NpcStringId HOW_DARE_YOU_AWAKEN_ME_FEEL_THE_PAIN_OF_THE_FLAMES; @@ -35821,8 +38782,8 @@ public final class NpcStringId @ClientString(id = 1900031, message = "Co... Cold! That's cold! Ack! Ack!") public static NpcStringId CO_COLD_THAT_S_COLD_ACK_ACK; - @ClientString(id = 1900032, message = "Please, %s... Don't hit me... Please.") - public static NpcStringId PLEASE_S_DON_T_HIT_ME_PLEASE; + @ClientString(id = 1900032, message = "Please, $s1... Don't hit me... Please.") + public static NpcStringId PLEASE_S1_DON_T_HIT_ME_PLEASE; @ClientString(id = 1900033, message = "Kuaaannggg! Shake in fear!") public static NpcStringId KUAAANNGGG_SHAKE_IN_FEAR; @@ -35968,11 +38929,11 @@ public final class NpcStringId @ClientString(id = 1900080, message = "Wowww. Awesome. Really. I have never met someone as good as you before. Now... I can't play anymore.") public static NpcStringId WOWWW_AWESOME_REALLY_I_HAVE_NEVER_MET_SOMEONE_AS_GOOD_AS_YOU_BEFORE_NOW_I_CAN_T_PLAY_ANYMORE_2; - @ClientString(id = 1900081, message = "%s has won %s Jack's games in a row.") - public static NpcStringId S_HAS_WON_S_JACK_S_GAMES_IN_A_ROW; + @ClientString(id = 1900081, message = "$s1 has won $s2 Jack's game(s) in a row.") + public static NpcStringId S1_HAS_WON_S2_JACK_S_GAME_S_IN_A_ROW; - @ClientString(id = 1900082, message = "Congratulations! %s has won %s Jack's games in a row.") - public static NpcStringId CONGRATULATIONS_S_HAS_WON_S_JACK_S_GAMES_IN_A_ROW; + @ClientString(id = 1900082, message = "Congratulations! $s1 has won $s2 Jack's game(s) in a row.") + public static NpcStringId CONGRATULATIONS_S1_HAS_WON_S2_JACK_S_GAME_S_IN_A_ROW; @ClientString(id = 1900083, message = "Congratulations on getting 1st place in Jack's game!") public static NpcStringId CONGRATULATIONS_ON_GETTING_1ST_PLACE_IN_JACK_S_GAME_2; @@ -36088,14 +39049,14 @@ public final class NpcStringId @ClientString(id = 1900120, message = "Thank you. I was able to grow up into an adult. Here is my gift.") public static NpcStringId THANK_YOU_I_WAS_ABLE_TO_GROW_UP_INTO_AN_ADULT_HERE_IS_MY_GIFT; - @ClientString(id = 1900121, message = "Thank you. %s. Now, I can pull the sled.") - public static NpcStringId THANK_YOU_S_NOW_I_CAN_PULL_THE_SLED; + @ClientString(id = 1900121, message = "Thank you, $s1. Now, I can pull the sled.") + public static NpcStringId THANK_YOU_S1_NOW_I_CAN_PULL_THE_SLED; - @ClientString(id = 1900122, message = "%s. Thank you for taking care of me all this time. I enjoyed it very much.") - public static NpcStringId S_THANK_YOU_FOR_TAKING_CARE_OF_ME_ALL_THIS_TIME_I_ENJOYED_IT_VERY_MUCH; + @ClientString(id = 1900122, message = "Thank you for taking care of me all this time, $s1. I enjoyed it very much.") + public static NpcStringId THANK_YOU_FOR_TAKING_CARE_OF_ME_ALL_THIS_TIME_S1_I_ENJOYED_IT_VERY_MUCH; - @ClientString(id = 1900123, message = "%s. It won't be long now until it becomes time to pull the sled. It's too bad.") - public static NpcStringId S_IT_WON_T_BE_LONG_NOW_UNTIL_IT_BECOMES_TIME_TO_PULL_THE_SLED_IT_S_TOO_BAD; + @ClientString(id = 1900123, message = "$s1, It won't be long now until it becomes time to pull the sled. It's too bad.") + public static NpcStringId S1_IT_WON_T_BE_LONG_NOW_UNTIL_IT_BECOMES_TIME_TO_PULL_THE_SLED_IT_S_TOO_BAD; @ClientString(id = 1900124, message = "I must return to Santa now. Thank you for everything!") public static NpcStringId I_MUST_RETURN_TO_SANTA_NOW_THANK_YOU_FOR_EVERYTHING; @@ -36106,17 +39067,17 @@ public final class NpcStringId @ClientString(id = 1900126, message = "This is my gift of thanks. Thank you for taking care of me~") public static NpcStringId THIS_IS_MY_GIFT_OF_THANKS_THANK_YOU_FOR_TAKING_CARE_OF_ME; - @ClientString(id = 1900127, message = "%s. I was always grateful.") - public static NpcStringId S_I_WAS_ALWAYS_GRATEFUL; + @ClientString(id = 1900127, message = "Thank you for everything, $s1.") + public static NpcStringId THANK_YOU_FOR_EVERYTHING_S1; @ClientString(id = 1900128, message = "I'm a little sad. It's time to leave now.") public static NpcStringId I_M_A_LITTLE_SAD_IT_S_TIME_TO_LEAVE_NOW; - @ClientString(id = 1900129, message = "%s. The time has come for me to return to my home.") - public static NpcStringId S_THE_TIME_HAS_COME_FOR_ME_TO_RETURN_TO_MY_HOME; + @ClientString(id = 1900129, message = "$s1, the time has come for me to return to my home.") + public static NpcStringId S1_THE_TIME_HAS_COME_FOR_ME_TO_RETURN_TO_MY_HOME; - @ClientString(id = 1900130, message = "%s. Thank you.") - public static NpcStringId S_THANK_YOU; + @ClientString(id = 1900130, message = "Thank you, $s1.") + public static NpcStringId THANK_YOU_S1; @ClientString(id = 1900131, message = "Hahaha!!! I captured Santa!! Huh? Where is this? Who are you?") public static NpcStringId HAHAHA_I_CAPTURED_SANTA_HUH_WHERE_IS_THIS_WHO_ARE_YOU; @@ -36136,11 +39097,11 @@ public final class NpcStringId @ClientString(id = 1900136, message = "In 10 minutes, it will be 1 hour since you started raising me.") public static NpcStringId IN_10_MINUTES_IT_WILL_BE_1_HOUR_SINCE_YOU_STARTED_RAISING_ME; - @ClientString(id = 1900137, message = "After 5 minutes, if my Full Feeling and Affection Level reach 99%, I can grow bigger.") + @ClientString(id = 1900137, message = "After 5 minutes, if my Full Feeling and Affection Level reach 99%%, I can grow bigger.") public static NpcStringId AFTER_5_MINUTES_IF_MY_FULL_FEELING_AND_AFFECTION_LEVEL_REACH_99_I_CAN_GROW_BIGGER; - @ClientString(id = 1900138, message = "The resupply time of %s hour(s) %s minute(s) %s second(s) remain for the Gift of Energy.") - public static NpcStringId THE_RESUPPLY_TIME_OF_S_HOUR_S_S_MINUTE_S_S_SECOND_S_REMAIN_FOR_THE_GIFT_OF_ENERGY; + @ClientString(id = 1900138, message = "$s1 hour(s) $s2 minute(s) $s3 second(s) remaining for the Gift of Energy resupply time.") + public static NpcStringId S1_HOUR_S_S2_MINUTE_S_S3_SECOND_S_REMAINING_FOR_THE_GIFT_OF_ENERGY_RESUPPLY_TIME; @ClientString(id = 1900139, message = "Want to test your luck? Give me Adena!") public static NpcStringId WANT_TO_TEST_YOUR_LUCK_GIVE_ME_ADENA; @@ -36172,7 +39133,7 @@ public final class NpcStringId @ClientString(id = 1900148, message = "Death! Death is near! No one can do anything about it! Muhaha... Ahhahahaha!") public static NpcStringId DEATH_DEATH_IS_NEAR_NO_ONE_CAN_DO_ANYTHING_ABOUT_IT_MUHAHA_AHHAHAHAHA; - @ClientString(id = 1900149, message = "Everyone.. Turn into flesh! Kekekeke... ") + @ClientString(id = 1900149, message = "Everyone.. Turn into flesh! Kekekeke...") public static NpcStringId EVERYONE_TURN_INTO_FLESH_KEKEKEKE; @ClientString(id = 1900150, message = "Black color ate.. all... of red blood! Understand?!") @@ -36193,13 +39154,13 @@ public final class NpcStringId @ClientString(id = 1900155, message = "It's not yet complete! Death! Is not yet complete!") public static NpcStringId IT_S_NOT_YET_COMPLETE_DEATH_IS_NOT_YET_COMPLETE; - @ClientString(id = 1900156, message = "No.. I.. can't die like this. Go...go away! ") + @ClientString(id = 1900156, message = "No.. I.. can't die like this. Go...go away!") public static NpcStringId NO_I_CAN_T_DIE_LIKE_THIS_GO_GO_AWAY; @ClientString(id = 1900157, message = "I saw.. blood.. torn flesh... getting...sucked into... the ground...") public static NpcStringId I_SAW_BLOOD_TORN_FLESH_GETTING_SUCKED_INTO_THE_GROUND; - @ClientString(id = 1900158, message = "Ughh.... blood.. drips... bone.... crushed... ") + @ClientString(id = 1900158, message = "Ughh.... blood.. drips... bone.... crushed...") public static NpcStringId UGHH_BLOOD_DRIPS_BONE_CRUSHED; @ClientString(id = 1900159, message = "Voice.. was good... as if you're possessed... No! I'm already possessed!") @@ -36244,7 +39205,7 @@ public final class NpcStringId @ClientString(id = 1900172, message = "Sweet voice. Hehe.. You die if you get possessed by that sound. Like them! Hehe...hahaha!") public static NpcStringId SWEET_VOICE_HEHE_YOU_DIE_IF_YOU_GET_POSSESSED_BY_THAT_SOUND_LIKE_THEM_HEHE_HAHAHA; - @ClientString(id = 1900173, message = "They will resurrect. She will... They will... Heh... ") + @ClientString(id = 1900173, message = "They will resurrect. She will... They will... Heh...") public static NpcStringId THEY_WILL_RESURRECT_SHE_WILL_THEY_WILL_HEH; @ClientString(id = 1900174, message = "Dead.. or alive... I don't want to see anything..") @@ -36256,7 +39217,7 @@ public final class NpcStringId @ClientString(id = 1900176, message = "Even if you try, it's useless. Die with me. Keheheh!") public static NpcStringId EVEN_IF_YOU_TRY_IT_S_USELESS_DIE_WITH_ME_KEHEHEH; - @ClientString(id = 1900177, message = "Dark voice.. Can you hear? I.. can hear.. But... I don't want to.. ") + @ClientString(id = 1900177, message = "Dark voice.. Can you hear? I.. can hear.. But... I don't want to..") public static NpcStringId DARK_VOICE_CAN_YOU_HEAR_I_CAN_HEAR_BUT_I_DON_T_WANT_TO; @ClientString(id = 1900178, message = "I can still hear the sound.. of flesh and bones grinding. Hehehehe!") @@ -36274,10 +39235,10 @@ public final class NpcStringId @ClientString(id = 1900182, message = "Die! Before she swallows you! Die!") public static NpcStringId DIE_BEFORE_SHE_SWALLOWS_YOU_DIE; - @ClientString(id = 1900183, message = "Don't wanna die. But, I can't live either. Sniff... Sniff... ") + @ClientString(id = 1900183, message = "Don't wanna die. But, I can't live either. Sniff... Sniff...") public static NpcStringId DON_T_WANNA_DIE_BUT_I_CAN_T_LIVE_EITHER_SNIFF_SNIFF; - @ClientString(id = 1900184, message = "Eek! Don't kill me! I don't wanna die. I don't wanna become a patty of meat.. No.. No! ") + @ClientString(id = 1900184, message = "Eek! Don't kill me! I don't wanna die. I don't wanna become a patty of meat.. No.. No!") public static NpcStringId EEK_DON_T_KILL_ME_I_DON_T_WANNA_DIE_I_DON_T_WANNA_BECOME_A_PATTY_OF_MEAT_NO_NO; @ClientString(id = 1900185, message = "I can hear.. the bone crushing sound..") @@ -36298,10 +39259,10 @@ public final class NpcStringId @ClientString(id = 1900190, message = "Nothing comes out neither from inside or outside.") public static NpcStringId NOTHING_COMES_OUT_NEITHER_FROM_INSIDE_OR_OUTSIDE; - @ClientString(id = 1900191, message = "As it didn't exist ") + @ClientString(id = 1900191, message = "As it didn't exist") public static NpcStringId AS_IT_DIDN_T_EXIST; - @ClientString(id = 1900192, message = "It left nothing behind.. ") + @ClientString(id = 1900192, message = "It left nothing behind..") public static NpcStringId IT_LEFT_NOTHING_BEHIND; @ClientString(id = 1900193, message = "Should we report it to the kingdom?") @@ -36313,205 +39274,205 @@ public final class NpcStringId @ClientString(id = 1900195, message = "We'll begin internal purification process.") public static NpcStringId WE_LL_BEGIN_INTERNAL_PURIFICATION_PROCESS; - @ClientString(id = 1900196, message = "Please. ") + @ClientString(id = 1900196, message = "Please.") public static NpcStringId PLEASE; - @ClientString(id = 1900197, message = "Nothing can be found. ") + @ClientString(id = 1900197, message = "Nothing can be found.") public static NpcStringId NOTHING_CAN_BE_FOUND; - @ClientString(id = 1900198, message = "As if it didn't exist from the beginning ") + @ClientString(id = 1900198, message = "As if it didn't exist from the beginning") public static NpcStringId AS_IF_IT_DIDN_T_EXIST_FROM_THE_BEGINNING; - @ClientString(id = 1900199, message = "Hm.. ") + @ClientString(id = 1900199, message = "Hm..") public static NpcStringId HM; - @ClientString(id = 1900200, message = "I heard the witness went crazy after this incident. ") + @ClientString(id = 1900200, message = "I heard the witness went crazy after this incident.") public static NpcStringId I_HEARD_THE_WITNESS_WENT_CRAZY_AFTER_THIS_INCIDENT; - @ClientString(id = 1900201, message = "I think we must begin purifying this bad aura before we do anything. ") + @ClientString(id = 1900201, message = "I think we must begin purifying this bad aura before we do anything.") public static NpcStringId I_THINK_WE_MUST_BEGIN_PURIFYING_THIS_BAD_AURA_BEFORE_WE_DO_ANYTHING; - @ClientString(id = 1900202, message = "I will report to Kingdom. ") + @ClientString(id = 1900202, message = "I will report to Kingdom.") public static NpcStringId I_WILL_REPORT_TO_KINGDOM; - @ClientString(id = 1900203, message = "Yes. You can do that. ") + @ClientString(id = 1900203, message = "Yes. You can do that.") public static NpcStringId YES_YOU_CAN_DO_THAT; - @ClientString(id = 1900204, message = "From what I heard from the witness, I heard the monsters were completely ripped apart and absorbed into the ground. ") + @ClientString(id = 1900204, message = "From what I heard from the witness, I heard the monsters were completely ripped apart and absorbed into the ground.") public static NpcStringId FROM_WHAT_I_HEARD_FROM_THE_WITNESS_I_HEARD_THE_MONSTERS_WERE_COMPLETELY_RIPPED_APART_AND_ABSORBED_INTO_THE_GROUND; - @ClientString(id = 1900205, message = "He's a crazy man, so it's not so credible... ") + @ClientString(id = 1900205, message = "He's a crazy man, so it's not so credible...") public static NpcStringId HE_S_A_CRAZY_MAN_SO_IT_S_NOT_SO_CREDIBLE; - @ClientString(id = 1900206, message = "Sigh.. It doesn't make sense that this brutal scene has nothing left behind. ") + @ClientString(id = 1900206, message = "Sigh.. It doesn't make sense that this brutal scene has nothing left behind.") public static NpcStringId SIGH_IT_DOESN_T_MAKE_SENSE_THAT_THIS_BRUTAL_SCENE_HAS_NOTHING_LEFT_BEHIND; @ClientString(id = 1900207, message = "What should we do?") public static NpcStringId WHAT_SHOULD_WE_DO; - @ClientString(id = 1900208, message = "Let's report it to the kingdom first. ") + @ClientString(id = 1900208, message = "Let's report it to the kingdom first.") public static NpcStringId LET_S_REPORT_IT_TO_THE_KINGDOM_FIRST; @ClientString(id = 1900209, message = "Okay.") public static NpcStringId OKAY; - @ClientString(id = 1900210, message = "A crazy man said all the monsters were shredded and absorbed into the ground. ") + @ClientString(id = 1900210, message = "A crazy man said all the monsters were shredded and absorbed into the ground.") public static NpcStringId A_CRAZY_MAN_SAID_ALL_THE_MONSTERS_WERE_SHREDDED_AND_ABSORBED_INTO_THE_GROUND; - @ClientString(id = 1900211, message = "What do you think? ") + @ClientString(id = 1900211, message = "What do you think?") public static NpcStringId WHAT_DO_YOU_THINK; - @ClientString(id = 1900212, message = "Unbelievable words from unbelievable man. ") + @ClientString(id = 1900212, message = "Unbelievable words from unbelievable man.") public static NpcStringId UNBELIEVABLE_WORDS_FROM_UNBELIEVABLE_MAN; - @ClientString(id = 1900213, message = "I think so too. But, there's no practical way to explain why the monsters have disappeared.. ") + @ClientString(id = 1900213, message = "I think so too. But, there's no practical way to explain why the monsters have disappeared..") public static NpcStringId I_THINK_SO_TOO_BUT_THERE_S_NO_PRACTICAL_WAY_TO_EXPLAIN_WHY_THE_MONSTERS_HAVE_DISAPPEARED; - @ClientString(id = 1900214, message = "Sigh.. We'll begin internal purification process. ") + @ClientString(id = 1900214, message = "Sigh.. We'll begin internal purification process.") public static NpcStringId SIGH_WE_LL_BEGIN_INTERNAL_PURIFICATION_PROCESS; - @ClientString(id = 1900215, message = "Yes. Then I will report back to the Kingdom. ") + @ClientString(id = 1900215, message = "Yes. Then I will report back to the Kingdom.") public static NpcStringId YES_THEN_I_WILL_REPORT_BACK_TO_THE_KINGDOM; - @ClientString(id = 1900216, message = "I can't believe it. ") + @ClientString(id = 1900216, message = "I can't believe it.") public static NpcStringId I_CAN_T_BELIEVE_IT; - @ClientString(id = 1900217, message = "Monsters all disappeared at once... ") + @ClientString(id = 1900217, message = "Monsters all disappeared at once...") public static NpcStringId MONSTERS_ALL_DISAPPEARED_AT_ONCE; - @ClientString(id = 1900218, message = "I never felt this kind of deep darkness before. ") + @ClientString(id = 1900218, message = "I never felt this kind of deep darkness before.") public static NpcStringId I_NEVER_FELT_THIS_KIND_OF_DEEP_DARKNESS_BEFORE; - @ClientString(id = 1900219, message = "I wonder if we can purify this. ") + @ClientString(id = 1900219, message = "I wonder if we can purify this.") public static NpcStringId I_WONDER_IF_WE_CAN_PURIFY_THIS; - @ClientString(id = 1900220, message = "This may be difficult, but please. ") + @ClientString(id = 1900220, message = "This may be difficult, but please.") public static NpcStringId THIS_MAY_BE_DIFFICULT_BUT_PLEASE; - @ClientString(id = 1900221, message = "Stop outsiders from approaching. ") + @ClientString(id = 1900221, message = "Stop outsiders from approaching.") public static NpcStringId STOP_OUTSIDERS_FROM_APPROACHING; - @ClientString(id = 1900222, message = "Okay. ") + @ClientString(id = 1900222, message = "Okay.") public static NpcStringId OKAY_2; @ClientString(id = 1900223, message = "Sigh..") public static NpcStringId SIGH; - @ClientString(id = 1900224, message = "Other places can't seem to find anything either. ") + @ClientString(id = 1900224, message = "Other places can't seem to find anything either.") public static NpcStringId OTHER_PLACES_CAN_T_SEEM_TO_FIND_ANYTHING_EITHER; - @ClientString(id = 1900225, message = "If it's even possible for all monsters to disappear from all catacombs and necropolis... ") + @ClientString(id = 1900225, message = "If it's even possible for all monsters to disappear from all catacombs and necropolis...") public static NpcStringId IF_IT_S_EVEN_POSSIBLE_FOR_ALL_MONSTERS_TO_DISAPPEAR_FROM_ALL_CATACOMBS_AND_NECROPOLIS; - @ClientString(id = 1900226, message = "The witness went crazy. He's not being very helpful. ") + @ClientString(id = 1900226, message = "The witness went crazy. He's not being very helpful.") public static NpcStringId THE_WITNESS_WENT_CRAZY_HE_S_NOT_BEING_VERY_HELPFUL; @ClientString(id = 1900227, message = "I think we must eliminate this dark aura first.") public static NpcStringId I_THINK_WE_MUST_ELIMINATE_THIS_DARK_AURA_FIRST; - @ClientString(id = 1900228, message = "I think you should investigate afterwards. ") + @ClientString(id = 1900228, message = "I think you should investigate afterwards.") public static NpcStringId I_THINK_YOU_SHOULD_INVESTIGATE_AFTERWARDS; - @ClientString(id = 1900229, message = "Please. ") + @ClientString(id = 1900229, message = "Please.") public static NpcStringId PLEASE_2; - @ClientString(id = 1900230, message = "Do you think it's possible for all monsters to disappear at once? ") + @ClientString(id = 1900230, message = "Do you think it's possible for all monsters to disappear at once?") public static NpcStringId DO_YOU_THINK_IT_S_POSSIBLE_FOR_ALL_MONSTERS_TO_DISAPPEAR_AT_ONCE; @ClientString(id = 1900231, message = "I.. don't believe that it's possible.") public static NpcStringId I_DON_T_BELIEVE_THAT_IT_S_POSSIBLE; - @ClientString(id = 1900232, message = "I don't think it's possible... ") + @ClientString(id = 1900232, message = "I don't think it's possible...") public static NpcStringId I_DON_T_THINK_IT_S_POSSIBLE; - @ClientString(id = 1900233, message = "The witness went crazy. His words are meaningless. ") + @ClientString(id = 1900233, message = "The witness went crazy. His words are meaningless.") public static NpcStringId THE_WITNESS_WENT_CRAZY_HIS_WORDS_ARE_MEANINGLESS; - @ClientString(id = 1900234, message = "Sigh.. It's tiring trying to guess. ") + @ClientString(id = 1900234, message = "Sigh.. It's tiring trying to guess.") public static NpcStringId SIGH_IT_S_TIRING_TRYING_TO_GUESS; - @ClientString(id = 1900235, message = "First.. Please take care of the purification process. ") + @ClientString(id = 1900235, message = "First.. Please take care of the purification process.") public static NpcStringId FIRST_PLEASE_TAKE_CARE_OF_THE_PURIFICATION_PROCESS; - @ClientString(id = 1900236, message = "Then I will report back to the Kingdom. ") + @ClientString(id = 1900236, message = "Then I will report back to the Kingdom.") public static NpcStringId THEN_I_WILL_REPORT_BACK_TO_THE_KINGDOM; - @ClientString(id = 1900237, message = "Okay. ") + @ClientString(id = 1900237, message = "Okay.") public static NpcStringId OKAY_3; - @ClientString(id = 1900238, message = "I'm worried. ") + @ClientString(id = 1900238, message = "I'm worried.") public static NpcStringId I_M_WORRIED; - @ClientString(id = 1900239, message = "Other places can't seem to find anything either. ") + @ClientString(id = 1900239, message = "Other places can't seem to find anything either.") public static NpcStringId OTHER_PLACES_CAN_T_SEEM_TO_FIND_ANYTHING_EITHER_2; @ClientString(id = 1900240, message = "Do you think it's possible for all monsters to disappear from all catacombs and necropolis?") public static NpcStringId DO_YOU_THINK_IT_S_POSSIBLE_FOR_ALL_MONSTERS_TO_DISAPPEAR_FROM_ALL_CATACOMBS_AND_NECROPOLIS; - @ClientString(id = 1900241, message = "The witness went crazy. He's not being very helpful. ") + @ClientString(id = 1900241, message = "The witness went crazy. He's not being very helpful.") public static NpcStringId THE_WITNESS_WENT_CRAZY_HE_S_NOT_BEING_VERY_HELPFUL_2; - @ClientString(id = 1900242, message = "I think we must eliminate this dark aura first. ") + @ClientString(id = 1900242, message = "I think we must eliminate this dark aura first.") public static NpcStringId I_THINK_WE_MUST_ELIMINATE_THIS_DARK_AURA_FIRST_2; @ClientString(id = 1900243, message = "Please.") public static NpcStringId PLEASE_3; - @ClientString(id = 1900244, message = "Ahh.. What should we do with this situation... ") + @ClientString(id = 1900244, message = "Ahh.. What should we do with this situation...") public static NpcStringId AHH_WHAT_SHOULD_WE_DO_WITH_THIS_SITUATION; - @ClientString(id = 1900245, message = "Calm down. ") + @ClientString(id = 1900245, message = "Calm down.") public static NpcStringId CALM_DOWN; @ClientString(id = 1900246, message = "Does it even make sense that all monsters from Catacomb and Necropolis disappeared?") public static NpcStringId DOES_IT_EVEN_MAKE_SENSE_THAT_ALL_MONSTERS_FROM_CATACOMB_AND_NECROPOLIS_DISAPPEARED; - @ClientString(id = 1900247, message = "This has never happened in the past. ") + @ClientString(id = 1900247, message = "This has never happened in the past.") public static NpcStringId THIS_HAS_NEVER_HAPPENED_IN_THE_PAST; - @ClientString(id = 1900248, message = "First.. Calm down... ") + @ClientString(id = 1900248, message = "First.. Calm down...") public static NpcStringId FIRST_CALM_DOWN; - @ClientString(id = 1900249, message = "Shilen...Shilen may be resurrecting... ") + @ClientString(id = 1900249, message = "Shilen...Shilen may be resurrecting...") public static NpcStringId SHILEN_SHILEN_MAY_BE_RESURRECTING; - @ClientString(id = 1900250, message = "Sigh.. First... I will start with purification process. ") + @ClientString(id = 1900250, message = "Sigh.. First... I will start with purification process.") public static NpcStringId SIGH_FIRST_I_WILL_START_WITH_PURIFICATION_PROCESS; - @ClientString(id = 1900251, message = "When you're calm, please report to the kingdom. ") + @ClientString(id = 1900251, message = "When you're calm, please report to the kingdom.") public static NpcStringId WHEN_YOU_RE_CALM_PLEASE_REPORT_TO_THE_KINGDOM; - @ClientString(id = 1900252, message = "What do you think? ") + @ClientString(id = 1900252, message = "What do you think?") public static NpcStringId WHAT_DO_YOU_THINK_2; - @ClientString(id = 1900253, message = "This doesn't seem like an ordinary situation. ") + @ClientString(id = 1900253, message = "This doesn't seem like an ordinary situation.") public static NpcStringId THIS_DOESN_T_SEEM_LIKE_AN_ORDINARY_SITUATION; - @ClientString(id = 1900254, message = "If that crazy man's words are true... Monsters... May have been... absorbed by Shilen. ") + @ClientString(id = 1900254, message = "If that crazy man's words are true... Monsters... May have been... absorbed by Shilen.") public static NpcStringId IF_THAT_CRAZY_MAN_S_WORDS_ARE_TRUE_MONSTERS_MAY_HAVE_BEEN_ABSORBED_BY_SHILEN; - @ClientString(id = 1900255, message = "Shilen.. I don't even know how to report for this. ") + @ClientString(id = 1900255, message = "Shilen.. I don't even know how to report for this.") public static NpcStringId SHILEN_I_DON_T_EVEN_KNOW_HOW_TO_REPORT_FOR_THIS; - @ClientString(id = 1900256, message = "I will purify this place first. ") + @ClientString(id = 1900256, message = "I will purify this place first.") public static NpcStringId I_WILL_PURIFY_THIS_PLACE_FIRST; - @ClientString(id = 1900257, message = "Please. ") + @ClientString(id = 1900257, message = "Please.") public static NpcStringId PLEASE_4; - @ClientString(id = 1900258, message = "What he said is out of ordinary. ") + @ClientString(id = 1900258, message = "What he said is out of ordinary.") public static NpcStringId WHAT_HE_SAID_IS_OUT_OF_ORDINARY; - @ClientString(id = 1900259, message = "The monsters were shredded into pieces and absorbed into the ground... ") + @ClientString(id = 1900259, message = "The monsters were shredded into pieces and absorbed into the ground...") public static NpcStringId THE_MONSTERS_WERE_SHREDDED_INTO_PIECES_AND_ABSORBED_INTO_THE_GROUND; - @ClientString(id = 1900260, message = "This is not something any person can do. ") + @ClientString(id = 1900260, message = "This is not something any person can do.") public static NpcStringId THIS_IS_NOT_SOMETHING_ANY_PERSON_CAN_DO; - @ClientString(id = 1900261, message = "Then... I see... Shilen sounds like a viable theory. ") + @ClientString(id = 1900261, message = "Then... I see... Shilen sounds like a viable theory.") public static NpcStringId THEN_I_SEE_SHILEN_SOUNDS_LIKE_A_VIABLE_THEORY; - @ClientString(id = 1900262, message = "It may not be the truth. ") + @ClientString(id = 1900262, message = "It may not be the truth.") public static NpcStringId IT_MAY_NOT_BE_THE_TRUTH; @ClientString(id = 1900263, message = "You may be correct.") @@ -36520,34 +39481,34 @@ public final class NpcStringId @ClientString(id = 1900264, message = "We should report to the Kingdom first.") public static NpcStringId WE_SHOULD_REPORT_TO_THE_KINGDOM_FIRST; - @ClientString(id = 1900265, message = "Okay. ") + @ClientString(id = 1900265, message = "Okay.") public static NpcStringId OKAY_4; - @ClientString(id = 1900266, message = "Ha.. I have no idea. ") + @ClientString(id = 1900266, message = "Ha.. I have no idea.") public static NpcStringId HA_I_HAVE_NO_IDEA; @ClientString(id = 1900267, message = "I can't find any trace. Any trace of the monsters!") public static NpcStringId I_CAN_T_FIND_ANY_TRACE_ANY_TRACE_OF_THE_MONSTERS; - @ClientString(id = 1900268, message = "Calm down. ") + @ClientString(id = 1900268, message = "Calm down.") public static NpcStringId CALM_DOWN_2; - @ClientString(id = 1900269, message = "No race can do such thing. ") + @ClientString(id = 1900269, message = "No race can do such thing.") public static NpcStringId NO_RACE_CAN_DO_SUCH_THING; @ClientString(id = 1900270, message = "If anyone could... he would be 'God.'") public static NpcStringId IF_ANYONE_COULD_HE_WOULD_BE_GOD; - @ClientString(id = 1900271, message = "First.. We'll purify this evil aura. ") + @ClientString(id = 1900271, message = "First.. We'll purify this evil aura.") public static NpcStringId FIRST_WE_LL_PURIFY_THIS_EVIL_AURA; - @ClientString(id = 1900272, message = "Please. ") + @ClientString(id = 1900272, message = "Please.") public static NpcStringId PLEASE_5; - @ClientString(id = 1900273, message = "We'll go into investigation when the purification is complete. ") + @ClientString(id = 1900273, message = "We'll go into investigation when the purification is complete.") public static NpcStringId WE_LL_GO_INTO_INVESTIGATION_WHEN_THE_PURIFICATION_IS_COMPLETE; - @ClientString(id = 1900274, message = "Okay. ") + @ClientString(id = 1900274, message = "Okay.") public static NpcStringId OKAY_5; @ClientString(id = 1900275, message = "What do you think about what that crazy man said?") @@ -36562,40 +39523,40 @@ public final class NpcStringId @ClientString(id = 1900278, message = "You're putting too much weight into it.") public static NpcStringId YOU_RE_PUTTING_TOO_MUCH_WEIGHT_INTO_IT; - @ClientString(id = 1900279, message = "It's unrealistic that all monsters would disappear at once. ") + @ClientString(id = 1900279, message = "It's unrealistic that all monsters would disappear at once.") public static NpcStringId IT_S_UNREALISTIC_THAT_ALL_MONSTERS_WOULD_DISAPPEAR_AT_ONCE; - @ClientString(id = 1900280, message = "Even if you believe that... there's really not much we can do. ") + @ClientString(id = 1900280, message = "Even if you believe that... there's really not much we can do.") public static NpcStringId EVEN_IF_YOU_BELIEVE_THAT_THERE_S_REALLY_NOT_MUCH_WE_CAN_DO; - @ClientString(id = 1900281, message = "Please purify inside of the building. ") + @ClientString(id = 1900281, message = "Please purify inside of the building.") public static NpcStringId PLEASE_PURIFY_INSIDE_OF_THE_BUILDING; - @ClientString(id = 1900282, message = "Okay. ") + @ClientString(id = 1900282, message = "Okay.") public static NpcStringId OKAY_6; - @ClientString(id = 1900283, message = "It's a strange thing. ") + @ClientString(id = 1900283, message = "It's a strange thing.") public static NpcStringId IT_S_A_STRANGE_THING; - @ClientString(id = 1900284, message = "Right. It's definitely not a human being can do. ") + @ClientString(id = 1900284, message = "Right. It's definitely not a human being can do.") public static NpcStringId RIGHT_IT_S_DEFINITELY_NOT_A_HUMAN_BEING_CAN_DO; - @ClientString(id = 1900285, message = "Monsters all disappeared at once... ") + @ClientString(id = 1900285, message = "Monsters all disappeared at once...") public static NpcStringId MONSTERS_ALL_DISAPPEARED_AT_ONCE_2; - @ClientString(id = 1900286, message = "Do you think God did this? ") + @ClientString(id = 1900286, message = "Do you think God did this?") public static NpcStringId DO_YOU_THINK_GOD_DID_THIS; @ClientString(id = 1900287, message = "Someone who can do this... is probably... Goddess of Death...") public static NpcStringId SOMEONE_WHO_CAN_DO_THIS_IS_PROBABLY_GODDESS_OF_DEATH; - @ClientString(id = 1900288, message = "That's the worst guess. ") + @ClientString(id = 1900288, message = "That's the worst guess.") public static NpcStringId THAT_S_THE_WORST_GUESS; - @ClientString(id = 1900289, message = "I think it's best that we do not tell the Kingdom yet. ") + @ClientString(id = 1900289, message = "I think it's best that we do not tell the Kingdom yet.") public static NpcStringId I_THINK_IT_S_BEST_THAT_WE_DO_NOT_TELL_THE_KINGDOM_YET; - @ClientString(id = 1900290, message = "We must find something that can be a clue... ") + @ClientString(id = 1900290, message = "We must find something that can be a clue...") public static NpcStringId WE_MUST_FIND_SOMETHING_THAT_CAN_BE_A_CLUE; @ClientString(id = 1910172, message = "Show respect to the heroes who defeated the evil dragon and protected this Aden world!") @@ -36631,10 +39592,10 @@ public final class NpcStringId @ClientString(id = 1911118, message = "If you wish to see hell, I will grant you your wish.") public static NpcStringId IF_YOU_WISH_TO_SEE_HELL_I_WILL_GRANT_YOU_YOUR_WISH; - @ClientString(id = 1911119, message = "Elapsed Time : ") + @ClientString(id = 1911119, message = "Elapsed Time :") public static NpcStringId ELAPSED_TIME; - @ClientString(id = 1911120, message = "Time Remaining : ") + @ClientString(id = 1911120, message = "Time Remaining :") public static NpcStringId TIME_REMAINING; @ClientString(id = 2000000, message = "Is this the surface world?") @@ -36739,7 +39700,7 @@ public final class NpcStringId @ClientString(id = 2000033, message = "Display your dominance over either Kajin or Beryn,#and the other one will submit to you.") public static NpcStringId DISPLAY_YOUR_DOMINANCE_OVER_EITHER_KAJIN_OR_BERYN_AND_THE_OTHER_ONE_WILL_SUBMIT_TO_YOU; - @ClientString(id = 2000034, message = "The Ancient Kartia Records hold the beginning and the end of Ancient Kartia's Labyrinth,#and everything in between. ") + @ClientString(id = 2000034, message = "The Ancient Kartia Records hold the beginning and the end of Ancient Kartia's Labyrinth,#and everything in between.") public static NpcStringId THE_ANCIENT_KARTIA_RECORDS_HOLD_THE_BEGINNING_AND_THE_END_OF_ANCIENT_KARTIA_S_LABYRINTH_AND_EVERYTHING_IN_BETWEEN; @ClientString(id = 2000035, message = "Wait, don't tell me you don't recognize the Great Pirate Captain Uthanka?!") @@ -36808,7 +39769,7 @@ public final class NpcStringId @ClientString(id = 2000056, message = "Hit the Crystal, hit it, hit it!") public static NpcStringId HIT_THE_CRYSTAL_HIT_IT_HIT_IT; - @ClientString(id = 2000057, message = "Heal! Heal! Heal me, come on! ") + @ClientString(id = 2000057, message = "Heal! Heal! Heal me, come on!") public static NpcStringId HEAL_HEAL_HEAL_ME_COME_ON; @ClientString(id = 2000058, message = "Why am I the only one getting hit? Not fair!") @@ -36868,7 +39829,7 @@ public final class NpcStringId @ClientString(id = 2000076, message = "I'll give you a Boss Accessory Pack if you bring me 15 Summer Slushies!") public static NpcStringId I_LL_GIVE_YOU_A_BOSS_ACCESSORY_PACK_IF_YOU_BRING_ME_15_SUMMER_SLUSHIES; - @ClientString(id = 2000077, message = "Well, howdy-do! Isn't my swimsuit the cutest thing ever? It's time for a tan, yes it is! ") + @ClientString(id = 2000077, message = "Well, howdy-do! Isn't my swimsuit the cutest thing ever? It's time for a tan, yes it is!") public static NpcStringId WELL_HOWDY_DO_ISN_T_MY_SWIMSUIT_THE_CUTEST_THING_EVER_IT_S_TIME_FOR_A_TAN_YES_IT_IS; @ClientString(id = 2000078, message = "Thanks! I'll be counting on you next time too!") @@ -36877,7 +39838,7 @@ public final class NpcStringId @ClientString(id = 2000079, message = "Oh come on… you have to bring me the right materials!") public static NpcStringId OH_COME_ON_YOU_HAVE_TO_BRING_ME_THE_RIGHT_MATERIALS; - @ClientString(id = 2000080, message = "Aghh! Zombies! Zombies! ") + @ClientString(id = 2000080, message = "Aghh! Zombies! Zombies!") public static NpcStringId AGHH_ZOMBIES_ZOMBIES; @ClientString(id = 2000081, message = "Ugh…please, someone get rid of these zombies…") @@ -36943,7 +39904,7 @@ public final class NpcStringId @ClientString(id = 2000101, message = "Analyzing the Purple Crevice") public static NpcStringId ANALYZING_THE_PURPLE_CREVICE; - @ClientString(id = 2000102, message = "It would be rude to turn down a personal invitation, wouldn't it? ") + @ClientString(id = 2000102, message = "It would be rude to turn down a personal invitation, wouldn't it?") public static NpcStringId IT_WOULD_BE_RUDE_TO_TURN_DOWN_A_PERSONAL_INVITATION_WOULDN_T_IT; @ClientString(id = 2000103, message = "Ah, someone who recognizes me for the great soul that I am! Haha. Of course I'll come! I have a moral obligation to honor you with my presence.") @@ -37012,7 +39973,7 @@ public final class NpcStringId @ClientString(id = 2000124, message = "I…I wanna go home…") public static NpcStringId I_I_WANNA_GO_HOME; - @ClientString(id = 2000125, message = "Show start! Come on, snap snap! ") + @ClientString(id = 2000125, message = "Show start! Come on, snap snap!") public static NpcStringId SHOW_START_COME_ON_SNAP_SNAP; @ClientString(id = 2000126, message = "My beauties! You were fabulous! Now back to practice!") @@ -37048,7 +40009,7 @@ public final class NpcStringId @ClientString(id = 2000136, message = "I think I'm getting the hang of it…") public static NpcStringId I_THINK_I_M_GETTING_THE_HANG_OF_IT; - @ClientString(id = 2000137, message = "Drat, not again. ") + @ClientString(id = 2000137, message = "Drat, not again.") public static NpcStringId DRAT_NOT_AGAIN; @ClientString(id = 2000138, message = "I'm getting better! I feel it!") @@ -37516,7 +40477,7 @@ public final class NpcStringId @ClientString(id = 2010088, message = "Then create more offerings of Shilen!") public static NpcStringId THEN_CREATE_MORE_OFFERINGS_OF_SHILEN; - @ClientString(id = 2010089, message = "Kimerian ran away. Let's return to the village and talk. ") + @ClientString(id = 2010089, message = "Kimerian ran away. Let's return to the village and talk.") public static NpcStringId KIMERIAN_RAN_AWAY_LET_S_RETURN_TO_THE_VILLAGE_AND_TALK; @ClientString(id = 2010090, message = "You did a lot of work! Let's go back to the village and have a congratulatory drink!") @@ -37570,7 +40531,7 @@ public final class NpcStringId @ClientString(id = 2010106, message = "Thank you for saving me!") public static NpcStringId THANK_YOU_FOR_SAVING_ME_3; - @ClientString(id = 2010107, message = "You did it well. Good bye now. ") + @ClientString(id = 2010107, message = "You did it well. Good bye now.") public static NpcStringId YOU_DID_IT_WELL_GOOD_BYE_NOW; @ClientString(id = 2010108, message = "Protect the spirits of light!") @@ -37705,7 +40666,7 @@ public final class NpcStringId @ClientString(id = 2621101, message = "Escape device location change") public static NpcStringId ESCAPE_DEVICE_LOCATION_CHANGE; - @ClientString(id = 3000000, message = "Heh, I'll tell you about your face. Let me see you better. Raise your head. ") + @ClientString(id = 3000000, message = "Heh, I'll tell you about your face. Let me see you better. Raise your head.") public static NpcStringId HEH_I_LL_TELL_YOU_ABOUT_YOUR_FACE_LET_ME_SEE_YOU_BETTER_RAISE_YOUR_HEAD; @ClientString(id = 3000001, message = "What? This is a face? Amazing. Should I recommend you to a plastic surgeon?") @@ -37717,7 +40678,7 @@ public final class NpcStringId @ClientString(id = 3000003, message = "Wow, I've never seen a face like yours! Gorgeous! Your eyes, nose, and lips are the best!") public static NpcStringId WOW_I_VE_NEVER_SEEN_A_FACE_LIKE_YOURS_GORGEOUS_YOUR_EYES_NOSE_AND_LIPS_ARE_THE_BEST; - @ClientString(id = 3000004, message = "Let me assess your body! Turn around. ") + @ClientString(id = 3000004, message = "Let me assess your body! Turn around.") public static NpcStringId LET_ME_ASSESS_YOUR_BODY_TURN_AROUND; @ClientString(id = 3000005, message = "Argh! What's this? Can't keep my eyes open!") @@ -37732,19 +40693,19 @@ public final class NpcStringId @ClientString(id = 3000008, message = "I'll check your luck with money. Let's see what the future has in store for you.") public static NpcStringId I_LL_CHECK_YOUR_LUCK_WITH_MONEY_LET_S_SEE_WHAT_THE_FUTURE_HAS_IN_STORE_FOR_YOU; - @ClientString(id = 3000009, message = "Well, let's not be friends. You'll be losing a lot of Adena. Don't even ask me to lend you some! ") + @ClientString(id = 3000009, message = "Well, let's not be friends. You'll be losing a lot of Adena. Don't even ask me to lend you some!") public static NpcStringId WELL_LET_S_NOT_BE_FRIENDS_YOU_LL_BE_LOSING_A_LOT_OF_ADENA_DON_T_EVEN_ASK_ME_TO_LEND_YOU_SOME; @ClientString(id = 3000010, message = "Your luck with money isn't that bad. That doesn't mean I'll lend you money, though. Hmph.") public static NpcStringId YOUR_LUCK_WITH_MONEY_ISN_T_THAT_BAD_THAT_DOESN_T_MEAN_I_LL_LEND_YOU_MONEY_THOUGH_HMPH; - @ClientString(id = 3000011, message = "Let's be good friends! You'll have plenty of Adena throughout your life! ") + @ClientString(id = 3000011, message = "Let's be good friends! You'll have plenty of Adena throughout your life!") public static NpcStringId LET_S_BE_GOOD_FRIENDS_YOU_LL_HAVE_PLENTY_OF_ADENA_THROUGHOUT_YOUR_LIFE; @ClientString(id = 3000012, message = "Let me check your personality. Let's see how good of a person you are.") public static NpcStringId LET_ME_CHECK_YOUR_PERSONALITY_LET_S_SEE_HOW_GOOD_OF_A_PERSON_YOU_ARE; - @ClientString(id = 3000013, message = "Er. You have no friends, am I right? You have to be nice to get friends! ") + @ClientString(id = 3000013, message = "Er. You have no friends, am I right? You have to be nice to get friends!") public static NpcStringId ER_YOU_HAVE_NO_FRIENDS_AM_I_RIGHT_YOU_HAVE_TO_BE_NICE_TO_GET_FRIENDS; @ClientString(id = 3000014, message = "At least it looks like people like you.") @@ -37774,7 +40735,7 @@ public final class NpcStringId @ClientString(id = 3000022, message = "You are pretty lucky. You'll live a happy married life.") public static NpcStringId YOU_ARE_PRETTY_LUCKY_YOU_LL_LIVE_A_HAPPY_MARRIED_LIFE; - @ClientString(id = 3000023, message = "Wow! How many people have you met! ") + @ClientString(id = 3000023, message = "Wow! How many people have you met!") public static NpcStringId WOW_HOW_MANY_PEOPLE_HAVE_YOU_MET; @ClientString(id = 3000024, message = "How about doing some business? Want me to check your luck in that area?") @@ -37795,7 +40756,7 @@ public final class NpcStringId @ClientString(id = 3000029, message = "Do you know what the IQ of a whale is? Hmm? Well, your score is lower than that…") public static NpcStringId DO_YOU_KNOW_WHAT_THE_IQ_OF_A_WHALE_IS_HMM_WELL_YOUR_SCORE_IS_LOWER_THAN_THAT; - @ClientString(id = 3000030, message = "You are average. You'll be just fine getting through life. ") + @ClientString(id = 3000030, message = "You are average. You'll be just fine getting through life.") public static NpcStringId YOU_ARE_AVERAGE_YOU_LL_BE_JUST_FINE_GETTING_THROUGH_LIFE; @ClientString(id = 3000031, message = "You are like Einstein and Stephen Hawking! How about studying nuclear engineering or physics?") @@ -37825,19 +40786,19 @@ public final class NpcStringId @ClientString(id = 3000039, message = "How do you keep up with the latest trends? Amazing! So witty!") public static NpcStringId HOW_DO_YOU_KEEP_UP_WITH_THE_LATEST_TRENDS_AMAZING_SO_WITTY; - @ClientString(id = 3000040, message = "Let's test your stamina. ") + @ClientString(id = 3000040, message = "Let's test your stamina.") public static NpcStringId LET_S_TEST_YOUR_STAMINA; @ClientString(id = 3000041, message = "Huh. Your body's real age is 70. Try exercising some more. I recommend squats.") public static NpcStringId HUH_YOUR_BODY_S_REAL_AGE_IS_70_TRY_EXERCISING_SOME_MORE_I_RECOMMEND_SQUATS; - @ClientString(id = 3000042, message = "You are overflowing with power. Just right for your age. ") + @ClientString(id = 3000042, message = "You are overflowing with power. Just right for your age.") public static NpcStringId YOU_ARE_OVERFLOWING_WITH_POWER_JUST_RIGHT_FOR_YOUR_AGE; @ClientString(id = 3000043, message = "This power...! Your stamina is the best I've seen!") public static NpcStringId THIS_POWER_YOUR_STAMINA_IS_THE_BEST_I_VE_SEEN; - @ClientString(id = 3000044, message = "How about testing your fighting abilities? Equip your items and let's see. ") + @ClientString(id = 3000044, message = "How about testing your fighting abilities? Equip your items and let's see.") public static NpcStringId HOW_ABOUT_TESTING_YOUR_FIGHTING_ABILITIES_EQUIP_YOUR_ITEMS_AND_LET_S_SEE; @ClientString(id = 3000045, message = "Can you even defeat one monster? There's something called enchantment, you know?") @@ -37864,7 +40825,7 @@ public final class NpcStringId @ClientString(id = 3000052, message = "Food is one of the necessities of life! How are your cooking skills?") public static NpcStringId FOOD_IS_ONE_OF_THE_NECESSITIES_OF_LIFE_HOW_ARE_YOUR_COOKING_SKILLS; - @ClientString(id = 3000053, message = "Ugh! Is this edible? Well... thank you for the food, but I'll pass. ") + @ClientString(id = 3000053, message = "Ugh! Is this edible? Well... thank you for the food, but I'll pass.") public static NpcStringId UGH_IS_THIS_EDIBLE_WELL_THANK_YOU_FOR_THE_FOOD_BUT_I_LL_PASS; @ClientString(id = 3000054, message = "Oh, this is good. Party at your house next week?") @@ -37891,7 +40852,7 @@ public final class NpcStringId @ClientString(id = 3000061, message = "Do you have anyone on your friends list? You play by yourself, huh?") public static NpcStringId DO_YOU_HAVE_ANYONE_ON_YOUR_FRIENDS_LIST_YOU_PLAY_BY_YOURSELF_HUH; - @ClientString(id = 3000062, message = "You are sociable enough to have quite a few friends. ") + @ClientString(id = 3000062, message = "You are sociable enough to have quite a few friends.") public static NpcStringId YOU_ARE_SOCIABLE_ENOUGH_TO_HAVE_QUITE_A_FEW_FRIENDS; @ClientString(id = 3000063, message = "Do you have like a thousand friends? You can get close to someone you just met, right?") @@ -37975,10 +40936,10 @@ public final class NpcStringId @ClientString(id = 3000089, message = "Hmm. How old are you? I know a good facility for the elderly. Should I refer you there?") public static NpcStringId HMM_HOW_OLD_ARE_YOU_I_KNOW_A_GOOD_FACILITY_FOR_THE_ELDERLY_SHOULD_I_REFER_YOU_THERE; - @ClientString(id = 3000090, message = "You are doing well. Remember to get a checkup from time to time, though. ") + @ClientString(id = 3000090, message = "You are doing well. Remember to get a checkup from time to time, though.") public static NpcStringId YOU_ARE_DOING_WELL_REMEMBER_TO_GET_A_CHECKUP_FROM_TIME_TO_TIME_THOUGH; - @ClientString(id = 3000091, message = "Great! I'm sure you'll live to be 130 years old! ") + @ClientString(id = 3000091, message = "Great! I'm sure you'll live to be 130 years old!") public static NpcStringId GREAT_I_M_SURE_YOU_LL_LIVE_TO_BE_130_YEARS_OLD; @ClientString(id = 3000092, message = "I'll check your speed. Try running around.") @@ -37996,7 +40957,7 @@ public final class NpcStringId @ClientString(id = 3000096, message = "They say that the eyes show your inner state. Let me check your eyes.") public static NpcStringId THEY_SAY_THAT_THE_EYES_SHOW_YOUR_INNER_STATE_LET_ME_CHECK_YOUR_EYES; - @ClientString(id = 3000097, message = "What's up with your eyes? You need more energy. ") + @ClientString(id = 3000097, message = "What's up with your eyes? You need more energy.") public static NpcStringId WHAT_S_UP_WITH_YOUR_EYES_YOU_NEED_MORE_ENERGY; @ClientString(id = 3000098, message = "Your eyes are so pretty!") @@ -38008,22 +40969,22 @@ public final class NpcStringId @ClientString(id = 3000100, message = "Talk to me now! I'll disappear in 10 seconds.") public static NpcStringId TALK_TO_ME_NOW_I_LL_DISAPPEAR_IN_10_SECONDS; - @ClientString(id = 3000101, message = "Sibis' Letter has arrived.\\nClick the question mark icon to read its contents.") - public static NpcStringId SIBIS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_ITS_CONTENTS; + @ClientString(id = 3000101, message = "Sibi's Letter has arrived.\\nClick the question mark icon to read its contents.") + public static NpcStringId SIBI_S_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_ITS_CONTENTS; - @ClientString(id = 3000102, message = "If you want to get a Magic Flame from us, ") + @ClientString(id = 3000102, message = "If you want to get a Magic Flame from us,") public static NpcStringId IF_YOU_WANT_TO_GET_A_MAGIC_FLAME_FROM_US; - @ClientString(id = 3000103, message = "Only the Magic Fan skill will incite the flames. ") + @ClientString(id = 3000103, message = "Only the Magic Fan skill will incite the flames.") public static NpcStringId ONLY_THE_MAGIC_FAN_SKILL_WILL_INCITE_THE_FLAMES; - @ClientString(id = 3000104, message = "Let's work together, friend! ") + @ClientString(id = 3000104, message = "Let's work together, friend!") public static NpcStringId LET_S_WORK_TOGETHER_FRIEND; @ClientString(id = 3000105, message = "The Magic Fan has 2 skills.") public static NpcStringId THE_MAGIC_FAN_HAS_2_SKILLS; - @ClientString(id = 3000106, message = "you should check whether you have a Magic Fan equipped. ") + @ClientString(id = 3000106, message = "you should check whether you have a Magic Fan equipped.") public static NpcStringId YOU_SHOULD_CHECK_WHETHER_YOU_HAVE_A_MAGIC_FAN_EQUIPPED; @ClientString(id = 3000107, message = "Oh my! How dare you, without a Magic Fan!") @@ -38035,13 +40996,13 @@ public final class NpcStringId @ClientString(id = 3000109, message = "When you equip the Magic Fan, you will get 2 skills.") public static NpcStringId WHEN_YOU_EQUIP_THE_MAGIC_FAN_YOU_WILL_GET_2_SKILLS; - @ClientString(id = 3000110, message = "A Magic Fan? ") + @ClientString(id = 3000110, message = "A Magic Fan?") public static NpcStringId A_MAGIC_FAN; - @ClientString(id = 3000111, message = "I am so angry! If you dance, perhaps we will quell our anger. ") + @ClientString(id = 3000111, message = "I am so angry! If you dance, perhaps we will quell our anger.") public static NpcStringId I_AM_SO_ANGRY_IF_YOU_DANCE_PERHAPS_WE_WILL_QUELL_OUR_ANGER; - @ClientString(id = 3000112, message = "Dancing time! ") + @ClientString(id = 3000112, message = "Dancing time!") public static NpcStringId DANCING_TIME; @ClientString(id = 3000113, message = "Just try to see what happens if you make a wish without a Magic Flame! I... I will burn you to ashes!") @@ -38080,7 +41041,7 @@ public final class NpcStringId @ClientString(id = 3000124, message = "Don't forget our bright flames!") public static NpcStringId DON_T_FORGET_OUR_BRIGHT_FLAMES; - @ClientString(id = 3000125, message = "The festival of flames begins! ") + @ClientString(id = 3000125, message = "The festival of flames begins!") public static NpcStringId THE_FESTIVAL_OF_FLAMES_BEGINS; @ClientString(id = 3000126, message = "After the festival of flames ends, 'Victory' will appear.") @@ -38095,7 +41056,7 @@ public final class NpcStringId @ClientString(id = 3000129, message = "At some point your memories became mine and they turned into our memories.") public static NpcStringId AT_SOME_POINT_YOUR_MEMORIES_BECAME_MINE_AND_THEY_TURNED_INTO_OUR_MEMORIES; - @ClientString(id = 3000130, message = "You can get rewards if you talk to 'Victory'. ") + @ClientString(id = 3000130, message = "You can get rewards if you talk to 'Victory'.") public static NpcStringId YOU_CAN_GET_REWARDS_IF_YOU_TALK_TO_VICTORY; @ClientString(id = 3000131, message = "Thank you for your unwavering faith for all this time.") @@ -38128,6 +41089,87 @@ public final class NpcStringId @ClientString(id = 3000140, message = "Kneel down! Frederick the Destroyer will appear!") public static NpcStringId KNEEL_DOWN_FREDERICK_THE_DESTROYER_WILL_APPEAR; + @ClientString(id = 3000141, message = "As the party includes a new/returning warrior, a bonus reward will be given if the raid is successful.") + public static NpcStringId AS_THE_PARTY_INCLUDES_A_NEW_RETURNING_WARRIOR_A_BONUS_REWARD_WILL_BE_GIVEN_IF_THE_RAID_IS_SUCCESSFUL; + + @ClientString(id = 3000142, message = "Temporary Raid Herald Blue has appeared.") + public static NpcStringId TEMPORARY_RAID_HERALD_BLUE_HAS_APPEARED; + + @ClientString(id = 3000143, message = "What's this, baa? Animal cure, baa? How'd you know I was hiding here, baa?") + public static NpcStringId WHAT_S_THIS_BAA_ANIMAL_CURE_BAA_HOW_D_YOU_KNOW_I_WAS_HIDING_HERE_BAA; + + @ClientString(id = 3000144, message = "$s1, you hurt my heart the most, baa...") + public static NpcStringId S1_YOU_HURT_MY_HEART_THE_MOST_BAA; + + @ClientString(id = 3000145, message = "I don't like Pink, she tries to be too cute, baa...") + public static NpcStringId I_DON_T_LIKE_PINK_SHE_TRIES_TO_BE_TOO_CUTE_BAA; + + @ClientString(id = 3000146, message = "W-Wait... I think we're going too fast, baa. I refuse to be a target for now, baa!") + public static NpcStringId W_WAIT_I_THINK_WE_RE_GOING_TOO_FAST_BAA_I_REFUSE_TO_BE_A_TARGET_FOR_NOW_BAA; + + @ClientString(id = 3000147, message = "$s1, you work the hardest, baa...! Everyone needs to give more effort, baa!") + public static NpcStringId S1_YOU_WORK_THE_HARDEST_BAA_EVERYONE_NEEDS_TO_GIVE_MORE_EFFORT_BAA; + + @ClientString(id = 3000148, message = "Black always has too much heavy baggage. I don't like it, baa.") + public static NpcStringId BLACK_ALWAYS_HAS_TOO_MUCH_HEAVY_BAGGAGE_I_DON_T_LIKE_IT_BAA; + + @ClientString(id = 3000149, message = "I think I'm about half recovered, baa... $s1, you recovered me the most, baa...") + public static NpcStringId I_THINK_I_M_ABOUT_HALF_RECOVERED_BAA_S1_YOU_RECOVERED_ME_THE_MOST_BAA; + + @ClientString(id = 3000150, message = "Green is old and keeps trying to ride on my back. I don't like it, baa.") + public static NpcStringId GREEN_IS_OLD_AND_KEEPS_TRYING_TO_RIDE_ON_MY_BACK_I_DON_T_LIKE_IT_BAA; + + @ClientString(id = 3000151, message = "I'm sad there isn't much left, but $s1, you're the most skillful, baa.") + public static NpcStringId I_M_SAD_THERE_ISN_T_MUCH_LEFT_BUT_S1_YOU_RE_THE_MOST_SKILLFUL_BAA; + + @ClientString(id = 3000152, message = "I have to work when I recover, baa... I don't wanna, baa... I'll use the hiding technique that I learned over Blue's shoulders, baa...!") + public static NpcStringId I_HAVE_TO_WORK_WHEN_I_RECOVER_BAA_I_DON_T_WANNA_BAA_I_LL_USE_THE_HIDING_TECHNIQUE_THAT_I_LEARNED_OVER_BLUE_S_SHOULDERS_BAA; + + @ClientString(id = 3000153, message = "Red is an evil merchant, baa... Don't get tricked, baa...") + public static NpcStringId RED_IS_AN_EVIL_MERCHANT_BAA_DON_T_GET_TRICKED_BAA; + + @ClientString(id = 3000154, message = "I'm almost recovered now, baa... $s1, I hate you the most, baa...!") + public static NpcStringId I_M_ALMOST_RECOVERED_NOW_BAA_S1_I_HATE_YOU_THE_MOST_BAA; + + @ClientString(id = 3000155, message = "$s1, why don't you switch jobs and become a veterinarian in Elysium, baa?") + public static NpcStringId S1_WHY_DON_T_YOU_SWITCH_JOBS_AND_BECOME_A_VETERINARIAN_IN_ELYSIUM_BAA; + + @ClientString(id = 3000156, message = "Boo, I have to work again, baa... Take the gift from my baggage, baa...!") + public static NpcStringId BOO_I_HAVE_TO_WORK_AGAIN_BAA_TAKE_THE_GIFT_FROM_MY_BAGGAGE_BAA; + + @ClientString(id = 3000157, message = "$s1 has summoned an Unstable Soul from the Soul Device.") + public static NpcStringId S1_HAS_SUMMONED_AN_UNSTABLE_SOUL_FROM_THE_SOUL_DEVICE; + + @ClientString(id = 3000158, message = "Harpas is dead, and $s1 is awarded a Medal of Honor.") + public static NpcStringId HARPAS_IS_DEAD_AND_S1_IS_AWARDED_A_MEDAL_OF_HONOR; + + @ClientString(id = 3000159, message = "Garp is dead, and $s1 and $s2 are each awarded a Medal of Honor.") + public static NpcStringId GARP_IS_DEAD_AND_S1_AND_S2_ARE_EACH_AWARDED_A_MEDAL_OF_HONOR; + + @ClientString(id = 3000160, message = "Moricks is dead, and $s1 is awarded a Grand Medal of Honor, and all party members a Medal of Honor.") + public static NpcStringId MORICKS_IS_DEAD_AND_S1_IS_AWARDED_A_GRAND_MEDAL_OF_HONOR_AND_ALL_PARTY_MEMBERS_A_MEDAL_OF_HONOR; + + @ClientString(id = 3000161, message = "White white white dog...!") + public static NpcStringId WHITE_WHITE_WHITE_DOG; + + @ClientString(id = 3000162, message = "Pink pink pink dog...!") + public static NpcStringId PINK_PINK_PINK_DOG; + + @ClientString(id = 3000163, message = "Hello there, warrior.") + public static NpcStringId HELLO_THERE_WARRIOR; + + @ClientString(id = 3000164, message = "Golden Dog really wanted to see you.") + public static NpcStringId GOLDEN_DOG_REALLY_WANTED_TO_SEE_YOU; + + @ClientString(id = 3000165, message = "What an honor to see the heroic warrior of Aden in person...") + public static NpcStringId WHAT_AN_HONOR_TO_SEE_THE_HEROIC_WARRIOR_OF_ADEN_IN_PERSON; + + @ClientString(id = 3000166, message = "Your gaze is making me nervous...") + public static NpcStringId YOUR_GAZE_IS_MAKING_ME_NERVOUS; + + @ClientString(id = 3000167, message = "You're way more dashing than I thought, warrior!") + public static NpcStringId YOU_RE_WAY_MORE_DASHING_THAN_I_THOUGHT_WARRIOR; + @ClientString(id = 8888001, message = "Intruder. The gate will soon be closed.") public static NpcStringId INTRUDER_THE_GATE_WILL_SOON_BE_CLOSED; @@ -38365,7 +41407,7 @@ public final class NpcStringId @ClientString(id = 10307004, message = "$s1, be careful. Sad... my fairies!") public static NpcStringId S1_BE_CAREFUL_SAD_MY_FAIRIES; - @ClientString(id = 10307005, message = "Given to $s1 ") + @ClientString(id = 10307005, message = "Given to $s1") public static NpcStringId GIVEN_TO_S1; @ClientString(id = 10307006, message = "Traitor Crystalline Golem") @@ -38434,7 +41476,7 @@ public final class NpcStringId @ClientString(id = 10338013, message = "Only those strong enough shall proceed.") public static NpcStringId ONLY_THOSE_STRONG_ENOUGH_SHALL_PROCEED; - @ClientString(id = 10338014, message = "Are you against the will of light? ") + @ClientString(id = 10338014, message = "Are you against the will of light?") public static NpcStringId ARE_YOU_AGAINST_THE_WILL_OF_LIGHT; @ClientString(id = 10338015, message = "Come! Attack me if you dare!") @@ -38491,13 +41533,13 @@ public final class NpcStringId @ClientString(id = 10338032, message = "Only those of light may pass. Others must prove their strength.") public static NpcStringId ONLY_THOSE_OF_LIGHT_MAY_PASS_OTHERS_MUST_PROVE_THEIR_STRENGTH; - @ClientString(id = 10338033, message = "Warrior. I've finally got out of seal of light thanks to you. ") + @ClientString(id = 10338033, message = "Warrior. I've finally got out of seal of light thanks to you.") public static NpcStringId WARRIOR_I_VE_FINALLY_GOT_OUT_OF_SEAL_OF_LIGHT_THANKS_TO_YOU; @ClientString(id = 10338034, message = "Is strength to defend the world what you wanted?") public static NpcStringId IS_STRENGTH_TO_DEFEND_THE_WORLD_WHAT_YOU_WANTED; - @ClientString(id = 10338035, message = "I will awaken you... ") + @ClientString(id = 10338035, message = "I will awaken you...") public static NpcStringId I_WILL_AWAKEN_YOU; @ClientString(id = 10338036, message = "Receive this power form the ancient Giant. ") @@ -38758,6 +41800,330 @@ public final class NpcStringId @ClientString(id = 11170136, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_S1_REPLY_S2_INSPECTOR_JUDICATOR_BUTTON_2; + @ClientString(id = 12230001, message = "The assault of Etina Great Temple has begun in Server Devianne.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_DEVIANNE; + + @ClientString(id = 12230002, message = "The assault of Etina Great Temple has begun in Server Nevit.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_NEVIT; + + @ClientString(id = 12230003, message = "The assault of Etina Great Temple has begun in Server Cara.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_CARA; + + @ClientString(id = 12230004, message = "The assault of Etina Great Temple has begun in Server Tersi.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_TERSI; + + @ClientString(id = 12230005, message = "The assault of Etina Great Temple has begun in Server Bremnon.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_BREMNON; + + @ClientString(id = 12230006, message = "The assault of Etina Great Temple has begun in Server Lionel.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_LIONEL; + + @ClientString(id = 12230007, message = "The assault of Etina Great Temple has begun in Server Bartz.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_BARTZ; + + @ClientString(id = 12230008, message = "The assault of Etina Great Temple has begun in Server Sieghardt.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_SIEGHARDT; + + @ClientString(id = 12230009, message = "The assault of Etina Great Temple has begun in Server Kain.") + public static NpcStringId THE_ASSAULT_OF_ETINA_GREAT_TEMPLE_HAS_BEGUN_IN_SERVER_KAIN; + + @ClientString(id = 12230010, message = "The heroes of Aden have gathered to assault Etina Great Temple.") + public static NpcStringId THE_HEROES_OF_ADEN_HAVE_GATHERED_TO_ASSAULT_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12230011, message = "Server Devianne has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_DEVIANNE_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230012, message = "Server Nevit has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_NEVIT_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230013, message = "Server Cara has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_CARA_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230014, message = "Server Tersi has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_TERSI_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230015, message = "Server Bremnon has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_BREMNON_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230016, message = "Server Lionel has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_LIONEL_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230017, message = "Server Bartz has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_BARTZ_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230018, message = "Server Sieghardt has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_SIEGHARDT_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230019, message = "Server Kain has been selected as the main server and will face Etis van Etina.") + public static NpcStringId SERVER_KAIN_HAS_BEEN_SELECTED_AS_THE_MAIN_SERVER_AND_WILL_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12230020, message = "Server Devianne has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_DEVIANNE_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230021, message = "Server Nevit has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_NEVIT_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230022, message = "Server Cara has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_CARA_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230023, message = "Server Tersi has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_TERSI_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230024, message = "Server Bremnon has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_BREMNON_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230025, message = "Server Lionel has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_LIONEL_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230026, message = "Server Bartz has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_BARTZ_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230027, message = "Server Sieghardt has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_SIEGHARDT_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230028, message = "Server Kain has been selected as a support server and will face Kain van Halter.") + public static NpcStringId SERVER_KAIN_HAS_BEEN_SELECTED_AS_A_SUPPORT_SERVER_AND_WILL_FACE_KAIN_VAN_HALTER; + + @ClientString(id = 12230029, message = "Gatekeeper Paragon of the Great Temple has fallen. The news of the victory will be reported back home.") + public static NpcStringId GATEKEEPER_PARAGON_OF_THE_GREAT_TEMPLE_HAS_FALLEN_THE_NEWS_OF_THE_VICTORY_WILL_BE_REPORTED_BACK_HOME; + + @ClientString(id = 12230030, message = "Server Devianne has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230031, message = "Server Nevit has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_NEVIT_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230032, message = "Server Cara has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_CARA_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230033, message = "Server Tersi has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_TERSI_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230034, message = "Server Bremnon has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_BREMNON_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230035, message = "Server Lionel has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_LIONEL_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230036, message = "Server Bartz has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_BARTZ_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230037, message = "Server Sieghardt has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230038, message = "Server Kain has engaged Etis van Etina in battle.") + public static NpcStringId SERVER_KAIN_HAS_ENGAGED_ETIS_VAN_ETINA_IN_BATTLE; + + @ClientString(id = 12230039, message = "Server Devianne has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230040, message = "Server Nevit has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_NEVIT_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230041, message = "Server Cara has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_CARA_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230042, message = "Server Tersi has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_TERSI_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230043, message = "Server Bremnon has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_BREMNON_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230044, message = "Server Lionel has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_LIONEL_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230045, message = "Server Bartz has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_BARTZ_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230046, message = "Server Sieghardt has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230047, message = "Server Kain has engaged Kain van Halter in battle.") + public static NpcStringId SERVER_KAIN_HAS_ENGAGED_KAIN_VAN_HALTER_IN_BATTLE; + + @ClientString(id = 12230048, message = "Server Devianne has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_DEVIANNE_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230049, message = "Server Nevit has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_NEVIT_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230050, message = "Server Cara has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_CARA_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230051, message = "Server Tersi has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_TERSI_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230052, message = "Server Bremnon has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_BREMNON_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230053, message = "Server Lionel has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_LIONEL_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230054, message = "Server Bartz has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_BARTZ_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230055, message = "Server Sieghardt has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_SIEGHARDT_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230056, message = "Server Kain has battled Etis van Etina and forced her to reveal her true self.") + public static NpcStringId SERVER_KAIN_HAS_BATTLED_ETIS_VAN_ETINA_AND_FORCED_HER_TO_REVEAL_HER_TRUE_SELF; + + @ClientString(id = 12230057, message = "Server Devianne has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230058, message = "Server Nevit has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_NEVIT_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230059, message = "Server Cara has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_CARA_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230060, message = "Server Tersi has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_TERSI_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230061, message = "Server Bremnon has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_BREMNON_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230062, message = "Server Lionel has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_LIONEL_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230063, message = "Server Bartz has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_BARTZ_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230064, message = "Server Sieghardt has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230065, message = "Server Kain has defeated Etis van Etina and won the battle.") + public static NpcStringId SERVER_KAIN_HAS_DEFEATED_ETIS_VAN_ETINA_AND_WON_THE_BATTLE; + + @ClientString(id = 12230066, message = "Server Devianne has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_DEVIANNE_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230067, message = "Server Nevit has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_NEVIT_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230068, message = "Server Cara has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_CARA_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230069, message = "Server Tersi has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_TERSI_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230070, message = "Server Bremnon has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_BREMNON_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230071, message = "Server Lionel has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_LIONEL_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230072, message = "Server Bartz has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_BARTZ_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230073, message = "Server Sieghardt has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_SIEGHARDT_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230074, message = "Server Kain has defeated Kain van Halter and won the battle.") + public static NpcStringId SERVER_KAIN_HAS_DEFEATED_KAIN_VAN_HALTER_AND_WON_THE_BATTLE; + + @ClientString(id = 12230075, message = "The Seal of Gnosis activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_GNOSIS_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230076, message = "The Seal of Strife activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_STRIFE_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230077, message = "The Seal of Avarice activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_AVARICE_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230078, message = "The Seal of Punishment activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_PUNISHMENT_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230079, message = "The Seal of Awakening activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_AWAKENING_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230080, message = "The Seal of Calamity activates and enormous power begins to flow out.") + public static NpcStringId THE_SEAL_OF_CALAMITY_ACTIVATES_AND_ENORMOUS_POWER_BEGINS_TO_FLOW_OUT; + + @ClientString(id = 12230081, message = "The Seal of Destruction activates and the entire Etina Great Temple is now under the influence of the seal.") + public static NpcStringId THE_SEAL_OF_DESTRUCTION_ACTIVATES_AND_THE_ENTIRE_ETINA_GREAT_TEMPLE_IS_NOW_UNDER_THE_INFLUENCE_OF_THE_SEAL; + + @ClientString(id = 12230082, message = "Etis van Etina uses the power of the Seven Signs to summon all 7 seals inside the temple.") + public static NpcStringId ETIS_VAN_ETINA_USES_THE_POWER_OF_THE_SEVEN_SIGNS_TO_SUMMON_ALL_7_SEALS_INSIDE_THE_TEMPLE; + + @ClientString(id = 12230083, message = "Kain Van Halter uses the power of the Seven Signs to summon 4 seals inside the temple.") + public static NpcStringId KAIN_VAN_HALTER_USES_THE_POWER_OF_THE_SEVEN_SIGNS_TO_SUMMON_4_SEALS_INSIDE_THE_TEMPLE; + + @ClientString(id = 12230084, message = "Etina's elite minions have appeared inside the Great Temple.") + public static NpcStringId ETINA_S_ELITE_MINIONS_HAVE_APPEARED_INSIDE_THE_GREAT_TEMPLE; + + @ClientString(id = 12230085, message = "Time is up and the assault on Etina Great Temple has failed. All forces will retreat in 30 seconds.") + public static NpcStringId TIME_IS_UP_AND_THE_ASSAULT_ON_ETINA_GREAT_TEMPLE_HAS_FAILED_ALL_FORCES_WILL_RETREAT_IN_30_SECONDS; + + @ClientString(id = 12230086, message = "$s1 has been refused entry to Etina Great Temple for failing to meet the Amity Level requirement.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_FAILING_TO_MEET_THE_AMITY_LEVEL_REQUIREMENT; + + @ClientString(id = 12230087, message = "$s1 has been refused entry to Etina Great Temple for failing to meet the character level requirement.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_FAILING_TO_MEET_THE_CHARACTER_LEVEL_REQUIREMENT; + + @ClientString(id = 12230088, message = "$s1 has been refused entry to Etina Great Temple for being too far from the rest of the alliance members.") + public static NpcStringId S1_HAS_BEEN_REFUSED_ENTRY_TO_ETINA_GREAT_TEMPLE_FOR_BEING_TOO_FAR_FROM_THE_REST_OF_THE_ALLIANCE_MEMBERS; + + @ClientString(id = 12230090, message = "A Teleport Device that takes you outside has appeared.\\nYou will be automatically teleported outside in 3 minutes.") + public static NpcStringId A_TELEPORT_DEVICE_THAT_TAKES_YOU_OUTSIDE_HAS_APPEARED_NYOU_WILL_BE_AUTOMATICALLY_TELEPORTED_OUTSIDE_IN_3_MINUTES; + + @ClientString(id = 12230091, message = "60 minutes remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId SIXTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230092, message = "30 minutes remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId THIRTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230093, message = "1 minute remaining until the time expires for the assault on the Etina Great Temple Outer Wall.") + public static NpcStringId ONE_MINUTE_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_OUTER_WALL; + + @ClientString(id = 12230094, message = "60 minutes remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId SIXTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230095, message = "30 minutes remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId THIRTY_MINUTES_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230096, message = "1 minute remaining until the time expires for the assault on the Etina Great Temple Inner Wall.") + public static NpcStringId ONE_MINUTE_REMAINING_UNTIL_THE_TIME_EXPIRES_FOR_THE_ASSAULT_ON_THE_ETINA_GREAT_TEMPLE_INNER_WALL; + + @ClientString(id = 12230100, message = "Praise the magnificent heroes who saved our world from the threats of Etis van Etina and Embryo!") + public static NpcStringId PRAISE_THE_MAGNIFICENT_HEROES_WHO_SAVED_OUR_WORLD_FROM_THE_THREATS_OF_ETIS_VAN_ETINA_AND_EMBRYO; + + @ClientString(id = 12230101, message = "Applaud the victory of the heroes who saved us and remember this glorious day forever!") + public static NpcStringId APPLAUD_THE_VICTORY_OF_THE_HEROES_WHO_SAVED_US_AND_REMEMBER_THIS_GLORIOUS_DAY_FOREVER; + + @ClientString(id = 12230102, message = "Receive the blessings of the saviors who shone like a ray of light and saved the world from danger!") + public static NpcStringId RECEIVE_THE_BLESSINGS_OF_THE_SAVIORS_WHO_SHONE_LIKE_A_RAY_OF_LIGHT_AND_SAVED_THE_WORLD_FROM_DANGER; + + @ClientString(id = 12230103, message = "Great heroes have defeated Etis van Etina in Etina Great Temple.") + public static NpcStringId GREAT_HEROES_HAVE_DEFEATED_ETIS_VAN_ETINA_IN_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12230104, message = "Great heroes have defeated Kain van Halter in Etina Great Temple.") + public static NpcStringId GREAT_HEROES_HAVE_DEFEATED_KAIN_VAN_HALTER_IN_ETINA_GREAT_TEMPLE; + + @ClientString(id = 12240001, message = "Server $s1 has started the attack on Etina's Great Temple.") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_ATTACK_ON_ETINA_S_GREAT_TEMPLE; + + @ClientString(id = 12240002, message = "Server $s1 has been selected as the representative server to face Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_BEEN_SELECTED_AS_THE_REPRESENTATIVE_SERVER_TO_FACE_ETIS_VAN_ETINA; + + @ClientString(id = 12240003, message = "Server $s1 has been selected as the supporting server and will be facing Kain Van Halter.") + public static NpcStringId SERVER_S1_HAS_BEEN_SELECTED_AS_THE_SUPPORTING_SERVER_AND_WILL_BE_FACING_KAIN_VAN_HALTER; + + @ClientString(id = 12240004, message = "Server $s1 has started the battle against Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_BATTLE_AGAINST_ETIS_VAN_ETINA; + + @ClientString(id = 12240005, message = "Server $s1 has started the battle against Kain Van Halter") + public static NpcStringId SERVER_S1_HAS_STARTED_THE_BATTLE_AGAINST_KAIN_VAN_HALTER; + + @ClientString(id = 12240006, message = "Server $s1 has ended the battle against Etis Van Etina, reveling his true form.") + public static NpcStringId SERVER_S1_HAS_ENDED_THE_BATTLE_AGAINST_ETIS_VAN_ETINA_REVELING_HIS_TRUE_FORM; + + @ClientString(id = 12240007, message = "Server $s1 has defeated Etis Van Etina.") + public static NpcStringId SERVER_S1_HAS_DEFEATED_ETIS_VAN_ETINA; + + @ClientString(id = 12240008, message = "Server $s1 has defeated Kain Van Halter.") + public static NpcStringId SERVER_S1_HAS_DEFEATED_KAIN_VAN_HALTER; + @ClientString(id = 14211701, message = "You must activate the 4 Generators.") public static NpcStringId YOU_MUST_ACTIVATE_THE_4_GENERATORS; @@ -38776,7 +42142,7 @@ public final class NpcStringId @ClientString(id = 14211706, message = "A gigantic whirlwind has appeared!") public static NpcStringId A_GIGANTIC_WHIRLWIND_HAS_APPEARED; - @ClientString(id = 14211707, message = "$s1 minutes left until Lindvior gathers his full energy! ") + @ClientString(id = 14211707, message = "$s1 minutes left until Lindvior gathers his full energy!") public static NpcStringId S1_MINUTES_LEFT_UNTIL_LINDVIOR_GATHERS_HIS_FULL_ENERGY; @ClientString(id = 14211708, message = "Lindvior has fallen from the sky!") @@ -38818,7 +42184,7 @@ public final class NpcStringId @ClientString(id = 14250003, message = "Embryo reinforcements have arrived to join the battle!") public static NpcStringId EMBRYO_REINFORCEMENTS_HAVE_ARRIVED_TO_JOIN_THE_BATTLE; - @ClientString(id = 14250004, message = "Embryo is sending out all of its troops. ") + @ClientString(id = 14250004, message = "Embryo is sending out all of its troops.") public static NpcStringId EMBRYO_IS_SENDING_OUT_ALL_OF_ITS_TROOPS; @ClientString(id = 14250005, message = "The Embryo commander-in-chief has joined the battle. He must be stopped.") @@ -38839,8 +42205,8 @@ public final class NpcStringId @ClientString(id = 14250010, message = "Destroyer Grom has appeared!") public static NpcStringId DESTROYER_GROM_HAS_APPEARED; - @ClientString(id = 14250011, message = "Taskmaster Medvezhy has appeared!") - public static NpcStringId TASKMASTER_MEDVEZHY_HAS_APPEARED; + @ClientString(id = 14250011, message = "Executor Medvez has appeared!") + public static NpcStringId EXECUTOR_MEDVEZ_HAS_APPEARED; @ClientString(id = 14250012, message = "Zigatan the Dark Knight has appeared!") public static NpcStringId ZIGATAN_THE_DARK_KNIGHT_HAS_APPEARED; @@ -38860,8 +42226,8 @@ public final class NpcStringId @ClientString(id = 14250017, message = "Creed Guardian Demien has appeared!") public static NpcStringId CREED_GUARDIAN_DEMIEN_HAS_APPEARED; - @ClientString(id = 14250018, message = "Executor Berg has appeared!") - public static NpcStringId EXECUTOR_BERG_HAS_APPEARED; + @ClientString(id = 14250018, message = "High Executor Berg has appeared!") + public static NpcStringId HIGH_EXECUTOR_BERG_HAS_APPEARED; @ClientString(id = 14250019, message = "Tarku has appeared!") public static NpcStringId TARKU_HAS_APPEARED; @@ -38875,11 +42241,11 @@ public final class NpcStringId @ClientString(id = 14250022, message = "Embryo Secret Vault has appeared!") public static NpcStringId EMBRYO_SECRET_VAULT_HAS_APPEARED; - @ClientString(id = 14250023, message = "Ultimate Sakum has appeared!") - public static NpcStringId ULTIMATE_SAKUM_HAS_APPEARED; + @ClientString(id = 14250023, message = "Final Evolution Form Sakum has appeared!") + public static NpcStringId FINAL_EVOLUTION_FORM_SAKUM_HAS_APPEARED; - @ClientString(id = 14250024, message = "Madman Typhoon has appeared!") - public static NpcStringId MADMAN_TYPHOON_HAS_APPEARED; + @ClientString(id = 14250024, message = "Crazy Typhoon has appeared!") + public static NpcStringId CRAZY_TYPHOON_HAS_APPEARED; @ClientString(id = 14250025, message = "Cursed Haren has appeared!") public static NpcStringId CURSED_HAREN_HAS_APPEARED; @@ -38896,8 +42262,8 @@ public final class NpcStringId @ClientString(id = 14250029, message = "Isadora the Great Magus of Greed has appeared!") public static NpcStringId ISADORA_THE_GREAT_MAGUS_OF_GREED_HAS_APPEARED; - @ClientString(id = 14250030, message = "Guardian Whitra has appeared!") - public static NpcStringId GUARDIAN_WHITRA_HAS_APPEARED; + @ClientString(id = 14250030, message = "Guardian Whitera has appeared!") + public static NpcStringId GUARDIAN_WHITERA_HAS_APPEARED; @ClientString(id = 14250031, message = "Guardian Bletra has appeared!") public static NpcStringId GUARDIAN_BLETRA_HAS_APPEARED; @@ -38905,7 +42271,7 @@ public final class NpcStringId @ClientString(id = 14250032, message = "Advanced Siege Tank has appeared!") public static NpcStringId ADVANCED_SIEGE_TANK_HAS_APPEARED; - @ClientString(id = 14250033, message = "Vegima the dark shaman has appeared!") + @ClientString(id = 14250033, message = "Vegima the Dark Shaman has appeared!") public static NpcStringId VEGIMA_THE_DARK_SHAMAN_HAS_APPEARED; @ClientString(id = 14250034, message = "Soul Reaper Varonia has appeared!") @@ -38920,8 +42286,8 @@ public final class NpcStringId @ClientString(id = 14250037, message = "Judge Even has appeared!") public static NpcStringId JUDGE_EVEN_HAS_APPEARED; - @ClientString(id = 14250038, message = "Nemertess the incarnation of revenge has appeared!") - public static NpcStringId NEMERTESS_THE_INCARNATION_OF_REVENGE_HAS_APPEARED; + @ClientString(id = 14250038, message = "Incarnation of Revenge Nemertess has appeared!") + public static NpcStringId INCARNATION_OF_REVENGE_NEMERTESS_HAS_APPEARED; @ClientString(id = 14250039, message = "We'll guard this place. Use this Sayune to teleport to the next area!") public static NpcStringId WE_LL_GUARD_THIS_PLACE_USE_THIS_SAYUNE_TO_TELEPORT_TO_THE_NEXT_AREA; @@ -39412,8 +42778,8 @@ public final class NpcStringId @ClientString(id = 901900146, message = "Lukpie~! I'm full~ It was delicious! Oh... The body is too heavy!") public static NpcStringId LUKPIE_I_M_FULL_IT_WAS_DELICIOUS_OH_THE_BODY_IS_TOO_HEAVY; - @ClientString(id = 901900147, message = "Lukpie~! Too little... It must be at least %s or more!") - public static NpcStringId LUKPIE_TOO_LITTLE_IT_MUST_BE_AT_LEAST_S_OR_MORE; + @ClientString(id = 901900147, message = "Luckpy! It's not enough Adena! There needs to be at least $s1.") + public static NpcStringId LUCKPY_IT_S_NOT_ENOUGH_ADENA_THERE_NEEDS_TO_BE_AT_LEAST_S1; @ClientString(id = 901900148, message = "Oh! Wings are gone!... Are you going to hit me? If you hit me, I will vomit what I've eaten!") public static NpcStringId OH_WINGS_ARE_GONE_ARE_YOU_GOING_TO_HIT_ME_IF_YOU_HIT_ME_I_WILL_VOMIT_WHAT_I_VE_EATEN; @@ -39421,10 +42787,10 @@ public final class NpcStringId @ClientString(id = 901900149, message = "Oh! My wing...ehk! Are you going to hit me? Scary Scary! Bad things will happen when you hit me!") public static NpcStringId OH_MY_WING_EHK_ARE_YOU_GOING_TO_HIT_ME_SCARY_SCARY_BAD_THINGS_WILL_HAPPEN_WHEN_YOU_HIT_ME; - @ClientString(id = 901900150, message = "The evil Land Dragon Antharas has been defeated by brave heroes!!! ") + @ClientString(id = 901900150, message = "The evil Land Dragon Antharas has been defeated by brave heroes!!!") public static NpcStringId THE_EVIL_LAND_DRAGON_ANTHARAS_HAS_BEEN_DEFEATED_BY_BRAVE_HEROES; - @ClientString(id = 901900151, message = "The evil Fire Dragon Valakas has been defeated! ") + @ClientString(id = 901900151, message = "The evil Fire Dragon Valakas has been defeated!") public static NpcStringId THE_EVIL_FIRE_DRAGON_VALAKAS_HAS_BEEN_DEFEATED; @ClientString(id = 901900152, message = "To serve him now means you will be able to escape a worse situation.") diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/SystemMessageId.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/SystemMessageId.java index e363589760..9ca6b466f7 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/SystemMessageId.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/SystemMessageId.java @@ -177,8 +177,8 @@ public final class SystemMessageId @ClientString(id = 48, message = "$s1 is not available at this time: being prepared for reuse.") public static SystemMessageId S1_IS_NOT_AVAILABLE_AT_THIS_TIME_BEING_PREPARED_FOR_REUSE; - @ClientString(id = 49, message = "You have equipped your $s1.") - public static SystemMessageId YOU_HAVE_EQUIPPED_YOUR_S1; + @ClientString(id = 49, message = "Equipped $s1.") + public static SystemMessageId EQUIPPED_S1; @ClientString(id = 50, message = "Your target cannot be found.") public static SystemMessageId YOUR_TARGET_CANNOT_BE_FOUND; @@ -603,8 +603,8 @@ public final class SystemMessageId @ClientString(id = 190, message = "You have failed to create a clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_CREATE_A_CLAN; - @ClientString(id = 191, message = "Clan member $s1 has been expelled.") - public static SystemMessageId CLAN_MEMBER_S1_HAS_BEEN_EXPELLED; + @ClientString(id = 191, message = "$s1 has been dismissed.") + public static SystemMessageId S1_HAS_BEEN_DISMISSED; @ClientString(id = 192, message = "You have failed to expel $s1 from the clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_EXPEL_S1_FROM_THE_CLAN; @@ -621,8 +621,8 @@ public final class SystemMessageId @ClientString(id = 196, message = "$s1 declined your clan invitation.") public static SystemMessageId S1_DECLINED_YOUR_CLAN_INVITATION; - @ClientString(id = 197, message = "You have withdrawn from the clan.") - public static SystemMessageId YOU_HAVE_WITHDRAWN_FROM_THE_CLAN; + @ClientString(id = 197, message = "You have left the clan.") + public static SystemMessageId YOU_HAVE_LEFT_THE_CLAN; @ClientString(id = 198, message = "You have failed to withdraw from the $s1 clan.") public static SystemMessageId YOU_HAVE_FAILED_TO_WITHDRAW_FROM_THE_S1_CLAN; @@ -675,8 +675,8 @@ public final class SystemMessageId @ClientString(id = 214, message = "Your title has been changed.") public static SystemMessageId YOUR_TITLE_HAS_BEEN_CHANGED; - @ClientString(id = 215, message = "A clan war with Clan $s1 has started. The clan that cancels the war first will lose 5,000 Clan Reputation. Any clan that cancels the war will be unable to declare a war for 1 week. If your clan member gets killed by the other clan, XP decreases by 1/4 of the amount that decreases in the hunting ground.") - public static SystemMessageId A_CLAN_WAR_WITH_CLAN_S1_HAS_STARTED_THE_CLAN_THAT_CANCELS_THE_WAR_FIRST_WILL_LOSE_5_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_A_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_GETS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND; + @ClientString(id = 215, message = "A clan war with $s1 has started. The clan that withdraws from the war first will lose 10,000 Clan Reputation. Any clan that cancels the war will be unable to declare war for 1 week. If your clan member is killed by the other clan, XP decreases by 1/4 of the amount that decreases in the hunting ground.") + public static SystemMessageId A_CLAN_WAR_WITH_S1_HAS_STARTED_THE_CLAN_THAT_WITHDRAWS_FROM_THE_WAR_FIRST_WILL_LOSE_10_000_CLAN_REPUTATION_ANY_CLAN_THAT_CANCELS_THE_WAR_WILL_BE_UNABLE_TO_DECLARE_WAR_FOR_1_WEEK_IF_YOUR_CLAN_MEMBER_IS_KILLED_BY_THE_OTHER_CLAN_XP_DECREASES_BY_1_4_OF_THE_AMOUNT_THAT_DECREASES_IN_THE_HUNTING_GROUND; @ClientString(id = 216, message = "War with the $s1 clan has ended.") public static SystemMessageId WAR_WITH_THE_S1_CLAN_HAS_ENDED; @@ -729,8 +729,8 @@ public final class SystemMessageId @ClientString(id = 232, message = "After leaving or having been dismissed from a clan, you must wait at least a day before joining another clan.") public static SystemMessageId AFTER_LEAVING_OR_HAVING_BEEN_DISMISSED_FROM_A_CLAN_YOU_MUST_WAIT_AT_LEAST_A_DAY_BEFORE_JOINING_ANOTHER_CLAN; - @ClientString(id = 233, message = "The Academy/Royal Guard/Order of Knights is full and cannot accept new members at this time.") - public static SystemMessageId THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME; + @ClientString(id = 233, message = "This clan is full and cannot accept new members at this time.") + public static SystemMessageId THIS_CLAN_IS_FULL_AND_CANNOT_ACCEPT_NEW_MEMBERS_AT_THIS_TIME; @ClientString(id = 234, message = "The target must be a clan member.") public static SystemMessageId THE_TARGET_MUST_BE_A_CLAN_MEMBER; @@ -810,8 +810,8 @@ public final class SystemMessageId @ClientString(id = 259, message = "Select clan members from list.") public static SystemMessageId SELECT_CLAN_MEMBERS_FROM_LIST; - @ClientString(id = 260, message = "Your clan lost 5,000 Reputation points for withdrawing from the Clan War.") - public static SystemMessageId YOUR_CLAN_LOST_5_000_REPUTATION_POINTS_FOR_WITHDRAWING_FROM_THE_CLAN_WAR; + @ClientString(id = 260, message = "Your clan lost 10,000 Reputation points for withdrawing from the Clan War.") + public static SystemMessageId YOUR_CLAN_LOST_10_000_REPUTATION_POINTS_FOR_WITHDRAWING_FROM_THE_CLAN_WAR; @ClientString(id = 261, message = "Clan name is invalid.") public static SystemMessageId CLAN_NAME_IS_INVALID; @@ -843,26 +843,26 @@ public final class SystemMessageId @ClientString(id = 270, message = "You have already surrendered.") public static SystemMessageId YOU_HAVE_ALREADY_SURRENDERED; - @ClientString(id = 271, message = "A player can only be granted a title if the clan is level 3 or above.") - public static SystemMessageId A_PLAYER_CAN_ONLY_BE_GRANTED_A_TITLE_IF_THE_CLAN_IS_LEVEL_3_OR_ABOVE; + @ClientString(id = 271, message = "The clan must be level 3 or above to grant a title.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_GRANT_A_TITLE; - @ClientString(id = 272, message = "A clan crest can only be registered when the clan's skill level is 3 or above.") - public static SystemMessageId A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE; + @ClientString(id = 272, message = "The clan must be level 3 or above to register a clan crest.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST; - @ClientString(id = 273, message = "A clan war can only be declared when a clan's level is 3 or above.") - public static SystemMessageId A_CLAN_WAR_CAN_ONLY_BE_DECLARED_WHEN_A_CLAN_S_LEVEL_IS_3_OR_ABOVE; + @ClientString(id = 273, message = "The clan must be level 5 or above to declare a clan war.") + public static SystemMessageId THE_CLAN_MUST_BE_LEVEL_5_OR_ABOVE_TO_DECLARE_A_CLAN_WAR; - @ClientString(id = 274, message = "Your clan's level has increased.") - public static SystemMessageId YOUR_CLAN_S_LEVEL_HAS_INCREASED; + @ClientString(id = 274, message = "Your clan level has risen.") + public static SystemMessageId YOUR_CLAN_LEVEL_HAS_RISEN; - @ClientString(id = 275, message = "The clan has failed to increase its level.") - public static SystemMessageId THE_CLAN_HAS_FAILED_TO_INCREASE_ITS_LEVEL; + @ClientString(id = 275, message = "Failed to level up the clan.") + public static SystemMessageId FAILED_TO_LEVEL_UP_THE_CLAN; @ClientString(id = 276, message = "You do not have the necessary materials or prerequisites to learn this skill.") public static SystemMessageId YOU_DO_NOT_HAVE_THE_NECESSARY_MATERIALS_OR_PREREQUISITES_TO_LEARN_THIS_SKILL; - @ClientString(id = 277, message = "You have earned $s1.") - public static SystemMessageId YOU_HAVE_EARNED_S1_2; + @ClientString(id = 277, message = "You have learned $s1.") + public static SystemMessageId YOU_HAVE_LEARNED_S1; @ClientString(id = 278, message = "You do not have enough SP to learn this skill.") public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_SP_TO_LEARN_THIS_SKILL; @@ -1308,59 +1308,59 @@ public final class SystemMessageId @ClientString(id = 425, message = "Your Create Item level is too low to register this recipe.") public static SystemMessageId YOUR_CREATE_ITEM_LEVEL_IS_TOO_LOW_TO_REGISTER_THIS_RECIPE_2; - @ClientString(id = 426, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 426, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 427, message = "Please contact us.") public static SystemMessageId PLEASE_CONTACT_US; - @ClientString(id = 428, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_2; + @ClientString(id = 428, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_2; - @ClientString(id = 429, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_3; + @ClientString(id = 429, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_3; - @ClientString(id = 430, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_4; + @ClientString(id = 430, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_4; - @ClientString(id = 431, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_5; + @ClientString(id = 431, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_5; - @ClientString(id = 432, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_6; + @ClientString(id = 432, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_6; - @ClientString(id = 433, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_7; + @ClientString(id = 433, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_7; - @ClientString(id = 434, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_8; + @ClientString(id = 434, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_8; - @ClientString(id = 435, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_9; + @ClientString(id = 435, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_9; - @ClientString(id = 436, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_10; + @ClientString(id = 436, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_10; - @ClientString(id = 437, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_11; + @ClientString(id = 437, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_11; - @ClientString(id = 438, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_12; + @ClientString(id = 438, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_12; - @ClientString(id = 439, message = "In accordance with the company's User Agreement and Operational Policy this account has been suspended at the account holder's request. In order to restore the account, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId IN_ACCORDANCE_WITH_THE_COMPANY_S_USER_AGREEMENT_AND_OPERATIONAL_POLICY_THIS_ACCOUNT_HAS_BEEN_SUSPENDED_AT_THE_ACCOUNT_HOLDER_S_REQUEST_IN_ORDER_TO_RESTORE_THE_ACCOUNT_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 439, message = "In accordance with the company's User Agreement and Operational Policy this account has been suspended at the account holder's request. In order to restore the account, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId IN_ACCORDANCE_WITH_THE_COMPANY_S_USER_AGREEMENT_AND_OPERATIONAL_POLICY_THIS_ACCOUNT_HAS_BEEN_SUSPENDED_AT_THE_ACCOUNT_HOLDER_S_REQUEST_IN_ORDER_TO_RESTORE_THE_ACCOUNT_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 440, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_13; + @ClientString(id = 440, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_13; - @ClientString(id = 441, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_14; + @ClientString(id = 441, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_14; - @ClientString(id = 442, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_15; + @ClientString(id = 442, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_15; - @ClientString(id = 443, message = "You cannot use the game services as your identity has not been verified. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).Service Center
.") - public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_SERVICE_CENTER_FONT; + @ClientString(id = 443, message = "You cannot use the game services as your identity has not been verified. For more information, please visit the Support Center on the official website (https://support.4game.com).Service Center.") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_SERVICE_CENTER_FONT; @ClientString(id = 444, message = "This account and all related accounts have been restricted as you have requested a membership withdrawal.") public static SystemMessageId THIS_ACCOUNT_AND_ALL_RELATED_ACCOUNTS_HAVE_BEEN_RESTRICTED_AS_YOU_HAVE_REQUESTED_A_MEMBERSHIP_WITHDRAWAL; @@ -1368,8 +1368,8 @@ public final class SystemMessageId @ClientString(id = 445, message = "(Reference Number Regarding Membership Withdrawal Request: $s1)") public static SystemMessageId REFERENCE_NUMBER_REGARDING_MEMBERSHIP_WITHDRAWAL_REQUEST_S1; - @ClientString(id = 446, message = "For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 446, message = "For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 447, message = ".") public static SystemMessageId EMPTY; @@ -1380,20 +1380,20 @@ public final class SystemMessageId @ClientString(id = 449, message = "The username and password do not match.") public static SystemMessageId THE_USERNAME_AND_PASSWORD_DO_NOT_MATCH; - @ClientString(id = 450, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_16; + @ClientString(id = 450, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_16; @ClientString(id = 451, message = "The password you have entered is incorrect.") public static SystemMessageId THE_PASSWORD_YOU_HAVE_ENTERED_IS_INCORRECT; - @ClientString(id = 452, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_17; + @ClientString(id = 452, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_17; @ClientString(id = 453, message = "Incorrect account information.") public static SystemMessageId INCORRECT_ACCOUNT_INFORMATION; - @ClientString(id = 454, message = "For more details, please contact our customer service center at https://support.lineage2.com.") - public static SystemMessageId FOR_MORE_DETAILS_PLEASE_CONTACT_OUR_CUSTOMER_SERVICE_CENTER_AT_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 454, message = "For more details, please contact our customer service center at https://support.4game.com.") + public static SystemMessageId FOR_MORE_DETAILS_PLEASE_CONTACT_OUR_CUSTOMER_SERVICE_CENTER_AT_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 455, message = "Account is already in use.") public static SystemMessageId ACCOUNT_IS_ALREADY_IN_USE; @@ -1410,8 +1410,8 @@ public final class SystemMessageId @ClientString(id = 459, message = "To continue playing, please purchase Lineage II") public static SystemMessageId TO_CONTINUE_PLAYING_PLEASE_PURCHASE_LINEAGE_II; - @ClientString(id = 460, message = "either directly from the PlayNC Store or from any leading games retailer.") - public static SystemMessageId EITHER_DIRECTLY_FROM_THE_PLAYNC_STORE_OR_FROM_ANY_LEADING_GAMES_RETAILER; + @ClientString(id = 460, message = "either directly from the 4Game Store or from any leading games retailer.") + public static SystemMessageId EITHER_DIRECTLY_FROM_THE_4GAME_STORE_OR_FROM_ANY_LEADING_GAMES_RETAILER; @ClientString(id = 461, message = "Access failed.") public static SystemMessageId ACCESS_FAILED; @@ -1692,8 +1692,8 @@ public final class SystemMessageId @ClientString(id = 553, message = "The opposing clan has applied for dispersion.") public static SystemMessageId THE_OPPOSING_CLAN_HAS_APPLIED_FOR_DISPERSION; - @ClientString(id = 554, message = "You cannot disperse the clans in your alliance.") - public static SystemMessageId YOU_CANNOT_DISPERSE_THE_CLANS_IN_YOUR_ALLIANCE; + @ClientString(id = 554, message = "The opposing clan has requested to dissolve.") + public static SystemMessageId THE_OPPOSING_CLAN_HAS_REQUESTED_TO_DISSOLVE; @ClientString(id = 555, message = "You cannot move due to the weight of your inventory.") public static SystemMessageId YOU_CANNOT_MOVE_DUE_TO_THE_WEIGHT_OF_YOUR_INVENTORY; @@ -1836,8 +1836,8 @@ public final class SystemMessageId @ClientString(id = 601, message = "There are $s1 petitions currently on the waiting list.") public static SystemMessageId THERE_ARE_S1_PETITIONS_CURRENTLY_ON_THE_WAITING_LIST; - @ClientString(id = 602, message = "The Petition Service is currently unavailable. Please send a support ticket by visiting https://support.lineage2.com.") - public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 602, message = "The Petition Service is currently unavailable. Please send a support ticket by visiting https://support.4game.com.") + public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 603, message = "That item cannot be discarded or exchanged.") public static SystemMessageId THAT_ITEM_CANNOT_BE_DISCARDED_OR_EXCHANGED; @@ -2049,8 +2049,8 @@ public final class SystemMessageId @ClientString(id = 672, message = "$s1 Adena disappeared.") public static SystemMessageId S1_ADENA_DISAPPEARED; - @ClientString(id = 673, message = "Only a clan leader whose clan is of level 2 or above is allowed to participate in a clan hall auction.") - public static SystemMessageId ONLY_A_CLAN_LEADER_WHOSE_CLAN_IS_OF_LEVEL_2_OR_ABOVE_IS_ALLOWED_TO_PARTICIPATE_IN_A_CLAN_HALL_AUCTION; + @ClientString(id = 673, message = "You can participate in the clan hall auction if your clan level is 4 or above and you are the clan leader or have the auction right.") + public static SystemMessageId YOU_CAN_PARTICIPATE_IN_THE_CLAN_HALL_AUCTION_IF_YOUR_CLAN_LEVEL_IS_4_OR_ABOVE_AND_YOU_ARE_THE_CLAN_LEADER_OR_HAVE_THE_AUCTION_RIGHT; @ClientString(id = 674, message = "It has not yet been seven days since canceling an auction.") public static SystemMessageId IT_HAS_NOT_YET_BEEN_SEVEN_DAYS_SINCE_CANCELING_AN_AUCTION; @@ -2118,8 +2118,8 @@ public final class SystemMessageId @ClientString(id = 695, message = "You cannot set the name of the pet.") public static SystemMessageId YOU_CANNOT_SET_THE_NAME_OF_THE_PET; - @ClientString(id = 696, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_18; + @ClientString(id = 696, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_18; @ClientString(id = 697, message = "The item enchant value is strange.") public static SystemMessageId THE_ITEM_ENCHANT_VALUE_IS_STRANGE; @@ -2271,8 +2271,8 @@ public final class SystemMessageId @ClientString(id = 746, message = "It is not currently a petition.") public static SystemMessageId IT_IS_NOT_CURRENTLY_A_PETITION; - @ClientString(id = 747, message = "If you need help, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId IF_YOU_NEED_HELP_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 747, message = "If you need help, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId IF_YOU_NEED_HELP_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 748, message = "The distance is too far and so the casting has been stopped.") public static SystemMessageId THE_DISTANCE_IS_TOO_FAR_AND_SO_THE_CASTING_HAS_BEEN_STOPPED; @@ -3054,23 +3054,23 @@ public final class SystemMessageId @ClientString(id = 1007, message = "The preliminary match registration for $s1 has finished.") public static SystemMessageId THE_PRELIMINARY_MATCH_REGISTRATION_FOR_S1_HAS_FINISHED; - @ClientString(id = 1008, message = "A hungry strider cannot be mounted or dismounted.") - public static SystemMessageId A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED; + @ClientString(id = 1008, message = "You can neither mount nor dismount while hungry.") + public static SystemMessageId YOU_CAN_NEITHER_MOUNT_NOR_DISMOUNT_WHILE_HUNGRY; - @ClientString(id = 1009, message = "A strider cannot be ridden when dead.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD; + @ClientString(id = 1009, message = "You cannot use a mount while dead.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_WHILE_DEAD; - @ClientString(id = 1010, message = "A dead strider cannot be ridden.") - public static SystemMessageId A_DEAD_STRIDER_CANNOT_BE_RIDDEN; + @ClientString(id = 1010, message = "You cannot use a dead mount.") + public static SystemMessageId YOU_CANNOT_USE_A_DEAD_MOUNT; - @ClientString(id = 1011, message = "A strider in battle cannot be ridden.") - public static SystemMessageId A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN; + @ClientString(id = 1011, message = "You cannot use a mount that is in battle.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_THAT_IS_IN_BATTLE; - @ClientString(id = 1012, message = "A strider cannot be ridden while in battle.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; + @ClientString(id = 1012, message = "You cannot use a mount while in battle.") + public static SystemMessageId YOU_CANNOT_USE_A_MOUNT_WHILE_IN_BATTLE; - @ClientString(id = 1013, message = "A strider can be ridden only when standing.") - public static SystemMessageId A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; + @ClientString(id = 1013, message = "You must be standing to use a mount.") + public static SystemMessageId YOU_MUST_BE_STANDING_TO_USE_A_MOUNT; @ClientString(id = 1014, message = "Your pet gained $s1 XP.") public static SystemMessageId YOUR_PET_GAINED_S1_XP; @@ -3219,11 +3219,11 @@ public final class SystemMessageId @ClientString(id = 1062, message = "Writing something new is possible after level 10.") public static SystemMessageId WRITING_SOMETHING_NEW_IS_POSSIBLE_AFTER_LEVEL_10; - @ClientString(id = 1063, message = "The Petition Service is currently unavailable, please send a support ticket on https://lineage2.custhelp.com; If you become trapped or unable to move, please use the '/unstuck' command.") - public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_ON_HTTPS_LINEAGE2_CUSTHELP_COM_IF_YOU_BECOME_TRAPPED_OR_UNABLE_TO_MOVE_PLEASE_USE_THE_UNSTUCK_COMMAND; + @ClientString(id = 1063, message = "The Petition Service is currently unavailable, please send a support ticket on support.4game.com; If you become trapped or unable to move, please use the '/unstuck' command.") + public static SystemMessageId THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_ON_SUPPORT_4GAME_COM_IF_YOU_BECOME_TRAPPED_OR_UNABLE_TO_MOVE_PLEASE_USE_THE_UNSTUCK_COMMAND; - @ClientString(id = 1064, message = "The equipment, +$s1 $s2, has been removed.") - public static SystemMessageId THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED; + @ClientString(id = 1064, message = "+$s1 $s2 has been unequipped.") + public static SystemMessageId S1_S2_HAS_BEEN_UNEQUIPPED; @ClientString(id = 1065, message = "While operating a private store or workshop, you cannot discard, destroy, or trade an item.") public static SystemMessageId WHILE_OPERATING_A_PRIVATE_STORE_OR_WORKSHOP_YOU_CANNOT_DISCARD_DESTROY_OR_TRADE_AN_ITEM; @@ -3384,8 +3384,8 @@ public final class SystemMessageId @ClientString(id = 1117, message = "A clan member may not be dismissed during combat.") public static SystemMessageId A_CLAN_MEMBER_MAY_NOT_BE_DISMISSED_DURING_COMBAT; - @ClientString(id = 1118, message = "Unable to process this request until your inventory's weight and slot count are less than 80 percent of capacity.") - public static SystemMessageId UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY; + @ClientString(id = 1118, message = "Not enough space in the inventory. Unable to process this request until your inventory's weight and slot count are less than 80 percent of capacity.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY; @ClientString(id = 1119, message = "Quest was automatically canceled when you attempted to settle the accounts of your quest while your inventory exceeded 80 percent of capacity.") public static SystemMessageId QUEST_WAS_AUTOMATICALLY_CANCELED_WHEN_YOU_ATTEMPTED_TO_SETTLE_THE_ACCOUNTS_OF_YOUR_QUEST_WHILE_YOUR_INVENTORY_EXCEEDED_80_PERCENT_OF_CAPACITY; @@ -3585,14 +3585,14 @@ public final class SystemMessageId @ClientString(id = 1184, message = "This is a period when server statistics are calculated.") public static SystemMessageId THIS_IS_A_PERIOD_WHEN_SERVER_STATISTICS_ARE_CALCULATED; - @ClientString(id = 1185, message = " days left until deletion.") + @ClientString(id = 1185, message = "days left until deletion.") public static SystemMessageId DAYS_LEFT_UNTIL_DELETION; - @ClientString(id = 1186, message = "To create a new account, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId TO_CREATE_A_NEW_ACCOUNT_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 1186, message = "To create a new account, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId TO_CREATE_A_NEW_ACCOUNT_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 1187, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_19; + @ClientString(id = 1187, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_19; @ClientString(id = 1188, message = "Your selected target can no longer receive a recommendation.") public static SystemMessageId YOUR_SELECTED_TARGET_CAN_NO_LONGER_RECEIVE_A_RECOMMENDATION; @@ -3630,7 +3630,7 @@ public final class SystemMessageId @ClientString(id = 1199, message = "==============") public static SystemMessageId CLAN_WAR_TARGET; - @ClientString(id = 1200, message = "= $s1 ($S2 Alliance)") + @ClientString(id = 1200, message = "= $s1 ($s2 Alliance)") public static SystemMessageId S1_S2_ALLIANCE; @ClientString(id = 1201, message = "Please select the quest you wish to abort.") @@ -3906,8 +3906,8 @@ public final class SystemMessageId @ClientString(id = 1291, message = "Although the seal was owned during the previous period, less than 10%% of people have voted.") public static SystemMessageId ALTHOUGH_THE_SEAL_WAS_OWNED_DURING_THE_PREVIOUS_PERIOD_LESS_THAN_10_OF_PEOPLE_HAVE_VOTED; - @ClientString(id = 1292, message = "Since the seal was not owned during the previous period, and since less than 35 percent of people have voted.") - public static SystemMessageId SINCE_THE_SEAL_WAS_NOT_OWNED_DURING_THE_PREVIOUS_PERIOD_AND_SINCE_LESS_THAN_35_PERCENT_OF_PEOPLE_HAVE_VOTED; + @ClientString(id = 1292, message = "The seal was not owned during the previous period, and less than 35%% of people have voted.") + public static SystemMessageId THE_SEAL_WAS_NOT_OWNED_DURING_THE_PREVIOUS_PERIOD_AND_LESS_THAN_35_OF_PEOPLE_HAVE_VOTED; @ClientString(id = 1293, message = "If current trends continue, it will end in a tie.") public static SystemMessageId IF_CURRENT_TRENDS_CONTINUE_IT_WILL_END_IN_A_TIE; @@ -3951,8 +3951,8 @@ public final class SystemMessageId @ClientString(id = 1306, message = "You are no longer trying on equipment.") public static SystemMessageId YOU_ARE_NO_LONGER_TRYING_ON_EQUIPMENT_2; - @ClientString(id = 1307, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_20; + @ClientString(id = 1307, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_20; @ClientString(id = 1308, message = "Congratulations - You've completed a class transfer!") public static SystemMessageId CONGRATULATIONS_YOU_VE_COMPLETED_A_CLASS_TRANSFER; @@ -3969,8 +3969,8 @@ public final class SystemMessageId @ClientString(id = 1312, message = "The latest version of Windows Live Messenger may be obtained from the Windows Live web site (http://explore.live.com/messenger).") public static SystemMessageId THE_LATEST_VERSION_OF_WINDOWS_LIVE_MESSENGER_MAY_BE_OBTAINED_FROM_THE_WINDOWS_LIVE_WEB_SITE_HTTP_EXPLORE_LIVE_COM_MESSENGER; - @ClientString(id = 1313, message = "To better serve our customers, all chat histories are stored and maintained by NCSOFT. If you do not agree to have your chat records stored, please close the chat window now. For more information regarding this procedure, please visit our home page at http://us.ncsoft.com/en/legal/user-agreements/lineage-2-user-agreement.html. Thank you!") - public static SystemMessageId TO_BETTER_SERVE_OUR_CUSTOMERS_ALL_CHAT_HISTORIES_ARE_STORED_AND_MAINTAINED_BY_NCSOFT_IF_YOU_DO_NOT_AGREE_TO_HAVE_YOUR_CHAT_RECORDS_STORED_PLEASE_CLOSE_THE_CHAT_WINDOW_NOW_FOR_MORE_INFORMATION_REGARDING_THIS_PROCEDURE_PLEASE_VISIT_OUR_HOME_PAGE_AT_HTTP_US_NCSOFT_COM_EN_LEGAL_USER_AGREEMENTS_LINEAGE_2_USER_AGREEMENT_HTML_THANK_YOU; + @ClientString(id = 1313, message = "To better serve our customers, all chat histories are stored and maintained by NCSOFT. If you do not agree to have your chat records stored, please close the chat window now. For more information regarding this procedure, please visit our home page at https://eu.4game.com/licence/view/serviceId/1006/type/1. Thank you!") + public static SystemMessageId TO_BETTER_SERVE_OUR_CUSTOMERS_ALL_CHAT_HISTORIES_ARE_STORED_AND_MAINTAINED_BY_NCSOFT_IF_YOU_DO_NOT_AGREE_TO_HAVE_YOUR_CHAT_RECORDS_STORED_PLEASE_CLOSE_THE_CHAT_WINDOW_NOW_FOR_MORE_INFORMATION_REGARDING_THIS_PROCEDURE_PLEASE_VISIT_OUR_HOME_PAGE_AT_HTTPS_EU_4GAME_COM_LICENCE_VIEW_SERVICEID_1006_TYPE_1_THANK_YOU; @ClientString(id = 1314, message = "Please enter the passport ID of the person you wish to add to your contact list.") public static SystemMessageId PLEASE_ENTER_THE_PASSPORT_ID_OF_THE_PERSON_YOU_WISH_TO_ADD_TO_YOUR_CONTACT_LIST; @@ -4407,8 +4407,8 @@ public final class SystemMessageId @ClientString(id = 1458, message = "Your attempt at fishing has been cancelled.") public static SystemMessageId YOUR_ATTEMPT_AT_FISHING_HAS_BEEN_CANCELLED; - @ClientString(id = 1459, message = "You do not have enough bait.") - public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_BAIT; + @ClientString(id = 1459, message = "You do not have a bait.") + public static SystemMessageId YOU_DO_NOT_HAVE_A_BAIT; @ClientString(id = 1460, message = "You reel your line in and stop fishing.") public static SystemMessageId YOU_REEL_YOUR_LINE_IN_AND_STOP_FISHING; @@ -4560,8 +4560,8 @@ public final class SystemMessageId @ClientString(id = 1509, message = "You cannot use that skill in a Olympiad match.") public static SystemMessageId YOU_CANNOT_USE_THAT_SKILL_IN_A_OLYMPIAD_MATCH; - @ClientString(id = 1510, message = "$c1 is attempting to do a resurrection that restores $s2($s3%%) XP. Accept?") - public static SystemMessageId C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT; + @ClientString(id = 1510, message = "$c1 is attempting to resurrect you and restore XP $s2 ($s3%%). Accept?") + public static SystemMessageId C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_XP_S2_S3_ACCEPT; @ClientString(id = 1511, message = "While a pet is being resurrected, it cannot help in resurrecting its master.") public static SystemMessageId WHILE_A_PET_IS_BEING_RESURRECTED_IT_CANNOT_HELP_IN_RESURRECTING_ITS_MASTER; @@ -4866,7 +4866,7 @@ public final class SystemMessageId @ClientString(id = 1611, message = "Party Leader: $c1") public static SystemMessageId PARTY_LEADER_C1; - @ClientString(id = 1612, message = " ==========") + @ClientString(id = 1612, message = "==========") public static SystemMessageId CLAN_WAR_LIST; @ClientString(id = 1613, message = "There is no clan listed on your War List.") @@ -5040,8 +5040,8 @@ public final class SystemMessageId @ClientString(id = 1669, message = "There was nothing found inside.") public static SystemMessageId THERE_WAS_NOTHING_FOUND_INSIDE; - @ClientString(id = 1670, message = "Due to your Reeling and/or Pumping skill being three or more levels higher than your Fishing skill, a $s1%% damage penalty will be applied.") - public static SystemMessageId DUE_TO_YOUR_REELING_AND_OR_PUMPING_SKILL_BEING_THREE_OR_MORE_LEVELS_HIGHER_THAN_YOUR_FISHING_SKILL_A_S1_DAMAGE_PENALTY_WILL_BE_APPLIED; + @ClientString(id = 1670, message = "Due to your Reeling and/or Pumping skill being three or more levels higher than your Fishing Expertise, a $s1%% damage penalty will be applied.") + public static SystemMessageId DUE_TO_YOUR_REELING_AND_OR_PUMPING_SKILL_BEING_THREE_OR_MORE_LEVELS_HIGHER_THAN_YOUR_FISHING_EXPERTISE_A_S1_DAMAGE_PENALTY_WILL_BE_APPLIED; @ClientString(id = 1671, message = "Reeling successful! (Mastery Penalty: $s1%%)") public static SystemMessageId REELING_SUCCESSFUL_MASTERY_PENALTY_S1; @@ -5103,7 +5103,7 @@ public final class SystemMessageId @ClientString(id = 1690, message = "$c1 is already registered on the waiting list for the All-Class Battle.") public static SystemMessageId C1_IS_ALREADY_REGISTERED_ON_THE_WAITING_LIST_FOR_THE_ALL_CLASS_BATTLE; - @ClientString(id = 1691, message = "$c1 does not meet the participation requirements as the inventory weight / slot is filled beyond 80%%.") + @ClientString(id = 1691, message = "$c1 does not meet the participation requirements as the inventory weight/slot is filled beyond 80%%.") public static SystemMessageId C1_DOES_NOT_MEET_THE_PARTICIPATION_REQUIREMENTS_AS_THE_INVENTORY_WEIGHT_SLOT_IS_FILLED_BEYOND_80; @ClientString(id = 1692, message = "$c1 does not meet the participation requirements. You cannot participate in the Olympiad because you have changed your class to subclass.") @@ -5121,11 +5121,11 @@ public final class SystemMessageId @ClientString(id = 1696, message = "Your accumulated play time is $s1.") public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_IS_S1; - @ClientString(id = 1697, message = "Your accumulated play time has reached Fatigue level, so you will receive XP or item drops at only 50 percent of the normal rate. For the sake of you physical and emotional health, we encourage you to log out as soon as possible and take a break before returning.") - public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_FATIGUE_LEVEL_SO_YOU_WILL_RECEIVE_XP_OR_ITEM_DROPS_AT_ONLY_50_PERCENT_OF_THE_NORMAL_RATE_FOR_THE_SAKE_OF_YOU_PHYSICAL_AND_EMOTIONAL_HEALTH_WE_ENCOURAGE_YOU_TO_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_BEFORE_RETURNING; + @ClientString(id = 1697, message = "Your accumulated play time has reached the Fatigue level, so you will receive XP or item drops at only 50%% of the normal rate. For the sake of your physical and emotional health, we encourage you to log out as soon as possible and take a break before returning.") + public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_THE_FATIGUE_LEVEL_SO_YOU_WILL_RECEIVE_XP_OR_ITEM_DROPS_AT_ONLY_50_OF_THE_NORMAL_RATE_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_WE_ENCOURAGE_YOU_TO_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_BEFORE_RETURNING; - @ClientString(id = 1698, message = "Your accumulated play time has reached Ill-health level, so you will no longer gain experience or item drops. For the sake of your physical and emotional health, please log out as soon as possible and take a break. Once you have been logged out for at least 5 hours, XP and item drop rate penalties will be removed.") - public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_ILL_HEALTH_LEVEL_SO_YOU_WILL_NO_LONGER_GAIN_EXPERIENCE_OR_ITEM_DROPS_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_PLEASE_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_ONCE_YOU_HAVE_BEEN_LOGGED_OUT_FOR_AT_LEAST_5_HOURS_XP_AND_ITEM_DROP_RATE_PENALTIES_WILL_BE_REMOVED; + @ClientString(id = 1698, message = "Your accumulated play time has reached the Unhealthy level, so you will no longer gain experience or item drops. For the sake of your physical and emotional health, please log out as soon as possible and take a break. Once you have been logged out for at least 5 hours, XP and item drop rate penalties will be removed.") + public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_THE_UNHEALTHY_LEVEL_SO_YOU_WILL_NO_LONGER_GAIN_EXPERIENCE_OR_ITEM_DROPS_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_PLEASE_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_ONCE_YOU_HAVE_BEEN_LOGGED_OUT_FOR_AT_LEAST_5_HOURS_XP_AND_ITEM_DROP_RATE_PENALTIES_WILL_BE_REMOVED; @ClientString(id = 1699, message = "You cannot dismiss a party member by force.") public static SystemMessageId YOU_CANNOT_DISMISS_A_PARTY_MEMBER_BY_FORCE; @@ -5145,29 +5145,29 @@ public final class SystemMessageId @ClientString(id = 1704, message = "Please close the setup window for your private workshop or private store, and try again.") public static SystemMessageId PLEASE_CLOSE_THE_SETUP_WINDOW_FOR_YOUR_PRIVATE_WORKSHOP_OR_PRIVATE_STORE_AND_TRY_AGAIN; - @ClientString(id = 1705, message = "You can earn PC Points for a further $s1 hour(s).") - public static SystemMessageId YOU_CAN_EARN_PC_POINTS_FOR_A_FURTHER_S1_HOUR_S; + @ClientString(id = 1705, message = "You can earn PA Points for a further $s1 hour(s).") + public static SystemMessageId YOU_CAN_EARN_PA_POINTS_FOR_A_FURTHER_S1_HOUR_S; - @ClientString(id = 1706, message = "You can spend your PC Points for a further $s1 hour(s).") - public static SystemMessageId YOU_CAN_SPEND_YOUR_PC_POINTS_FOR_A_FURTHER_S1_HOUR_S; + @ClientString(id = 1706, message = "You can spend your PA Points for a further $s1 hour(s).") + public static SystemMessageId YOU_CAN_SPEND_YOUR_PA_POINTS_FOR_A_FURTHER_S1_HOUR_S; - @ClientString(id = 1707, message = "You earned $s1 PC Point(s).") - public static SystemMessageId YOU_EARNED_S1_PC_POINT_S; + @ClientString(id = 1707, message = "You earned $s1 PA Point(s).") + public static SystemMessageId YOU_EARNED_S1_PA_POINT_S; - @ClientString(id = 1708, message = "Double points! You earned $s1 PC Point(s).") - public static SystemMessageId DOUBLE_POINTS_YOU_EARNED_S1_PC_POINT_S; + @ClientString(id = 1708, message = "Double points! You earned $s1 PA Point(s).") + public static SystemMessageId DOUBLE_POINTS_YOU_EARNED_S1_PA_POINT_S; @ClientString(id = 1709, message = "You are using $s1 point.") public static SystemMessageId YOU_ARE_USING_S1_POINT; - @ClientString(id = 1710, message = "You are short of PC points.") - public static SystemMessageId YOU_ARE_SHORT_OF_PC_POINTS; + @ClientString(id = 1710, message = "You are short of PA Points.") + public static SystemMessageId YOU_ARE_SHORT_OF_PA_POINTS; - @ClientString(id = 1711, message = "You can no longer spend your PC Points.") - public static SystemMessageId YOU_CAN_NO_LONGER_SPEND_YOUR_PC_POINTS; + @ClientString(id = 1711, message = "You can no longer spend your PA Points.") + public static SystemMessageId YOU_CAN_NO_LONGER_SPEND_YOUR_PA_POINTS; - @ClientString(id = 1712, message = "You can no longer earn PC Points.") - public static SystemMessageId YOU_CAN_NO_LONGER_EARN_PC_POINTS; + @ClientString(id = 1712, message = "You can no longer earn PA Points.") + public static SystemMessageId YOU_CAN_NO_LONGER_EARN_PA_POINTS; @ClientString(id = 1713, message = "The games may be delayed due to an insufficient number of players waiting.") public static SystemMessageId THE_GAMES_MAY_BE_DELAYED_DUE_TO_AN_INSUFFICIENT_NUMBER_OF_PLAYERS_WAITING; @@ -5418,8 +5418,8 @@ public final class SystemMessageId @ClientString(id = 1795, message = "The Royal Guard of $s1 have been created.") public static SystemMessageId THE_ROYAL_GUARD_OF_S1_HAVE_BEEN_CREATED; - @ClientString(id = 1796, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_21; + @ClientString(id = 1796, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_21; @ClientString(id = 1797, message = "$c1 has been promoted to $s2.") public static SystemMessageId C1_HAS_BEEN_PROMOTED_TO_S2; @@ -5442,23 +5442,23 @@ public final class SystemMessageId @ClientString(id = 1803, message = "Participation requests are no longer being accepted.") public static SystemMessageId PARTICIPATION_REQUESTS_ARE_NO_LONGER_BEING_ACCEPTED; - @ClientString(id = 1804, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_22; + @ClientString(id = 1804, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_22; - @ClientString(id = 1805, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_23; + @ClientString(id = 1805, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_23; - @ClientString(id = 1806, message = "You account has been temporarily suspended for acquiring an item involved in account theft. Please verify your identity on our website. For more information, please visit Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId YOU_ACCOUNT_HAS_BEEN_TEMPORARILY_SUSPENDED_FOR_ACQUIRING_AN_ITEM_INVOLVED_IN_ACCOUNT_THEFT_PLEASE_VERIFY_YOUR_IDENTITY_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 1806, message = "You account has been temporarily suspended for acquiring an item involved in account theft. Please verify your identity on our website. For more information, please visit Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId YOU_ACCOUNT_HAS_BEEN_TEMPORARILY_SUSPENDED_FOR_ACQUIRING_AN_ITEM_INVOLVED_IN_ACCOUNT_THEFT_PLEASE_VERIFY_YOUR_IDENTITY_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_PLEASE_VISIT_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 1807, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_24; + @ClientString(id = 1807, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_24; - @ClientString(id = 1808, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_25; + @ClientString(id = 1808, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_25; - @ClientString(id = 1809, message = "You cannot use the game services as your identity has not been verified. Please visit the NCSOFT website ( https://support.lineage2.com) and go through the personal verification process to lift the restriction. For more information, please visit the Support Center on the NCSOFT website.") - public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_VISIT_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_AND_GO_THROUGH_THE_PERSONAL_VERIFICATION_PROCESS_TO_LIFT_THE_RESTRICTION_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE; + @ClientString(id = 1809, message = "You cannot use the game services as your identity has not been verified. Please visit the official website ( https://support.4game.com) and go through the personal verification process to lift the restriction. For more information, please visit the Support Center on the official website.") + public static SystemMessageId YOU_CANNOT_USE_THE_GAME_SERVICES_AS_YOUR_IDENTITY_HAS_NOT_BEEN_VERIFIED_PLEASE_VISIT_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_AND_GO_THROUGH_THE_PERSONAL_VERIFICATION_PROCESS_TO_LIFT_THE_RESTRICTION_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE; @ClientString(id = 1810, message = "The refuse invitation state has been activated.") public static SystemMessageId THE_REFUSE_INVITATION_STATE_HAS_BEEN_ACTIVATED; @@ -5649,14 +5649,14 @@ public final class SystemMessageId @ClientString(id = 1872, message = "You have $s1 hour(s) and $s2 minute(s) left.") public static SystemMessageId YOU_HAVE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT; - @ClientString(id = 1873, message = "There are $s1 hour(s) and $s2 minute(s) left in the fixed use time for this PC Café.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PC_CAF; + @ClientString(id = 1873, message = "There are $s1 hour(s) and $s2 minute(s) left in the fixed use time for this Premium Account.") + public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PREMIUM_ACCOUNT; @ClientString(id = 1874, message = "There are $s1 minute(s) left for this individual user.") public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_FOR_THIS_INDIVIDUAL_USER; - @ClientString(id = 1875, message = "There are $s1 minute(s) left in the fixed use time for this PC Café.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PC_CAF; + @ClientString(id = 1875, message = "There are $s1 minute(s) left in the fixed use time for this Premium Account.") + public static SystemMessageId THERE_ARE_S1_MINUTE_S_LEFT_IN_THE_FIXED_USE_TIME_FOR_THIS_PREMIUM_ACCOUNT; @ClientString(id = 1876, message = "Do you want to leave $s1 clan?") public static SystemMessageId DO_YOU_WANT_TO_LEAVE_S1_CLAN; @@ -5682,8 +5682,8 @@ public final class SystemMessageId @ClientString(id = 1883, message = "There are no offerings I own or I made a bid for.") public static SystemMessageId THERE_ARE_NO_OFFERINGS_I_OWN_OR_I_MADE_A_BID_FOR; - @ClientString(id = 1884, message = "Enter the PC Room coupon serial number:") - public static SystemMessageId ENTER_THE_PC_ROOM_COUPON_SERIAL_NUMBER; + @ClientString(id = 1884, message = "Enter the PA coupon serial number:") + public static SystemMessageId ENTER_THE_PA_COUPON_SERIAL_NUMBER; @ClientString(id = 1885, message = "This serial number cannot be entered. Please try again in $s1 minute(s).") public static SystemMessageId THIS_SERIAL_NUMBER_CANNOT_BE_ENTERED_PLEASE_TRY_AGAIN_IN_S1_MINUTE_S; @@ -5766,8 +5766,8 @@ public final class SystemMessageId @ClientString(id = 1911, message = "A user participating in the Olympiad cannot use summoning or teleporting.") public static SystemMessageId A_USER_PARTICIPATING_IN_THE_OLYMPIAD_CANNOT_USE_SUMMONING_OR_TELEPORTING; - @ClientString(id = 1912, message = "NC OTP service requester only entry") - public static SystemMessageId NC_OTP_SERVICE_REQUESTER_ONLY_ENTRY; + @ClientString(id = 1912, message = "Only those requesting OTP service should input") + public static SystemMessageId ONLY_THOSE_REQUESTING_OTP_SERVICE_SHOULD_INPUT; @ClientString(id = 1913, message = "The remaining recycle time for $s1 is $s2 minute(s).") public static SystemMessageId THE_REMAINING_RECYCLE_TIME_FOR_S1_IS_S2_MINUTE_S; @@ -5790,8 +5790,8 @@ public final class SystemMessageId @ClientString(id = 1919, message = "The Olympiad registration period has ended.") public static SystemMessageId THE_OLYMPIAD_REGISTRATION_PERIOD_HAS_ENDED; - @ClientString(id = 1920, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_26; + @ClientString(id = 1920, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_26; @ClientString(id = 1921, message = "$s2 hour(s) and $s3 minute(s) have passed since $s1 has killed.") public static SystemMessageId S2_HOUR_S_AND_S3_MINUTE_S_HAVE_PASSED_SINCE_S1_HAS_KILLED; @@ -6087,8 +6087,8 @@ public final class SystemMessageId @ClientString(id = 2018, message = "$c1 cannot duel because $c1 is currently fishing.") public static SystemMessageId C1_CANNOT_DUEL_BECAUSE_C1_IS_CURRENTLY_FISHING; - @ClientString(id = 2019, message = "$c1 cannot duel because $c1's HP or MP is below 50%%.") - public static SystemMessageId C1_CANNOT_DUEL_BECAUSE_C1_S_HP_OR_MP_IS_BELOW_50; + @ClientString(id = 2019, message = "Cannot duel because $c1's HP or MP is below 50%%.") + public static SystemMessageId CANNOT_DUEL_BECAUSE_C1_S_HP_OR_MP_IS_BELOW_50; @ClientString(id = 2020, message = "$c1 is in an area where duel is not allowed and you cannot apply for a duel.") public static SystemMessageId C1_IS_IN_AN_AREA_WHERE_DUEL_IS_NOT_ALLOWED_AND_YOU_CANNOT_APPLY_FOR_A_DUEL; @@ -6132,11 +6132,11 @@ public final class SystemMessageId @ClientString(id = 2033, message = "A subclass cannot be created or changed because you have exceeded your inventory limit.") public static SystemMessageId A_SUBCLASS_CANNOT_BE_CREATED_OR_CHANGED_BECAUSE_YOU_HAVE_EXCEEDED_YOUR_INVENTORY_LIMIT; - @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be purchased again.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN; + @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; - @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be purchased again.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED_AGAIN; + @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; @ClientString(id = 2036, message = "Unable to invite because the party is locked.") public static SystemMessageId UNABLE_TO_INVITE_BECAUSE_THE_PARTY_IS_LOCKED; @@ -6156,8 +6156,8 @@ public final class SystemMessageId @ClientString(id = 2041, message = "Some Lineage II features have been limited for free trials. Trial accounts aren't allowed to setup private stores. To unlock all of the features of Lineage II, purchase the full version today.") public static SystemMessageId SOME_LINEAGE_II_FEATURES_HAVE_BEEN_LIMITED_FOR_FREE_TRIALS_TRIAL_ACCOUNTS_AREN_T_ALLOWED_TO_SETUP_PRIVATE_STORES_TO_UNLOCK_ALL_OF_THE_FEATURES_OF_LINEAGE_II_PURCHASE_THE_FULL_VERSION_TODAY; - @ClientString(id = 2042, message = "This account has been suspended for non-payment based on the cell phone payment agreement.\\nPlease go to http://us.ncsoft.com/en/.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_NON_PAYMENT_BASED_ON_THE_CELL_PHONE_PAYMENT_AGREEMENT_NPLEASE_GO_TO_HTTP_US_NCSOFT_COM_EN; + @ClientString(id = 2042, message = "This account has been suspended for non-payment based on the cell phone payment agreement.\\nPlease go to https://eu.4game.com/.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_NON_PAYMENT_BASED_ON_THE_CELL_PHONE_PAYMENT_AGREEMENT_NPLEASE_GO_TO_HTTPS_EU_4GAME_COM; @ClientString(id = 2043, message = "You have exceeded your inventory volume limit and may not take this quest item. Please make room in your inventory and try again.") public static SystemMessageId YOU_HAVE_EXCEEDED_YOUR_INVENTORY_VOLUME_LIMIT_AND_MAY_NOT_TAKE_THIS_QUEST_ITEM_PLEASE_MAKE_ROOM_IN_YOUR_INVENTORY_AND_TRY_AGAIN; @@ -6183,8 +6183,8 @@ public final class SystemMessageId @ClientString(id = 2050, message = "$s1 clan is trying to display a flag.") public static SystemMessageId S1_CLAN_IS_TRYING_TO_DISPLAY_A_FLAG; - @ClientString(id = 2051, message = "You must accept the User Agreement before this account can access Lineage II.\\n Please try again after accepting the agreement on Lineage II's Support Website (https://support.lineage2.com).") - public static SystemMessageId YOU_MUST_ACCEPT_THE_USER_AGREEMENT_BEFORE_THIS_ACCOUNT_CAN_ACCESS_LINEAGE_II_N_PLEASE_TRY_AGAIN_AFTER_ACCEPTING_THE_AGREEMENT_ON_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 2051, message = "You must accept the User Agreement before this account can access Lineage II.\\n Please try again after accepting the agreement on Lineage II's Support Website (https://support.4game.com).") + public static SystemMessageId YOU_MUST_ACCEPT_THE_USER_AGREEMENT_BEFORE_THIS_ACCOUNT_CAN_ACCESS_LINEAGE_II_N_PLEASE_TRY_AGAIN_AFTER_ACCEPTING_THE_AGREEMENT_ON_LINEAGE_II_S_SUPPORT_WEBSITE_HTTPS_SUPPORT_4GAME_COM; @ClientString(id = 2052, message = "A guardian's consent is required before this account can be used to play Lineage II.\\nPlease try again after this consent is provided.") public static SystemMessageId A_GUARDIAN_S_CONSENT_IS_REQUIRED_BEFORE_THIS_ACCOUNT_CAN_BE_USED_TO_PLAY_LINEAGE_II_NPLEASE_TRY_AGAIN_AFTER_THIS_CONSENT_IS_PROVIDED; @@ -6192,14 +6192,14 @@ public final class SystemMessageId @ClientString(id = 2053, message = "This account has declined the User Agreement or is pending a withdrawal request. \\nPlease try again after cancelling this request.") public static SystemMessageId THIS_ACCOUNT_HAS_DECLINED_THE_USER_AGREEMENT_OR_IS_PENDING_A_WITHDRAWAL_REQUEST_NPLEASE_TRY_AGAIN_AFTER_CANCELLING_THIS_REQUEST; - @ClientString(id = 2054, message = "This account has been suspended. \\nFor more information, please go to https://support.lineage2.com.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_NFOR_MORE_INFORMATION_PLEASE_GO_TO_HTTPS_SUPPORT_LINEAGE2_COM; + @ClientString(id = 2054, message = "This account has been suspended. \\nFor more information, please go to https://support.4game.com.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_SUSPENDED_NFOR_MORE_INFORMATION_PLEASE_GO_TO_HTTPS_SUPPORT_4GAME_COM; - @ClientString(id = 2055, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_27; + @ClientString(id = 2055, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_27; - @ClientString(id = 2056, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_28; + @ClientString(id = 2056, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_28; @ClientString(id = 2057, message = "You have blocked $c1.") public static SystemMessageId YOU_HAVE_BLOCKED_C1; @@ -6303,8 +6303,8 @@ public final class SystemMessageId @ClientString(id = 2090, message = "The fortress battle $s1 has begun.") public static SystemMessageId THE_FORTRESS_BATTLE_S1_HAS_BEGUN; - @ClientString(id = 2091, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_29; + @ClientString(id = 2091, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_29; @ClientString(id = 2092, message = "You cannot bid due to a passed-in price.") public static SystemMessageId YOU_CANNOT_BID_DUE_TO_A_PASSED_IN_PRICE; @@ -6354,11 +6354,11 @@ public final class SystemMessageId @ClientString(id = 2107, message = "This instant zone will be terminated in $s1 minute(s). You will be forced out of the dungeon when the time expires.") public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; - @ClientString(id = 2108, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_30; + @ClientString(id = 2108, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_30; - @ClientString(id = 2109, message = "During the server merge, your character name, $s1, conflicted with another. Your name may still be available. Please enter your desired name.") - public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CHARACTER_NAME_S1_CONFLICTED_WITH_ANOTHER_YOUR_NAME_MAY_STILL_BE_AVAILABLE_PLEASE_ENTER_YOUR_DESIRED_NAME; + @ClientString(id = 2109, message = "As the servers have merged, the name $s1 that you have been using may also be in use by someone else. Please enter a new name for your character.") + public static SystemMessageId AS_THE_SERVERS_HAVE_MERGED_THE_NAME_S1_THAT_YOU_HAVE_BEEN_USING_MAY_ALSO_BE_IN_USE_BY_SOMEONE_ELSE_PLEASE_ENTER_A_NEW_NAME_FOR_YOUR_CHARACTER; @ClientString(id = 2110, message = "This character name already exists or is an invalid name. Please enter a new name.") public static SystemMessageId THIS_CHARACTER_NAME_ALREADY_EXISTS_OR_IS_AN_INVALID_NAME_PLEASE_ENTER_A_NEW_NAME; @@ -6375,32 +6375,32 @@ public final class SystemMessageId @ClientString(id = 2114, message = "Forced attack and stand-in-place attacks assigned previously to Ctrl and Shift will be changed to Alt + Q and Alt + E when set as expanded sub-key mode, and CTRL and SHIFT will be available to assign to another shortcut. Will you continue?") public static SystemMessageId FORCED_ATTACK_AND_STAND_IN_PLACE_ATTACKS_ASSIGNED_PREVIOUSLY_TO_CTRL_AND_SHIFT_WILL_BE_CHANGED_TO_ALT_Q_AND_ALT_E_WHEN_SET_AS_EXPANDED_SUB_KEY_MODE_AND_CTRL_AND_SHIFT_WILL_BE_AVAILABLE_TO_ASSIGN_TO_ANOTHER_SHORTCUT_WILL_YOU_CONTINUE; - @ClientString(id = 2115, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_31; + @ClientString(id = 2115, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_31; - @ClientString(id = 2116, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_32; + @ClientString(id = 2116, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_32; - @ClientString(id = 2117, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_33; + @ClientString(id = 2117, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_33; - @ClientString(id = 2118, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_34; + @ClientString(id = 2118, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_34; - @ClientString(id = 2119, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_35; + @ClientString(id = 2119, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_35; - @ClientString(id = 2120, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_36; + @ClientString(id = 2120, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_36; - @ClientString(id = 2121, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_37; + @ClientString(id = 2121, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_37; - @ClientString(id = 2122, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_38; + @ClientString(id = 2122, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_38; - @ClientString(id = 2123, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_39; + @ClientString(id = 2123, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_39; @ClientString(id = 2124, message = "During the server merge, your clan name, $s1, conflicted with another. Your clan name may still be available. Please enter your desired name.") public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CLAN_NAME_S1_CONFLICTED_WITH_ANOTHER_YOUR_CLAN_NAME_MAY_STILL_BE_AVAILABLE_PLEASE_ENTER_YOUR_DESIRED_NAME; @@ -6408,14 +6408,14 @@ public final class SystemMessageId @ClientString(id = 2125, message = "The clan name already exists or is an invalid name. Please enter another clan name.") public static SystemMessageId THE_CLAN_NAME_ALREADY_EXISTS_OR_IS_AN_INVALID_NAME_PLEASE_ENTER_ANOTHER_CLAN_NAME; - @ClientString(id = 2126, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_40; + @ClientString(id = 2126, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_40; - @ClientString(id = 2127, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_41; + @ClientString(id = 2127, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_41; - @ClientString(id = 2128, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_42; + @ClientString(id = 2128, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_42; @ClientString(id = 2129, message = "The augmented item cannot be converted. Please convert after the augmentation has been removed.") public static SystemMessageId THE_AUGMENTED_ITEM_CANNOT_BE_CONVERTED_PLEASE_CONVERT_AFTER_THE_AUGMENTATION_HAS_BEEN_REMOVED; @@ -6489,8 +6489,8 @@ public final class SystemMessageId @ClientString(id = 2152, message = "The assigned shortcut will be deleted and the initial shortcut setting restored. Will you continue?") public static SystemMessageId THE_ASSIGNED_SHORTCUT_WILL_BE_DELETED_AND_THE_INITIAL_SHORTCUT_SETTING_RESTORED_WILL_YOU_CONTINUE; - @ClientString(id = 2153, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_43; + @ClientString(id = 2153, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_43; @ClientString(id = 2154, message = "The target is not a flagpole so a flag cannot be displayed.") public static SystemMessageId THE_TARGET_IS_NOT_A_FLAGPOLE_SO_A_FLAG_CANNOT_BE_DISPLAYED; @@ -6576,8 +6576,8 @@ public final class SystemMessageId @ClientString(id = 2181, message = "You have highest the bid submitted in a Rune Castle auction.") public static SystemMessageId YOU_HAVE_HIGHEST_THE_BID_SUBMITTED_IN_A_RUNE_CASTLE_AUCTION; - @ClientString(id = 2182, message = "You cannot polymorph while riding a boat.") - public static SystemMessageId YOU_CANNOT_POLYMORPH_WHILE_RIDING_A_BOAT; + @ClientString(id = 2182, message = "You cannot polymorph while riding on a boat, airship or elevator.") + public static SystemMessageId YOU_CANNOT_POLYMORPH_WHILE_RIDING_ON_A_BOAT_AIRSHIP_OR_ELEVATOR; @ClientString(id = 2183, message = "The fortress battle of $s1 has finished.") public static SystemMessageId THE_FORTRESS_BATTLE_OF_S1_HAS_FINISHED; @@ -6696,11 +6696,11 @@ public final class SystemMessageId @ClientString(id = 2221, message = "Do you wish to activate the selected functions?") public static SystemMessageId DO_YOU_WISH_TO_ACTIVATE_THE_SELECTED_FUNCTIONS; - @ClientString(id = 2222, message = "It will cost 150,000 Adena to place scouts. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_150_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; + @ClientString(id = 2222, message = "It will cost 250,000 Adena to place scouts. Do you wish to continue?") + public static SystemMessageId IT_WILL_COST_250_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2223, message = "It will cost 200,000 Adena for a fortress gate enhancement. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_200_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; + @ClientString(id = 2223, message = "It will cost 800,000 Adena for a fortress gate enhancement. Do you wish to continue?") + public static SystemMessageId IT_WILL_COST_800_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2224, message = "Your crossbow is preparing to fire.") public static SystemMessageId YOUR_CROSSBOW_IS_PREPARING_TO_FIRE; @@ -6882,8 +6882,8 @@ public final class SystemMessageId @ClientString(id = 2283, message = "You cannot transform while sitting.") public static SystemMessageId YOU_CANNOT_TRANSFORM_WHILE_SITTING; - @ClientString(id = 2284, message = "You have obtained all the points you can get today in a place other than Internet Café.") - public static SystemMessageId YOU_HAVE_OBTAINED_ALL_THE_POINTS_YOU_CAN_GET_TODAY_IN_A_PLACE_OTHER_THAN_INTERNET_CAF; + @ClientString(id = 2284, message = "You have obtained all the points you can get today in PA.") + public static SystemMessageId YOU_HAVE_OBTAINED_ALL_THE_POINTS_YOU_CAN_GET_TODAY_IN_PA; @ClientString(id = 2285, message = "This skill cannot remove this trap.") public static SystemMessageId THIS_SKILL_CANNOT_REMOVE_THIS_TRAP; @@ -7002,8 +7002,8 @@ public final class SystemMessageId @ClientString(id = 2323, message = "Current location: Inside Rim Kamaloka") public static SystemMessageId CURRENT_LOCATION_INSIDE_RIM_KAMALOKA; - @ClientString(id = 2324, message = "You do not have enough PC Points.") - public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_PC_POINTS; + @ClientString(id = 2324, message = "You do not have enough PA Points.") + public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_PA_POINTS; @ClientString(id = 2325, message = "Another teleport is taking place. Please try again once the teleport in process ends.") public static SystemMessageId ANOTHER_TELEPORT_IS_TAKING_PLACE_PLEASE_TRY_AGAIN_ONCE_THE_TELEPORT_IN_PROCESS_ENDS; @@ -7011,8 +7011,8 @@ public final class SystemMessageId @ClientString(id = 2326, message = "You have acquired 50 Clan Reputation.") public static SystemMessageId YOU_HAVE_ACQUIRED_50_CLAN_REPUTATION; - @ClientString(id = 2327, message = "You don't have enough Fame to do that.") - public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT; + @ClientString(id = 2327, message = "You don't have enough Clan Reputation Points to do that.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT; @ClientString(id = 2328, message = "Only clans who are level 4 or above can register for battle at Devastated Castle and Fortress of the Dead.") public static SystemMessageId ONLY_CLANS_WHO_ARE_LEVEL_4_OR_ABOVE_CAN_REGISTER_FOR_BATTLE_AT_DEVASTATED_CASTLE_AND_FORTRESS_OF_THE_DEAD; @@ -7020,7 +7020,7 @@ public final class SystemMessageId @ClientString(id = 2329, message = "Vitality Level $s1 $s2") public static SystemMessageId VITALITY_LEVEL_S1_S2; - @ClientString(id = 2330, message = ": XP/SP boosted by $s1.") + @ClientString(id = 2330, message = "- XP/SP boosted by $s1%%.") public static SystemMessageId XP_SP_BOOSTED_BY_S1; @ClientString(id = 2331, message = " $s1") @@ -7056,8 +7056,8 @@ public final class SystemMessageId @ClientString(id = 2341, message = "The enchant will begin once you press the Start button below.") public static SystemMessageId THE_ENCHANT_WILL_BEGIN_ONCE_YOU_PRESS_THE_START_BUTTON_BELOW; - @ClientString(id = 2342, message = "Success! The item is now a $s1.") - public static SystemMessageId SUCCESS_THE_ITEM_IS_NOW_A_S1; + @ClientString(id = 2342, message = "Success! The item is now $s1.") + public static SystemMessageId SUCCESS_THE_ITEM_IS_NOW_S1; @ClientString(id = 2343, message = "Failed. You have obtained $s2 of $s1.") public static SystemMessageId FAILED_YOU_HAVE_OBTAINED_S2_OF_S1; @@ -7068,8 +7068,8 @@ public final class SystemMessageId @ClientString(id = 2345, message = "You have attacked and killed $c1.") public static SystemMessageId YOU_HAVE_ATTACKED_AND_KILLED_C1; - @ClientString(id = 2346, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_44; + @ClientString(id = 2346, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_44; @ClientString(id = 2347, message = "$s1 second(s) to game end!") public static SystemMessageId S1_SECOND_S_TO_GAME_END; @@ -7110,8 +7110,8 @@ public final class SystemMessageId @ClientString(id = 2359, message = "You cannot teleport because you do not have a teleport item.") public static SystemMessageId YOU_CANNOT_TELEPORT_BECAUSE_YOU_DO_NOT_HAVE_A_TELEPORT_ITEM; - @ClientString(id = 2360, message = "My Teleports Spellbk: $s1") - public static SystemMessageId MY_TELEPORTS_SPELLBK_S1; + @ClientString(id = 2360, message = "Scrolls: $s1") + public static SystemMessageId SCROLLS_S1; @ClientString(id = 2361, message = "Current Location: $s1") public static SystemMessageId CURRENT_LOCATION_S1; @@ -7119,8 +7119,8 @@ public final class SystemMessageId @ClientString(id = 2362, message = "The saved teleport location will be deleted. Do you wish to continue?") public static SystemMessageId THE_SAVED_TELEPORT_LOCATION_WILL_BE_DELETED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2363, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_45; + @ClientString(id = 2363, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_45; @ClientString(id = 2364, message = "$s1 has expired.") public static SystemMessageId S1_HAS_EXPIRED; @@ -7182,8 +7182,8 @@ public final class SystemMessageId @ClientString(id = 2383, message = "You cannot report this person again at this time.") public static SystemMessageId YOU_CANNOT_REPORT_THIS_PERSON_AGAIN_AT_THIS_TIME_4; - @ClientString(id = 2384, message = "This item does not meet the requirements for the enhancement spellbook.") - public static SystemMessageId THIS_ITEM_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_THE_ENHANCEMENT_SPELLBOOK; + @ClientString(id = 2384, message = "This item does not meet the requirements for the enhancement scroll.") + public static SystemMessageId THIS_ITEM_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_THE_ENHANCEMENT_SCROLL; @ClientString(id = 2385, message = "Incorrect Lucky Enchant Stone.") public static SystemMessageId INCORRECT_LUCKY_ENCHANT_STONE; @@ -7197,8 +7197,8 @@ public final class SystemMessageId @ClientString(id = 2388, message = "A party cannot be formed in this area.") public static SystemMessageId A_PARTY_CANNOT_BE_FORMED_IN_THIS_AREA; - @ClientString(id = 2389, message = "You have earned the maximum number of PC Points.") - public static SystemMessageId YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PC_POINTS; + @ClientString(id = 2389, message = "You have earned the maximum number of PA Points.") + public static SystemMessageId YOU_HAVE_EARNED_THE_MAXIMUM_NUMBER_OF_PA_POINTS; @ClientString(id = 2390, message = "Your number of My Teleports slots has reached its maximum limit.") public static SystemMessageId YOUR_NUMBER_OF_MY_TELEPORTS_SLOTS_HAS_REACHED_ITS_MAXIMUM_LIMIT; @@ -7209,8 +7209,8 @@ public final class SystemMessageId @ClientString(id = 2392, message = "The Dimensional Item cannot be located because of a temporary connection error.") public static SystemMessageId THE_DIMENSIONAL_ITEM_CANNOT_BE_LOCATED_BECAUSE_OF_A_TEMPORARY_CONNECTION_ERROR; - @ClientString(id = 2393, message = "You earned $s1 PC Point(s).") - public static SystemMessageId YOU_EARNED_S1_PC_POINT_S_2; + @ClientString(id = 2393, message = "You earned $s1 PA Point(s).") + public static SystemMessageId YOU_EARNED_S1_PA_POINT_S_2; @ClientString(id = 2394, message = "That skill cannot be used because your pet/servitor lacks sufficient MP.") public static SystemMessageId THAT_SKILL_CANNOT_BE_USED_BECAUSE_YOUR_PET_SERVITOR_LACKS_SUFFICIENT_MP; @@ -7488,8 +7488,8 @@ public final class SystemMessageId @ClientString(id = 2485, message = "You have been reported as an illegal program user so your actions have been restricted.") public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_SO_YOUR_ACTIONS_HAVE_BEEN_RESTRICTED; - @ClientString(id = 2486, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_46; + @ClientString(id = 2486, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_46; @ClientString(id = 2487, message = "You have been reported as an illegal program user, and your connection has been ended. Please contact our CS team to confirm your identity.") public static SystemMessageId YOU_HAVE_BEEN_REPORTED_AS_AN_ILLEGAL_PROGRAM_USER_AND_YOUR_CONNECTION_HAS_BEEN_ENDED_PLEASE_CONTACT_OUR_CS_TEAM_TO_CONFIRM_YOUR_IDENTITY; @@ -8100,8 +8100,8 @@ public final class SystemMessageId @ClientString(id = 2792, message = "50 Clan Reputation will be awarded. Do you wish to continue?") public static SystemMessageId FIFTY_CLAN_REPUTATION_WILL_BE_AWARDED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this instanced zone.") - public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE; + @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this Instance Zone.") + public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE; @ClientString(id = 2794, message = "The territory war channel and functions will now be deactivated.") public static SystemMessageId THE_TERRITORY_WAR_CHANNEL_AND_FUNCTIONS_WILL_NOW_BE_DEACTIVATED; @@ -8295,11 +8295,32 @@ public final class SystemMessageId @ClientString(id = 2857, message = "The HP gages of all characters can be hidden or shown in the event zone.") public static SystemMessageId THE_HP_GAGES_OF_ALL_CHARACTERS_CAN_BE_HIDDEN_OR_SHOWN_IN_THE_EVENT_ZONE; - @ClientString(id = 2876, message = "Join the Clan Academy to learn the game system as a Clan Member until you reach Level 40. To make the game even more enjoyable, try becoming a member of the clan academy.") - public static SystemMessageId JOIN_THE_CLAN_ACADEMY_TO_LEARN_THE_GAME_SYSTEM_AS_A_CLAN_MEMBER_UNTIL_YOU_REACH_LEVEL_40_TO_MAKE_THE_GAME_EVEN_MORE_ENJOYABLE_TRY_BECOMING_A_MEMBER_OF_THE_CLAN_ACADEMY; + @ClientString(id = 2858, message = "View the Arena Bulletin.") + public static SystemMessageId VIEW_THE_ARENA_BULLETIN; - @ClientString(id = 2877, message = "At level 40, the second class transfer becomes possible. Complete the second class transfer to further enhance the performance of your character.") - public static SystemMessageId AT_LEVEL_40_THE_SECOND_CLASS_TRANSFER_BECOMES_POSSIBLE_COMPLETE_THE_SECOND_CLASS_TRANSFER_TO_FURTHER_ENHANCE_THE_PERFORMANCE_OF_YOUR_CHARACTER; + @ClientString(id = 2859, message = "Hide the Arena Bulletin.") + public static SystemMessageId HIDE_THE_ARENA_BULLETIN; + + @ClientString(id = 2860, message = "Rotate the next target enemy.") + public static SystemMessageId ROTATE_THE_NEXT_TARGET_ENEMY; + + @ClientString(id = 2861, message = "Attack the targeted enemy. (Arena only)") + public static SystemMessageId ATTACK_THE_TARGETED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2862, message = "Mark the targeted enemy. (Arena only)") + public static SystemMessageId MARK_THE_TARGETED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2863, message = "Target the marked enemy. (Arena only)") + public static SystemMessageId TARGET_THE_MARKED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2864, message = "Change the target enemy in the order of closest distance. (Arena only)") + public static SystemMessageId CHANGE_THE_TARGET_ENEMY_IN_THE_ORDER_OF_CLOSEST_DISTANCE_ARENA_ONLY; + + @ClientString(id = 2883, message = "When you join the Clan Academy, you can learn the game system as a clan member until you reach level 40. Join the Clan Academy to enhance your gaming experience.") + public static SystemMessageId WHEN_YOU_JOIN_THE_CLAN_ACADEMY_YOU_CAN_LEARN_THE_GAME_SYSTEM_AS_A_CLAN_MEMBER_UNTIL_YOU_REACH_LEVEL_40_JOIN_THE_CLAN_ACADEMY_TO_ENHANCE_YOUR_GAMING_EXPERIENCE; + + @ClientString(id = 2884, message = "When you reach level 40, the 2nd class transfer becomes available. Completing the 2nd class transfer significantly improves your character's abilities.") + public static SystemMessageId WHEN_YOU_REACH_LEVEL_40_THE_2ND_CLASS_TRANSFER_BECOMES_AVAILABLE_COMPLETING_THE_2ND_CLASS_TRANSFER_SIGNIFICANTLY_IMPROVES_YOUR_CHARACTER_S_ABILITIES; @ClientString(id = 2900, message = "$s1-second(s) to the end of territory war!") public static SystemMessageId S1_SECOND_S_TO_THE_END_OF_TERRITORY_WAR; @@ -8421,8 +8442,8 @@ public final class SystemMessageId @ClientString(id = 2939, message = "A disguise cannot be used when you are in a chaotic state.") public static SystemMessageId A_DISGUISE_CANNOT_BE_USED_WHEN_YOU_ARE_IN_A_CHAOTIC_STATE; - @ClientString(id = 2940, message = "Items with the enchantment level of +3 or higher can benefit from enchanting chance boosting items.") - public static SystemMessageId ITEMS_WITH_THE_ENCHANTMENT_LEVEL_OF_3_OR_HIGHER_CAN_BENEFIT_FROM_ENCHANTING_CHANCE_BOOSTING_ITEMS; + @ClientString(id = 2940, message = "Items enchanted to 3 or above can benefit from chance boosting items.") + public static SystemMessageId ITEMS_ENCHANTED_TO_3_OR_ABOVE_CAN_BENEFIT_FROM_CHANCE_BOOSTING_ITEMS; @ClientString(id = 2941, message = "The request cannot be completed because the requirements are not met. In order to participate in a team match, all team members must have an Olympiad score of 10 or more.") public static SystemMessageId THE_REQUEST_CANNOT_BE_COMPLETED_BECAUSE_THE_REQUIREMENTS_ARE_NOT_MET_IN_ORDER_TO_PARTICIPATE_IN_A_TEAM_MATCH_ALL_TEAM_MEMBERS_MUST_HAVE_AN_OLYMPIAD_SCORE_OF_10_OR_MORE; @@ -8457,8 +8478,8 @@ public final class SystemMessageId @ClientString(id = 2958, message = "An Agathion has already been summoned.") public static SystemMessageId AN_AGATHION_HAS_ALREADY_BEEN_SUMMONED; - @ClientString(id = 2959, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_47; + @ClientString(id = 2959, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_47; @ClientString(id = 2960, message = "You need a(n) $s1.") public static SystemMessageId YOU_NEED_A_N_S1; @@ -8598,8 +8619,8 @@ public final class SystemMessageId @ClientString(id = 3005, message = "This skill cannot be enhanced.") public static SystemMessageId THIS_SKILL_CANNOT_BE_ENHANCED; - @ClientString(id = 3006, message = "$s1 PC Points were withdrawn.") - public static SystemMessageId S1_PC_POINTS_WERE_WITHDRAWN; + @ClientString(id = 3006, message = "$s1 PA Points were withdrawn.") + public static SystemMessageId S1_PA_POINTS_WERE_WITHDRAWN; @ClientString(id = 3007, message = "Shyeed's roar filled with wrath rings throughout the Stakato Nest.") public static SystemMessageId SHYEED_S_ROAR_FILLED_WITH_WRATH_RINGS_THROUGHOUT_THE_STAKATO_NEST; @@ -8877,8 +8898,8 @@ public final class SystemMessageId @ClientString(id = 3098, message = "The certification failed because the line was busy or the call was not received. Please try again.") public static SystemMessageId THE_CERTIFICATION_FAILED_BECAUSE_THE_LINE_WAS_BUSY_OR_THE_CALL_WAS_NOT_RECEIVED_PLEASE_TRY_AGAIN; - @ClientString(id = 3099, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N; + @ClientString(id = 3099, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N; @ClientString(id = 3100, message = "The telephone certification service is currently being checked. Please try again later.") public static SystemMessageId THE_TELEPHONE_CERTIFICATION_SERVICE_IS_CURRENTLY_BEING_CHECKED_PLEASE_TRY_AGAIN_LATER; @@ -8886,8 +8907,8 @@ public final class SystemMessageId @ClientString(id = 3101, message = "Due to heavy volume, the telephone certification service cannot be used at this time. Please try again later.") public static SystemMessageId DUE_TO_HEAVY_VOLUME_THE_TELEPHONE_CERTIFICATION_SERVICE_CANNOT_BE_USED_AT_THIS_TIME_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 3102, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_2; + @ClientString(id = 3102, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_2; @ClientString(id = 3103, message = "The telephone certification failed 3 times in a row, so game play has been blocked for 30 minutes. Please try again later.") public static SystemMessageId THE_TELEPHONE_CERTIFICATION_FAILED_3_TIMES_IN_A_ROW_SO_GAME_PLAY_HAS_BEEN_BLOCKED_FOR_30_MINUTES_PLEASE_TRY_AGAIN_LATER; @@ -9252,11 +9273,11 @@ public final class SystemMessageId @ClientString(id = 3223, message = "The previous name is being registered. Please try again later.") public static SystemMessageId THE_PREVIOUS_NAME_IS_BEING_REGISTERED_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 3224, message = "The maximum matches you can participate in 1 week is 30.") - public static SystemMessageId THE_MAXIMUM_MATCHES_YOU_CAN_PARTICIPATE_IN_1_WEEK_IS_30; + @ClientString(id = 3224, message = "You may participate in up to 30 matches per week.") + public static SystemMessageId YOU_MAY_PARTICIPATE_IN_UP_TO_30_MATCHES_PER_WEEK; @ClientString(id = 3225, message = "You may participate in up to 30 matches per week.") - public static SystemMessageId YOU_MAY_PARTICIPATE_IN_UP_TO_30_MATCHES_PER_WEEK; + public static SystemMessageId YOU_MAY_PARTICIPATE_IN_UP_TO_30_MATCHES_PER_WEEK_2; @ClientString(id = 3226, message = "You cannot move while speaking to an NPC. One moment please.") public static SystemMessageId YOU_CANNOT_MOVE_WHILE_SPEAKING_TO_AN_NPC_ONE_MOMENT_PLEASE; @@ -9315,10 +9336,10 @@ public final class SystemMessageId @ClientString(id = 3244, message = "Take that") public static SystemMessageId TAKE_THAT; - @ClientString(id = 3245, message = " ") + @ClientString(id = 3245, message = "") public static SystemMessageId EMPTY_9; - @ClientString(id = 3246, message = " ") + @ClientString(id = 3246, message = "") public static SystemMessageId EMPTY_10; @ClientString(id = 3247, message = "Argh... Ha ha ha, pretty impressive, as if you cut from the fabric of the gods.") @@ -9345,16 +9366,16 @@ public final class SystemMessageId @ClientString(id = 3254, message = "An error has occurred at the arena, and all matches will handled at no cost.") public static SystemMessageId AN_ERROR_HAS_OCCURRED_AT_THE_ARENA_AND_ALL_MATCHES_WILL_HANDLED_AT_NO_COST; - @ClientString(id = 3255, message = "Arcane Shield decreased your MP by $s1 instead of HP.") - public static SystemMessageId ARCANE_SHIELD_DECREASED_YOUR_MP_BY_S1_INSTEAD_OF_HP; + @ClientString(id = 3255, message = "Mana Armor decreased your MP by $s1 instead of HP.") + public static SystemMessageId MANA_ARMOR_DECREASED_YOUR_MP_BY_S1_INSTEAD_OF_HP; - @ClientString(id = 3256, message = "MP became 0 and the Arcane Shield is disappearing.") - public static SystemMessageId MP_BECAME_0_AND_THE_ARCANE_SHIELD_IS_DISAPPEARING; + @ClientString(id = 3256, message = "MP has reached 0. The Mana Armor has disappeared.") + public static SystemMessageId MP_HAS_REACHED_0_THE_MANA_ARMOR_HAS_DISAPPEARED; - @ClientString(id = 3257, message = " ") + @ClientString(id = 3257, message = "") public static SystemMessageId EMPTY_11; - @ClientString(id = 3258, message = " ") + @ClientString(id = 3258, message = "") public static SystemMessageId EMPTY_12; @ClientString(id = 3259, message = "You have acquired $s1 XP (Bonus: $s2) and $s3 SP (Bonus: $s4).") @@ -9366,8 +9387,8 @@ public final class SystemMessageId @ClientString(id = 3261, message = "This week, you can participate in a total of $s1 matches.") public static SystemMessageId THIS_WEEK_YOU_CAN_PARTICIPATE_IN_A_TOTAL_OF_S1_MATCHES; - @ClientString(id = 3262, message = "You can proceed only when the inventory weight is below 80 percent and the quantity is below 90 percent.") - public static SystemMessageId YOU_CAN_PROCEED_ONLY_WHEN_THE_INVENTORY_WEIGHT_IS_BELOW_80_PERCENT_AND_THE_QUANTITY_IS_BELOW_90_PERCENT; + @ClientString(id = 3262, message = "Not enough space in the Quest inventory. You can proceed only when the inventory weight is below 80 percent and the quantity is below 90 percent.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_QUEST_INVENTORY_YOU_CAN_PROCEED_ONLY_WHEN_THE_INVENTORY_WEIGHT_IS_BELOW_80_PERCENT_AND_THE_QUANTITY_IS_BELOW_90_PERCENT; @ClientString(id = 3263, message = "There are $s2 second(s) remaining for $s1's re-use time. It is reset every day at 6:30 AM.") public static SystemMessageId THERE_ARE_S2_SECOND_S_REMAINING_FOR_S1_S_RE_USE_TIME_IT_IS_RESET_EVERY_DAY_AT_6_30_AM; @@ -9393,8 +9414,8 @@ public final class SystemMessageId @ClientString(id = 3270, message = "$s1 second(s) remaining") public static SystemMessageId S1_SECOND_S_REMAINING_2; - @ClientString(id = 3271, message = "Current Progress: $1") - public static SystemMessageId CURRENT_PROGRESS_1; + @ClientString(id = 3271, message = "Current Progress: $s1") + public static SystemMessageId CURRENT_PROGRESS_S1; @ClientString(id = 3272, message = "$s1") public static SystemMessageId S1_4; @@ -9411,11 +9432,11 @@ public final class SystemMessageId @ClientString(id = 3276, message = "Crystallization cannot be proceeded because there are no items registered.") public static SystemMessageId CRYSTALLIZATION_CANNOT_BE_PROCEEDED_BECAUSE_THERE_ARE_NO_ITEMS_REGISTERED; - @ClientString(id = 3277, message = "Nevit's Advent Blessing: $1") - public static SystemMessageId NEVIT_S_ADVENT_BLESSING_1; + @ClientString(id = 3277, message = "Nevit's Advent Blessing: $s1") + public static SystemMessageId NEVIT_S_ADVENT_BLESSING_BONUS_TIME_S1; - @ClientString(id = 3278, message = "(allowed after $s1 second(s))") - public static SystemMessageId ALLOWED_AFTER_S1_SECOND_S; + @ClientString(id = 3278, message = "(allowed after $s1 sec.)") + public static SystemMessageId ALLOWED_AFTER_S1_SEC; @ClientString(id = 3279, message = "Subclass $s1 has been upgraded to Duel Class $s2. Congratulations!") public static SystemMessageId SUBCLASS_S1_HAS_BEEN_UPGRADED_TO_DUEL_CLASS_S2_CONGRATULATIONS; @@ -9498,8 +9519,8 @@ public final class SystemMessageId @ClientString(id = 3305, message = "Number of people: $s1") public static SystemMessageId NUMBER_OF_PEOPLE_S1_2; - @ClientString(id = 3306, message = "You are declaring Clan War against $s1. If you withdraw from the war, your clan will lose 5,000 Reputation points. Proceed?") - public static SystemMessageId YOU_ARE_DECLARING_CLAN_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_THE_WAR_YOUR_CLAN_WILL_LOSE_5_000_REPUTATION_POINTS_PROCEED; + @ClientString(id = 3306, message = "You are declaring Clan War against $s1. If you withdraw from the war, your clan will lose 10,000 Reputation points. Proceed?") + public static SystemMessageId YOU_ARE_DECLARING_CLAN_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_THE_WAR_YOUR_CLAN_WILL_LOSE_10_000_REPUTATION_POINTS_PROCEED; @ClientString(id = 3307, message = "$s1 will be deleted from Friend List.\\nDo you want to continue? ") public static SystemMessageId S1_WILL_BE_DELETED_FROM_FRIEND_LIST_NDO_YOU_WANT_TO_CONTINUE; @@ -9528,8 +9549,8 @@ public final class SystemMessageId @ClientString(id = 3315, message = "Incorrect PIN entered. After 5 consecutive failed attempts you cannot log in this account for 8 hours.\\nAccumulated attempts: $s1 time(s)") public static SystemMessageId INCORRECT_PIN_ENTERED_AFTER_5_CONSECUTIVE_FAILED_ATTEMPTS_YOU_CANNOT_LOG_IN_THIS_ACCOUNT_FOR_8_HOURS_NACCUMULATED_ATTEMPTS_S1_TIME_S; - @ClientString(id = 3316, message = "Your account has been blocked for 8 hours because an incorrect PIN number has been entered 5 consecutive times. You can un-block your account by resetting your PIN number on ncsoft.com.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_BLOCKED_FOR_8_HOURS_BECAUSE_AN_INCORRECT_PIN_NUMBER_HAS_BEEN_ENTERED_5_CONSECUTIVE_TIMES_YOU_CAN_UN_BLOCK_YOUR_ACCOUNT_BY_RESETTING_YOUR_PIN_NUMBER_ON_NCSOFT_COM; + @ClientString(id = 3316, message = "Your account has been blocked for 8 hours because an incorrect PIN number has been entered 5 consecutive times. You can un-block your account by resetting your PIN number on official website.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_BLOCKED_FOR_8_HOURS_BECAUSE_AN_INCORRECT_PIN_NUMBER_HAS_BEEN_ENTERED_5_CONSECUTIVE_TIMES_YOU_CAN_UN_BLOCK_YOUR_ACCOUNT_BY_RESETTING_YOUR_PIN_NUMBER_ON_OFFICIAL_WEBSITE; @ClientString(id = 3317, message = "The Character PIN can only be entered by using a mouse.") public static SystemMessageId THE_CHARACTER_PIN_CAN_ONLY_BE_ENTERED_BY_USING_A_MOUSE; @@ -9540,8 +9561,8 @@ public final class SystemMessageId @ClientString(id = 3319, message = "You cannot use a PIN number consisting of only one number. Please try again.") public static SystemMessageId YOU_CANNOT_USE_A_PIN_NUMBER_CONSISTING_OF_ONLY_ONE_NUMBER_PLEASE_TRY_AGAIN; - @ClientString(id = 3320, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_48; + @ClientString(id = 3320, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_48; @ClientString(id = 3321, message = "You cannot use a PIN number consisting of repeated number patterns. Please try again.") public static SystemMessageId YOU_CANNOT_USE_A_PIN_NUMBER_CONSISTING_OF_REPEATED_NUMBER_PATTERNS_PLEASE_TRY_AGAIN; @@ -9549,14 +9570,14 @@ public final class SystemMessageId @ClientString(id = 3322, message = "Your Character PIN has been changed.") public static SystemMessageId YOUR_CHARACTER_PIN_HAS_BEEN_CHANGED; - @ClientString(id = 3323, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_49; + @ClientString(id = 3323, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_49; @ClientString(id = 3324, message = "Caution: The number arrangement will change at the next login.") public static SystemMessageId CAUTION_THE_NUMBER_ARRANGEMENT_WILL_CHANGE_AT_THE_NEXT_LOGIN; - @ClientString(id = 3325, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_50; + @ClientString(id = 3325, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_50; @ClientString(id = 3326, message = "The offer can be withdrawn within $s1 day(s) and $s2 hour(s).") public static SystemMessageId THE_OFFER_CAN_BE_WITHDRAWN_WITHIN_S1_DAY_S_AND_S2_HOUR_S; @@ -9708,8 +9729,8 @@ public final class SystemMessageId @ClientString(id = 3375, message = "You cannot use a password that contains continuous numbers. Please enter again.") public static SystemMessageId YOU_CANNOT_USE_A_PASSWORD_THAT_CONTAINS_CONTINUOUS_NUMBERS_PLEASE_ENTER_AGAIN; - @ClientString(id = 3376, message = "This account has been locked for 8 hours due to 5 failed PIN attempts. It has $s1 hour(s) until it is unlocked. Visit ncsoft.com to unlock this account instantly after verifying ownership.") - public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_LOCKED_FOR_8_HOURS_DUE_TO_5_FAILED_PIN_ATTEMPTS_IT_HAS_S1_HOUR_S_UNTIL_IT_IS_UNLOCKED_VISIT_NCSOFT_COM_TO_UNLOCK_THIS_ACCOUNT_INSTANTLY_AFTER_VERIFYING_OWNERSHIP; + @ClientString(id = 3376, message = "This account has been locked for 8 hours due to 5 failed PIN attempts. It has $s1 hour(s) until it is unlocked. Visit official website to unlock this account instantly after verifying ownership.") + public static SystemMessageId THIS_ACCOUNT_HAS_BEEN_LOCKED_FOR_8_HOURS_DUE_TO_5_FAILED_PIN_ATTEMPTS_IT_HAS_S1_HOUR_S_UNTIL_IT_IS_UNLOCKED_VISIT_OFFICIAL_WEBSITE_TO_UNLOCK_THIS_ACCOUNT_INSTANTLY_AFTER_VERIFYING_OWNERSHIP; @ClientString(id = 3377, message = "There was an error in the request.") public static SystemMessageId THERE_WAS_AN_ERROR_IN_THE_REQUEST; @@ -10023,8 +10044,8 @@ public final class SystemMessageId @ClientString(id = 3480, message = "Items that cannot be exchanged/dropped/use a private store or that are for a limited period/augmenting cannot be registered.") public static SystemMessageId ITEMS_THAT_CANNOT_BE_EXCHANGED_DROPPED_USE_A_PRIVATE_STORE_OR_THAT_ARE_FOR_A_LIMITED_PERIOD_AUGMENTING_CANNOT_BE_REGISTERED; - @ClientString(id = 3481, message = "If the weight is 80%% or more and the inventory number is 90%% or more, purchase/cancellation is not possible.") - public static SystemMessageId IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_NUMBER_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE; + @ClientString(id = 3481, message = "If the weight is 80%% or more and the inventory amount is 90%% or more, purchase/cancellation is not possible.") + public static SystemMessageId IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_AMOUNT_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE; @ClientString(id = 3482, message = "The number of allowed Adena has been exceeded.") public static SystemMessageId THE_NUMBER_OF_ALLOWED_ADENA_HAS_BEEN_EXCEEDED; @@ -10155,8 +10176,8 @@ public final class SystemMessageId @ClientString(id = 3524, message = "You are declaring a Clan War against $s1. The Clan War immediately starts when both parties declare the war. Do you want to continue to declare a war?") public static SystemMessageId YOU_ARE_DECLARING_A_CLAN_WAR_AGAINST_S1_THE_CLAN_WAR_IMMEDIATELY_STARTS_WHEN_BOTH_PARTIES_DECLARE_THE_WAR_DO_YOU_WANT_TO_CONTINUE_TO_DECLARE_A_WAR; - @ClientString(id = 3525, message = "Vitality is applied, and you are receiving 200%% bonus XP while hunting. You can use a maximum of 5 Vitality items per week, including Replenishing and Maintaining items.") - public static SystemMessageId VITALITY_IS_APPLIED_AND_YOU_ARE_RECEIVING_200_BONUS_XP_WHILE_HUNTING_YOU_CAN_USE_A_MAXIMUM_OF_5_VITALITY_ITEMS_PER_WEEK_INCLUDING_REPLENISHING_AND_MAINTAINING_ITEMS; + @ClientString(id = 3525, message = "Vitality is applied with a 200%% bonus XP while hunting. You can use a maximum of 5 Vitality items per week, including Replenishing and Maintaining items.") + public static SystemMessageId VITALITY_IS_APPLIED_WITH_A_200_BONUS_XP_WHILE_HUNTING_YOU_CAN_USE_A_MAXIMUM_OF_5_VITALITY_ITEMS_PER_WEEK_INCLUDING_REPLENISHING_AND_MAINTAINING_ITEMS; @ClientString(id = 3526, message = "Vitality is not yet applied. Vitality points are all replenished every week during the regular maintenance. You can use a maximum 5 Vitality items per week, including Replenishing and Maintaining items.") public static SystemMessageId VITALITY_IS_NOT_YET_APPLIED_VITALITY_POINTS_ARE_ALL_REPLENISHED_EVERY_WEEK_DURING_THE_REGULAR_MAINTENANCE_YOU_CAN_USE_A_MAXIMUM_5_VITALITY_ITEMS_PER_WEEK_INCLUDING_REPLENISHING_AND_MAINTAINING_ITEMS; @@ -10392,7 +10413,7 @@ public final class SystemMessageId @ClientString(id = 3603, message = "We must vanquish this new warden…") public static SystemMessageId WE_MUST_VANQUISH_THIS_NEW_WARDEN; - @ClientString(id = 3604, message = " ...f we are to free the Crystal Oracle from Beleth's devious machinations.") + @ClientString(id = 3604, message = "...f we are to free the Crystal Oracle from Beleth's devious machinations.") public static SystemMessageId F_WE_ARE_TO_FREE_THE_CRYSTAL_ORACLE_FROM_BELETH_S_DEVIOUS_MACHINATIONS; @ClientString(id = 3605, message = "Your strength is needed now more than ever to defeat Balok.") @@ -10536,8 +10557,8 @@ public final class SystemMessageId @ClientString(id = 3651, message = "That will close this business for all the world. Haha... Hahaha...") public static SystemMessageId THAT_WILL_CLOSE_THIS_BUSINESS_FOR_ALL_THE_WORLD_HAHA_HAHAHA; - @ClientString(id = 3652, message = "You cannot Awaken due to your current inventory weight. Please organize your inventory and try again. (Dwarven characters must be at 20%% or below the inventory max to Awaken.)") - public static SystemMessageId YOU_CANNOT_AWAKEN_DUE_TO_YOUR_CURRENT_INVENTORY_WEIGHT_PLEASE_ORGANIZE_YOUR_INVENTORY_AND_TRY_AGAIN_DWARVEN_CHARACTERS_MUST_BE_AT_20_OR_BELOW_THE_INVENTORY_MAX_TO_AWAKEN; + @ClientString(id = 3652, message = "You cannot Awaken due to your current inventory weight. Please reduce your inventory weight and try again. (Dwarves must be at 20%% or below the weight max to Awaken.)") + public static SystemMessageId YOU_CANNOT_AWAKEN_DUE_TO_YOUR_CURRENT_INVENTORY_WEIGHT_PLEASE_REDUCE_YOUR_INVENTORY_WEIGHT_AND_TRY_AGAIN_DWARVES_MUST_BE_AT_20_OR_BELOW_THE_WEIGHT_MAX_TO_AWAKEN; @ClientString(id = 3653, message = "Unable to process this request until your inventory's weight and slot count are less than 70 percent of capacity.") public static SystemMessageId UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_70_PERCENT_OF_CAPACITY; @@ -10641,8 +10662,8 @@ public final class SystemMessageId @ClientString(id = 3686, message = "The shared dimensional item has been successfully found.") public static SystemMessageId THE_SHARED_DIMENSIONAL_ITEM_HAS_BEEN_SUCCESSFULLY_FOUND; - @ClientString(id = 3687, message = "The NC OTP number is incorrect. Please check the number and enter it again.") - public static SystemMessageId THE_NC_OTP_NUMBER_IS_INCORRECT_PLEASE_CHECK_THE_NUMBER_AND_ENTER_IT_AGAIN; + @ClientString(id = 3687, message = "The OTP number is incorrect. Please check the number and enter it again.") + public static SystemMessageId THE_OTP_NUMBER_IS_INCORRECT_PLEASE_CHECK_THE_NUMBER_AND_ENTER_IT_AGAIN; @ClientString(id = 3688, message = "The shared dimensional item has not been found.") public static SystemMessageId THE_SHARED_DIMENSIONAL_ITEM_HAS_NOT_BEEN_FOUND; @@ -10743,8 +10764,8 @@ public final class SystemMessageId @ClientString(id = 3720, message = "$s1 Adena is need to operate the manor.") public static SystemMessageId S1_ADENA_IS_NEED_TO_OPERATE_THE_MANOR; - @ClientString(id = 3721, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION; + @ClientString(id = 3721, message = "You are not authorized to do that.") + public static SystemMessageId YOU_ARE_NOT_AUTHORIZED_TO_DO_THAT_2; @ClientString(id = 3722, message = "$s1 has successfully hatched the egg.") public static SystemMessageId S1_HAS_SUCCESSFULLY_HATCHED_THE_EGG; @@ -10758,14 +10779,14 @@ public final class SystemMessageId @ClientString(id = 3725, message = "==========") public static SystemMessageId TEMPERATURE_RAISING_RANKINGS; - @ClientString(id = 3726, message = "Rank $1: $2 ($3.$4 degrees)") - public static SystemMessageId RANK_1_2_3_4_DEGREES; + @ClientString(id = 3726, message = "Rank $s1: $s2 ($s3.$s4 degrees)") + public static SystemMessageId RANK_S1_S2_S3_S4_DEGREES; @ClientString(id = 3727, message = "=======================") public static SystemMessageId EMPTY_13; - @ClientString(id = 3728, message = "$1 receives a prize for raising the temperature most.") - public static SystemMessageId RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; + @ClientString(id = 3728, message = "$s1 receives a prize for raising the temperature most.") + public static SystemMessageId S1_RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; @ClientString(id = 3729, message = "The character and item recipe levels do not match, so it cannot be used normally.") public static SystemMessageId THE_CHARACTER_AND_ITEM_RECIPE_LEVELS_DO_NOT_MATCH_SO_IT_CANNOT_BE_USED_NORMALLY; @@ -10887,8 +10908,8 @@ public final class SystemMessageId @ClientString(id = 3768, message = "Now, offer your lives and die with grace!") public static SystemMessageId NOW_OFFER_YOUR_LIVES_AND_DIE_WITH_GRACE; - @ClientString(id = 3769, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION_2; + @ClientString(id = 3769, message = "You cannot receive the reward because your Inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_CANNOT_RECEIVE_THE_REWARD_BECAUSE_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; @ClientString(id = 3770, message = "The Clan Flag, the symbol of your clan, has been summoned.") public static SystemMessageId THE_CLAN_FLAG_THE_SYMBOL_OF_YOUR_CLAN_HAS_BEEN_SUMMONED; @@ -10974,14 +10995,14 @@ public final class SystemMessageId @ClientString(id = 3797, message = "You've obtained the Energy of Destruction. You can obtain up to 2 of these items a day. You can get more after 06:30 AM every day.") public static SystemMessageId YOU_VE_OBTAINED_THE_ENERGY_OF_DESTRUCTION_YOU_CAN_OBTAIN_UP_TO_2_OF_THESE_ITEMS_A_DAY_YOU_CAN_GET_MORE_AFTER_06_30_AM_EVERY_DAY; - @ClientString(id = 3798, message = "Can be used only when HP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_HP_IS_LESS_THAN_100; + @ClientString(id = 3798, message = "Can only be used when HP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_HP_IS_LESS_THAN_100; - @ClientString(id = 3799, message = "Can be used only when MP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_MP_IS_LESS_THAN_100; + @ClientString(id = 3799, message = "Can only be used when MP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_MP_IS_LESS_THAN_100; - @ClientString(id = 3800, message = "Can be used only when CP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_CP_IS_LESS_THAN_100; + @ClientString(id = 3800, message = "Can only be used when CP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_CP_IS_LESS_THAN_100; @ClientString(id = 3801, message = "I heard Dr. Chaos left for Pavel Ruins with his Golem troops.") public static SystemMessageId I_HEARD_DR_CHAOS_LEFT_FOR_PAVEL_RUINS_WITH_HIS_GOLEM_TROOPS; @@ -11124,17 +11145,17 @@ public final class SystemMessageId @ClientString(id = 3847, message = "Use $s1.") public static SystemMessageId USE_S1_2; - @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights Secret Supply Items.") - public static SystemMessageId S1_OBTAINED_S2_THE_BALTHUS_KNIGHTS_SECRET_SUPPLY_ITEMS; + @ClientString(id = 3848, message = "$s1 obtained $s2, of Sibi's Supply Items.") + public static SystemMessageId S1_OBTAINED_S2_OF_SIBI_S_SUPPLY_ITEMS; - @ClientString(id = 3849, message = "You obtained $s1 Sibis Coins.") - public static SystemMessageId YOU_OBTAINED_S1_SIBIS_COINS; + @ClientString(id = 3849, message = "You have obtained $s1 Sibi's Coins.") + public static SystemMessageId YOU_HAVE_OBTAINED_S1_SIBI_S_COINS; - @ClientString(id = 3850, message = "There are no Sibis Coins available to obtain.") - public static SystemMessageId THERE_ARE_NO_SIBIS_COINS_AVAILABLE_TO_OBTAIN; + @ClientString(id = 3850, message = "There are no Sibi's Coins available to obtain.") + public static SystemMessageId THERE_ARE_NO_SIBI_S_COINS_AVAILABLE_TO_OBTAIN; - @ClientString(id = 3851, message = "You've obtained $s1. You can obtain up to 2 of these items a day. You can get more after 06:30 AM every day.") - public static SystemMessageId YOU_VE_OBTAINED_S1_YOU_CAN_OBTAIN_UP_TO_2_OF_THESE_ITEMS_A_DAY_YOU_CAN_GET_MORE_AFTER_06_30_AM_EVERY_DAY; + @ClientString(id = 3851, message = "You've obtained $s1. You can obtain up to $s2 of these items a day. You can get more after 06:30 AM every day.") + public static SystemMessageId YOU_VE_OBTAINED_S1_YOU_CAN_OBTAIN_UP_TO_S2_OF_THESE_ITEMS_A_DAY_YOU_CAN_GET_MORE_AFTER_06_30_AM_EVERY_DAY; @ClientString(id = 3852, message = "Click the Apply button to apply the changes.") public static SystemMessageId CLICK_THE_APPLY_BUTTON_TO_APPLY_THE_CHANGES; @@ -11229,26 +11250,26 @@ public final class SystemMessageId @ClientString(id = 3882, message = "Because $s1 died, $s2 $s3 is destroyed.") public static SystemMessageId BECAUSE_S1_DIED_S2_S3_IS_DESTROYED; - @ClientString(id = 3883, message = "If you cancel a declared war, you will lose 5,000 Clan Reputation. Proceed?") - public static SystemMessageId IF_YOU_CANCEL_A_DECLARED_WAR_YOU_WILL_LOSE_5_000_CLAN_REPUTATION_PROCEED; + @ClientString(id = 3883, message = "Do you want to withdraw from the war against $s1? If you withdraw from a declared war, you will lose 10,000 Clan Reputation.") + public static SystemMessageId DO_YOU_WANT_TO_WITHDRAW_FROM_THE_WAR_AGAINST_S1_IF_YOU_WITHDRAW_FROM_A_DECLARED_WAR_YOU_WILL_LOSE_10_000_CLAN_REPUTATION; - @ClientString(id = 3884, message = "Can be used only when HP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_HP_IS_LESS_THAN_100_2; + @ClientString(id = 3884, message = "Can only be used when HP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_HP_IS_LESS_THAN_100_2; - @ClientString(id = 3885, message = "Can be used only when MP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_MP_IS_LESS_THAN_100_2; + @ClientString(id = 3885, message = "Can only be used when MP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_MP_IS_LESS_THAN_100_2; - @ClientString(id = 3886, message = "Can be used only when CP is less than 100%%.") - public static SystemMessageId CAN_BE_USED_ONLY_WHEN_CP_IS_LESS_THAN_100_2; + @ClientString(id = 3886, message = "Can only be used when CP is less than 100%%.") + public static SystemMessageId CAN_ONLY_BE_USED_WHEN_CP_IS_LESS_THAN_100_2; - @ClientString(id = 3887, message = "The Balthus Knights event is ready to begin. Marks of the Balthus Knights cannot be used before the event begins.") - public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_READY_TO_BEGIN_MARKS_OF_THE_BALTHUS_KNIGHTS_CANNOT_BE_USED_BEFORE_THE_EVENT_BEGINS; + @ClientString(id = 3887, message = "The Sibi's Lucky Draw event is ready to begin. Sibi's Disguised Clothing cannot be used before the event begins.") + public static SystemMessageId THE_SIBI_S_LUCKY_DRAW_EVENT_IS_READY_TO_BEGIN_SIBI_S_DISGUISED_CLOTHING_CANNOT_BE_USED_BEFORE_THE_EVENT_BEGINS; - @ClientString(id = 3888, message = "The Balthus Knights event is in progress.") - public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_IN_PROGRESS; + @ClientString(id = 3888, message = "The Sibi's Lucky Draw event is in progress.") + public static SystemMessageId THE_SIBI_S_LUCKY_DRAW_EVENT_IS_IN_PROGRESS; - @ClientString(id = 3889, message = "The Balthus Knights event has begun. Characters of level 85 or higher and who are Awakened may participate in this event.") - public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_HAS_BEGUN_CHARACTERS_OF_LEVEL_85_OR_HIGHER_AND_WHO_ARE_AWAKENED_MAY_PARTICIPATE_IN_THIS_EVENT; + @ClientString(id = 3889, message = "The Sibi's Lucky Draw event has begun. Characters of level 90 or higher and who are Awakened may participate in this event.") + public static SystemMessageId THE_SIBI_S_LUCKY_DRAW_EVENT_HAS_BEGUN_CHARACTERS_OF_LEVEL_90_OR_HIGHER_AND_WHO_ARE_AWAKENED_MAY_PARTICIPATE_IN_THIS_EVENT; @ClientString(id = 3890, message = "Except the vitality buff, all buffs including Art of Seduction will be deleted.") public static SystemMessageId EXCEPT_THE_VITALITY_BUFF_ALL_BUFFS_INCLUDING_ART_OF_SEDUCTION_WILL_BE_DELETED; @@ -11256,14 +11277,14 @@ public final class SystemMessageId @ClientString(id = 3891, message = "You've obtained individual request points ($s1/100).") public static SystemMessageId YOU_VE_OBTAINED_INDIVIDUAL_REQUEST_POINTS_S1_100; - @ClientString(id = 3892, message = "You are not participating in the event. Use the Mark of the Balthus Knights to participate.
You can obtain the Mark of the Balthus Knights from the Balthus Knight Supply Item or Sibis' Suspicious Supply Items.") - public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_THE_MARK_OF_THE_BALTHUS_KNIGHTS_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_THE_MARK_OF_THE_BALTHUS_KNIGHTS_FROM_THE_BALTHUS_KNIGHT_SUPPLY_ITEM_OR_SIBIS_SUSPICIOUS_SUPPLY_ITEMS; + @ClientString(id = 3892, message = "You are not participating in the event. Use Balthus Knight Mark to participate.
You can obtain Balthus Knight Mark from Balthus Knight Supply Box or Sibi’s Suspicious Supply Box.") + public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_BALTHUS_KNIGHT_MARK_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_BALTHUS_KNIGHT_MARK_FROM_BALTHUS_KNIGHT_SUPPLY_BOX_OR_SIBI_S_SUSPICIOUS_SUPPLY_BOX; @ClientString(id = 3893, message = "You cannot receive the item $s1 because you've exceeded the limit on the quantity and weight of the inventory.") public static SystemMessageId YOU_CANNOT_RECEIVE_THE_ITEM_S1_BECAUSE_YOU_VE_EXCEEDED_THE_LIMIT_ON_THE_QUANTITY_AND_WEIGHT_OF_THE_INVENTORY; - @ClientString(id = 3894, message = "You are currently in Stage $s1, Round $s2 of the Balthus Knights event.") - public static SystemMessageId YOU_ARE_CURRENTLY_IN_STAGE_S1_ROUND_S2_OF_THE_BALTHUS_KNIGHTS_EVENT; + @ClientString(id = 3894, message = "You are currently in Stage $s1, Round $s2 of the Sibi's Lucky Draw event.") + public static SystemMessageId YOU_ARE_CURRENTLY_IN_STAGE_S1_ROUND_S2_OF_THE_SIBI_S_LUCKY_DRAW_EVENT; @ClientString(id = 3895, message = "You cannot go because the maximum number of participants in the clan request has been exceeded.") public static SystemMessageId YOU_CANNOT_GO_BECAUSE_THE_MAXIMUM_NUMBER_OF_PARTICIPANTS_IN_THE_CLAN_REQUEST_HAS_BEEN_EXCEEDED; @@ -11271,8 +11292,8 @@ public final class SystemMessageId @ClientString(id = 3896, message = "There's a new clan request! Get it from the Clan Request Manager.") public static SystemMessageId THERE_S_A_NEW_CLAN_REQUEST_GET_IT_FROM_THE_CLAN_REQUEST_MANAGER; - @ClientString(id = 3897, message = "You can now participate in the Balthus Knights event as the server is open.") - public static SystemMessageId YOU_CAN_NOW_PARTICIPATE_IN_THE_BALTHUS_KNIGHTS_EVENT_AS_THE_SERVER_IS_OPEN; + @ClientString(id = 3897, message = "You can now participate in the Sibi's Lucky Draw event as the server is open.") + public static SystemMessageId YOU_CAN_NOW_PARTICIPATE_IN_THE_SIBI_S_LUCKY_DRAW_EVENT_AS_THE_SERVER_IS_OPEN; @ClientString(id = 3898, message = "You cannot use the item because the effect is already applied.") public static SystemMessageId YOU_CANNOT_USE_THE_ITEM_BECAUSE_THE_EFFECT_IS_ALREADY_APPLIED; @@ -11325,8 +11346,8 @@ public final class SystemMessageId @ClientString(id = 4007, message = "The style change was not successful.") public static SystemMessageId THE_STYLE_CHANGE_WAS_NOT_SUCCESSFUL_2; - @ClientString(id = 4008, message = "Changed to selectd style.") - public static SystemMessageId CHANGED_TO_SELECTD_STYLE; + @ClientString(id = 4008, message = "Change to selected style.") + public static SystemMessageId CHANGE_TO_SELECTED_STYLE; @ClientString(id = 4009, message = "Failed to purchase due to insufficient Adena.") public static SystemMessageId FAILED_TO_PURCHASE_DUE_TO_INSUFFICIENT_ADENA; @@ -11418,8 +11439,8 @@ public final class SystemMessageId @ClientString(id = 4038, message = "You may apply for entry after $s1 minute(s) due to cancelling your application.") public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION; - @ClientString(id = 4039, message = "Entry application complete. Use 'Entry Application Info' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 minutes.") - public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES; + @ClientString(id = 4039, message = "Entry application complete. Use 'My Application' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 minutes.") + public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES; @ClientString(id = 4040, message = "Entry application cancelled. You may apply to a new clan after 5 minutes.") public static SystemMessageId ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MINUTES; @@ -11511,7 +11532,7 @@ public final class SystemMessageId @ClientString(id = 4069, message = "You have downed $s1 with a preemptive attack. You have $s2 preemptive attack chances left.") public static SystemMessageId YOU_HAVE_DOWNED_S1_WITH_A_PREEMPTIVE_ATTACK_YOU_HAVE_S2_PREEMPTIVE_ATTACK_CHANCES_LEFT; - @ClientString(id = 4070, message = "You are no longer $s1's mentee, as you have reached Lv. 85 and 3rd Liberation. ") + @ClientString(id = 4070, message = "You are no longer $s1's mentee, as you have reached Lv. 85 and 3rd Liberation.") public static SystemMessageId YOU_ARE_NO_LONGER_S1_S_MENTEE_AS_YOU_HAVE_REACHED_LV_85_AND_3RD_LIBERATION; @ClientString(id = 4071, message = "You are no longer $s1's mentor, as they completed the 3rd Liberation. You must wait 1 day before becoming someone else's mentor.") @@ -11571,8 +11592,8 @@ public final class SystemMessageId @ClientString(id = 4089, message = "Welcome to Lineage II.
You create up to 2 characters within a server and level them up to 85 for free. The free service will end for the server when you reach Lv. 85; please use a Lineage II play pass if you wish to continue playing afterwards.

Free play requirements
1: Character Level
2: Character XP
3: Character Creation Date (chronological order)") public static SystemMessageId WELCOME_TO_LINEAGE_II_BR_YOU_CREATE_UP_TO_2_CHARACTERS_WITHIN_A_SERVER_AND_LEVEL_THEM_UP_TO_85_FOR_FREE_THE_FREE_SERVICE_WILL_END_FOR_THE_SERVER_WHEN_YOU_REACH_LV_85_PLEASE_USE_A_LINEAGE_II_PLAY_PASS_IF_YOU_WISH_TO_CONTINUE_PLAYING_AFTERWARDS_BR_BR_FREE_PLAY_REQUIREMENTS_BR_1_CHARACTER_LEVEL_BR_2_CHARACTER_XP_BR_3_CHARACTER_CREATION_DATE_CHRONOLOGICAL_ORDER; - @ClientString(id = 4090, message = "Returning players will receive free passes as a welcome-back gift. The pass must be retrieved within 24 hours.\\n\\nClick 'Receive' to go to the website for the pass. This will log you out of the game. Do you wish to proceed?\\n\\n(Click Cancel if you have already registered the pass.)") - public static SystemMessageId RETURNING_PLAYERS_WILL_RECEIVE_FREE_PASSES_AS_A_WELCOME_BACK_GIFT_THE_PASS_MUST_BE_RETRIEVED_WITHIN_24_HOURS_N_NCLICK_RECEIVE_TO_GO_TO_THE_WEBSITE_FOR_THE_PASS_THIS_WILL_LOG_YOU_OUT_OF_THE_GAME_DO_YOU_WISH_TO_PROCEED_N_N_CLICK_CANCEL_IF_YOU_HAVE_ALREADY_REGISTERED_THE_PASS; + @ClientString(id = 4090, message = "Returning players will receive free passes as a welcome-back gift. You can see the support goods and pass for Aden warriors in the Free Adventure Service. \\n\\nClick 'Receive' to go to the website for the pass. This will log you out of the game. Do you wish to proceed?\\n\\n(Click Cancel if you have already registered the pass.)") + public static SystemMessageId RETURNING_PLAYERS_WILL_RECEIVE_FREE_PASSES_AS_A_WELCOME_BACK_GIFT_YOU_CAN_SEE_THE_SUPPORT_GOODS_AND_PASS_FOR_ADEN_WARRIORS_IN_THE_FREE_ADVENTURE_SERVICE_N_NCLICK_RECEIVE_TO_GO_TO_THE_WEBSITE_FOR_THE_PASS_THIS_WILL_LOG_YOU_OUT_OF_THE_GAME_DO_YOU_WISH_TO_PROCEED_N_N_CLICK_CANCEL_IF_YOU_HAVE_ALREADY_REGISTERED_THE_PASS; @ClientString(id = 4091, message = "This quest cannot be deleted.") public static SystemMessageId THIS_QUEST_CANNOT_BE_DELETED; @@ -11613,17 +11634,17 @@ public final class SystemMessageId @ClientString(id = 4103, message = "The Prophecy skill cannot be reset due to insufficient Adena.") public static SystemMessageId THE_PROPHECY_SKILL_CANNOT_BE_RESET_DUE_TO_INSUFFICIENT_ADENA; - @ClientString(id = 4104, message = "Players can Shout after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_SHOUT_AFTER_LV_S1; + @ClientString(id = 4104, message = "Shout chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId SHOUT_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4105, message = "Players can use Trade chat after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_USE_TRADE_CHAT_AFTER_LV_S1; + @ClientString(id = 4105, message = "Trade chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId TRADE_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4106, message = "Players can use general chat after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_USE_GENERAL_CHAT_AFTER_LV_S1; + @ClientString(id = 4106, message = "General chat cannot be used by Non-premium users Lv. $s1 or lower.") + public static SystemMessageId GENERAL_CHAT_CANNOT_BE_USED_BY_NON_PREMIUM_USERS_LV_S1_OR_LOWER; - @ClientString(id = 4107, message = "Players can respond to a whisper, but cannot initiate a whisper until after Lv. $s1.") - public static SystemMessageId PLAYERS_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_A_WHISPER_UNTIL_AFTER_LV_S1; + @ClientString(id = 4107, message = "Non-premium users Lv. $s1 or lower can respond to a whisper, but cannot initiate it.") + public static SystemMessageId NON_PREMIUM_USERS_LV_S1_OR_LOWER_CAN_RESPOND_TO_A_WHISPER_BUT_CANNOT_INITIATE_IT; @ClientString(id = 4108, message = "Pet summon/ seal or riding in progress. Please try again later.") public static SystemMessageId PET_SUMMON_SEAL_OR_RIDING_IN_PROGRESS_PLEASE_TRY_AGAIN_LATER; @@ -11649,10 +11670,10 @@ public final class SystemMessageId @ClientString(id = 4115, message = "You have dropped $s1.") public static SystemMessageId YOU_HAVE_DROPPED_S1_2; - @ClientString(id = 4116, message = "The +$s1 augmentation effects on $s2 have been deleted.") - public static SystemMessageId THE_S1_AUGMENTATION_EFFECTS_ON_S2_HAVE_BEEN_DELETED; + @ClientString(id = 4116, message = "The augmentation effects on +$s1 $s2 have been deleted.") + public static SystemMessageId THE_AUGMENTATION_EFFECTS_ON_S1_S2_HAVE_BEEN_DELETED; - @ClientString(id = 4117, message = " +$s1$s2 has been restored to its previous appearance, as its temporary modification has expired.") + @ClientString(id = 4117, message = "+$s1$s2 has been restored to its previous appearance, as its temporary modification has expired.") public static SystemMessageId S1_S2_HAS_BEEN_RESTORED_TO_ITS_PREVIOUS_APPEARANCE_AS_ITS_TEMPORARY_MODIFICATION_HAS_EXPIRED; @ClientString(id = 4118, message = "You cannot teleport as the Dimensional Space is closed.") @@ -11688,10 +11709,10 @@ public final class SystemMessageId @ClientString(id = 4128, message = "Your wish has been entered successfully into the Wish Tree.") public static SystemMessageId YOUR_WISH_HAS_BEEN_ENTERED_SUCCESSFULLY_INTO_THE_WISH_TREE; - @ClientString(id = 4129, message = "Go to the event page to view the wish entered into the Wish Tree? ") + @ClientString(id = 4129, message = "Go to the event page to view the wish entered into the Wish Tree?") public static SystemMessageId GO_TO_THE_EVENT_PAGE_TO_VIEW_THE_WISH_ENTERED_INTO_THE_WISH_TREE; - @ClientString(id = 4130, message = "Failed to enter wish. Please try again by clicking on the wish link. ") + @ClientString(id = 4130, message = "Failed to enter wish. Please try again by clicking on the wish link.") public static SystemMessageId FAILED_TO_ENTER_WISH_PLEASE_TRY_AGAIN_BY_CLICKING_ON_THE_WISH_LINK; @ClientString(id = 4131, message = "Inventory weight/ slot has been filled to 80%% or more. You cannot enter a wish or obtain rewards in this state. Please organize your inventory and try again.") @@ -11730,8 +11751,8 @@ public final class SystemMessageId @ClientString(id = 4142, message = "Please enter the quantity.") public static SystemMessageId PLEASE_ENTER_THE_QUANTITY; - @ClientString(id = 4143, message = "Upon failure, the item is destroyed (crystallization).") - public static SystemMessageId UPON_FAILURE_THE_ITEM_IS_DESTROYED_CRYSTALLIZATION; + @ClientString(id = 4143, message = "Upon failure, the item is crystallized.") + public static SystemMessageId UPON_FAILURE_THE_ITEM_IS_CRYSTALLIZED; @ClientString(id = 4144, message = "Upon failure, enchant will reset to +0.") public static SystemMessageId UPON_FAILURE_ENCHANT_WILL_RESET_TO_0; @@ -11787,7 +11808,7 @@ public final class SystemMessageId @ClientString(id = 4161, message = "Distribution cannot proceed as there is insufficient Adena for distribution.") public static SystemMessageId DISTRIBUTION_CANNOT_PROCEED_AS_THERE_IS_INSUFFICIENT_ADENA_FOR_DISTRIBUTION; - @ClientString(id = 4162, message = "My Apostle Lilith! ") + @ClientString(id = 4162, message = "My Apostle Lilith!") public static SystemMessageId MY_APOSTLE_LILITH; @ClientString(id = 4163, message = "Drink the blood of darkness, and rise again to complete my sacrifice!") @@ -11811,8 +11832,8 @@ public final class SystemMessageId @ClientString(id = 4169, message = "There is no equipped hair accessory.") public static SystemMessageId THERE_IS_NO_EQUIPPED_HAIR_ACCESSORY; - @ClientString(id = 4170, message = " Depending on the hair accessory display status in the inventory,
the hair style may not be displayed.
Do you wish to change the style?
") - public static SystemMessageId BROWN01_BROWN01_RED02_DEPENDING_ON_THE_HAIR_ACCESSORY_DISPLAY_STATUS_IN_THE_INVENTORY_RED02_BROWN01_BR_THE_HAIR_STYLE_MAY_NOT_BE_DISPLAYED_BR_DO_YOU_WISH_TO_CHANGE_THE_STYLE_BROWN01; + @ClientString(id = 4170, message = " Depending on the hair accessory display,
the hair style may not be displayed. Proceed?
") + public static SystemMessageId BROWN01_BROWN01_RED02_DEPENDING_ON_THE_HAIR_ACCESSORY_DISPLAY_RED02_BROWN01_BR_THE_HAIR_STYLE_MAY_NOT_BE_DISPLAYED_PROCEED_BROWN01; @ClientString(id = 4171, message = "A member has excessive Adena. Distribution has been cancelled.") public static SystemMessageId A_MEMBER_HAS_EXCESSIVE_ADENA_DISTRIBUTION_HAS_BEEN_CANCELLED; @@ -11829,19 +11850,19 @@ public final class SystemMessageId @ClientString(id = 4175, message = "You will shortly move to the Olympiad arena.") public static SystemMessageId YOU_WILL_SHORTLY_MOVE_TO_THE_OLYMPIAD_ARENA; - @ClientString(id = 4176, message = "It seemed as if everything had returned to normal. ") + @ClientString(id = 4176, message = "It seemed as if everything had returned to normal.") public static SystemMessageId IT_SEEMED_AS_IF_EVERYTHING_HAD_RETURNED_TO_NORMAL; @ClientString(id = 4177, message = "But had it?") public static SystemMessageId BUT_HAD_IT; - @ClientString(id = 4178, message = "I looked closer, and the darkness was still there. Hiding. ") + @ClientString(id = 4178, message = "I looked closer, and the darkness was still there. Hiding.") public static SystemMessageId I_LOOKED_CLOSER_AND_THE_DARKNESS_WAS_STILL_THERE_HIDING; @ClientString(id = 4179, message = "Waiting for a chance to resurface.") public static SystemMessageId WAITING_FOR_A_CHANCE_TO_RESURFACE; - @ClientString(id = 4180, message = "The enemy is never far. ") + @ClientString(id = 4180, message = "The enemy is never far.") public static SystemMessageId THE_ENEMY_IS_NEVER_FAR; @ClientString(id = 4181, message = "Always remember that, Leona Blackbird.") @@ -12003,14 +12024,14 @@ public final class SystemMessageId @ClientString(id = 4233, message = "Press Start to combine.") public static SystemMessageId PRESS_START_TO_COMBINE; - @ClientString(id = 4234, message = "Failure to combine will result in the loss of some or all combination ingredients. Continue?") - public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_SOME_OR_ALL_COMBINATION_INGREDIENTS_CONTINUE; + @ClientString(id = 4234, message = "Failure to combine will result in the loss of some or all ingredients. Continue?") + public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_SOME_OR_ALL_INGREDIENTS_CONTINUE; @ClientString(id = 4235, message = "Congratulations! You have successfully combined items into $s1.") public static SystemMessageId CONGRATULATIONS_YOU_HAVE_SUCCESSFULLY_COMBINED_ITEMS_INTO_S1; - @ClientString(id = 4236, message = "You have failed to combined the items. You have obtained $s1.") - public static SystemMessageId YOU_HAVE_FAILED_TO_COMBINED_THE_ITEMS_YOU_HAVE_OBTAINED_S1; + @ClientString(id = 4236, message = "You have failed to combine the items, and lost $s1.") + public static SystemMessageId YOU_HAVE_FAILED_TO_COMBINE_THE_ITEMS_AND_LOST_S1; @ClientString(id = 4237, message = "You cannot equip $s1 without equipping a brooch.") public static SystemMessageId YOU_CANNOT_EQUIP_S1_WITHOUT_EQUIPPING_A_BROOCH; @@ -12018,8 +12039,8 @@ public final class SystemMessageId @ClientString(id = 4238, message = "You can use World Chat (press &) $s1 more time(s).") public static SystemMessageId YOU_CAN_USE_WORLD_CHAT_PRESS_S1_MORE_TIME_S; - @ClientString(id = 4239, message = "You have spent your World Chat quota for the day. A new day starts every day at 18:30.") - public static SystemMessageId YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_A_NEW_DAY_STARTS_EVERY_DAY_AT_18_30; + @ClientString(id = 4239, message = "You have spent your World Chat quota for the day. The World Chat quota resets at 7 AM every day.") + public static SystemMessageId YOU_HAVE_SPENT_YOUR_WORLD_CHAT_QUOTA_FOR_THE_DAY_THE_WORLD_CHAT_QUOTA_RESETS_AT_7_AM_EVERY_DAY; @ClientString(id = 4240, message = "You can use World Chat from Lv. $s1.") public static SystemMessageId YOU_CAN_USE_WORLD_CHAT_FROM_LV_S1; @@ -12093,8 +12114,8 @@ public final class SystemMessageId @ClientString(id = 4263, message = "You can use this when you have reached Lv. 40 and learned Alchemy skills.") public static SystemMessageId YOU_CAN_USE_THIS_WHEN_YOU_HAVE_REACHED_LV_40_AND_LEARNED_ALCHEMY_SKILLS; - @ClientString(id = 4264, message = "You can experiement $s1 times.") - public static SystemMessageId YOU_CAN_EXPERIEMENT_S1_TIMES; + @ClientString(id = 4264, message = "You can experiment $s1 times.") + public static SystemMessageId YOU_CAN_EXPERIMENT_S1_TIMES; @ClientString(id = 4265, message = "You must learn the necessary skills first.") public static SystemMessageId YOU_MUST_LEARN_THE_NECESSARY_SKILLS_FIRST; @@ -12156,7 +12177,7 @@ public final class SystemMessageId @ClientString(id = 4284, message = "The High Priest has repeatedly attempted to reach Lord Sayha…") public static SystemMessageId THE_HIGH_PRIEST_HAS_REPEATEDLY_ATTEMPTED_TO_REACH_LORD_SAYHA; - @ClientString(id = 4285, message = "But there has been only silence. ") + @ClientString(id = 4285, message = "But there has been only silence.") public static SystemMessageId BUT_THERE_HAS_BEEN_ONLY_SILENCE; @ClientString(id = 4286, message = "But we still get by.") @@ -12177,7 +12198,7 @@ public final class SystemMessageId @ClientString(id = 4291, message = "The winds of change are blowing.") public static SystemMessageId THE_WINDS_OF_CHANGE_ARE_BLOWING; - @ClientString(id = 4292, message = "The man who covets the power of the gods has opened the dimensional rift. ") + @ClientString(id = 4292, message = "The man who covets the power of the gods has opened the dimensional rift.") public static SystemMessageId THE_MAN_WHO_COVETS_THE_POWER_OF_THE_GODS_HAS_OPENED_THE_DIMENSIONAL_RIFT; @ClientString(id = 4293, message = "Now, forgotten creatures will return, and new heroes will arise.") @@ -12210,8 +12231,8 @@ public final class SystemMessageId @ClientString(id = 4302, message = "You can only create 1 character, and you'll be able to create additional characters after the maintenance on 5/28. The wait time to delete a character is 3 minutes.") public static SystemMessageId YOU_CAN_ONLY_CREATE_1_CHARACTER_AND_YOU_LL_BE_ABLE_TO_CREATE_ADDITIONAL_CHARACTERS_AFTER_THE_MAINTENANCE_ON_5_28_THE_WAIT_TIME_TO_DELETE_A_CHARACTER_IS_3_MINUTES; - @ClientString(id = 4303, message = "Fishing is available to characters Lv. 85 or above.") - public static SystemMessageId FISHING_IS_AVAILABLE_TO_CHARACTERS_LV_85_OR_ABOVE; + @ClientString(id = 4303, message = "Fishing is available to premium users only.") + public static SystemMessageId FISHING_IS_AVAILABLE_TO_PREMIUM_USERS_ONLY; @ClientString(id = 4304, message = "Pre-registration for characters is available right now. The Classic Server will be accessible after the maintenance on 5/28.") public static SystemMessageId PRE_REGISTRATION_FOR_CHARACTERS_IS_AVAILABLE_RIGHT_NOW_THE_CLASSIC_SERVER_WILL_BE_ACCESSIBLE_AFTER_THE_MAINTENANCE_ON_5_28; @@ -12225,13 +12246,13 @@ public final class SystemMessageId @ClientString(id = 4307, message = "Rise above the bounds of mortality and forge your own path.") public static SystemMessageId RISE_ABOVE_THE_BOUNDS_OF_MORTALITY_AND_FORGE_YOUR_OWN_PATH; - @ClientString(id = 4308, message = " ") + @ClientString(id = 4308, message = "") public static SystemMessageId EMPTY_14; @ClientString(id = 4309, message = "To being ... Exalted!") public static SystemMessageId TO_BEING_EXALTED; - @ClientString(id = 4310, message = "The quest you've just completed can be completed $s1 times. Each account can complete this quest $s2 times per week, and it's reset after each maintenance. ") + @ClientString(id = 4310, message = "The quest you've just completed can be completed $s1 times. Each account can complete this quest $s2 times per week, and it's reset after each maintenance.") public static SystemMessageId THE_QUEST_YOU_VE_JUST_COMPLETED_CAN_BE_COMPLETED_S1_TIMES_EACH_ACCOUNT_CAN_COMPLETE_THIS_QUEST_S2_TIMES_PER_WEEK_AND_IT_S_RESET_AFTER_EACH_MAINTENANCE; @ClientString(id = 4311, message = "I've been expecting you. Fall victim to my blades.") @@ -12297,8 +12318,8 @@ public final class SystemMessageId @ClientString(id = 4331, message = "The Soul Crystal effect is already in use.") public static SystemMessageId THE_SOUL_CRYSTAL_EFFECT_IS_ALREADY_IN_USE; - @ClientString(id = 4332, message = "If you apply another effect, the existing Soul Crystal effect will no longer be applied.\\nContinue?") - public static SystemMessageId IF_YOU_APPLY_ANOTHER_EFFECT_THE_EXISTING_SOUL_CRYSTAL_EFFECT_WILL_NO_LONGER_BE_APPLIED_NCONTINUE; + @ClientString(id = 4332, message = "If you apply another effect, the existing Soul Crystal effect will no longer be applied. Continue?") + public static SystemMessageId IF_YOU_APPLY_ANOTHER_EFFECT_THE_EXISTING_SOUL_CRYSTAL_EFFECT_WILL_NO_LONGER_BE_APPLIED_CONTINUE; @ClientString(id = 4333, message = "Succeeded in applying the Soul Crystal effect.") public static SystemMessageId SUCCEEDED_IN_APPLYING_THE_SOUL_CRYSTAL_EFFECT; @@ -12342,7 +12363,7 @@ public final class SystemMessageId @ClientString(id = 4346, message = "Cannot use skills or items while faking death.") public static SystemMessageId CANNOT_USE_SKILLS_OR_ITEMS_WHILE_FAKING_DEATH; - @ClientString(id = 4347, message = "Stage $s2 - $s1 ") + @ClientString(id = 4347, message = "Stage $s2 - $s1") public static SystemMessageId STAGE_S2_S1; @ClientString(id = 4348, message = "Soul Crystal effects that have been applied cannot be removed.") @@ -12399,14 +12420,14 @@ public final class SystemMessageId @ClientString(id = 4365, message = "The expert has been placed successfully.") public static SystemMessageId THE_EXPERT_HAS_BEEN_PLACED_SUCCESSFULLY; - @ClientString(id = 4366, message = "The allocation fee will be deducted from the clan's warehouse, and once the duration expires, it will be withdrawn.\\nContinue?") - public static SystemMessageId THE_ALLOCATION_FEE_WILL_BE_DEDUCTED_FROM_THE_CLAN_S_WAREHOUSE_AND_ONCE_THE_DURATION_EXPIRES_IT_WILL_BE_WITHDRAWN_NCONTINUE; + @ClientString(id = 4366, message = "The allocation fee will be deducted from the clan's warehouse, and once the duration expires, it will be withdrawn. Continue?") + public static SystemMessageId THE_ALLOCATION_FEE_WILL_BE_DEDUCTED_FROM_THE_CLAN_S_WAREHOUSE_AND_ONCE_THE_DURATION_EXPIRES_IT_WILL_BE_WITHDRAWN_CONTINUE; @ClientString(id = 4367, message = "Clan $s1 currently has the 1 day penalty for kicking out a member, so it cannot accept new members.") public static SystemMessageId CLAN_S1_CURRENTLY_HAS_THE_1_DAY_PENALTY_FOR_KICKING_OUT_A_MEMBER_SO_IT_CANNOT_ACCEPT_NEW_MEMBERS; - @ClientString(id = 4368, message = "The Academy/Royal Guard/Order of Knights have been fully filled, so you cannot join the clan.") - public static SystemMessageId THE_ACADEMY_ROYAL_GUARD_ORDER_OF_KNIGHTS_HAVE_BEEN_FULLY_FILLED_SO_YOU_CANNOT_JOIN_THE_CLAN; + @ClientString(id = 4368, message = "The clan is full, so you cannot join the clan.") + public static SystemMessageId THE_CLAN_IS_FULL_SO_YOU_CANNOT_JOIN_THE_CLAN; @ClientString(id = 4369, message = "Clan $s1 has requested to be dissolved, so you cannot join the clan.") public static SystemMessageId CLAN_S1_HAS_REQUESTED_TO_BE_DISSOLVED_SO_YOU_CANNOT_JOIN_THE_CLAN; @@ -12450,11 +12471,11 @@ public final class SystemMessageId @ClientString(id = 4382, message = "Another expert has already been placed there. The expert must be removed first before placing a new one.") public static SystemMessageId ANOTHER_EXPERT_HAS_ALREADY_BEEN_PLACED_THERE_THE_EXPERT_MUST_BE_REMOVED_FIRST_BEFORE_PLACING_A_NEW_ONE; - @ClientString(id = 4383, message = "The cost for placing an Emissary Leader for your forces is zero. The Emissary Leader for your forces, once placed, cannot be changed until the term expires, and the Emissary Leader will be removed once the term expires. \\nContinue?") - public static SystemMessageId THE_COST_FOR_PLACING_AN_EMISSARY_LEADER_FOR_YOUR_FORCES_IS_ZERO_THE_EMISSARY_LEADER_FOR_YOUR_FORCES_ONCE_PLACED_CANNOT_BE_CHANGED_UNTIL_THE_TERM_EXPIRES_AND_THE_EMISSARY_LEADER_WILL_BE_REMOVED_ONCE_THE_TERM_EXPIRES_NCONTINUE; + @ClientString(id = 4383, message = "It is free to place an Envoy of the Forces. Once placed, Envoy of the Forces cannot be changed during the term, and will be removed when the term expires.") + public static SystemMessageId IT_IS_FREE_TO_PLACE_AN_ENVOY_OF_THE_FORCES_ONCE_PLACED_ENVOY_OF_THE_FORCES_CANNOT_BE_CHANGED_DURING_THE_TERM_AND_WILL_BE_REMOVED_WHEN_THE_TERM_EXPIRES; - @ClientString(id = 4384, message = "The expert currently in place will be removed. The placement cost will not be refunded.\\nContinue?") - public static SystemMessageId THE_EXPERT_CURRENTLY_IN_PLACE_WILL_BE_REMOVED_THE_PLACEMENT_COST_WILL_NOT_BE_REFUNDED_NCONTINUE; + @ClientString(id = 4384, message = "The expert currently in place will be removed. The placement cost will not be refunded. Continue?") + public static SystemMessageId THE_EXPERT_CURRENTLY_IN_PLACE_WILL_BE_REMOVED_THE_PLACEMENT_COST_WILL_NOT_BE_REFUNDED_CONTINUE; @ClientString(id = 4385, message = "That expert cannot be removed.") public static SystemMessageId THAT_EXPERT_CANNOT_BE_REMOVED; @@ -12483,11 +12504,11 @@ public final class SystemMessageId @ClientString(id = 4393, message = "Cannot enter; some users may not yet be seated.") public static SystemMessageId CANNOT_ENTER_SOME_USERS_MAY_NOT_YET_BE_SEATED; - @ClientString(id = 4394, message = "Currently in Stage $s1, Round $s2.") - public static SystemMessageId CURRENTLY_IN_STAGE_S1_ROUND_S2; + @ClientString(id = 4394, message = "Draw $s1, Attempt $s2 in progress.") + public static SystemMessageId DRAW_S1_ATTEMPT_S2_IN_PROGRESS; - @ClientString(id = 4395, message = "Supply Items are being prepared. The next supply items will be available on the hour.") - public static SystemMessageId SUPPLY_ITEMS_ARE_BEING_PREPARED_THE_NEXT_SUPPLY_ITEMS_WILL_BE_AVAILABLE_ON_THE_HOUR; + @ClientString(id = 4395, message = "Supply Items are being prepared. The next supply items will be available on the next hour.") + public static SystemMessageId SUPPLY_ITEMS_ARE_BEING_PREPARED_THE_NEXT_SUPPLY_ITEMS_WILL_BE_AVAILABLE_ON_THE_NEXT_HOUR; @ClientString(id = 4396, message = "Current Position : $s1 / $s2 / $s3 (Dimensional Rift)") public static SystemMessageId CURRENT_POSITION_S1_S2_S3_DIMENSIONAL_RIFT; @@ -12540,8 +12561,8 @@ public final class SystemMessageId @ClientString(id = 4412, message = "Send $s1") public static SystemMessageId SEND_S1; - @ClientString(id = 4413, message = "Congratulations. Compounding was successful and you obtained $s2 of $s1.") - public static SystemMessageId CONGRATULATIONS_COMPOUNDING_WAS_SUCCESSFUL_AND_YOU_OBTAINED_S2_OF_S1; + @ClientString(id = 4413, message = "Congratulations! You obtained $s2 of $s1.") + public static SystemMessageId CONGRATULATIONS_YOU_OBTAINED_S2_OF_S1; @ClientString(id = 4414, message = "Compounding failed and you obtained $s2 of $s1.") public static SystemMessageId COMPOUNDING_FAILED_AND_YOU_OBTAINED_S2_OF_S1; @@ -12564,14 +12585,14 @@ public final class SystemMessageId @ClientString(id = 4420, message = "The auction for $s1 is in progress.") public static SystemMessageId THE_AUCTION_FOR_S1_IS_IN_PROGRESS; - @ClientString(id = 4421, message = "$s1 is sold for $s2 Adena.") - public static SystemMessageId S1_IS_SOLD_FOR_S2_ADENA; + @ClientString(id = 4421, message = "$s1 was sold for $s2 Adena.") + public static SystemMessageId S1_WAS_SOLD_FOR_S2_ADENA; @ClientString(id = 4422, message = "Processing failed due to death of a character. Resurrect first and try again.") public static SystemMessageId PROCESSING_FAILED_DUE_TO_DEATH_OF_A_CHARACTER_RESURRECT_FIRST_AND_TRY_AGAIN; - @ClientString(id = 4423, message = "The Faction Level of $s1 has increased. Open the Factions window to check.") - public static SystemMessageId THE_FACTION_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK; + @ClientString(id = 4423, message = "The Amity Level of $s1 has increased. Open the Factions window to check.") + public static SystemMessageId THE_AMITY_LEVEL_OF_S1_HAS_INCREASED_OPEN_THE_FACTIONS_WINDOW_TO_CHECK; @ClientString(id = 4424, message = "When you compound, you may lose some or all of the ingredients. Continue?") public static SystemMessageId WHEN_YOU_COMPOUND_YOU_MAY_LOSE_SOME_OR_ALL_OF_THE_INGREDIENTS_CONTINUE; @@ -12579,11 +12600,11 @@ public final class SystemMessageId @ClientString(id = 4425, message = "$s1 Raid Monster") public static SystemMessageId S1_RAID_MONSTER; - @ClientString(id = 4426, message = "Completed all objectives of the $s2 Monster Collection level $s1.") - public static SystemMessageId COMPLETED_ALL_OBJECTIVES_OF_THE_S2_MONSTER_COLLECTION_LEVEL_S1; + @ClientString(id = 4426, message = "Bestiary: The $s2 stage of hunting monster $s1 is achieved.") + public static SystemMessageId BESTIARY_THE_S2_STAGE_OF_HUNTING_MONSTER_S1_IS_ACHIEVED; - @ClientString(id = 4427, message = "Completed all levels of the $s1 Monster Collection.") - public static SystemMessageId COMPLETED_ALL_LEVELS_OF_THE_S1_MONSTER_COLLECTION; + @ClientString(id = 4427, message = "Bestiary: All stages of hunting monster $s1 are complete.") + public static SystemMessageId BESTIARY_ALL_STAGES_OF_HUNTING_MONSTER_S1_ARE_COMPLETE; @ClientString(id = 4428, message = "Only characters of level $s1 or higher are eligible for rewards.") public static SystemMessageId ONLY_CHARACTERS_OF_LEVEL_S1_OR_HIGHER_ARE_ELIGIBLE_FOR_REWARDS; @@ -12762,6 +12783,348 @@ public final class SystemMessageId @ClientString(id = 4486, message = "Lineage 2 will always be by your side.") public static SystemMessageId LINEAGE_2_WILL_ALWAYS_BE_BY_YOUR_SIDE; + @ClientString(id = 4487, message = "You cannot exchange items during the number card game.") + public static SystemMessageId YOU_CANNOT_EXCHANGE_ITEMS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4488, message = "You cannot send a request to a character who is playing the number card game.") + public static SystemMessageId YOU_CANNOT_SEND_A_REQUEST_TO_A_CHARACTER_WHO_IS_PLAYING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4489, message = "You cannot send or receive attached items during the number card game. You can only read or send mail.") + public static SystemMessageId YOU_CANNOT_SEND_OR_RECEIVE_ATTACHED_ITEMS_DURING_THE_NUMBER_CARD_GAME_YOU_CAN_ONLY_READ_OR_SEND_MAIL; + + @ClientString(id = 4490, message = "The number card game has ended because you are too far from the event NPC.") + public static SystemMessageId THE_NUMBER_CARD_GAME_HAS_ENDED_BECAUSE_YOU_ARE_TOO_FAR_FROM_THE_EVENT_NPC; + + @ClientString(id = 4491, message = "You cannot do Couple Actions during the number card game.") + public static SystemMessageId YOU_CANNOT_DO_COUPLE_ACTIONS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4492, message = "$c1 is playing the number card game. You cannot request Couple Actions.") + public static SystemMessageId C1_IS_PLAYING_THE_NUMBER_CARD_GAME_YOU_CANNOT_REQUEST_COUPLE_ACTIONS; + + @ClientString(id = 4493, message = "Guess the number on my card!") + public static SystemMessageId GUESS_THE_NUMBER_ON_MY_CARD; + + @ClientString(id = 4494, message = "The number is higher!") + public static SystemMessageId THE_NUMBER_IS_HIGHER; + + @ClientString(id = 4495, message = "The number is lower!") + public static SystemMessageId THE_NUMBER_IS_LOWER; + + @ClientString(id = 4496, message = "I can't believe it... I lost!") + public static SystemMessageId I_CAN_T_BELIEVE_IT_I_LOST; + + @ClientString(id = 4497, message = "I won! Haha.") + public static SystemMessageId I_WON_HAHA; + + @ClientString(id = 4498, message = "The game has ended because you have used all your chances.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_YOU_HAVE_USED_ALL_YOUR_CHANCES; + + @ClientString(id = 4499, message = "The game has ended because time has run out.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_TIME_HAS_RUN_OUT; + + @ClientString(id = 4500, message = "The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.") + public static SystemMessageId THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4501, message = "You can receive the reward only when your inventory is below 80%% of its weight and quantity limits. (The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.)") + public static SystemMessageId YOU_CAN_RECEIVE_THE_REWARD_ONLY_WHEN_YOUR_INVENTORY_IS_BELOW_80_OF_ITS_WEIGHT_AND_QUANTITY_LIMITS_THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4502, message = "Old) NC OTP related information was deleted on Wednesday August 30th, 2017. Accordingly, Old) NC OTP service accounts require personal verification to reactivate. Complete the personal verification process at Lineage II website to access your account.") + public static SystemMessageId OLD_NC_OTP_RELATED_INFORMATION_WAS_DELETED_ON_WEDNESDAY_AUGUST_30TH_2017_ACCORDINGLY_OLD_NC_OTP_SERVICE_ACCOUNTS_REQUIRE_PERSONAL_VERIFICATION_TO_REACTIVATE_COMPLETE_THE_PERSONAL_VERIFICATION_PROCESS_AT_LINEAGE_II_WEBSITE_TO_ACCESS_YOUR_ACCOUNT; + + @ClientString(id = 4503, message = "Old) NC OTP related information was deleted on Wednesday August 30th, 2017. Accordingly, Old) NC OTP service accounts require personal verification to reactivate. Complete the personal verification process at Lineage II website to access your account.") + public static SystemMessageId OLD_NC_OTP_RELATED_INFORMATION_WAS_DELETED_ON_WEDNESDAY_AUGUST_30TH_2017_ACCORDINGLY_OLD_NC_OTP_SERVICE_ACCOUNTS_REQUIRE_PERSONAL_VERIFICATION_TO_REACTIVATE_COMPLETE_THE_PERSONAL_VERIFICATION_PROCESS_AT_LINEAGE_II_WEBSITE_TO_ACCESS_YOUR_ACCOUNT_2; + + @ClientString(id = 4504, message = "Register the Agathion you want to grow.") + public static SystemMessageId REGISTER_THE_AGATHION_YOU_WANT_TO_GROW; + + @ClientString(id = 4505, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION; + + @ClientString(id = 4506, message = "If the growth fails, the Agathion will be lost.") + public static SystemMessageId IF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_LOST; + + @ClientString(id = 4507, message = "Warning of destruction!\\n\\nIf the growth fails, the Agathion will be destroyed.\\n\\nAre you sure you want to continue?") + public static SystemMessageId WARNING_OF_DESTRUCTION_N_NIF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_DESTROYED_N_NARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4508, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RESET; + + @ClientString(id = 4509, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RETAINED; + + @ClientString(id = 4510, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION_2; + + @ClientString(id = 4511, message = "The growth failed. The Agathion was lost, and the item was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_WAS_LOST_AND_THE_ITEM_WAS_DESTROYED; + + @ClientString(id = 4512, message = "The growth failed. The Agathion's growth level was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_S_GROWTH_LEVEL_WAS_RESET; + + @ClientString(id = 4513, message = "Congratulations! The Agathion was successfully grown to <$s1>.") + public static SystemMessageId CONGRATULATIONS_THE_AGATHION_WAS_SUCCESSFULLY_GROWN_TO_S1; + + @ClientString(id = 4514, message = "Do you want to leave the $s1 clan? If you leave, you cannot join another clan for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_LEAVE_THE_S1_CLAN_IF_YOU_LEAVE_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4515, message = "Do you want to dismiss $s1 from your clan? If you dismiss a clan member, you cannot accept a new member for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_DISMISS_S1_FROM_YOUR_CLAN_IF_YOU_DISMISS_A_CLAN_MEMBER_YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4516, message = "You were dismissed from the clan. You cannot join another clan for $s1 minutes.") + public static SystemMessageId YOU_WERE_DISMISSED_FROM_THE_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4517, message = "You cannot accept a new member for $s1 minutes after dismissing a clan member.") + public static SystemMessageId YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_S1_MINUTES_AFTER_DISMISSING_A_CLAN_MEMBER; + + @ClientString(id = 4518, message = "If you are dismissed from or leave a clan, you cannot join another clan for $s1 minutes.") + public static SystemMessageId IF_YOU_ARE_DISMISSED_FROM_OR_LEAVE_A_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4519, message = "$c1 cannot join your clan because $s2 minutes has not passed since they left another clan.") + public static SystemMessageId C1_CANNOT_JOIN_YOUR_CLAN_BECAUSE_S2_MINUTES_HAS_NOT_PASSED_SINCE_THEY_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4520, message = "You cannot join this clan because $s1 minutes has not passed since you left another clan.") + public static SystemMessageId YOU_CANNOT_JOIN_THIS_CLAN_BECAUSE_S1_MINUTES_HAS_NOT_PASSED_SINCE_YOU_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4521, message = "$s1 was summoned as a Primary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4522, message = "$s1‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4523, message = "$s1 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4524, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4525, message = "$s1‘s power was sealed.") + public static SystemMessageId S1_S_POWER_WAS_SEALED; + + @ClientString(id = 4526, message = "Cannot summon any more Agathions.") + public static SystemMessageId CANNOT_SUMMON_ANY_MORE_AGATHIONS; + + @ClientString(id = 4527, message = "You cannot use the Agathion's power because you are not wearing the left bracelet.") + public static SystemMessageId YOU_CANNOT_USE_THE_AGATHION_S_POWER_BECAUSE_YOU_ARE_NOT_WEARING_THE_LEFT_BRACELET; + + @ClientString(id = 4528, message = "+$s1$s2 was summoned as a Primary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4529, message = "+$s1$s2‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S2_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4530, message = "+$s1$s2 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4531, message = "Only +$s1$s2‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S2_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4532, message = "+$s1$s2‘s power was sealed.") + public static SystemMessageId S1_S2_S_POWER_WAS_SEALED; + + @ClientString(id = 4533, message = "Your status does not allow you to use this function.") + public static SystemMessageId YOUR_STATUS_DOES_NOT_ALLOW_YOU_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4534, message = "$s1‘s status allows them to use this function.") + public static SystemMessageId S1_S_STATUS_ALLOWS_THEM_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4535, message = "Current location: $s1/$s2/$s3 (Balthus Knight Barracks)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_BALTHUS_KNIGHT_BARRACKS; + + @ClientString(id = 4536, message = "Current location: $s1/$s2/$s3 (Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_HATCHLING_HABITAT; + + @ClientString(id = 4537, message = "Current location: $s1/$s2/$s3 (Near Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_HATCHLING_HABITAT; + + @ClientString(id = 4538, message = "Current location: $s1/$s2/$s3 (Antharas' Nest)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_ANTHARAS_NEST; + + @ClientString(id = 4539, message = "You do not belong to any clan.") + public static SystemMessageId YOU_DO_NOT_BELONG_TO_ANY_CLAN; + + @ClientString(id = 4540, message = "Your clan's point is 0.") + public static SystemMessageId YOUR_CLAN_S_POINT_IS_0; + + @ClientString(id = 4541, message = "Your clan has not played the Throne of Heroes.") + public static SystemMessageId YOUR_CLAN_HAS_NOT_PLAYED_THE_THRONE_OF_HEROES; + + @ClientString(id = 4542, message = "You can enter up to 16 alphanumeric characters.") + public static SystemMessageId YOU_CAN_ENTER_UP_TO_16_ALPHANUMERIC_CHARACTERS; + + @ClientString(id = 4543, message = "No spaces are allowed.") + public static SystemMessageId NO_SPACES_ARE_ALLOWED; + + @ClientString(id = 4544, message = "$s1‘s affiliation will be changed.") + public static SystemMessageId S1_S_AFFILIATION_WILL_BE_CHANGED; + + @ClientString(id = 4545, message = "$s1‘s privileges will be changed.") + public static SystemMessageId S1_S_PRIVILEGES_WILL_BE_CHANGED; + + @ClientString(id = 4546, message = "Clan Level $s1 or higher") + public static SystemMessageId CLAN_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4547, message = "Character Level $s1 or higher") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4548, message = "Character Level $s1 or lower") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_LOWER; + + @ClientString(id = 4549, message = "$s1 playable") + public static SystemMessageId S1_PLAYABLE; + + @ClientString(id = 4550, message = "$s1 must be completed") + public static SystemMessageId S1_MUST_BE_COMPLETED; + + @ClientString(id = 4551, message = "The cycle is updated at 7:00 every Wednesday.") + public static SystemMessageId THE_CYCLE_IS_UPDATED_AT_7_00_EVERY_WEDNESDAY; + + @ClientString(id = 4552, message = "If you fulfill the goal, you can earn $s1 Personal Fame.") + public static SystemMessageId IF_YOU_FULFILL_THE_GOAL_YOU_CAN_EARN_S1_PERSONAL_FAME; + + @ClientString(id = 4553, message = "Rank $s1") + public static SystemMessageId RANK_S1; + + @ClientString(id = 4554, message = "· Consumes 1 Clan Development Point.\\n· Consumes $s1 Clan Rep.\\n· Initializing does not refund Clan Rep.\\n\\nDo you want to continue?") + public static SystemMessageId CONSUMES_1_CLAN_DEVELOPMENT_POINT_N_CONSUMES_S1_CLAN_REP_N_INITIALIZING_DOES_NOT_REFUND_CLAN_REP_N_NDO_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4555, message = "· Consumes $s1 Clan Rep.\\n· Initializing does not refund Clan Rep.\\n· Time can be extended once after unlocking.\\n\\nDo you want to continue?") + public static SystemMessageId CONSUMES_S1_CLAN_REP_N_INITIALIZING_DOES_NOT_REFUND_CLAN_REP_N_TIME_CAN_BE_EXTENDED_ONCE_AFTER_UNLOCKING_N_NDO_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4556, message = "· Consumes 10,000 Clan Rep.\\n· Resets all specialties and seals.\\n· Used Clan Development Points will be refunded.\\n· Used Clan Rep will NOT be refunded.\\n\\nDo you want to continue?") + public static SystemMessageId CONSUMES_10_000_CLAN_REP_N_RESETS_ALL_SPECIALTIES_AND_SEALS_N_USED_CLAN_DEVELOPMENT_POINTS_WILL_BE_REFUNDED_N_USED_CLAN_REP_WILL_NOT_BE_REFUNDED_N_NDO_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4557, message = "Unlocked $s1.") + public static SystemMessageId UNLOCKED_S1; + + @ClientString(id = 4558, message = "All clan characteristics were reset.") + public static SystemMessageId ALL_CLAN_CHARACTERISTICS_WERE_RESET; + + @ClientString(id = 4559, message = "Cannot proceed due to a system error. Please try again later.") + public static SystemMessageId CANNOT_PROCEED_DUE_TO_A_SYSTEM_ERROR_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4560, message = "Cannot extend the seal activation time any longer.") + public static SystemMessageId CANNOT_EXTEND_THE_SEAL_ACTIVATION_TIME_ANY_LONGER; + + @ClientString(id = 4561, message = "Does not meet requirements to unlock Specialization.") + public static SystemMessageId DOES_NOT_MEET_REQUIREMENTS_TO_UNLOCK_SPECIALIZATION; + + @ClientString(id = 4562, message = "Does not meet requirements to unlock seal.") + public static SystemMessageId DOES_NOT_MEET_REQUIREMENTS_TO_UNLOCK_SEAL; + + @ClientString(id = 4563, message = "Does not meet requirements to reset.") + public static SystemMessageId DOES_NOT_MEET_REQUIREMENTS_TO_RESET; + + @ClientString(id = 4564, message = "Activation required") + public static SystemMessageId ACTIVATION_REQUIRED; + + @ClientString(id = 4565, message = "None") + public static SystemMessageId NONE_6; + + @ClientString(id = 4566, message = "Locked") + public static SystemMessageId LOCKED; + + @ClientString(id = 4567, message = "The above item will be activated. Continue?") + public static SystemMessageId THE_ABOVE_ITEM_WILL_BE_ACTIVATED_CONTINUE; + + @ClientString(id = 4568, message = "Activated the above item in the Clan Shop.") + public static SystemMessageId ACTIVATED_THE_ABOVE_ITEM_IN_THE_CLAN_SHOP; + + @ClientString(id = 4569, message = "The item will be purchased. Continue?") + public static SystemMessageId THE_ITEM_WILL_BE_PURCHASED_CONTINUE; + + @ClientString(id = 4570, message = "Purchased the item successfully.") + public static SystemMessageId PURCHASED_THE_ITEM_SUCCESSFULLY; + + @ClientString(id = 4571, message = "Valid for: $s1 days after unlocked") + public static SystemMessageId VALID_FOR_S1_DAYS_AFTER_UNLOCKED; + + @ClientString(id = 4572, message = "$s1/5 kills") + public static SystemMessageId S1_5_KILLS; + + @ClientString(id = 4573, message = "$s1/5 killed") + public static SystemMessageId S1_5_KILLED; + + @ClientString(id = 4574, message = "Invite players to the clan") + public static SystemMessageId INVITE_PLAYERS_TO_THE_CLAN; + + @ClientString(id = 4575, message = "Grant or remove titles") + public static SystemMessageId GRANT_OR_REMOVE_TITLES; + + @ClientString(id = 4576, message = "View the warehouse (only the clan reader can search items)") + public static SystemMessageId VIEW_THE_WAREHOUSE_ONLY_THE_CLAN_READER_CAN_SEARCH_ITEMS; + + @ClientString(id = 4577, message = "Change a clan member's privilege level and manage the Clan Membership System (registering and editing the clan, approving membership, etc.)") + public static SystemMessageId CHANGE_A_CLAN_MEMBER_S_PRIVILEGE_LEVEL_AND_MANAGE_THE_CLAN_MEMBERSHIP_SYSTEM_REGISTERING_AND_EDITING_THE_CLAN_APPROVING_MEMBERSHIP_ETC; + + @ClientString(id = 4578, message = "Declare/Cancel a Clan War") + public static SystemMessageId DECLARE_CANCEL_A_CLAN_WAR; + + @ClientString(id = 4579, message = "Start the Throne of Heroes") + public static SystemMessageId START_THE_THRONE_OF_HEROES; + + @ClientString(id = 4580, message = "Dismiss a clan member") + public static SystemMessageId DISMISS_A_CLAN_MEMBER; + + @ClientString(id = 4581, message = "Manage the clan crest and mark (only the alliance leader can control the alliance crest)") + public static SystemMessageId MANAGE_THE_CLAN_CREST_AND_MARK_ONLY_THE_ALLIANCE_LEADER_CAN_CONTROL_THE_ALLIANCE_CREST; + + @ClientString(id = 4582, message = "Buy clan items from the Clan Shop") + public static SystemMessageId BUY_CLAN_ITEMS_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4583, message = "Activate clan items in the Clan Shop, manage clan characteristics, and level up the clan") + public static SystemMessageId ACTIVATE_CLAN_ITEMS_IN_THE_CLAN_SHOP_MANAGE_CLAN_CHARACTERISTICS_AND_LEVEL_UP_THE_CLAN; + + @ClientString(id = 4584, message = "Summon the clan airship") + public static SystemMessageId SUMMON_THE_CLAN_AIRSHIP; + + @ClientString(id = 4585, message = "Access the Clan Hall") + public static SystemMessageId ACCESS_THE_CLAN_HALL; + + @ClientString(id = 4586, message = "Use the additional functions set in the Clan Hall") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CLAN_HALL; + + @ClientString(id = 4587, message = "Use the functions related with the Clan Hall bidding and auction") + public static SystemMessageId USE_THE_FUNCTIONS_RELATED_WITH_THE_CLAN_HALL_BIDDING_AND_AUCTION; + + @ClientString(id = 4588, message = "Expel outsiders from the Clan Hall") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CLAN_HALL; + + @ClientString(id = 4589, message = "Set additional functions to the Clan Hall") + public static SystemMessageId SET_ADDITIONAL_FUNCTIONS_TO_THE_CLAN_HALL; + + @ClientString(id = 4590, message = "Access the castle and open/close the castle gate") + public static SystemMessageId ACCESS_THE_CASTLE_AND_OPEN_CLOSE_THE_CASTLE_GATE; + + @ClientString(id = 4591, message = "Register, cancel, and approve the list of castle siege and defense warfare") + public static SystemMessageId REGISTER_CANCEL_AND_APPROVE_THE_LIST_OF_CASTLE_SIEGE_AND_DEFENSE_WARFARE; + + @ClientString(id = 4592, message = "Use the additional functions set in the castle/fortress") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CASTLE_FORTRESS; + + @ClientString(id = 4593, message = "Set functions such as enhancing traps or castle walls") + public static SystemMessageId SET_FUNCTIONS_SUCH_AS_ENHANCING_TRAPS_OR_CASTLE_WALLS; + + @ClientString(id = 4594, message = "Expel outsiders from the castle/fortress") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CASTLE_FORTRESS; + + @ClientString(id = 4595, message = "Manage the castle taxation, castle vault, and control the castle vault deposits/withdrawals") + public static SystemMessageId MANAGE_THE_CASTLE_TAXATION_CASTLE_VAULT_AND_CONTROL_THE_CASTLE_VAULT_DEPOSITS_WITHDRAWALS; + + @ClientString(id = 4596, message = "Hire/position mercenaries") + public static SystemMessageId HIRE_POSITION_MERCENARIES; + + @ClientString(id = 4597, message = "Manor settings and use blacksmith") + public static SystemMessageId MANOR_SETTINGS_AND_USE_BLACKSMITH; + + @ClientString(id = 4598, message = "Increase the number of clan members ($s1)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1; + + @ClientString(id = 4599, message = "Increase the number of clan members ($s1) and elite clan members ($s2)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1_AND_ELITE_CLAN_MEMBERS_S2; + + @ClientString(id = 4600, message = "Clan warehouse available") + public static SystemMessageId CLAN_WAREHOUSE_AVAILABLE; + @ClientString(id = 4601, message = "- Great P. Def. and skillful Shield Defense
- Increased P. Def. for the whole party
- Protect party members") public static SystemMessageId GREAT_P_DEF_AND_SKILLFUL_SHIELD_DEFENSE_BR_INCREASED_P_DEF_FOR_THE_WHOLE_PARTY_BR_PROTECT_PARTY_MEMBERS; @@ -12825,7 +13188,7 @@ public final class SystemMessageId @ClientString(id = 4621, message = "- Balanced Critical Damage and Critical Rate
- Highest survival rate among similar classes") public static SystemMessageId BALANCED_CRITICAL_DAMAGE_AND_CRITICAL_RATE_BR_HIGHEST_SURVIVAL_RATE_AMONG_SIMILAR_CLASSES; - @ClientString(id = 4622, message = "By the will of the Chaos, the power of Ashagen, the greatest assassin of the giants, has been combined with the ancient power of light and wind. This allowed for quicker movement and strengthened the ability to perform extreme maneuvers in an instant. ") + @ClientString(id = 4622, message = "By the will of the Chaos, the power of Ashagen, the greatest assassin of the giants, has been combined with the ancient power of light and wind. This allowed for quicker movement and strengthened the ability to perform extreme maneuvers in an instant.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_ASHAGEN_THE_GREATEST_ASSASSIN_OF_THE_GIANTS_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_AND_WIND_THIS_ALLOWED_FOR_QUICKER_MOVEMENT_AND_STRENGTHENED_THE_ABILITY_TO_PERFORM_EXTREME_MANEUVERS_IN_AN_INSTANT; @ClientString(id = 4623, message = "- High Critical Rate
- Quick Evasion and Speed") @@ -12849,7 +13212,7 @@ public final class SystemMessageId @ClientString(id = 4629, message = "- Balanced Critical Damage and Critical Rate
- Stable damage-dealing") public static SystemMessageId BALANCED_CRITICAL_DAMAGE_AND_CRITICAL_RATE_BR_STABLE_DAMAGE_DEALING; - @ClientString(id = 4630, message = "By the will of the Chaos, the power of Cranigg, the ancient giant hero with the Third Eye, has been combined with the ancient power of light. The Sagittarius can now pierce not only the body, but also the soul of an opponent as a result. ") + @ClientString(id = 4630, message = "By the will of the Chaos, the power of Cranigg, the ancient giant hero with the Third Eye, has been combined with the ancient power of light. The Sagittarius can now pierce not only the body, but also the soul of an opponent as a result.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_CRANIGG_THE_ANCIENT_GIANT_HERO_WITH_THE_THIRD_EYE_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_THE_SAGITTARIUS_CAN_NOW_PIERCE_NOT_ONLY_THE_BODY_BUT_ALSO_THE_SOUL_OF_AN_OPPONENT_AS_A_RESULT; @ClientString(id = 4631, message = "- Quick Speed and Atk. Spd.
- Advantageous in a small battle") @@ -12870,10 +13233,10 @@ public final class SystemMessageId @ClientString(id = 4636, message = "By the will of the Chaos, the power of Cranigg, the ancient giant hero with the Third Eye, has been stacked with the ancient power of giants. The great power resulting from this was used to strengthen abilities to protect the self and party members.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_CRANIGG_THE_ANCIENT_GIANT_HERO_WITH_THE_THIRD_EYE_HAS_BEEN_STACKED_WITH_THE_ANCIENT_POWER_OF_GIANTS_THE_GREAT_POWER_RESULTING_FROM_THIS_WAS_USED_TO_STRENGTHEN_ABILITIES_TO_PROTECT_THE_SELF_AND_PARTY_MEMBERS; - @ClientString(id = 4637, message = "- Well-rounded balance
- Use ranged magic (Vortex) ") + @ClientString(id = 4637, message = "- Well-rounded balance
- Use ranged magic (Vortex)") public static SystemMessageId WELL_ROUNDED_BALANCE_BR_USE_RANGED_MAGIC_VORTEX; - @ClientString(id = 4638, message = "By the will of the Chaos, the power of Soltkreig, one of the 7 Sages of the giants, has been combined with the ancient power of light. Archmages that received this power were able to reach levels of magic that went beyond their present limits. ") + @ClientString(id = 4638, message = "By the will of the Chaos, the power of Soltkreig, one of the 7 Sages of the giants, has been combined with the ancient power of light. Archmages that received this power were able to reach levels of magic that went beyond their present limits.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_SOLTKREIG_ONE_OF_THE_7_SAGES_OF_THE_GIANTS_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_ARCHMAGES_THAT_RECEIVED_THIS_POWER_WERE_ABLE_TO_REACH_LEVELS_OF_MAGIC_THAT_WENT_BEYOND_THEIR_PRESENT_LIMITS; @ClientString(id = 4639, message = "- Power M. Atk. paired with debuffs
- Advantageous in 1:1 battles") @@ -12897,7 +13260,7 @@ public final class SystemMessageId @ClientString(id = 4645, message = "- High P. Def. paired with debuffs
- Specializes in PvP") public static SystemMessageId HIGH_P_DEF_PAIRED_WITH_DEBUFFS_BR_SPECIALIZES_IN_PVP; - @ClientString(id = 4646, message = "By the will of the Chaos, the power of Soltkreig, one of the 7 Sages of the giants, has been stacked with the ancient power of Katenar the giant. This has resulted in powers that rival even those of the giants. ") + @ClientString(id = 4646, message = "By the will of the Chaos, the power of Soltkreig, one of the 7 Sages of the giants, has been stacked with the ancient power of Katenar the giant. This has resulted in powers that rival even those of the giants.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_SOLTKREIG_ONE_OF_THE_7_SAGES_OF_THE_GIANTS_HAS_BEEN_STACKED_WITH_THE_ANCIENT_POWER_OF_KATENAR_THE_GIANT_THIS_HAS_RESULTED_IN_POWERS_THAT_RIVAL_EVEN_THOSE_OF_THE_GIANTS; @ClientString(id = 4647, message = "- Party buffer specializing in skills
- Shortened skill cooldowns
- Use AoE Mutation to aid party") @@ -12915,13 +13278,13 @@ public final class SystemMessageId @ClientString(id = 4651, message = "- Party buffer based on attack
- Use AoE Petrify to aid party") public static SystemMessageId PARTY_BUFFER_BASED_ON_ATTACK_BR_USE_AOE_PETRIFY_TO_AID_PARTY; - @ClientString(id = 4652, message = "By the will of the Chaos, the power of Leister, the giant that commanded the war between the giants and the gods, has been combined with the ancient power of light. This power has maximized the strength of not only the Spectral Dancer but the entire party's attack power. ") + @ClientString(id = 4652, message = "By the will of the Chaos, the power of Leister, the giant that commanded the war between the giants and the gods, has been combined with the ancient power of light. This power has maximized the strength of not only the Spectral Dancer but the entire party's attack power.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_LEISTER_THE_GIANT_THAT_COMMANDED_THE_WAR_BETWEEN_THE_GIANTS_AND_THE_GODS_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_THIS_POWER_HAS_MAXIMIZED_THE_STRENGTH_OF_NOT_ONLY_THE_SPECTRAL_DANCER_BUT_THE_ENTIRE_PARTY_S_ATTACK_POWER; @ClientString(id = 4653, message = "- Buffer specializing in clan wars and PvP
- Restrain standard P. Atk. To aid in clan war
- Specializes in clan-level buffs and CP boosts") public static SystemMessageId BUFFER_SPECIALIZING_IN_CLAN_WARS_AND_PVP_BR_RESTRAIN_STANDARD_P_ATK_TO_AID_IN_CLAN_WAR_BR_SPECIALIZES_IN_CLAN_LEVEL_BUFFS_AND_CP_BOOSTS; - @ClientString(id = 4654, message = "By the will of the Chaos, the power of Leister, the giant that commanded the war between the giants and the gods, has been combined with the ancient power of light. This power came to protect not only the self but the entire community around the wielder. ") + @ClientString(id = 4654, message = "By the will of the Chaos, the power of Leister, the giant that commanded the war between the giants and the gods, has been combined with the ancient power of light. This power came to protect not only the self but the entire community around the wielder.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_LEISTER_THE_GIANT_THAT_COMMANDED_THE_WAR_BETWEEN_THE_GIANTS_AND_THE_GODS_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_THIS_POWER_CAME_TO_PROTECT_NOT_ONLY_THE_SELF_BUT_THE_ENTIRE_COMMUNITY_AROUND_THE_WIELDER; @ClientString(id = 4655, message = "- Party buffer with balanced attack and defense
- Decreases enemy HP to aid party") @@ -12933,7 +13296,7 @@ public final class SystemMessageId @ClientString(id = 4657, message = "- Summoner specializing in Atk. Spd.
- Able to use cat-type servitors") public static SystemMessageId SUMMONER_SPECIALIZING_IN_ATK_SPD_BR_ABLE_TO_USE_CAT_TYPE_SERVITORS; - @ClientString(id = 4658, message = "By the will of the Chaos, the power of Naviarope, the giant that could open and close the Dimensional Door at will, has been combined with the ancient power of light. This power traversed the dimensions and gave the Arcana Lord true mastery of the art of summoning. ") + @ClientString(id = 4658, message = "By the will of the Chaos, the power of Naviarope, the giant that could open and close the Dimensional Door at will, has been combined with the ancient power of light. This power traversed the dimensions and gave the Arcana Lord true mastery of the art of summoning.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_NAVIAROPE_THE_GIANT_THAT_COULD_OPEN_AND_CLOSE_THE_DIMENSIONAL_DOOR_AT_WILL_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_THIS_POWER_TRAVERSED_THE_DIMENSIONS_AND_GAVE_THE_ARCANA_LORD_TRUE_MASTERY_OF_THE_ART_OF_SUMMONING; @ClientString(id = 4659, message = "- Summoner specializing in Critical Damage
- Able to use unicorn-type servitors") @@ -12945,19 +13308,19 @@ public final class SystemMessageId @ClientString(id = 4661, message = "- Summoner specializing in P. Atk.
- Able to use phantom-type servitors") public static SystemMessageId SUMMONER_SPECIALIZING_IN_P_ATK_BR_ABLE_TO_USE_PHANTOM_TYPE_SERVITORS; - @ClientString(id = 4662, message = "By the will of the Chaos, the power of Naviarope, the giant that could open and close the Dimensional Door at will, has been combined with the ancient power of darkness. This power enabled powerful summoning skills for the Spectral Master. ") + @ClientString(id = 4662, message = "By the will of the Chaos, the power of Naviarope, the giant that could open and close the Dimensional Door at will, has been combined with the ancient power of darkness. This power enabled powerful summoning skills for the Spectral Master.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_NAVIAROPE_THE_GIANT_THAT_COULD_OPEN_AND_CLOSE_THE_DIMENSIONAL_DOOR_AT_WILL_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_DARKNESS_THIS_POWER_ENABLED_POWERFUL_SUMMONING_SKILLS_FOR_THE_SPECTRAL_MASTER; @ClientString(id = 4663, message = "- Healer with great restorative powers
- Specializes in restoring clan members' HP") public static SystemMessageId HEALER_WITH_GREAT_RESTORATIVE_POWERS_BR_SPECIALIZES_IN_RESTORING_CLAN_MEMBERS_HP; - @ClientString(id = 4664, message = "By the will of the Chaos, the power of Lakcis, the forefather of holy magic who took and improved Einhasad's power, has been combined with the ancient power of light. This enabled the Aeore Cardinal to use miraculous magic. ") + @ClientString(id = 4664, message = "By the will of the Chaos, the power of Lakcis, the forefather of holy magic who took and improved Einhasad's power, has been combined with the ancient power of light. This enabled the Aeore Cardinal to use miraculous magic.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_LAKCIS_THE_FOREFATHER_OF_HOLY_MAGIC_WHO_TOOK_AND_IMPROVED_EINHASAD_S_POWER_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_THIS_ENABLED_THE_AEORE_CARDINAL_TO_USE_MIRACULOUS_MAGIC; @ClientString(id = 4665, message = "- Healer with fast chain skill usage
- Specializes in MP Recovery") public static SystemMessageId HEALER_WITH_FAST_CHAIN_SKILL_USAGE_BR_SPECIALIZES_IN_MP_RECOVERY; - @ClientString(id = 4666, message = "By the will of the Chaos, the power of Lakcis, the forefather of holy magic who took and improved Einhasad's power, has been combined with the ancient power of light and water. This power was used not only to protect one's community but to protect the peace of the world. ") + @ClientString(id = 4666, message = "By the will of the Chaos, the power of Lakcis, the forefather of holy magic who took and improved Einhasad's power, has been combined with the ancient power of light and water. This power was used not only to protect one's community but to protect the peace of the world.") public static SystemMessageId BY_THE_WILL_OF_THE_CHAOS_THE_POWER_OF_LAKCIS_THE_FOREFATHER_OF_HOLY_MAGIC_WHO_TOOK_AND_IMPROVED_EINHASAD_S_POWER_HAS_BEEN_COMBINED_WITH_THE_ANCIENT_POWER_OF_LIGHT_AND_WATER_THIS_POWER_WAS_USED_NOT_ONLY_TO_PROTECT_ONE_S_COMMUNITY_BUT_TO_PROTECT_THE_PEACE_OF_THE_WORLD; @ClientString(id = 4667, message = "- Healer with powerful M. Atk.
- Specializes in MP Recovery") @@ -12969,7 +13332,7 @@ public final class SystemMessageId @ClientString(id = 4669, message = "Melee Damage Dealer") public static SystemMessageId MELEE_DAMAGE_DEALER_2; - @ClientString(id = 4670, message = " - Specizlizes in Fist Weapons
- Attacks from the Side
- Fast Atk. Spd.") + @ClientString(id = 4670, message = "- Specizlizes in Fist Weapons
- Attacks from the Side
- Fast Atk. Spd.") public static SystemMessageId SPECIZLIZES_IN_FIST_WEAPONS_BR_ATTACKS_FROM_THE_SIDE_BR_FAST_ATK_SPD; @ClientString(id = 4671, message = "Eviscerators can manipulate gravity to their advantage. Their main strength lies in shifting their own center of gravity to add to their speed and attack speed.") @@ -12978,12 +13341,90 @@ public final class SystemMessageId @ClientString(id = 4672, message = "Magic Damage Dealer") public static SystemMessageId MAGIC_DAMAGE_DEALER_2; - @ClientString(id = 4673, message = " - Specializes in magical two-handed weapons
- Close-range Damage Spells
- Uses Wind for Defense") + @ClientString(id = 4673, message = "- Specializes in magical two-handed weapons
- Close-range Damage Spells
- Uses Wind for Defense") public static SystemMessageId SPECIALIZES_IN_MAGICAL_TWO_HANDED_WEAPONS_BR_CLOSE_RANGE_DAMAGE_SPELLS_BR_USES_WIND_FOR_DEFENSE; @ClientString(id = 4674, message = "Able to tap into the power of the wind god, Sayha's Seers can diffuse themselves into the wind for transport or defenses. Their talents account for their extraordinary survivability.") public static SystemMessageId ABLE_TO_TAP_INTO_THE_POWER_OF_THE_WIND_GOD_SAYHA_S_SEERS_CAN_DIFFUSE_THEMSELVES_INTO_THE_WIND_FOR_TRANSPORT_OR_DEFENSES_THEIR_TALENTS_ACCOUNT_FOR_THEIR_EXTRAORDINARY_SURVIVABILITY; + @ClientString(id = 4675, message = "Clan Bulletin") + public static SystemMessageId CLAN_BULLETIN; + + @ClientString(id = 4676, message = "Use the clan crest/title") + public static SystemMessageId USE_THE_CLAN_CREST_TITLE; + + @ClientString(id = 4677, message = "Participate in the Ceremony of Chaos") + public static SystemMessageId PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS; + + @ClientString(id = 4678, message = "Bid/own auctionable Clan Hall") + public static SystemMessageId BID_OWN_AUCTIONABLE_CLAN_HALL; + + @ClientString(id = 4679, message = "Create an alliance and declare a clan war") + public static SystemMessageId CREATE_AN_ALLIANCE_AND_DECLARE_A_CLAN_WAR; + + @ClientString(id = 4680, message = "Participate in clan hall wars, fortress battles, castle siege, and the Throne of Heroes") + public static SystemMessageId PARTICIPATE_IN_CLAN_HALL_WARS_FORTRESS_BATTLES_CASTLE_SIEGE_AND_THE_THRONE_OF_HEROES; + + @ClientString(id = 4681, message = "Bid/own provisional Clan Hall") + public static SystemMessageId BID_OWN_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4682, message = "Bid/own super advanced provisional Clan Hall") + public static SystemMessageId BID_OWN_SUPER_ADVANCED_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4683, message = "Earn Clan Development Points") + public static SystemMessageId EARN_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4684, message = "Quite good for a newbie!") + public static SystemMessageId QUITE_GOOD_FOR_A_NEWBIE; + + @ClientString(id = 4685, message = "Hey! Are you okay?") + public static SystemMessageId HEY_ARE_YOU_OKAY; + + @ClientString(id = 4686, message = "You cannot enter because a party member does not belong to your clan.") + public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_A_PARTY_MEMBER_DOES_NOT_BELONG_TO_YOUR_CLAN; + + @ClientString(id = 4687, message = "<$s1> activated. You can buy it from the Clan Shop.") + public static SystemMessageId S1_ACTIVATED_YOU_CAN_BUY_IT_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4688, message = "<$s1> purchased <$s2> from the Clan Shop.") + public static SystemMessageId S1_PURCHASED_S2_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4689, message = "Cannot use this function consecutively. Please try again later.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_CONSECUTIVELY_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4690, message = "Cannot use this function while casting a skill.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_CASTING_A_SKILL; + + @ClientString(id = 4691, message = "Not enough money for activation.") + public static SystemMessageId NOT_ENOUGH_MONEY_FOR_ACTIVATION; + + @ClientString(id = 4692, message = "You don't have enough money to buy the item or your inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_MONEY_TO_BUY_THE_ITEM_OR_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; + + @ClientString(id = 4693, message = "The clan level rose to $s1.") + public static SystemMessageId THE_CLAN_LEVEL_ROSE_TO_S1; + + @ClientString(id = 4694, message = "Earned the Clan Development Points.") + public static SystemMessageId EARNED_THE_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4695, message = "You earned $s1 Clan Reputation Points for your clan.") + public static SystemMessageId YOU_EARNED_S1_CLAN_REPUTATION_POINTS_FOR_YOUR_CLAN; + + @ClientString(id = 4696, message = "Reset $s1 to default settings.") + public static SystemMessageId RESET_S1_TO_DEFAULT_SETTINGS; + + @ClientString(id = 4697, message = "Canceled.") + public static SystemMessageId CANCELED; + + @ClientString(id = 4698, message = "Changed the clan privileges.") + public static SystemMessageId CHANGED_THE_CLAN_PRIVILEGES; + + @ClientString(id = 4699, message = "Clan Shop available") + public static SystemMessageId CLAN_SHOP_AVAILABLE; + + @ClientString(id = 4700, message = "This dummy message is not displayed on the chat window.") + public static SystemMessageId THIS_DUMMY_MESSAGE_IS_NOT_DISPLAYED_ON_THE_CHAT_WINDOW; + @ClientString(id = 4701, message = "You can easily configure the graphic quality with presets. A higher value means more visual effects. Note that a high value may reduce game performance.") public static SystemMessageId YOU_CAN_EASILY_CONFIGURE_THE_GRAPHIC_QUALITY_WITH_PRESETS_A_HIGHER_VALUE_MEANS_MORE_VISUAL_EFFECTS_NOTE_THAT_A_HIGH_VALUE_MAY_REDUCE_GAME_PERFORMANCE; @@ -13215,8 +13656,8 @@ public final class SystemMessageId @ClientString(id = 4777, message = "Use the cursor made specifically for the game.") public static SystemMessageId USE_THE_CURSOR_MADE_SPECIFICALLY_FOR_THE_GAME; - @ClientString(id = 4778, message = "Hide PC points.") - public static SystemMessageId HIDE_PC_POINTS; + @ClientString(id = 4778, message = "Hide PA Points.") + public static SystemMessageId HIDE_PA_POINTS; @ClientString(id = 4779, message = "Display effects that show quest destinations.") public static SystemMessageId DISPLAY_EFFECTS_THAT_SHOW_QUEST_DESTINATIONS; @@ -13491,14 +13932,14 @@ public final class SystemMessageId @ClientString(id = 4869, message = "View various records within the world.") public static SystemMessageId VIEW_VARIOUS_RECORDS_WITHIN_THE_WORLD; - @ClientString(id = 4870, message = "View instanced zone usage status.") - public static SystemMessageId VIEW_INSTANCED_ZONE_USAGE_STATUS; + @ClientString(id = 4870, message = "View Instance Zone usage status.") + public static SystemMessageId VIEW_INSTANCE_ZONE_USAGE_STATUS; @ClientString(id = 4871, message = "You can view clan information and request entry into clan.") public static SystemMessageId YOU_CAN_VIEW_CLAN_INFORMATION_AND_REQUEST_ENTRY_INTO_CLAN; - @ClientString(id = 4872, message = "View PC points.") - public static SystemMessageId VIEW_PC_POINTS; + @ClientString(id = 4872, message = "View PA Points.") + public static SystemMessageId VIEW_PA_POINTS; @ClientString(id = 4873, message = "View product inventory.") public static SystemMessageId VIEW_PRODUCT_INVENTORY; @@ -13512,8 +13953,8 @@ public final class SystemMessageId @ClientString(id = 4876, message = "Display the names of another player's character, their pet, and their servitor.") public static SystemMessageId DISPLAY_THE_NAMES_OF_ANOTHER_PLAYER_S_CHARACTER_THEIR_PET_AND_THEIR_SERVITOR; - @ClientString(id = 4877, message = "Reset the detailed settings of the activated Chat tab.") - public static SystemMessageId RESET_THE_DETAILED_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; + @ClientString(id = 4877, message = "Reset the settings of the activated Chat tab.") + public static SystemMessageId RESET_THE_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; @ClientString(id = 4878, message = "Use the 1:1 inquiry service.") public static SystemMessageId USE_THE_1_1_INQUIRY_SERVICE; @@ -13566,56 +14007,92 @@ public final class SystemMessageId @ClientString(id = 4894, message = "Change the quality of the visual effect settings quickly according to the pre-configured setting value.") public static SystemMessageId CHANGE_THE_QUALITY_OF_THE_VISUAL_EFFECT_SETTINGS_QUICKLY_ACCORDING_TO_THE_PRE_CONFIGURED_SETTING_VALUE; - @ClientString(id = 5000, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the plaync Homepage (www.plaync.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4895, message = "Selects all hostile targets.") + public static SystemMessageId SELECTS_ALL_HOSTILE_TARGETS; - @ClientString(id = 5001, message = "Your account has been suspended as per our management policy because it is confirmed that you submitted a false report. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_BECAUSE_IT_IS_CONFIRMED_THAT_YOU_SUBMITTED_A_FALSE_REPORT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4896, message = "Selects a hostile monster (excludes hostile PC's Pets / Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_MONSTER_EXCLUDES_HOSTILE_PC_S_PETS_SERVITORS; - @ClientString(id = 5002, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the plaync Homepage (www.plaync.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4897, message = "Selects a hostile PC (excludes hostile PC's Pets / Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_PC_EXCLUDES_HOSTILE_PC_S_PETS_SERVITORS; - @ClientString(id = 5003, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4898, message = "Selects a friendly NPC.") + public static SystemMessageId SELECTS_A_FRIENDLY_NPC; - @ClientString(id = 5004, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended for 7 days from the date when the act was found. Your account will become unblocked after 7 days of suspension. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") - public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_7_DAYS_FROM_THE_DATE_WHEN_THE_ACT_WAS_FOUND_YOUR_ACCOUNT_WILL_BECOME_UNBLOCKED_AFTER_7_DAYS_OF_SUSPENSION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + @ClientString(id = 4899, message = "Hide the pets and servitors of other PCs in town.") + public static SystemMessageId HIDE_THE_PETS_AND_SERVITORS_OF_OTHER_PCS_IN_TOWN; - @ClientString(id = 5005, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") - public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + @ClientString(id = 4900, message = "Reject a regular user's invitation to a party.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5006, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4901, message = "Reject a friend's invitation to a party.") + public static SystemMessageId REJECT_A_FRIEND_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5007, message = "Your account has been suspended for disrupting public well-being, order, public morals, etc. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4902, message = "Reject a clan member's invitation to a party.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_INVITATION_TO_A_PARTY; - @ClientString(id = 5008, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4903, message = "Turn on/off to reject party invitations from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_PARTY_INVITATIONS_FROM_EVERYONE; - @ClientString(id = 5009, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4904, message = "Reject a regular user's friend request.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_FRIEND_REQUEST; - @ClientString(id = 5010, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 4905, message = "Reject a clan member's friend request.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_FRIEND_REQUEST; - @ClientString(id = 5011, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 4906, message = "Turn on/off to reject friend requests from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_FRIEND_REQUESTS_FROM_EVERYONE; - @ClientString(id = 5012, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5000, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the official homepage (eu.4game.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5013, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's identification. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5001, message = "Your account has been suspended as per our management policy because it is confirmed that you submitted a false report. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_BECAUSE_IT_IS_CONFIRMED_THAT_YOU_SUBMITTED_A_FALSE_REPORT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5014, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5002, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the official homepage (eu.4game.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5015, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5003, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5016, message = "For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5004, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended for 7 days from the date when the act was found. Your account will become unblocked after 7 days of suspension. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") + public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_7_DAYS_FROM_THE_DATE_WHEN_THE_ACT_WAS_FOUND_YOUR_ACCOUNT_WILL_BECOME_UNBLOCKED_AFTER_7_DAYS_OF_SUSPENSION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + + @ClientString(id = 5005, message = "You have traded or attempted to trade an item or character (i.e., account), which holds value in the game system, for cash, cashable goods or item of other games, etc. Pursuant to Article 14 of Chapter 3 of our Terms of Service and management policy, your account has been suspended. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center (Lineage II).") + public static SystemMessageId YOU_HAVE_TRADED_OR_ATTEMPTED_TO_TRADE_AN_ITEM_OR_CHARACTER_I_E_ACCOUNT_WHICH_HOLDS_VALUE_IN_THE_GAME_SYSTEM_FOR_CASH_CASHABLE_GOODS_OR_ITEM_OF_OTHER_GAMES_ETC_PURSUANT_TO_ARTICLE_14_OF_CHAPTER_3_OF_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_LINEAGE_II_FONT; + + @ClientString(id = 5006, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5007, message = "Your account has been suspended for disrupting public well-being, order, public morals, etc. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5008, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5009, message = "Your account has been suspended for using an illegal program. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5010, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5011, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + + @ClientString(id = 5012, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5013, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's identification. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + + @ClientString(id = 5014, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + + @ClientString(id = 5015, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5016, message = "For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; @ClientString(id = 5017, message = "Please inquire through the Lineage II Customer Service Center or the 1:1 support in the official website.") public static SystemMessageId PLEASE_INQUIRE_THROUGH_THE_FONT_COLOR_FFDF4C_LINEAGE_II_CUSTOMER_SERVICE_CENTER_FONT_OR_THE_FONT_COLOR_FFDF4C_1_1_SUPPORT_FONT_IN_THE_OFFICIAL_WEBSITE; @@ -13623,104 +14100,104 @@ public final class SystemMessageId @ClientString(id = 5018, message = "In order to play Lineage II, you must be Ages 15 or above. You must be 18 or above in order to use the PvP servers.") public static SystemMessageId IN_ORDER_TO_PLAY_LINEAGE_II_YOU_MUST_BE_FONT_COLOR_FFDF4C_AGES_15_OR_ABOVE_FONT_YOU_MUST_BE_FONT_COLOR_FFDF4C_18_OR_ABOVE_FONT_IN_ORDER_TO_USE_THE_PVP_SERVERS; - @ClientString(id = 5019, message = "Go to the plaync Homepage (www.plaync.com), join our web membership and create a new account.") - public static SystemMessageId GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_JOIN_OUR_WEB_MEMBERSHIP_AND_CREATE_A_NEW_ACCOUNT; + @ClientString(id = 5019, message = "Go to the official homepage (eu.4game.com), join our web membership and create a new account.") + public static SystemMessageId GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_JOIN_OUR_WEB_MEMBERSHIP_AND_CREATE_A_NEW_ACCOUNT; - @ClientString(id = 5020, message = "If you have lost your account information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId IF_YOU_HAVE_LOST_YOUR_ACCOUNT_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5020, message = "If you have lost your account information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId IF_YOU_HAVE_LOST_YOUR_ACCOUNT_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; @ClientString(id = 5021, message = "Users who did not complete the Age 18 Verification may not login between 10PM and 6AM the next day.") public static SystemMessageId USERS_WHO_DID_NOT_COMPLETE_THE_FONT_COLOR_FFDF4C_AGE_18_VERIFICATION_FONT_MAY_NOT_LOGIN_BETWEEN_FONT_COLOR_FFDF4C_10PM_FONT_AND_FONT_COLOR_FFDF4C_6AM_FONT_THE_NEXT_DAY; - @ClientString(id = 5022, message = "Please complete the user verification process for your identification. For user verification process, go to the plaync Homepage (www.plaync.com). For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId PLEASE_COMPLETE_THE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5022, message = "Please complete the user verification process for your identification. For user verification process, go to the official homepage (eu.4game.com). For more information, contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId PLEASE_COMPLETE_THE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5023, message = "Your account has been suspended for attempting to trade for cash, server, or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_TO_TRADE_FOR_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5023, message = "Your account has been suspended for attempting to trade for cash, server, or other games. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_TO_TRADE_FOR_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5024, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5024, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; - @ClientString(id = 5025, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5025, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5026, message = "Your account has been suspended for trading cash, server or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5026, message = "Your account has been suspended for trading cash, server or other games. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_SERVER_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5027, message = "Your account has been suspended for trading cash, or account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5027, message = "Your account has been suspended for trading cash, or account. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5028, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the plaync Homepage (www.plaync.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5028, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the official homepage (eu.4game.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5029, message = "You have an inactive account. Your account becomes inactive after a certain period of inactivity. To reactivate an inactive account, visit the plaync Homepage (www.plaync.com).") - public static SystemMessageId YOU_HAVE_AN_INACTIVE_ACCOUNT_YOUR_ACCOUNT_BECOMES_INACTIVE_AFTER_A_CERTAIN_PERIOD_OF_INACTIVITY_TO_REACTIVATE_AN_INACTIVE_ACCOUNT_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT; + @ClientString(id = 5029, message = "You have an inactive account. Your account becomes inactive after a certain period of inactivity. To reactivate an inactive account, visit the official homepage (eu.4game.com).") + public static SystemMessageId YOU_HAVE_AN_INACTIVE_ACCOUNT_YOUR_ACCOUNT_BECOMES_INACTIVE_AFTER_A_CERTAIN_PERIOD_OF_INACTIVITY_TO_REACTIVATE_AN_INACTIVE_ACCOUNT_VISIT_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT; @ClientString(id = 5030, message = "Logging in.Please wait.") public static SystemMessageId FONT_COLOR_FFDF4C_LOGGING_IN_FONT_PLEASE_WAIT; - @ClientString(id = 5031, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit http://us.ncsoft.com/en/.") - public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTP_US_NCSOFT_COM_EN; + @ClientString(id = 5031, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit https://eu.4game.com/.") + public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTPS_EU_4GAME_COM; - @ClientString(id = 5032, message = "Your account needs verification.
Visit the plaync Homepage (www.plaync.com), verify your account and try again.") - public static SystemMessageId YOUR_ACCOUNT_NEEDS_VERIFICATION_BR_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_VERIFY_YOUR_ACCOUNT_AND_TRY_AGAIN; + @ClientString(id = 5032, message = "Your account needs verification.
Visit the official homepage (eu.4game.com), verify your account and try again.") + public static SystemMessageId YOUR_ACCOUNT_NEEDS_VERIFICATION_BR_VISIT_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_VERIFY_YOUR_ACCOUNT_AND_TRY_AGAIN; - @ClientString(id = 5033, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_51; + @ClientString(id = 5033, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_51; @ClientString(id = 5034, message = "This account has declined the User Agreement or has requested for membership withdrawal. Please try again after
cancelling the Game Agreement declination or cancelling the membership withdrawal request.") public static SystemMessageId THIS_ACCOUNT_HAS_DECLINED_THE_USER_AGREEMENT_OR_HAS_REQUESTED_FOR_MEMBERSHIP_WITHDRAWAL_PLEASE_TRY_AGAIN_AFTER_BR_FONT_COLOR_FFDF4C_CANCELLING_THE_GAME_AGREEMENT_DECLINATION_FONT_OR_FONT_COLOR_FFDF4C_CANCELLING_THE_MEMBERSHIP_WITHDRAWAL_REQUEST_FONT; - @ClientString(id = 5035, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_52; + @ClientString(id = 5035, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_52; - @ClientString(id = 5036, message = "Your account has been suspended.
For more information, visit plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_BR_FOR_MORE_INFORMATION_VISIT_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5036, message = "Your account has been suspended.
For more information, visit official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_BR_FOR_MORE_INFORMATION_VISIT_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5037, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_53; + @ClientString(id = 5037, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_53; - @ClientString(id = 5038, message = "You may access your account after updating your password and password quiz.
Go to the plaync Homepage (www.plaync.com) and update your password and password quiz to retrieve your account.") - public static SystemMessageId YOU_MAY_ACCESS_YOUR_ACCOUNT_AFTER_UPDATING_YOUR_PASSWORD_AND_PASSWORD_QUIZ_BR_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_FONT_COLOR_FFDF4C_UPDATE_YOUR_PASSWORD_AND_PASSWORD_QUIZ_FONT_TO_RETRIEVE_YOUR_ACCOUNT; + @ClientString(id = 5038, message = "You may access your account after updating your password and password quiz.
Go to the official homepage (eu.4game.com) and update your password and password quiz to retrieve your account.") + public static SystemMessageId YOU_MAY_ACCESS_YOUR_ACCOUNT_AFTER_UPDATING_YOUR_PASSWORD_AND_PASSWORD_QUIZ_BR_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_FONT_COLOR_FFDF4C_UPDATE_YOUR_PASSWORD_AND_PASSWORD_QUIZ_FONT_TO_RETRIEVE_YOUR_ACCOUNT; - @ClientString(id = 5039, message = "Your account has been suspended for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5039, message = "Your account has been suspended for using illegal programs. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5040, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_54; + @ClientString(id = 5040, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_54; - @ClientString(id = 5041, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_55; + @ClientString(id = 5041, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_55; - @ClientString(id = 5042, message = "Your account has been suspended due to fraudulent information. If you are not involved with this fraud, please verify your account information. For more information, visit the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_FRAUDULENT_INFORMATION_IF_YOU_ARE_NOT_INVOLVED_WITH_THIS_FRAUD_PLEASE_VERIFY_YOUR_ACCOUNT_INFORMATION_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5042, message = "Your account has been suspended due to fraudulent information. If you are not involved with this fraud, please verify your account information. For more information, visit the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_FRAUDULENT_INFORMATION_IF_YOU_ARE_NOT_INVOLVED_WITH_THIS_FRAUD_PLEASE_VERIFY_YOUR_ACCOUNT_INFORMATION_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5043, message = "Your account has been completely blocked for making a fraudulent payment. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_MAKING_A_FRAUDULENT_PAYMENT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5043, message = "Your account has been completely blocked for making a fraudulent payment. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_MAKING_A_FRAUDULENT_PAYMENT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5044, message = "Your account has been completely blocked for trading accounts.
For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_TRADING_ACCOUNTS_BR_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5044, message = "Your account has been completely blocked for trading accounts.
For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_TRADING_ACCOUNTS_BR_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5045, message = "Your account has been completely blocked for 10 days for using illegal programs. Note that your account will be permanently blocked if it happens again. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_10_DAYS_FOR_USING_ILLEGAL_PROGRAMS_NOTE_THAT_YOUR_ACCOUNT_WILL_BE_PERMANENTLY_BLOCKED_IF_IT_HAPPENS_AGAIN_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5045, message = "Your account has been completely blocked for 10 days for using illegal programs. Note that your account will be permanently blocked if it happens again. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_10_DAYS_FOR_USING_ILLEGAL_PROGRAMS_NOTE_THAT_YOUR_ACCOUNT_WILL_BE_PERMANENTLY_BLOCKED_IF_IT_HAPPENS_AGAIN_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5046, message = "Your account has been completely blocked for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5046, message = "Your account has been completely blocked for using illegal programs. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5047, message = "Your account has been completely blocked for using illegal programs. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5047, message = "Your account has been completely blocked for using illegal programs. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; - @ClientString(id = 5048, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the NCSOFT website (https://support.lineage2.com).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_NCSOFT_WEBSITE_HTTPS_SUPPORT_LINEAGE2_COM_56; + @ClientString(id = 5048, message = "Your account has been restricted for violating the EULA, RoC and/or the User Agreement. When a user violates the terms of the User Agreement, the company can impose a restriction on their account. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_FOR_VIOLATING_THE_EULA_ROC_AND_OR_THE_USER_AGREEMENT_WHEN_A_USER_VIOLATES_THE_TERMS_OF_THE_USER_AGREEMENT_THE_COMPANY_CAN_IMPOSE_A_RESTRICTION_ON_THEIR_ACCOUNT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_56; - @ClientString(id = 5049, message = "Your account has been suspended for repeated uploading abusive posts. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_REPEATED_UPLOADING_ABUSIVE_POSTS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5049, message = "Your account has been suspended for repeated uploading abusive posts. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_REPEATED_UPLOADING_ABUSIVE_POSTS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5050, message = "Your account has been suspended for uploading a post in violation of the current law. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_UPLOADING_A_POST_IN_VIOLATION_OF_THE_CURRENT_LAW_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5050, message = "Your account has been suspended for uploading a post in violation of the current law. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_UPLOADING_A_POST_IN_VIOLATION_OF_THE_CURRENT_LAW_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5051, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5051, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; @ClientString(id = 5052, message = "You have entered the Live Server.") public static SystemMessageId YOU_HAVE_ENTERED_THE_FONT_COLOR_FFDF4C_LIVE_SERVER_FONT; @@ -13734,14 +14211,14 @@ public final class SystemMessageId @ClientString(id = 5055, message = "You cannot do that because of Fatigue.") public static SystemMessageId YOU_CANNOT_DO_THAT_BECAUSE_OF_FONT_COLOR_FFDF4C_FATIGUE_FONT; - @ClientString(id = 5056, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the plaync Homepage(www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5056, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the official homepage(eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5057, message = "Your account has been completely blocked for creating an account under another person's name. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_CREATING_AN_ACCOUNT_UNDER_ANOTHER_PERSON_S_NAME_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5057, message = "Your account has been completely blocked for creating an account under another person's name. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_CREATING_AN_ACCOUNT_UNDER_ANOTHER_PERSON_S_NAME_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; - @ClientString(id = 5058, message = "Your account has been suspended due to suspected abusive gameplay. If this is not the case, verify your account on our website. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_SUSPECTED_ABUSIVE_GAMEPLAY_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5058, message = "Your account has been suspended due to suspected abusive gameplay. If this is not the case, verify your account on our website. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_SUSPECTED_ABUSIVE_GAMEPLAY_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_WEBSITE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; @ClientString(id = 5059, message = "Please enter more than 1 letter and less than 16 letters.") public static SystemMessageId PLEASE_ENTER_MORE_THAN_FONT_COLOR_FFDF4C_1_LETTER_FONT_AND_LESS_THAN_FONT_COLOR_FFDF4C_16_LETTERS_FONT; @@ -13761,17 +14238,17 @@ public final class SystemMessageId @ClientString(id = 5064, message = "Authentication has failed as you have entered an incorrect authentication number or did not enter the authentication number. If you fail authentication 3 times in a row, game access will be restricted for 30 minutes.") public static SystemMessageId AUTHENTICATION_HAS_FAILED_AS_YOU_HAVE_ENTERED_AN_INCORRECT_AUTHENTICATION_NUMBER_OR_DID_NOT_ENTER_THE_AUTHENTICATION_NUMBER_IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT; - @ClientString(id = 5065, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_3; + @ClientString(id = 5065, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_3; - @ClientString(id = 5066, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.lineage2.com\r\n") - public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_LINEAGE2_COM_R_N_4; + @ClientString(id = 5066, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com\r\n") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_R_N_4; @ClientString(id = 5067, message = "If you fail authentication 3 times in a row, game access will be restricted for 30 minutes. Please try again later.") public static SystemMessageId IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 5068, message = "To request an NC OTP service,
run the cell phone NC OTP service
and enter the displayed NC OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") - public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_NC_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; + @ClientString(id = 5068, message = "To request an OTP service,
run the cell phone OTP service
and enter the displayed OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") + public static SystemMessageId TO_REQUEST_AN_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; @ClientString(id = 5069, message = "Please enter card number $s1.") public static SystemMessageId PLEASE_ENTER_CARD_NUMBER_FONT_COLOR_FFDF4C_S1_FONT; @@ -13785,110 +14262,464 @@ public final class SystemMessageId @ClientString(id = 5072, message = "To get the dormant user benefits, go to Lineage II Homepage > Dormant user coupon page(lineage2.plaync.com/service/freecoupon/dormancy).
Get the dormant user benefits and access our game!") public static SystemMessageId TO_GET_THE_DORMANT_USER_BENEFITS_GO_TO_FONT_COLOR_FFDF4C_LINEAGE_II_HOMEPAGE_DORMANT_USER_COUPON_PAGE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_LINEAGE2_PLAYNC_COM_SERVICE_FREECOUPON_DORMANCY_A_FONT_BR_GET_THE_DORMANT_USER_BENEFITS_AND_ACCESS_OUR_GAME; + @ClientString(id = 5100, message = "Available only for members authorized to activate items") + public static SystemMessageId AVAILABLE_ONLY_FOR_MEMBERS_AUTHORIZED_TO_ACTIVATE_ITEMS; + + @ClientString(id = 5101, message = "No war in progress. The clan must be level 5 or higher to start a clan war.") + public static SystemMessageId NO_WAR_IN_PROGRESS_THE_CLAN_MUST_BE_LEVEL_5_OR_HIGHER_TO_START_A_CLAN_WAR; + + @ClientString(id = 5102, message = "Assigned the target to the selected division.") + public static SystemMessageId ASSIGNED_THE_TARGET_TO_THE_SELECTED_DIVISION; + + @ClientString(id = 5103, message = "Changed the target's privileges.") + public static SystemMessageId CHANGED_THE_TARGET_S_PRIVILEGES; + + @ClientString(id = 5104, message = "Cannot use this function while using a Private Store.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_USING_A_PRIVATE_STORE; + + @ClientString(id = 5105, message = "Cannot report a character who is fighting in a duel.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_IS_FIGHTING_IN_A_DUEL; + + @ClientString(id = 5106, message = "No Spirits are available.") + public static SystemMessageId NO_SPIRITS_ARE_AVAILABLE; + + @ClientString(id = 5107, message = "<$s1> will be your attribute attack from now on.") + public static SystemMessageId S1_WILL_BE_YOUR_ATTRIBUTE_ATTACK_FROM_NOW_ON; + + @ClientString(id = 5108, message = "<$s1> will evolve to <$s2-Star>. Can grow up to Lv. 10 after evolving.") + public static SystemMessageId S1_WILL_EVOLVE_TO_S2_STAR_CAN_GROW_UP_TO_LV_10_AFTER_EVOLVING; + + @ClientString(id = 5109, message = "<$s1> evolved to <$s2-Star>!") + public static SystemMessageId S1_EVOLVED_TO_S2_STAR; + + @ClientString(id = 5110, message = "Extracting with <$s1, x$s2>.") + public static SystemMessageId EXTRACTING_WITH_S1_X_S2; + + @ClientString(id = 5111, message = "Extracted <$s1, x$s2> successfully!") + public static SystemMessageId EXTRACTED_S1_X_S2_SUCCESSFULLY; + + @ClientString(id = 5112, message = "Register a material you want to drain.") + public static SystemMessageId REGISTER_A_MATERIAL_YOU_WANT_TO_DRAIN; + + @ClientString(id = 5113, message = "Cannot evolve/absorb/extract while using the private store/workshop.") + public static SystemMessageId CANNOT_EVOLVE_ABSORB_EXTRACT_WHILE_USING_THE_PRIVATE_STORE_WORKSHOP; + + @ClientString(id = 5114, message = "Drain successful!") + public static SystemMessageId DRAIN_SUCCESSFUL; + + @ClientString(id = 5115, message = "Characteristic Points will be used to enhance the stats of <$s1>. You can retrieve these points by resetting the stats. Are you sure you want to continue?") + public static SystemMessageId CHARACTERISTIC_POINTS_WILL_BE_USED_TO_ENHANCE_THE_STATS_OF_S1_YOU_CAN_RETRIEVE_THESE_POINTS_BY_RESETTING_THE_STATS_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5116, message = "Characteristics were applied successfully.") + public static SystemMessageId CHARACTERISTICS_WERE_APPLIED_SUCCESSFULLY; + + @ClientString(id = 5117, message = "Use <$s1> to reset the Spirit's characteristics. Continue?") + public static SystemMessageId USE_S1_TO_RESET_THE_SPIRIT_S_CHARACTERISTICS_CONTINUE; + + @ClientString(id = 5118, message = "Reset the selected Spirit's Characteristics successfully.") + public static SystemMessageId RESET_THE_SELECTED_SPIRIT_S_CHARACTERISTICS_SUCCESSFULLY; + + @ClientString(id = 5119, message = "Cannot report a character who has signed up for Olympiad.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_HAS_SIGNED_UP_FOR_OLYMPIAD; + + @ClientString(id = 5120, message = "Not allowed to sign up for Olympiad while the report of illegal program users is being verified.") + public static SystemMessageId NOT_ALLOWED_TO_SIGN_UP_FOR_OLYMPIAD_WHILE_THE_REPORT_OF_ILLEGAL_PROGRAM_USERS_IS_BEING_VERIFIED; + + @ClientString(id = 5121, message = "The item has been sealed.") + public static SystemMessageId THE_ITEM_HAS_BEEN_SEALED; + + @ClientString(id = 5122, message = "The seal has been released from the item.") + public static SystemMessageId THE_SEAL_HAS_BEEN_RELEASED_FROM_THE_ITEM; + + @ClientString(id = 5123, message = "Not allowed because the item is sealed. Try again after releasing the seal.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_THE_ITEM_IS_SEALED_TRY_AGAIN_AFTER_RELEASING_THE_SEAL; + + @ClientString(id = 5124, message = "$s1 cannot be sealed.") + public static SystemMessageId S1_CANNOT_BE_SEALED; + + @ClientString(id = 5125, message = "Not allowed because $s1 is not sealed.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_S1_IS_NOT_SEALED; + + @ClientString(id = 5126, message = "Canceled the use of the Seal/Release Seal Scroll.") + public static SystemMessageId CANCELED_THE_USE_OF_THE_SEAL_RELEASE_SEAL_SCROLL; + + @ClientString(id = 5127, message = "Sealing/unsealing is in progress. Please try again after completing this process.") + public static SystemMessageId SEALING_UNSEALING_IS_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_PROCESS; + + @ClientString(id = 5128, message = "You cannot seal/unseal an item while you're running a Private Store or Private Workshop.") + public static SystemMessageId YOU_CANNOT_SEAL_UNSEAL_AN_ITEM_WHILE_YOU_RE_RUNNING_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP; + + @ClientString(id = 5129, message = "Select an item you want to seal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_SEAL; + + @ClientString(id = 5130, message = "The selected item will be sealed.\\nTo unseal it, you must go through the identify verification process.") + public static SystemMessageId THE_SELECTED_ITEM_WILL_BE_SEALED_NTO_UNSEAL_IT_YOU_MUST_GO_THROUGH_THE_IDENTIFY_VERIFICATION_PROCESS; + + @ClientString(id = 5131, message = "\\nYou can release the seal by requesting N Shop for the Release Seal Scroll Box.") + public static SystemMessageId NOTE_ON_SEALING_NYOU_CAN_RELEASE_THE_SEAL_BY_REQUESTING_N_SHOP_FOR_THE_RELEASE_SEAL_SCROLL_BOX; + + @ClientString(id = 5132, message = "Select an item you want to unseal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_UNSEAL; + + @ClientString(id = 5133, message = "The seal will be removed from the selected item.") + public static SystemMessageId THE_SEAL_WILL_BE_REMOVED_FROM_THE_SELECTED_ITEM; + + @ClientString(id = 5134, message = "Cannot grow any more.") + public static SystemMessageId CANNOT_GROW_ANY_MORE; + + @ClientString(id = 5135, message = "Used all the registered items.") + public static SystemMessageId USED_ALL_THE_REGISTERED_ITEMS; + + @ClientString(id = 5136, message = "$s1 Attribute Attack Power") + public static SystemMessageId S1_ATTRIBUTE_ATTACK_POWER; + + @ClientString(id = 5137, message = "$s1 Attribute Defense") + public static SystemMessageId S1_ATTRIBUTE_DEFENSE; + + @ClientString(id = 5138, message = "$s1 Attribute Critical Rate") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_RATE; + + @ClientString(id = 5139, message = "$s1 Attribute Critical Damage") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_DAMAGE; + + @ClientString(id = 5140, message = "$s1 will be used. You can use $s2 times more.") + public static SystemMessageId S1_WILL_BE_USED_YOU_CAN_USE_S2_TIMES_MORE; + + @ClientString(id = 5141, message = "$s1 is used. $s1 will be lost because it has been used the maximum amount of times.") + public static SystemMessageId S1_IS_USED_S1_WILL_BE_LOST_BECAUSE_IT_HAS_BEEN_USED_THE_MAXIMUM_AMOUNT_OF_TIMES; + @ClientString(id = 5142, message = "Level $s1 Reward") public static SystemMessageId LEVEL_S1_REWARD; - @ClientString(id = 5300, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the plaync Homepage (www.plaync.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5143, message = "There aren't any Attribute Soulshot. Please purchase it at the Shop.") + public static SystemMessageId THERE_AREN_T_ANY_ATTRIBUTE_SOULSHOT_PLEASE_PURCHASE_IT_AT_THE_SHOP; - @ClientString(id = 5301, message = "Your account has been suspended as per our management policy for manipulating our GM service or customer support service to disrupt other users' normal gameplay or the company's game operation. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_OUR_GM_SERVICE_OR_CUSTOMER_SUPPORT_SERVICE_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_OR_THE_COMPANY_S_GAME_OPERATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5144, message = "Not enough ingredients for evolution.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_FOR_EVOLUTION; - @ClientString(id = 5302, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the plaync Homepage (www.plaync.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5145, message = "Spirits can evolve when they reach level 10 and 100%% XP.") + public static SystemMessageId SPIRITS_CAN_EVOLVE_WHEN_THEY_REACH_LEVEL_10_AND_100_XP; - @ClientString(id = 5303, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5146, message = "Unable to evolve any further.") + public static SystemMessageId UNABLE_TO_EVOLVE_ANY_FURTHER; - @ClientString(id = 5304, message = "Your account has been suspended for attempting promotional activities for commercial purpose or to trade for cash or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_OR_TO_TRADE_FOR_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5147, message = "Not enough ingredients to extract.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_TO_EXTRACT; - @ClientString(id = 5305, message = "Your account has been suspended for trading cash, or account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5148, message = " Spirit will revert back to level 1 and its attribute will be reset. Do you want to proceed?") + public static SystemMessageId PRECAUTIONS_WHEN_EXTRACTING_SPIRIT_WILL_REVERT_BACK_TO_LEVEL_1_AND_ITS_ATTRIBUTE_WILL_BE_RESET_DO_YOU_WANT_TO_PROCEED; - @ClientString(id = 5306, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5149, message = "Not enough ingredients to absorb.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_TO_ABSORB; - @ClientString(id = 5307, message = "Your account has been suspended for using vulgar language during gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_VULGAR_LANGUAGE_DURING_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5150, message = "Unable to absorb because reached maximum level.") + public static SystemMessageId UNABLE_TO_ABSORB_BECAUSE_REACHED_MAXIMUM_LEVEL; - @ClientString(id = 5308, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5151, message = "Precaution for loss of $s1 Attribute XP") + public static SystemMessageId PRECAUTION_FOR_LOSS_OF_S1_ATTRIBUTE_XP; - @ClientString(id = 5309, message = "Your account has been suspended as per our management policy for manufacturing/distributing illegal programs, modifying or altering the client or server program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANUFACTURING_DISTRIBUTING_ILLEGAL_PROGRAMS_MODIFYING_OR_ALTERING_THE_CLIENT_OR_SERVER_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5152, message = "Not enough to proceed with reset.") + public static SystemMessageId NOT_ENOUGH_ADENA_TO_PROCEED_WITH_RESET; - @ClientString(id = 5310, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5153, message = "Editing for Attribute has been cancelled.") + public static SystemMessageId EDITING_FOR_ATTRIBUTE_HAS_BEEN_CANCELLED; - @ClientString(id = 5311, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5154, message = "Quickly find out what the problem is!") + public static SystemMessageId QUICKLY_FIND_OUT_WHAT_THE_PROBLEM_IS; - @ClientString(id = 5312, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5155, message = "Did you find out something?") + public static SystemMessageId DID_YOU_FIND_OUT_SOMETHING; - @ClientString(id = 5313, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of another person's identification. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or, call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_ANOTHER_PERSON_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + @ClientString(id = 5156, message = "Here, go before the passage closes.") + public static SystemMessageId HERE_GO_BEFORE_THE_PASSAGE_CLOSES; - @ClientString(id = 5314, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5157, message = "This is Great Etina Temple.") + public static SystemMessageId THIS_IS_GREAT_ETINA_TEMPLE; - @ClientString(id = 5315, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5158, message = "Let's begin. / Yes.") + public static SystemMessageId LET_S_BEGIN_YES; - @ClientString(id = 5316, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5159, message = "It's my turn.") + public static SystemMessageId IT_S_MY_TURN; - @ClientString(id = 5317, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5160, message = "Your edits will not be saved if you change Spirits.") + public static SystemMessageId YOUR_EDITS_WILL_NOT_BE_SAVED_IF_YOU_CHANGE_SPIRITS; - @ClientString(id = 5318, message = "Please complete user verification process for your identification. For user verification process, go to the plaync Homepage (www.plaync.com). For more information, plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId PLEASE_COMPLETE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5161, message = "Use Attribute Attack of <$s1>.") + public static SystemMessageId USE_ATTRIBUTE_ATTACK_OF_S1; - @ClientString(id = 5319, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + @ClientString(id = 5162, message = "Unable to extract during battle.") + public static SystemMessageId UNABLE_TO_EXTRACT_DURING_BATTLE; - @ClientString(id = 5320, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5163, message = "Unable to extract because Inventory is full.") + public static SystemMessageId UNABLE_TO_EXTRACT_BECAUSE_INVENTORY_IS_FULL; - @ClientString(id = 5321, message = "Your account has been suspended for trading cash or other games. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5164, message = "Unable to evolve during battle.") + public static SystemMessageId UNABLE_TO_EVOLVE_DURING_BATTLE; - @ClientString(id = 5322, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the plaync Homepage (www.plaync.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5165, message = "This Spirit cannot evolve.") + public static SystemMessageId THIS_SPIRIT_CANNOT_EVOLVE; - @ClientString(id = 5323, message = "Your account has been suspended for using an illegal program. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5166, message = "Spirit of other Attribute does not fit the evolution condition.") + public static SystemMessageId SPIRIT_OF_OTHER_ATTRIBUTE_DOES_NOT_FIT_THE_EVOLUTION_CONDITION; - @ClientString(id = 5324, message = "Your account has been suspended for failing to comply with the previous agreement over item distribution for party/group play to unjustly gain items. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_FAILING_TO_COMPLY_WITH_THE_PREVIOUS_AGREEMENT_OVER_ITEM_DISTRIBUTION_FOR_PARTY_GROUP_PLAY_TO_UNJUSTLY_GAIN_ITEMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5167, message = "Unable to absorb during battle.") + public static SystemMessageId UNABLE_TO_ABSORB_DURING_BATTLE; - @ClientString(id = 5325, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5168, message = "Unable to reset Spirit Attribute during battle.") + public static SystemMessageId UNABLE_TO_RESET_SPIRIT_ATTRIBUTE_DURING_BATTLE; - @ClientString(id = 5326, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit http://us.ncsoft.com/en/.") - public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTP_US_NCSOFT_COM_EN_2; + @ClientString(id = 5169, message = "Unable to open Attribute after the third class change.") + public static SystemMessageId UNABLE_TO_OPEN_ATTRIBUTE_AFTER_THE_THIRD_CLASS_CHANGE; - @ClientString(id = 5327, message = "Your account has been suspended for engaging in the promotional activities for commercial purpose. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ENGAGING_IN_THE_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5170, message = "Obtained $s2 Attribute XP of $s1.") + public static SystemMessageId OBTAINED_S2_ATTRIBUTE_XP_OF_S1; - @ClientString(id = 5328, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5171, message = "$s1 Attribute Spirit became level $s2.") + public static SystemMessageId S1_ATTRIBUTE_SPIRIT_BECAME_LEVEL_S2; - @ClientString(id = 5329, message = "Your account has been suspended temporarily for your gameplay resorting to abnormal methods. If this is not the case, verify your account on our Homepage for normal game service. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_YOUR_GAMEPLAY_RESORTING_TO_ABNORMAL_METHODS_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_HOMEPAGE_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5172, message = "Unable to use $s1 because Attribute is not learnt.") + public static SystemMessageId UNABLE_TO_USE_S1_BECAUSE_ATTRIBUTE_IS_NOT_LEARNT; - @ClientString(id = 5330, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5173, message = "Not enough Attribute XP for extraction.") + public static SystemMessageId NOT_ENOUGH_ATTRIBUTE_XP_FOR_EXTRACTION; - @ClientString(id = 5331, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the plaync Homepage (www.plaync.com) and contact us via 1-to-1 inquiry through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + @ClientString(id = 5174, message = "$s1 Attack Critical is activated.") + public static SystemMessageId S1_ATTACK_CRITICAL_IS_ACTIVATED; + + @ClientString(id = 5175, message = "Attack Attribute can be changed after $s1 seconds.") + public static SystemMessageId ATTACK_ATTRIBUTE_CAN_BE_CHANGED_AFTER_S1_SECONDS; + + @ClientString(id = 5176, message = "$s1 has delivered $s3 (Attribute Damage: $s4) to $s2.") + public static SystemMessageId S1_HAS_DELIVERED_S3_ATTRIBUTE_DAMAGE_S4_TO_S2; + + @ClientString(id = 5177, message = "$s1 has received $s3 (Attribute Damage: $s4) from $s2.") + public static SystemMessageId S1_HAS_RECEIVED_S3_ATTRIBUTE_DAMAGE_S4_FROM_S2; + + @ClientString(id = 5178, message = "$s1 has delivered $s3 (Attribute Damage: $s5) to $s2, $s4 damage to the damage transference target.") + public static SystemMessageId S1_HAS_DELIVERED_S3_ATTRIBUTE_DAMAGE_S5_TO_S2_S4_DAMAGE_TO_THE_DAMAGE_TRANSFERENCE_TARGET; + + @ClientString(id = 5179, message = "You did not join Throne of Heroes.") + public static SystemMessageId YOU_DID_NOT_JOIN_THRONE_OF_HEROES; + + @ClientString(id = 5180, message = "Ranking information did not load. Please try again later.") + public static SystemMessageId RANKING_INFORMATION_DID_NOT_LOAD_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 5181, message = "You have obtained an Attribute. Open your Character Information Screen to check.") + public static SystemMessageId YOU_HAVE_OBTAINED_AN_ATTRIBUTE_OPEN_YOUR_CHARACTER_INFORMATION_SCREEN_TO_CHECK; + + @ClientString(id = 5182, message = "Unable to open Olympiad Screen while in participating or watching a match.") + public static SystemMessageId UNABLE_TO_OPEN_OLYMPIAD_SCREEN_WHILE_IN_PARTICIPATING_OR_WATCHING_A_MATCH; + + @ClientString(id = 5183, message = "Olympiad can be watches in Peace Zone only.") + public static SystemMessageId OLYMPIAD_CAN_BE_WATCHES_IN_PEACE_ZONE_ONLY; + + @ClientString(id = 5184, message = "ROUND $s1") + public static SystemMessageId ROUND_S1_2; + + @ClientString(id = 5185, message = "+hidden_msg+ Start Olympiad") + public static SystemMessageId HIDDEN_MSG_START_OLYMPIAD; + + @ClientString(id = 5186, message = "+hidden_msg+ Olympiad Victory") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_VICTORY; + + @ClientString(id = 5187, message = "+hidden_msg+ Olympiad Defeat") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_DEFEAT; + + @ClientString(id = 5188, message = "+hidden_msg+ Olympiad Tie") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_TIE; + + @ClientString(id = 5189, message = "+hidden_msg+ Olympiad Time Over") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_TIME_OVER; + + @ClientString(id = 5190, message = "+hidden_msg+ Olympiad Knock Down") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_KNOCK_DOWN; + + @ClientString(id = 5191, message = "+hidden_msg+ Olympiad Round 1") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_1; + + @ClientString(id = 5192, message = "+hidden_msg+ Olympiad Round 2") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_2; + + @ClientString(id = 5193, message = "+hidden_msg+ Olympiad Round 3") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_3; + + @ClientString(id = 5194, message = "This bait cannot be used in this area.") + public static SystemMessageId THIS_BAIT_CANNOT_BE_USED_IN_THIS_AREA; + + @ClientString(id = 5195, message = "Do you want to select <$s1>?") + public static SystemMessageId DO_YOU_WANT_TO_SELECT_S1; + + @ClientString(id = 5196, message = "Change next target: $s1") + public static SystemMessageId CHANGE_NEXT_TARGET_S1; + + @ClientString(id = 5197, message = "<$s1> has enchanted successfully! <$s2>") + public static SystemMessageId S1_HAS_ENCHANTED_SUCCESSFULLY_S2; + + @ClientString(id = 5198, message = "$s1's enchant is successful!") + public static SystemMessageId S1_S_ENCHANT_IS_SUCCESSFUL; + + @ClientString(id = 5199, message = "$s1") + public static SystemMessageId S1_5; + + @ClientString(id = 5200, message = "Unfinished Season") + public static SystemMessageId UNFINISHED_SEASON; + + @ClientString(id = 5201, message = "<$s1> has obtained at <$s2>! <$s3>") + public static SystemMessageId S1_HAS_OBTAINED_AT_S2_S3; + + @ClientString(id = 5202, message = "$s1 has obtained at $s2!") + public static SystemMessageId S1_HAS_OBTAINED_AT_S2; + + @ClientString(id = 5203, message = "Stage $s1") + public static SystemMessageId STAGE_S1; + + @ClientString(id = 5204, message = "Time Left: $s1min") + public static SystemMessageId TIME_LEFT_S1MIN; + + @ClientString(id = 5206, message = "Not enough space in the Artifact inventory. Please make more room and try again.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_ARTIFACT_INVENTORY_PLEASE_MAKE_MORE_ROOM_AND_TRY_AGAIN; + + @ClientString(id = 5207, message = "Not enough space in the inventory and the Artifact inventory. Please make more room and try again.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_AND_THE_ARTIFACT_INVENTORY_PLEASE_MAKE_MORE_ROOM_AND_TRY_AGAIN; + + @ClientString(id = 5208, message = "Artifact upgrade succeeded and you obtained $s1.") + public static SystemMessageId ARTIFACT_UPGRADE_SUCCEEDED_AND_YOU_OBTAINED_S1; + + @ClientString(id = 5209, message = "Failed to upgrade Artifact. The item's upgrade level will remain the same.") + public static SystemMessageId FAILED_TO_UPGRADE_ARTIFACT_THE_ITEM_S_UPGRADE_LEVEL_WILL_REMAIN_THE_SAME; + + @ClientString(id = 5210, message = "You are already equipping the same Artifact.") + public static SystemMessageId YOU_ARE_ALREADY_EQUIPPING_THE_SAME_ARTIFACT; + + @ClientString(id = 5211, message = "You haven't equipped an Artifact Book, so $s1 cannot be equipped.") + public static SystemMessageId YOU_HAVEN_T_EQUIPPED_AN_ARTIFACT_BOOK_SO_S1_CANNOT_BE_EQUIPPED; + + @ClientString(id = 5212, message = "Not enough space in the inventory and the Artifact inventory. Unable to process this request until your inventory's weight and slot count are less than 80 percent of capacity.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_AND_THE_ARTIFACT_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_WEIGHT_AND_SLOT_COUNT_ARE_LESS_THAN_80_PERCENT_OF_CAPACITY; + + @ClientString(id = 5213, message = "Not enough space in the inventory and the Artifact inventory. Unable to process this request until your inventory's slot count is less than 80 percent of capacity.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_AND_THE_ARTIFACT_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_SLOT_COUNT_IS_LESS_THAN_80_PERCENT_OF_CAPACITY; + + @ClientString(id = 5214, message = "Not enough space in the inventory and Artifact inventory. You can proceed only when the inventory weight is below 80 percent and the quantity is below 90 percent.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_AND_ARTIFACT_INVENTORY_YOU_CAN_PROCEED_ONLY_WHEN_THE_INVENTORY_WEIGHT_IS_BELOW_80_PERCENT_AND_THE_QUANTITY_IS_BELOW_90_PERCENT; + + @ClientString(id = 5215, message = "Not enough space in the inventory. You can proceed only when the inventory weight is below 80 percent and the quantity is below 90 percent.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_YOU_CAN_PROCEED_ONLY_WHEN_THE_INVENTORY_WEIGHT_IS_BELOW_80_PERCENT_AND_THE_QUANTITY_IS_BELOW_90_PERCENT; + + @ClientString(id = 5216, message = "Not enough space in the inventory and the Artifact inventory. Unable to process this request until your inventory's slot count is less than 90 percent of capacity.") + public static SystemMessageId NOT_ENOUGH_SPACE_IN_THE_INVENTORY_AND_THE_ARTIFACT_INVENTORY_UNABLE_TO_PROCESS_THIS_REQUEST_UNTIL_YOUR_INVENTORY_S_SLOT_COUNT_IS_LESS_THAN_90_PERCENT_OF_CAPACITY; + + @ClientString(id = 5217, message = "You need a material that has been upgraded to +$s1 or higher.") + public static SystemMessageId YOU_NEED_A_MATERIAL_THAT_HAS_BEEN_UPGRADED_TO_S1_OR_HIGHER; + + @ClientString(id = 5218, message = "No Artifact has been selected.") + public static SystemMessageId NO_ARTIFACT_HAS_BEEN_SELECTED; + + @ClientString(id = 5300, message = "Your account has been suspended due to account theft. If you registered your e-mail in your personal information, a notification mail will have been sent, so please check. If you have nothing to do with the account theft, go to the official homepage (eu.4game.com) > Account theft report center and submit your letter of objection. For more information, contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_DUE_TO_ACCOUNT_THEFT_IF_YOU_REGISTERED_YOUR_E_MAIL_IN_YOUR_PERSONAL_INFORMATION_A_NOTIFICATION_MAIL_WILL_HAVE_BEEN_SENT_SO_PLEASE_CHECK_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THE_ACCOUNT_THEFT_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_ACCOUNT_THEFT_REPORT_CENTER_FONT_AND_SUBMIT_YOUR_LETTER_OF_OBJECTION_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5301, message = "Your account has been suspended as per our management policy for manipulating our GM service or customer support service to disrupt other users' normal gameplay or the company's game operation. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_OUR_GM_SERVICE_OR_CUSTOMER_SUPPORT_SERVICE_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_OR_THE_COMPANY_S_GAME_OPERATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5302, message = "Your account has been suspended as per our management policy for failing to verify your account during the specified period after submitting the report of account theft. To unblock your account, go to the official homepage (eu.4game.com) > Report center and go through the user verification process in the account theft report. For more information, go to plaync (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_FAILING_TO_VERIFY_YOUR_ACCOUNT_DURING_THE_SPECIFIED_PERIOD_AFTER_SUBMITTING_THE_REPORT_OF_ACCOUNT_THEFT_TO_UNBLOCK_YOUR_ACCOUNT_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_REPORT_CENTER_FONT_AND_GO_THROUGH_THE_USER_VERIFICATION_PROCESS_IN_THE_ACCOUNT_THEFT_REPORT_FOR_MORE_INFORMATION_GO_TO_FONT_COLOR_FFDF4C_PLAYNC_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5303, message = "Your account has been suspended for manipulating the game system to disrupt other users' normal gameplay. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_GAME_SYSTEM_TO_DISRUPT_OTHER_USERS_NORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5304, message = "Your account has been suspended for attempting promotional activities for commercial purpose or to trade for cash or other games. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ATTEMPTING_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_OR_TO_TRADE_FOR_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5305, message = "Your account has been suspended for trading cash, or account. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5306, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or committing a fraudulent act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_COMMITTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5307, message = "Your account has been suspended for using vulgar language during gameplay. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_VULGAR_LANGUAGE_DURING_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5308, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5309, message = "Your account has been suspended as per our management policy for manufacturing/distributing illegal programs, modifying or altering the client or server program. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANUFACTURING_DISTRIBUTING_ILLEGAL_PROGRAMS_MODIFYING_OR_ALTERING_THE_CLIENT_OR_SERVER_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5310, message = "Your account has been suspended as per our management policy for manipulating the in-game system for abnormal gameplay. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_MANIPULATING_THE_IN_GAME_SYSTEM_FOR_ABNORMAL_GAMEPLAY_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5311, message = "Your account has been suspended as per our Terms of Service and management policy upon your request. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_AND_MANAGEMENT_POLICY_UPON_YOUR_REQUEST_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + + @ClientString(id = 5312, message = "Your account has been suspended as per our management policy for disrupting public well-being, order, public morals, etc. or attempting a fraudulent act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_PUBLIC_WELL_BEING_ORDER_PUBLIC_MORALS_ETC_OR_ATTEMPTING_A_FRAUDULENT_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5313, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of another person's identification. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or, call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_ANOTHER_PERSON_S_IDENTIFICATION_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT; + + @ClientString(id = 5314, message = "Your account has been suspended as per our Terms of Service for your unauthorized use of other's payment method. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea).") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_TERMS_OF_SERVICE_FOR_YOUR_UNAUTHORIZED_USE_OF_OTHER_S_PAYMENT_METHOD_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + + @ClientString(id = 5315, message = "Your account has been suspended as per our management policy for engaging in an in-game gambling act. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_ENGAGING_IN_AN_IN_GAME_GAMBLING_ACT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5316, message = "Your account has been suspended for using an illegal program. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5317, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5318, message = "Please complete user verification process for your identification. For user verification process, go to the official homepage (eu.4game.com). For more information, official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId PLEASE_COMPLETE_USER_VERIFICATION_PROCESS_FOR_YOUR_IDENTIFICATION_FOR_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_FOR_MORE_INFORMATION_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5319, message = "Your account has been suspended as requested by the investigation (judicial) authority. Note that any request officially issued by the corresponding authorities has legal force. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center, or call our hotline (1600-0020 for users in Korea.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_REQUESTED_BY_THE_INVESTIGATION_JUDICIAL_AUTHORITY_NOTE_THAT_ANY_REQUEST_OFFICIALLY_ISSUED_BY_THE_CORRESPONDING_AUTHORITIES_HAS_LEGAL_FORCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_OR_FONT_COLOR_FFDF4C_CALL_OUR_HOTLINE_1600_0020_FOR_USERS_IN_KOREA_FONT_2; + + @ClientString(id = 5320, message = "Your account has been suspended for picking up an item from an account reported for theft. Proceed to your user verification process from our Homepage to retrieve your account. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_PICKING_UP_AN_ITEM_FROM_AN_ACCOUNT_REPORTED_FOR_THEFT_PROCEED_TO_YOUR_USER_VERIFICATION_PROCESS_FROM_OUR_HOMEPAGE_TO_RETRIEVE_YOUR_ACCOUNT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5321, message = "Your account has been suspended for trading cash or other games. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_TRADING_CASH_OR_OTHER_GAMES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5322, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the official homepage (eu.4game.com) and complete the verification process to use our service. If you have any questions in regard to the user verification process, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOU_HAVEN_T_COMPLETED_THE_USER_VERIFICATION_PROCESS_AND_ARE_NOT_ALLOWED_TO_OUR_GAME_SERVICE_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_FONT_AND_COMPLETE_THE_VERIFICATION_PROCESS_TO_USE_OUR_SERVICE_IF_YOU_HAVE_ANY_QUESTIONS_IN_REGARD_TO_THE_USER_VERIFICATION_PROCESS_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5323, message = "Your account has been suspended for using an illegal program. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_USING_AN_ILLEGAL_PROGRAM_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5324, message = "Your account has been suspended for failing to comply with the previous agreement over item distribution for party/group play to unjustly gain items. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_FAILING_TO_COMPLY_WITH_THE_PREVIOUS_AGREEMENT_OVER_ITEM_DISTRIBUTION_FOR_PARTY_GROUP_PLAY_TO_UNJUSTLY_GAIN_ITEMS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5325, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_FOR_USING_OUR_GAME_SERVICE_FOR_COMMERCIAL_PURPOSES_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5326, message = "The account has been temporarily restricted due to an incomplete cell phone (ARS) transaction. For more information, please visit https://eu.4game.com/.") + public static SystemMessageId THE_ACCOUNT_HAS_BEEN_TEMPORARILY_RESTRICTED_DUE_TO_AN_INCOMPLETE_CELL_PHONE_ARS_TRANSACTION_FOR_MORE_INFORMATION_PLEASE_VISIT_HTTPS_EU_4GAME_COM_2; + + @ClientString(id = 5327, message = "Your account has been suspended for engaging in the promotional activities for commercial purpose. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_ENGAGING_IN_THE_PROMOTIONAL_ACTIVITIES_FOR_COMMERCIAL_PURPOSE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5328, message = "Your account is now in user verification standby mode as there is a suspected case of identity theft. If you have nothing to do with this, click the ‘Unblock' button found on the login page of our Homepage, verify your account and retrieve it for normal game service. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_IS_NOW_IN_USER_VERIFICATION_STANDBY_MODE_AS_THERE_IS_A_SUSPECTED_CASE_OF_IDENTITY_THEFT_IF_YOU_HAVE_NOTHING_TO_DO_WITH_THIS_CLICK_THE_UNBLOCK_BUTTON_FOUND_ON_THE_LOGIN_PAGE_OF_OUR_HOMEPAGE_VERIFY_YOUR_ACCOUNT_AND_RETRIEVE_IT_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5329, message = "Your account has been suspended temporarily for your gameplay resorting to abnormal methods. If this is not the case, verify your account on our Homepage for normal game service. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_YOUR_GAMEPLAY_RESORTING_TO_ABNORMAL_METHODS_IF_THIS_IS_NOT_THE_CASE_VERIFY_YOUR_ACCOUNT_ON_OUR_HOMEPAGE_FOR_NORMAL_GAME_SERVICE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5330, message = "Your account has been suspended for manipulating the vulnerability of the in-game system, system bug, etc. and/or associating with any of these actions. Manipulating the bug may result in serious failure in the service or collapse of game balance. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_FOR_MANIPULATING_THE_VULNERABILITY_OF_THE_IN_GAME_SYSTEM_SYSTEM_BUG_ETC_AND_OR_ASSOCIATING_WITH_ANY_OF_THESE_ACTIONS_MANIPULATING_THE_BUG_MAY_RESULT_IN_SERIOUS_FAILURE_IN_THE_SERVICE_OR_COLLAPSE_OF_GAME_BALANCE_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; + + @ClientString(id = 5331, message = "Your account has been suspended temporarily for an objection raised to your real name verification process. For more information, go to the official homepage (eu.4game.com) and contact us via 1-to-1 inquiry through the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_TEMPORARILY_FOR_AN_OBJECTION_RAISED_TO_YOUR_REAL_NAME_VERIFICATION_PROCESS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_1_TO_1_INQUIRY_THROUGH_THE_SUPPORT_CENTER_FONT_2; @ClientString(id = 5332, message = "Your account has been idle for a long time. If you do not play the game for a certain period, your account will become idle. You can reactivate your account at the plaync webpage (id.plaync.com/account/dormant/index).") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_IDLE_FOR_A_LONG_TIME_IF_YOU_DO_NOT_PLAY_THE_GAME_FOR_A_CERTAIN_PERIOD_YOUR_ACCOUNT_WILL_BECOME_IDLE_YOU_CAN_REACTIVATE_YOUR_ACCOUNT_AT_THE_FONT_COLOR_FFDF4C_PLAYNC_WEBPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_FONT; - @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, go to the plaync Homepage (www.plaync.com) and contact us via the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, go to the official homepage (eu.4game.com) and contact us via the Support Center.") + public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_CONTACT_US_VIA_THE_SUPPORT_CENTER_FONT; + + @ClientString(id = 5334, message = "Your account is temporarily banned because a suspicious attempt to sign into your account was detected. You can regain access by completing the identity verification process in our website. For more information, visit the 4Game website (https://eu.4game.com) and send a query to Customer Service 1:1 Petition.") + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_BANNED_BECAUSE_A_SUSPICIOUS_ATTEMPT_TO_SIGN_INTO_YOUR_ACCOUNT_WAS_DETECTED_YOU_CAN_REGAIN_ACCESS_BY_COMPLETING_THE_IDENTITY_VERIFICATION_PROCESS_IN_OUR_WEBSITE_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_EU_4GAME_COM_HTTPS_EU_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_AND_SEND_A_QUERY_TO_CUSTOMER_SERVICE_1_1_PETITION_FONT; @ClientString(id = 5501, message = "$s1 has been killed by $s2.") public static SystemMessageId S1_HAS_BEEN_KILLED_BY_S2; @@ -13923,7 +14754,7 @@ public final class SystemMessageId @ClientString(id = 5511, message = "Standing by...") public static SystemMessageId STANDING_BY; - @ClientString(id = 5512, message = "$s1 has chosen a class. ") + @ClientString(id = 5512, message = "$s1 has chosen a class.") public static SystemMessageId S1_HAS_CHOSEN_A_CLASS; @ClientString(id = 5513, message = "The battle will soon begin.") @@ -14004,6 +14835,105 @@ public final class SystemMessageId @ClientString(id = 5538, message = "You must be in a group to access the Group channel.") public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL; + @ClientString(id = 5539, message = "Will you accept $s1‘s group invitation?") + public static SystemMessageId WILL_YOU_ACCEPT_S1_S_GROUP_INVITATION; + + @ClientString(id = 5540, message = "$s1 joined the group.") + public static SystemMessageId S1_JOINED_THE_GROUP; + + @ClientString(id = 5541, message = "$s1 has declined to join the group.") + public static SystemMessageId S1_HAS_DECLINED_TO_JOIN_THE_GROUP; + + @ClientString(id = 5542, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND; + + @ClientString(id = 5543, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND_2; + + @ClientString(id = 5544, message = "The player belongs to another group.") + public static SystemMessageId THE_PLAYER_BELONGS_TO_ANOTHER_GROUP; + + @ClientString(id = 5545, message = "Failed to invite the player as they are fighting in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_FIGHTING_IN_THE_ARENA; + + @ClientString(id = 5546, message = "Failed to invite the player as they are preparing to fight in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_PREPARING_TO_FIGHT_IN_THE_ARENA; + + @ClientString(id = 5547, message = "Cannot find the target.") + public static SystemMessageId CANNOT_FIND_THE_TARGET; + + @ClientString(id = 5548, message = "You cannot invite yourself.") + public static SystemMessageId YOU_CANNOT_INVITE_YOURSELF; + + @ClientString(id = 5549, message = "Select a player you want to invite to the group.") + public static SystemMessageId SELECT_A_PLAYER_YOU_WANT_TO_INVITE_TO_THE_GROUP; + + @ClientString(id = 5550, message = "Cannot invite a new player because your group is full.") + public static SystemMessageId CANNOT_INVITE_A_NEW_PLAYER_BECAUSE_YOUR_GROUP_IS_FULL; + + @ClientString(id = 5551, message = "$s1 left the group.") + public static SystemMessageId S1_LEFT_THE_GROUP; + + @ClientString(id = 5552, message = "The group was disbanded.") + public static SystemMessageId THE_GROUP_WAS_DISBANDED; + + @ClientString(id = 5553, message = "You don't belong to any group.") + public static SystemMessageId YOU_DON_T_BELONG_TO_ANY_GROUP; + + @ClientString(id = 5554, message = "Dismissed $s1 from the group.") + public static SystemMessageId DISMISSED_S1_FROM_THE_GROUP; + + @ClientString(id = 5555, message = "Only the group leader can dismiss a group member.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DISMISS_A_GROUP_MEMBER; + + @ClientString(id = 5556, message = "You cannot dismiss yourself.") + public static SystemMessageId YOU_CANNOT_DISMISS_YOURSELF_2; + + @ClientString(id = 5557, message = "$s1 is now the group leader.") + public static SystemMessageId S1_IS_NOW_THE_GROUP_LEADER; + + @ClientString(id = 5558, message = "Only the group leader can delegate privileges.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DELEGATE_PRIVILEGES; + + @ClientString(id = 5559, message = "You cannot delegate privileges to yourself.") + public static SystemMessageId YOU_CANNOT_DELEGATE_PRIVILEGES_TO_YOURSELF; + + @ClientString(id = 5560, message = "You can delegate privileges only to a group member.") + public static SystemMessageId YOU_CAN_DELEGATE_PRIVILEGES_ONLY_TO_A_GROUP_MEMBER; + + @ClientString(id = 5561, message = "You must be a member of the group to use the group channel.") + public static SystemMessageId YOU_MUST_BE_A_MEMBER_OF_THE_GROUP_TO_USE_THE_GROUP_CHANNEL; + + @ClientString(id = 5562, message = "Input a name and press the Enter key to invite") + public static SystemMessageId INPUT_A_NAME_AND_PRESS_THE_ENTER_KEY_TO_INVITE; + + @ClientString(id = 5563, message = "You cannot resurrect while you're signing up for battle.") + public static SystemMessageId YOU_CANNOT_RESURRECT_WHILE_YOU_RE_SIGNING_UP_FOR_BATTLE; + + @ClientString(id = 5564, message = "You cannot apply as some of your group members are still in the arena.") + public static SystemMessageId YOU_CANNOT_APPLY_AS_SOME_OF_YOUR_GROUP_MEMBERS_ARE_STILL_IN_THE_ARENA; + + @ClientString(id = 5565, message = "Liberated $s1 Stage $s2.") + public static SystemMessageId LIBERATED_S1_STAGE_S2; + + @ClientString(id = 5566, message = "The seal of the monster can be removed.") + public static SystemMessageId THE_SEAL_OF_THE_MONSTER_CAN_BE_REMOVED; + + @ClientString(id = 5567, message = "$s1: $s2! Be careful!") + public static SystemMessageId S1_S2_BE_CAREFUL; + + @ClientString(id = 5568, message = "Beginning validation of $s1's qualification.") + public static SystemMessageId BEGINNING_VALIDATION_OF_S1_S_QUALIFICATION; + + @ClientString(id = 5569, message = "Validation of qualification through $s1 is reset after the season ends.") + public static SystemMessageId VALIDATION_OF_QUALIFICATION_THROUGH_S1_IS_RESET_AFTER_THE_SEASON_ENDS; + + @ClientString(id = 5570, message = "$s1 class qualification has been validated.") + public static SystemMessageId S1_CLASS_QUALIFICATION_HAS_BEEN_VALIDATED; + + @ClientString(id = 5571, message = "$s1 promotion has failed. The item's grade remains unchanged.") + public static SystemMessageId S1_PROMOTION_HAS_FAILED_THE_ITEM_S_GRADE_REMAINS_UNCHANGED; + @ClientString(id = 6001, message = "The item has been successfully purchased.") public static SystemMessageId THE_ITEM_HAS_BEEN_SUCCESSFULLY_PURCHASED_2; @@ -14016,8 +14946,8 @@ public final class SystemMessageId @ClientString(id = 6004, message = "Enchant failed. The enchant value for the corresponding item will be exactly retained.") public static SystemMessageId ENCHANT_FAILED_THE_ENCHANT_VALUE_FOR_THE_CORRESPONDING_ITEM_WILL_BE_EXACTLY_RETAINED; - @ClientString(id = 6005, message = "You do not have enough NCoin.") - public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_NCOIN; + @ClientString(id = 6005, message = "You do not have enough Euro.") + public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_EURO; @ClientString(id = 6006, message = "The item cannot be received because the inventory weight/quantity limit has been exceeded.") public static SystemMessageId THE_ITEM_CANNOT_BE_RECEIVED_BECAUSE_THE_INVENTORY_WEIGHT_QUANTITY_LIMIT_HAS_BEEN_EXCEEDED; @@ -14034,11 +14964,11 @@ public final class SystemMessageId @ClientString(id = 6010, message = "Your master account has been restricted.") public static SystemMessageId YOUR_MASTER_ACCOUNT_HAS_BEEN_RESTRICTED; - @ClientString(id = 6011, message = "You acquired $s1 XP and $s2 SP. (As a reward you receive $s3%% more XP.)") - public static SystemMessageId YOU_ACQUIRED_S1_XP_AND_S2_SP_AS_A_REWARD_YOU_RECEIVE_S3_MORE_XP; + @ClientString(id = 6011, message = "You acquired $s1 XP and $s2 SP. (You receive $s3%% more XP as a reward.)") + public static SystemMessageId YOU_ACQUIRED_S1_XP_AND_S2_SP_YOU_RECEIVE_S3_MORE_XP_AS_A_REWARD; - @ClientString(id = 6012, message = "a blessing that increases XP by $1 $2") - public static SystemMessageId A_BLESSING_THAT_INCREASES_XP_BY_1_2; + @ClientString(id = 6012, message = "Ablessing that increases XP by $s1 $s2") + public static SystemMessageId ABLESSING_THAT_INCREASES_XP_BY_S1_S2; @ClientString(id = 6013, message = "It is not a blessing period. When you reach today's target, you can receive $s1.") public static SystemMessageId IT_IS_NOT_A_BLESSING_PERIOD_WHEN_YOU_REACH_TODAY_S_TARGET_YOU_CAN_RECEIVE_S1; @@ -14160,11 +15090,11 @@ public final class SystemMessageId @ClientString(id = 6052, message = "You have receive $s1 gift(s). You can receive $s2 more. The gift delivery time will reset every day at 6:30 AM.") public static SystemMessageId YOU_HAVE_RECEIVE_S1_GIFT_S_YOU_CAN_RECEIVE_S2_MORE_THE_GIFT_DELIVERY_TIME_WILL_RESET_EVERY_DAY_AT_6_30_AM; - @ClientString(id = 6053, message = "You have earned $s1's XP through the PC Bonus.") - public static SystemMessageId YOU_HAVE_EARNED_S1_S_XP_THROUGH_THE_PC_BONUS; + @ClientString(id = 6053, message = "You have earned $s1's XP through the PA Bonus.") + public static SystemMessageId YOU_HAVE_EARNED_S1_S_XP_THROUGH_THE_PA_BONUS; - @ClientString(id = 6054, message = "You have earned $s1's Fame through the PC Bonus.") - public static SystemMessageId YOU_HAVE_EARNED_S1_S_FAME_THROUGH_THE_PC_BONUS; + @ClientString(id = 6054, message = "You have earned $s1's Fame through the PA Bonus.") + public static SystemMessageId YOU_HAVE_EARNED_S1_S_FAME_THROUGH_THE_PA_BONUS; @ClientString(id = 6055, message = "Membership cannot be changed because requirements of a clan member are not met.") public static SystemMessageId MEMBERSHIP_CANNOT_BE_CHANGED_BECAUSE_REQUIREMENTS_OF_A_CLAN_MEMBER_ARE_NOT_MET; @@ -14172,8 +15102,8 @@ public final class SystemMessageId @ClientString(id = 6056, message = "$s1 (Currently $s3 time(s) has/have been used out of maximum $s2 times)") public static SystemMessageId S1_CURRENTLY_S3_TIME_S_HAS_HAVE_BEEN_USED_OUT_OF_MAXIMUM_S2_TIMES; - @ClientString(id = 6057, message = "You cannot purchase the PC item. Make sure you have at least 10%% free space in your inventory, and make sure that you are not suffering from the weight penalty. (The item will be resupplied every 5 minutes.)") - public static SystemMessageId YOU_CANNOT_PURCHASE_THE_PC_ITEM_MAKE_SURE_YOU_HAVE_AT_LEAST_10_FREE_SPACE_IN_YOUR_INVENTORY_AND_MAKE_SURE_THAT_YOU_ARE_NOT_SUFFERING_FROM_THE_WEIGHT_PENALTY_THE_ITEM_WILL_BE_RESUPPLIED_EVERY_5_MINUTES; + @ClientString(id = 6057, message = "You cannot purchase the PA item. Make sure you have at least 10%% free space in your inventory, and make sure that you are not suffering from the weight penalty. (The item will be resupplied every 5 minutes.)") + public static SystemMessageId YOU_CANNOT_PURCHASE_THE_PA_ITEM_MAKE_SURE_YOU_HAVE_AT_LEAST_10_FREE_SPACE_IN_YOUR_INVENTORY_AND_MAKE_SURE_THAT_YOU_ARE_NOT_SUFFERING_FROM_THE_WEIGHT_PENALTY_THE_ITEM_WILL_BE_RESUPPLIED_EVERY_5_MINUTES; @ClientString(id = 6058, message = "That account is pending email authentication. Please verify authentication email with registered email account.") public static SystemMessageId THAT_ACCOUNT_IS_PENDING_EMAIL_AUTHENTICATION_PLEASE_VERIFY_AUTHENTICATION_EMAIL_WITH_REGISTERED_EMAIL_ACCOUNT; @@ -14205,11 +15135,11 @@ public final class SystemMessageId @ClientString(id = 6067, message = "Vitality is applied, and you receive $s1 bonus XP. A maximum of $s2 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") public static SystemMessageId VITALITY_IS_APPLIED_AND_YOU_RECEIVE_S1_BONUS_XP_A_MAXIMUM_OF_S2_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; - @ClientString(id = 6068, message = "Vitality is not yet applied. Vitality is replenished every Wednesday at 6:30 a.m. A maximum of $s1 vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") + @ClientString(id = 6068, message = "Vitality is not yet applied. Vitality is replenished every Wednesday at 6:30 a.m. A maximum of $s1 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") public static SystemMessageId VITALITY_IS_NOT_YET_APPLIED_VITALITY_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_A_MAXIMUM_OF_S1_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; - @ClientString(id = 6069, message = "You used the Adventurer's Song. You can use $s1 more. The use limit is reset every Wednesday at 6:30 a.m.") - public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_EVERY_WEDNESDAY_AT_6_30_A_M; + @ClientString(id = 6069, message = "You used the Adventurer's Song. Today you can use $s1 more. The use limit is reset daily at 6:30 a.m.") + public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_TODAY_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_DAILY_AT_6_30_A_M; @ClientString(id = 6070, message = "A maximum of 8 non-quantity items can be given as gifts. \\nPlease confirm the quantity.") public static SystemMessageId A_MAXIMUM_OF_8_NON_QUANTITY_ITEMS_CAN_BE_GIVEN_AS_GIFTS_NPLEASE_CONFIRM_THE_QUANTITY; @@ -14217,8 +15147,8 @@ public final class SystemMessageId @ClientString(id = 6071, message = "Your item gift-giving was successful. \\nYou can check the gift item through your mailbox.") public static SystemMessageId YOUR_ITEM_GIFT_GIVING_WAS_SUCCESSFUL_NYOU_CAN_CHECK_THE_GIFT_ITEM_THROUGH_YOUR_MAILBOX; - @ClientString(id = 6072, message = "$s1%% XP Rate, Bonus XP is applied.") - public static SystemMessageId S1_XP_RATE_BONUS_XP_IS_APPLIED; + @ClientString(id = 6072, message = "$s1%% bonus XP is being applied,") + public static SystemMessageId S1_BONUS_XP_IS_BEING_APPLIED; @ClientString(id = 6073, message = "$s1 vitality items can be used.") public static SystemMessageId S1_VITALITY_ITEMS_CAN_BE_USED; @@ -14253,7 +15183,7 @@ public final class SystemMessageId @ClientString(id = 6083, message = "You cannot use this system during trading, private store, and workshop setup.") public static SystemMessageId YOU_CANNOT_USE_THIS_SYSTEM_DURING_TRADING_PRIVATE_STORE_AND_WORKSHOP_SETUP; - @ClientString(id = 6084, message = " Appearance Modification or Restoration in progress. Please try again after completing this task.") + @ClientString(id = 6084, message = "Appearance Modification or Restoration in progress. Please try again after completing this task.") public static SystemMessageId APPEARANCE_MODIFICATION_OR_RESTORATION_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_TASK; @ClientString(id = 6085, message = "$s1 now has $s2's appearance.") @@ -14385,11 +15315,11 @@ public final class SystemMessageId @ClientString(id = 6127, message = "You have gained $s1 XP and $s2 SP for your contribution in the raid.") public static SystemMessageId YOU_HAVE_GAINED_S1_XP_AND_S2_SP_FOR_YOUR_CONTRIBUTION_IN_THE_RAID; - @ClientString(id = 6128, message = "You cannot modify an equipped item into the appearance of an unequippable item. Please check race/gender restrictions. You can modify the appearance if you unequip the item. ") + @ClientString(id = 6128, message = "You cannot modify an equipped item into the appearance of an unequippable item. Please check race/gender restrictions. You can modify the appearance if you unequip the item.") public static SystemMessageId YOU_CANNOT_MODIFY_AN_EQUIPPED_ITEM_INTO_THE_APPEARANCE_OF_AN_UNEQUIPPABLE_ITEM_PLEASE_CHECK_RACE_GENDER_RESTRICTIONS_YOU_CAN_MODIFY_THE_APPEARANCE_IF_YOU_UNEQUIP_THE_ITEM; - @ClientString(id = 6129, message = "Your level cannot purchase this item.") - public static SystemMessageId YOUR_LEVEL_CANNOT_PURCHASE_THIS_ITEM; + @ClientString(id = 6129, message = "Your level does not allow you to purchase this item.") + public static SystemMessageId YOUR_LEVEL_DOES_NOT_ALLOW_YOU_TO_PURCHASE_THIS_ITEM; @ClientString(id = 6130, message = "An Ink Herb was obtained, replenishing the Small Bard's Ink.") public static SystemMessageId AN_INK_HERB_WAS_OBTAINED_REPLENISHING_THE_SMALL_BARD_S_INK; @@ -14436,7 +15366,7 @@ public final class SystemMessageId @ClientString(id = 6144, message = "Not enough Hero Coin.") public static SystemMessageId NOT_ENOUGH_HERO_COIN; - @ClientString(id = 6145, message = "Training Stage: Lv. $s1 ") + @ClientString(id = 6145, message = "Training Stage: Lv. $s1") public static SystemMessageId TRAINING_STAGE_LV_S1; @ClientString(id = 6146, message = "Remaining Training Time: $s1 hr, $s2 min") @@ -14478,11 +15408,11 @@ public final class SystemMessageId @ClientString(id = 6158, message = "Round $s1 of Fortune Reading complete.") public static SystemMessageId ROUND_S1_OF_FORTUNE_READING_COMPLETE; - @ClientString(id = 6159, message = "Round $s1 of Luxury Fortune Reading complete.") - public static SystemMessageId ROUND_S1_OF_LUXURY_FORTUNE_READING_COMPLETE; + @ClientString(id = 6159, message = "Round $s1 of Lucky Game complete.") + public static SystemMessageId ROUND_S1_OF_LUCKY_GAME_COMPLETE; - @ClientString(id = 6160, message = "Congratulations! You have acquired $s1 of $s2.") - public static SystemMessageId CONGRATULATIONS_YOU_HAVE_ACQUIRED_S1_OF_S2; + @ClientString(id = 6160, message = "Congratulations! You won $s2 of $s1.") + public static SystemMessageId CONGRATULATIONS_YOU_WON_S2_OF_S1; @ClientString(id = 6161, message = "Calculating XP and SP obtained from training…") public static SystemMessageId CALCULATING_XP_AND_SP_OBTAINED_FROM_TRAINING; @@ -14493,8 +15423,8 @@ public final class SystemMessageId @ClientString(id = 6163, message = "You can only be rewarded as the class in which you entered the training camp.") public static SystemMessageId YOU_CAN_ONLY_BE_REWARDED_AS_THE_CLASS_IN_WHICH_YOU_ENTERED_THE_TRAINING_CAMP; - @ClientString(id = 6164, message = "Up to $s1 per $s2 day(s) per account") - public static SystemMessageId UP_TO_S1_PER_S2_DAY_S_PER_ACCOUNT; + @ClientString(id = 6164, message = "Up to $s2 per $s1 day(s) per account") + public static SystemMessageId UP_TO_S2_PER_S1_DAY_S_PER_ACCOUNT; @ClientString(id = 6165, message = "Up to $s1 per account") public static SystemMessageId UP_TO_S1_PER_ACCOUNT; @@ -14520,20 +15450,20 @@ public final class SystemMessageId @ClientString(id = 6172, message = "Redirecting to the Lineage II website. Proceed?") public static SystemMessageId REDIRECTING_TO_THE_LINEAGE_II_WEBSITE_PROCEED; - @ClientString(id = 6173, message = "The lower your Fame, the higher your chances of dropping items when you die with a PK count of $s1 or above.") - public static SystemMessageId THE_LOWER_YOUR_FAME_THE_HIGHER_YOUR_CHANCES_OF_DROPPING_ITEMS_WHEN_YOU_DIE_WITH_A_PK_COUNT_OF_S1_OR_ABOVE; + @ClientString(id = 6173, message = "The lower your Reputation, the higher your chances of dropping items when you die with a PK count of $s1 or above.") + public static SystemMessageId THE_LOWER_YOUR_REPUTATION_THE_HIGHER_YOUR_CHANCES_OF_DROPPING_ITEMS_WHEN_YOU_DIE_WITH_A_PK_COUNT_OF_S1_OR_ABOVE; - @ClientString(id = 6174, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 minutes after logging in.)") - public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; + @ClientString(id = 6174, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon. (You can redeem your reward 30 minutes after logging in.)") + public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; - @ClientString(id = 6175, message = "Your Day $s1 PC Café Attendance Reward is ready. Click on the rewards icon.") - public static SystemMessageId YOUR_DAY_S1_PC_CAF_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON; + @ClientString(id = 6175, message = "Your Day $s1 Premium Account Attendance Reward is ready. Click on the rewards icon.") + public static SystemMessageId YOUR_DAY_S1_PREMIUM_ACCOUNT_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON; - @ClientString(id = 6176, message = "You've received your Attendance Reward for Day $s1. ") + @ClientString(id = 6176, message = "You've received your Attendance Reward for Day $s1.") public static SystemMessageId YOU_VE_RECEIVED_YOUR_ATTENDANCE_REWARD_FOR_DAY_S1; - @ClientString(id = 6177, message = "You've received your PC Café Attendance Reward for Day $s1. ") - public static SystemMessageId YOU_VE_RECEIVED_YOUR_PC_CAF_ATTENDANCE_REWARD_FOR_DAY_S1; + @ClientString(id = 6177, message = "You've received your Premium Account Attendance Reward for Day $s1.") + public static SystemMessageId YOU_VE_RECEIVED_YOUR_PREMIUM_ACCOUNT_ATTENDANCE_REWARD_FOR_DAY_S1; @ClientString(id = 6178, message = "The Attendance Reward cannot be received because the inventory weight/quantity limit has been exceeded.") public static SystemMessageId THE_ATTENDANCE_REWARD_CANNOT_BE_RECEIVED_BECAUSE_THE_INVENTORY_WEIGHT_QUANTITY_LIMIT_HAS_BEEN_EXCEEDED; @@ -14544,13 +15474,13 @@ public final class SystemMessageId @ClientString(id = 6180, message = "Your Day $s1 VIP Attendance Reward is ready. Click on the rewards icon.") public static SystemMessageId YOUR_DAY_S1_VIP_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON; - @ClientString(id = 6181, message = "You've received your VIP Attendance Reward for Day $s1. ") + @ClientString(id = 6181, message = "You've received your VIP Attendance Reward for Day $s1.") public static SystemMessageId YOU_VE_RECEIVED_YOUR_VIP_ATTENDANCE_REWARD_FOR_DAY_S1; - @ClientString(id = 6182, message = "You can no longer receive Attendance Check rewards. ") - public static SystemMessageId YOU_CAN_NO_LONGER_RECEIVE_ATTENDANCE_CHECK_REWARDS; + @ClientString(id = 6182, message = "You've already recieved the Attendance Check rewards.") + public static SystemMessageId YOU_VE_ALREADY_RECIEVED_THE_ATTENDANCE_CHECK_REWARDS; - @ClientString(id = 6183, message = "Your VIP rank is too low to receive the reward. ") + @ClientString(id = 6183, message = "Your VIP rank is too low to receive the reward.") public static SystemMessageId YOUR_VIP_RANK_IS_TOO_LOW_TO_RECEIVE_THE_REWARD; @ClientString(id = 6184, message = "Items in the Pet Inventory cannot be used as offerings.") @@ -14568,8 +15498,8 @@ public final class SystemMessageId @ClientString(id = 6188, message = "You do not meet the level requirements to receive the Attendance Reward. Please check the required level. (You can redeem your reward 30 minutes after logging in.)") public static SystemMessageId YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENTS_TO_RECEIVE_THE_ATTENDANCE_REWARD_PLEASE_CHECK_THE_REQUIRED_LEVEL_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; - @ClientString(id = 6189, message = "- You must receive the attendance reward in a given day to receive the next day's reward.\\n- Rewards received once cannot be reverted back.") - public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; + @ClientString(id = 6189, message = "You must receive the attendance reward in a given day to receive the next day's reward.\\\\nRewards received once cannot be reverted back.") + public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_NREWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6190, message = "This item cannot be used as an offering.") public static SystemMessageId THIS_ITEM_CANNOT_BE_USED_AS_AN_OFFERING; @@ -14584,9 +15514,9 @@ public final class SystemMessageId public static SystemMessageId HOW_MANY_S1_WOULD_YOU_LIKE_TO_REMOVE_FROM_THE_OFFERINGS; @ClientString(id = 6194, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 minutes after logging in.)") - public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN_2; + public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; - @ClientString(id = 6195, message = "You've received your Attendance Reward for Day $s1. ") + @ClientString(id = 6195, message = "You've received your Attendance Reward for Day $s1.") public static SystemMessageId YOU_VE_RECEIVED_YOUR_ATTENDANCE_REWARD_FOR_DAY_S1_2; @ClientString(id = 6196, message = "The item cannot be received because the inventory weight/quantity limit has been exceeded.") @@ -14599,7 +15529,7 @@ public final class SystemMessageId public static SystemMessageId THERE_S_CURRENTLY_A_REWARD_AVAILABLE_WOULD_YOU_REALLY_LIKE_TO_CLOSE_THE_WINDOW_YOU_CAN_OPEN_IT_AGAIN_FROM_THE_ATTENDANCE_CHECK_IN_THE_MAIN_MENU; @ClientString(id = 6199, message = "- You must receive the attendance reward in a given day to receive the next day's reward.\\n- Rewards received once cannot be reverted back.") - public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK_2; + public static SystemMessageId YOU_MUST_RECEIVE_THE_ATTENDANCE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6200, message = "This item cannot be used as an offering.") public static SystemMessageId THIS_ITEM_CANNOT_BE_USED_AS_AN_OFFERING_2; @@ -14757,6 +15687,9 @@ public final class SystemMessageId @ClientString(id = 6837, message = "Please enter the OTP number. The numbers change for each login.") public static SystemMessageId PLEASE_ENTER_THE_OTP_NUMBER_THE_NUMBERS_CHANGE_FOR_EACH_LOGIN; + @ClientString(id = 6838, message = "The Secret Supplies of Balthus Knights arrived! Someone received $s1.") + public static SystemMessageId THE_SECRET_SUPPLIES_OF_BALTHUS_KNIGHTS_ARRIVED_SOMEONE_RECEIVED_S1; + @ClientString(id = 7001, message = "Cannot proceed until the current dice roll is over.") public static SystemMessageId CANNOT_PROCEED_UNTIL_THE_CURRENT_DICE_ROLL_IS_OVER; @@ -14814,7 +15747,7 @@ public final class SystemMessageId @ClientString(id = 7019, message = "Will be opening an external browser. Continue?") public static SystemMessageId WILL_BE_OPENING_AN_EXTERNAL_BROWSER_CONTINUE; - @ClientString(id = 7020, message = "$s1's Info") + @ClientString(id = 7020, message = "$s1%%'s Info") public static SystemMessageId S1_S_INFO; @ClientString(id = 7021, message = "Cannot open the Private Shop or Workshop until the dice roll is over.") @@ -14832,11 +15765,11 @@ public final class SystemMessageId @ClientString(id = 7025, message = "$c1 rolled the highest with $s2 points and acquired + $s3$s4.") public static SystemMessageId C1_ROLLED_THE_HIGHEST_WITH_S2_POINTS_AND_ACQUIRED_S3_S4; - @ClientString(id = 7026, message = "$s1-member party") - public static SystemMessageId S1_MEMBER_PARTY; + @ClientString(id = 7026, message = "$s1 players") + public static SystemMessageId S1_PLAYERS; - @ClientString(id = 7027, message = "$s1~$s2-member party") - public static SystemMessageId S1_S2_MEMBER_PARTY; + @ClientString(id = 7027, message = "$s1~$s2 players") + public static SystemMessageId S1_S2_PLAYERS; @ClientString(id = 7028, message = "Above Lv. $s1") public static SystemMessageId ABOVE_LV_S1; @@ -14925,7 +15858,7 @@ public final class SystemMessageId @ClientString(id = 7056, message = "You've aded $c1 to your List of Foes for having killed you.") public static SystemMessageId YOU_VE_ADED_C1_TO_YOUR_LIST_OF_FOES_FOR_HAVING_KILLED_YOU; - @ClientString(id = 7057, message = "You've deleted $c1 from your List of Foes. ") + @ClientString(id = 7057, message = "You've deleted $c1 from your List of Foes.") public static SystemMessageId YOU_VE_DELETED_C1_FROM_YOUR_LIST_OF_FOES; @ClientString(id = 7058, message = "The Blood Crystal shows you the location of your foe, $c1. Your foe is in $s2.") @@ -14961,10 +15894,10 @@ public final class SystemMessageId @ClientString(id = 7068, message = "You paused the saving of your SP. To resume, double-click or right-click on the Incomplete Tactics Crystal from your inventory.") public static SystemMessageId YOU_PAUSED_THE_SAVING_OF_YOUR_SP_TO_RESUME_DOUBLE_CLICK_OR_RIGHT_CLICK_ON_THE_INCOMPLETE_TACTICS_CRYSTAL_FROM_YOUR_INVENTORY; - @ClientString(id = 7069, message = "You've saved $s1%% XP on the Incomplete Training Crystal. ") + @ClientString(id = 7069, message = "You've saved $s1%% XP on the Incomplete Training Crystal.") public static SystemMessageId YOU_VE_SAVED_S1_XP_ON_THE_INCOMPLETE_TRAINING_CRYSTAL; - @ClientString(id = 7070, message = "You've saved $s1%% SP on the Incomplete Tactics Crystal. ") + @ClientString(id = 7070, message = "You've saved $s1%% SP on the Incomplete Tactics Crystal.") public static SystemMessageId YOU_VE_SAVED_S1_SP_ON_THE_INCOMPLETE_TACTICS_CRYSTAL; @ClientString(id = 7071, message = "You've saved all the XP and created a $s1. Check your inventory.") @@ -15069,11 +16002,11 @@ public final class SystemMessageId @ClientString(id = 7104, message = "Vitality Mode will be activated for $s1 hour(s) $s2 minute(s).") public static SystemMessageId VITALITY_MODE_WILL_BE_ACTIVATED_FOR_S1_HOUR_S_S2_MINUTE_S; - @ClientString(id = 7105, message = "Vitality Mode has been activated and you received \\n$s1%% bonus XP/SP.\\nTime Left: $s2 minutes\\nToday's Vitality Mode Activations: $s3 times") - public static SystemMessageId VITALITY_MODE_HAS_BEEN_ACTIVATED_AND_YOU_RECEIVED_N_S1_BONUS_XP_SP_NTIME_LEFT_S2_MINUTES_NTODAY_S_VITALITY_MODE_ACTIVATIONS_S3_TIMES; + @ClientString(id = 7105, message = "Vitality Mode has been activated and you received \\n$s1%% bonus XP/SP.\\nTime Left: $s2 minute(s)\\nToday's Vitality Mode Activations: $s3") + public static SystemMessageId VITALITY_MODE_HAS_BEEN_ACTIVATED_AND_YOU_RECEIVED_N_S1_BONUS_XP_SP_NTIME_LEFT_S2_MINUTE_S_NTODAY_S_VITALITY_MODE_ACTIVATIONS_S3; - @ClientString(id = 7106, message = "Activate Vitality Mode by clicking on the Activate button to get \\n300%% bonus XP/SP.\\nThe number of times Vitality Mode is activated is reset every day at 6:30 am\\nand you get free activations for that day.") - public static SystemMessageId ACTIVATE_VITALITY_MODE_BY_CLICKING_ON_THE_ACTIVATE_BUTTON_TO_GET_N300_BONUS_XP_SP_NTHE_NUMBER_OF_TIMES_VITALITY_MODE_IS_ACTIVATED_IS_RESET_EVERY_DAY_AT_6_30_AM_NAND_YOU_GET_FREE_ACTIVATIONS_FOR_THAT_DAY; + @ClientString(id = 7106, message = "Activate Vitality Mode by clicking the Activate button to get \\n300%% bonus XP/SP.\\nThe number of times Vitality Mode is activated is reset every day at 6:30 AM\\nand you get free activations for that day.") + public static SystemMessageId ACTIVATE_VITALITY_MODE_BY_CLICKING_THE_ACTIVATE_BUTTON_TO_GET_N300_BONUS_XP_SP_NTHE_NUMBER_OF_TIMES_VITALITY_MODE_IS_ACTIVATED_IS_RESET_EVERY_DAY_AT_6_30_AM_NAND_YOU_GET_FREE_ACTIVATIONS_FOR_THAT_DAY; @ClientString(id = 7107, message = "Amount: $s1") public static SystemMessageId AMOUNT_S1; @@ -15159,13 +16092,13 @@ public final class SystemMessageId @ClientString(id = 7152, message = "You cannot gift yourself.") public static SystemMessageId YOU_CANNOT_GIFT_YOURSELF; - @ClientString(id = 7153, message = "Teleport to $s1? ") + @ClientString(id = 7153, message = "Teleport to $s1?") public static SystemMessageId TELEPORT_TO_S1; @ClientString(id = 7154, message = "Not enough Adventure Scrolls. \\nGo to the Premium Shop?") public static SystemMessageId NOT_ENOUGH_ADVENTURE_SCROLLS_NGO_TO_THE_PREMIUM_SHOP; - @ClientString(id = 7155, message = "You don't have any more quests to play. ") + @ClientString(id = 7155, message = "You don't have any more quests to play.") public static SystemMessageId YOU_DON_T_HAVE_ANY_MORE_QUESTS_TO_PLAY; @ClientString(id = 7156, message = "You must select a quest to teleport instantly.") @@ -15195,7 +16128,7 @@ public final class SystemMessageId @ClientString(id = 7164, message = "Cannot open the Adventure Guide while in battle. Please finish your battle and try again.") public static SystemMessageId CANNOT_OPEN_THE_ADVENTURE_GUIDE_WHILE_IN_BATTLE_PLEASE_FINISH_YOUR_BATTLE_AND_TRY_AGAIN; - @ClientString(id = 7165, message = "Cannot teleport to $s1. ") + @ClientString(id = 7165, message = "Cannot teleport to $s1.") public static SystemMessageId CANNOT_TELEPORT_TO_S1; @ClientString(id = 7166, message = "Cannot teleport instantly while in battle. Please finish your battle and try again.") @@ -15252,7 +16185,7 @@ public final class SystemMessageId @ClientString(id = 7183, message = "Cannot use instant teleport when dead.") public static SystemMessageId CANNOT_USE_INSTANT_TELEPORT_WHEN_DEAD; - @ClientString(id = 7184, message = "Cannot teleport instantly when you are unable to move. ") + @ClientString(id = 7184, message = "Cannot teleport instantly when you are unable to move.") public static SystemMessageId CANNOT_TELEPORT_INSTANTLY_WHEN_YOU_ARE_UNABLE_TO_MOVE; @ClientString(id = 7185, message = "Probability: $s1") @@ -15273,7 +16206,7 @@ public final class SystemMessageId @ClientString(id = 7190, message = "Congratulations! Safe Enchant was successful and you got + $s1 , + $s2$s3.") public static SystemMessageId CONGRATULATIONS_SAFE_ENCHANT_WAS_SUCCESSFUL_AND_YOU_GOT_S1_S2_S3; - @ClientString(id = 7191, message = "Failed to Safe Enchant. Please try again. ") + @ClientString(id = 7191, message = "Failed to Safe Enchant. Please try again.") public static SystemMessageId FAILED_TO_SAFE_ENCHANT_PLEASE_TRY_AGAIN; @ClientString(id = 7192, message = "You can bestow random Set Options to Set Equipment, and you can change Set Options for equipment that already has Set Options.") @@ -15360,7 +16293,7 @@ public final class SystemMessageId @ClientString(id = 7219, message = "You don't have a Feather of Blessing.\\nFeathers of Blessing can be purchased from the Premium Shop.") public static SystemMessageId YOU_DON_T_HAVE_A_FEATHER_OF_BLESSING_NFEATHERS_OF_BLESSING_CAN_BE_PURCHASED_FROM_THE_PREMIUM_SHOP; - @ClientString(id = 7220, message = "You've reached the limit for accounts that can be logged in from your IP address. ") + @ClientString(id = 7220, message = "You've reached the limit for accounts that can be logged in from your IP address.") public static SystemMessageId YOU_VE_REACHED_THE_LIMIT_FOR_ACCOUNTS_THAT_CAN_BE_LOGGED_IN_FROM_YOUR_IP_ADDRESS; @ClientString(id = 7221, message = "You've acquired $s1 XP and $s2 additional XP.") @@ -15486,14 +16419,14 @@ public final class SystemMessageId @ClientString(id = 7261, message = "Find Moon Guardian Diana to get your attendance stamp!") public static SystemMessageId FIND_MOON_GUARDIAN_DIANA_TO_GET_YOUR_ATTENDANCE_STAMP; - @ClientString(id = 7262, message = "You'll get the XP boost from the Moonlight now. During the Moon Festival, you'll get + 100%% XP between 20:00-23:00 every day.") - public static SystemMessageId YOU_LL_GET_THE_XP_BOOST_FROM_THE_MOONLIGHT_NOW_DURING_THE_MOON_FESTIVAL_YOU_LL_GET_100_XP_BETWEEN_20_00_23_00_EVERY_DAY; + @ClientString(id = 7262, message = "Now you can receive the XP boost from the Moonlight. During the Moon Festival, you get +100%% XP between 20:00-23:00 every day.") + public static SystemMessageId NOW_YOU_CAN_RECEIVE_THE_XP_BOOST_FROM_THE_MOONLIGHT_DURING_THE_MOON_FESTIVAL_YOU_GET_100_XP_BETWEEN_20_00_23_00_EVERY_DAY; - @ClientString(id = 7263, message = "The Moonlight XP boost is over for today. ") + @ClientString(id = 7263, message = "The Moonlight XP boost is over for today.") public static SystemMessageId THE_MOONLIGHT_XP_BOOST_IS_OVER_FOR_TODAY; - @ClientString(id = 7264, message = "The Moonlight XP boost effect is on. During the Moon Festival, you'll get + 100%% XP between 20:00-23:00 every day.") - public static SystemMessageId THE_MOONLIGHT_XP_BOOST_EFFECT_IS_ON_DURING_THE_MOON_FESTIVAL_YOU_LL_GET_100_XP_BETWEEN_20_00_23_00_EVERY_DAY; + @ClientString(id = 7264, message = "The Moonlight XP boost effect is on. During the Moon Festival, you get +100%% XP between 20:00-23:00 every day.") + public static SystemMessageId THE_MOONLIGHT_XP_BOOST_EFFECT_IS_ON_DURING_THE_MOON_FESTIVAL_YOU_GET_100_XP_BETWEEN_20_00_23_00_EVERY_DAY; @ClientString(id = 7265, message = "Day $s1") public static SystemMessageId DAY_S1; @@ -15615,7 +16548,7 @@ public final class SystemMessageId @ClientString(id = 7304, message = "$s1 has already applied to join. Please check the list of applications and recommendations.") public static SystemMessageId S1_HAS_ALREADY_APPLIED_TO_JOIN_PLEASE_CHECK_THE_LIST_OF_APPLICATIONS_AND_RECOMMENDATIONS; - @ClientString(id = 7305, message = "You've received a recommendation from the $s1 clan. Please check the list of applications and recommendations. ") + @ClientString(id = 7305, message = "You've received a recommendation from the $s1 clan. Please check the list of applications and recommendations.") public static SystemMessageId YOU_VE_RECEIVED_A_RECOMMENDATION_FROM_THE_S1_CLAN_PLEASE_CHECK_THE_LIST_OF_APPLICATIONS_AND_RECOMMENDATIONS; @ClientString(id = 7306, message = "The user has deleted the character so the application cannot be accepted.") @@ -15768,7 +16701,7 @@ public final class SystemMessageId @ClientString(id = 7355, message = "Your student has achieved a goal so you are sending a reward.") public static SystemMessageId YOUR_STUDENT_HAS_ACHIEVED_A_GOAL_SO_YOU_ARE_SENDING_A_REWARD; - @ClientString(id = 7356, message = "Student: $s1\\n\\n Goal Achieved: $s2\\n\\n Reward: Proof of Master x$s3 ") + @ClientString(id = 7356, message = "Student: $s1\\n\\n Goal Achieved: $s2\\n\\n Reward: Proof of Master x$s3") public static SystemMessageId STUDENT_S1_N_N_GOAL_ACHIEVED_S2_N_N_REWARD_PROOF_OF_MASTER_X_S3; @ClientString(id = 7357, message = "$s1 Level-up Achievement") @@ -15792,7 +16725,7 @@ public final class SystemMessageId @ClientString(id = 7363, message = "You've requested to be a mercenary for the territory war.") public static SystemMessageId YOU_VE_REQUESTED_TO_BE_A_MERCENARY_FOR_THE_TERRITORY_WAR; - @ClientString(id = 7364, message = "This class cannot transform. ") + @ClientString(id = 7364, message = "This class cannot transform.") public static SystemMessageId THIS_CLASS_CANNOT_TRANSFORM; @ClientString(id = 7365, message = "Not enough Transformation Points.") @@ -15804,7 +16737,7 @@ public final class SystemMessageId @ClientString(id = 7367, message = "Reward received.") public static SystemMessageId REWARD_RECEIVED; - @ClientString(id = 7368, message = "Only the Clan Leader can create one. ") + @ClientString(id = 7368, message = "Only the Clan Leader can create one.") public static SystemMessageId ONLY_THE_CLAN_LEADER_CAN_CREATE_ONE; @ClientString(id = 7369, message = "You cannot end the relationship with another student. Only possible between master and student.") @@ -15876,8 +16809,8 @@ public final class SystemMessageId @ClientString(id = 7391, message = "Cannot delete a character that has requested to join another clan.
Please cancel your request first and then delete the character.") public static SystemMessageId CANNOT_DELETE_A_CHARACTER_THAT_HAS_REQUESTED_TO_JOIN_ANOTHER_CLAN_BR_PLEASE_CANCEL_YOUR_REQUEST_FIRST_AND_THEN_DELETE_THE_CHARACTER; - @ClientString(id = 7392, message = "The power of the god of wealth is active. You'll get 100%% XP and 100%% Adena between 20:00-23:00 every day during the New Year's event.") - public static SystemMessageId THE_POWER_OF_THE_GOD_OF_WEALTH_IS_ACTIVE_YOU_LL_GET_100_XP_AND_100_ADENA_BETWEEN_20_00_23_00_EVERY_DAY_DURING_THE_NEW_YEAR_S_EVENT; + @ClientString(id = 7392, message = "The God of Fortune's power is active. Get 100%% XP and 100%% Adena between 20:00-23:00 every day during the New Year's event.") + public static SystemMessageId THE_GOD_OF_FORTUNE_S_POWER_IS_ACTIVE_GET_100_XP_AND_100_ADENA_BETWEEN_20_00_23_00_EVERY_DAY_DURING_THE_NEW_YEAR_S_EVENT; @ClientString(id = 7393, message = "$s1 days") public static SystemMessageId S1_DAYS_2; @@ -15891,13 +16824,13 @@ public final class SystemMessageId @ClientString(id = 7396, message = "Cannot extend the duration of this item.") public static SystemMessageId CANNOT_EXTEND_THE_DURATION_OF_THIS_ITEM; - @ClientString(id = 7397, message = "Please unequip the item to extend the duration. ") + @ClientString(id = 7397, message = "Please unequip the item to extend the duration.") public static SystemMessageId PLEASE_UNEQUIP_THE_ITEM_TO_EXTEND_THE_DURATION; @ClientString(id = 7398, message = "Cannot extend the duration any more.") public static SystemMessageId CANNOT_EXTEND_THE_DURATION_ANY_MORE; - @ClientString(id = 7399, message = "Cannot perform the action while extending the duration. ") + @ClientString(id = 7399, message = "Cannot perform the action while extending the duration.") public static SystemMessageId CANNOT_PERFORM_THE_ACTION_WHILE_EXTENDING_THE_DURATION; @ClientString(id = 7400, message = "Your inventory's weight/limit has been exceeded so you can't receive the attendance reward. Please free up some space and try again.") @@ -15963,7 +16896,7 @@ public final class SystemMessageId @ClientString(id = 7420, message = "Cannot use Shield Capsules.") public static SystemMessageId CANNOT_USE_SHIELD_CAPSULES; - @ClientString(id = 7421, message = "The Shield Capsule has been canceled. ") + @ClientString(id = 7421, message = "The Shield Capsule has been canceled.") public static SystemMessageId THE_SHIELD_CAPSULE_HAS_BEEN_CANCELED; @ClientString(id = 7422, message = "You've obtained $s1 Dragon Coins as a reward for leveling up.") @@ -15972,7 +16905,7 @@ public final class SystemMessageId @ClientString(id = 7423, message = "You have too many coins, so you cannot accumulate them any more. Please use the coins from our page.") public static SystemMessageId YOU_HAVE_TOO_MANY_COINS_SO_YOU_CANNOT_ACCUMULATE_THEM_ANY_MORE_PLEASE_USE_THE_COINS_FROM_OUR_PAGE; - @ClientString(id = 7424, message = "You've obtained $s1 Dragon Coins from the Dragon Coin Pouch. ") + @ClientString(id = 7424, message = "You've obtained $s1 Dragon Coins from the Dragon Coin Pouch.") public static SystemMessageId YOU_VE_OBTAINED_S1_DRAGON_COINS_FROM_THE_DRAGON_COIN_POUCH; @ClientString(id = 7425, message = "Cannot perform the action because another action is in process.") @@ -16002,7 +16935,7 @@ public final class SystemMessageId @ClientString(id = 7433, message = "Cannot remove the timed Soul Crystal effect from this weapon.") public static SystemMessageId CANNOT_REMOVE_THE_TIMED_SOUL_CRYSTAL_EFFECT_FROM_THIS_WEAPON; - @ClientString(id = 7434, message = "The Great Growth event is here. XP from hunting, Adena drop rate, and item drop rate are all doubled between 20:00-22:00 every day. ") + @ClientString(id = 7434, message = "The Great Growth event is here. XP from hunting, Adena drop rate, and item drop rate are all doubled between 20:00-22:00 every day.") public static SystemMessageId THE_GREAT_GROWTH_EVENT_IS_HERE_XP_FROM_HUNTING_ADENA_DROP_RATE_AND_ITEM_DROP_RATE_ARE_ALL_DOUBLED_BETWEEN_20_00_22_00_EVERY_DAY; @ClientString(id = 7435, message = "Click on <$s1> to remove the timed Soul Crystal effect.") @@ -16092,14 +17025,14 @@ public final class SystemMessageId @ClientString(id = 7463, message = "Current Location: Ivory Tower Entrance") public static SystemMessageId CURRENT_LOCATION_IVORY_TOWER_ENTRANCE; - @ClientString(id = 7464, message = "The Great Growth event is here. XP from hunting and item drop rate are doubled between 20:00-22:00 every day. ") + @ClientString(id = 7464, message = "The Great Growth event is here. XP from hunting and item drop rate are doubled between 20:00-22:00 every day.") public static SystemMessageId THE_GREAT_GROWTH_EVENT_IS_HERE_XP_FROM_HUNTING_AND_ITEM_DROP_RATE_ARE_DOUBLED_BETWEEN_20_00_22_00_EVERY_DAY; @ClientString(id = 7465, message = "Cannot obtain the item from this location.") public static SystemMessageId CANNOT_OBTAIN_THE_ITEM_FROM_THIS_LOCATION; - @ClientString(id = 7466, message = "Cannot mount/dismount from a strider while in battle.") - public static SystemMessageId CANNOT_MOUNT_DISMOUNT_FROM_A_STRIDER_WHILE_IN_BATTLE; + @ClientString(id = 7466, message = "You cannot mount or dismount from a strider that is in battle.") + public static SystemMessageId YOU_CANNOT_MOUNT_OR_DISMOUNT_FROM_A_STRIDER_THAT_IS_IN_BATTLE; @ClientString(id = 7467, message = "A team that entered first is currently in battle. Please wait until it's over.") public static SystemMessageId A_TEAM_THAT_ENTERED_FIRST_IS_CURRENTLY_IN_BATTLE_PLEASE_WAIT_UNTIL_IT_S_OVER; @@ -16116,10 +17049,10 @@ public final class SystemMessageId @ClientString(id = 7471, message = "An event item is available. You've received an additional Faint Silver Box.") public static SystemMessageId AN_EVENT_ITEM_IS_AVAILABLE_YOU_VE_RECEIVED_AN_ADDITIONAL_FAINT_SILVER_BOX; - @ClientString(id = 7472, message = "An event item is available. You've received an additional Shiny Gold Box. ") + @ClientString(id = 7472, message = "An event item is available. You've received an additional Shiny Gold Box.") public static SystemMessageId AN_EVENT_ITEM_IS_AVAILABLE_YOU_VE_RECEIVED_AN_ADDITIONAL_SHINY_GOLD_BOX; - @ClientString(id = 7473, message = "If you don't receive the gift, you won't be able to receive any more event items. ") + @ClientString(id = 7473, message = "If you don't receive the gift, you won't be able to receive any more event items.") public static SystemMessageId IF_YOU_DON_T_RECEIVE_THE_GIFT_YOU_WON_T_BE_ABLE_TO_RECEIVE_ANY_MORE_EVENT_ITEMS; @ClientString(id = 7474, message = "Chaotic characters cannot teleport instantly through the Adventure Guide.") @@ -16137,7 +17070,7 @@ public final class SystemMessageId @ClientString(id = 7478, message = "If you use Improved Safe Enchant, you can only enchant an item up to + 9.") public static SystemMessageId IF_YOU_USE_IMPROVED_SAFE_ENCHANT_YOU_CAN_ONLY_ENCHANT_AN_ITEM_UP_TO_9; - @ClientString(id = 7479, message = "Cannot acquire items when the inventory's weight/limit is over 80%%. ") + @ClientString(id = 7479, message = "Cannot acquire items when the inventory's weight/limit is over 80%%.") public static SystemMessageId CANNOT_ACQUIRE_ITEMS_WHEN_THE_INVENTORY_S_WEIGHT_LIMIT_IS_OVER_80; @ClientString(id = 7480, message = "Cannot acquire a Demonic/Blood Sword while in battle.") diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java index 2dd69a67f8..b6f132f806 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/DlgAnswer.java @@ -76,7 +76,7 @@ public final class DlgAnswer implements IClientIncomingPacket AdminCommandHandler.getInstance().useAdminCommand(activeChar, cmd, false); } } - else if ((_messageId == SystemMessageId.C1_IS_ATTEMPTING_TO_DO_A_RESURRECTION_THAT_RESTORES_S2_S3_XP_ACCEPT.getId()) || (_messageId == SystemMessageId.YOUR_CHARM_OF_COURAGE_IS_TRYING_TO_RESURRECT_YOU_WOULD_YOU_LIKE_TO_RESURRECT_NOW.getId())) + else if ((_messageId == SystemMessageId.C1_IS_ATTEMPTING_TO_RESURRECT_YOU_AND_RESTORE_XP_S2_S3_ACCEPT.getId()) || (_messageId == SystemMessageId.YOUR_CHARM_OF_COURAGE_IS_TRYING_TO_RESURRECT_YOU_WOULD_YOU_LIKE_TO_RESURRECT_NOW.getId())) { activeChar.reviveAnswer(_answer); } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java index bcb7b1a28a..127e4d596e 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/MultiSellChoose.java @@ -596,7 +596,7 @@ public class MultiSellChoose implements IClientIncomingPacket { if (player.getFame() < totalCount) { - player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_FAME_TO_DO_THAT); + player.sendPacket(SystemMessageId.YOU_DON_T_HAVE_ENOUGH_CLAN_REPUTATION_POINTS_TO_DO_THAT); return false; } return true; @@ -614,7 +614,7 @@ public class MultiSellChoose implements IClientIncomingPacket { if (player.getPcCafePoints() < totalCount) { - player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_ARE_SHORT_OF_PC_POINTS)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_ARE_SHORT_OF_PA_POINTS)); return false; } return true; diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java index 25af69b089..06cd97465f 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java @@ -700,7 +700,7 @@ public final class RequestAcquireSkill implements IClientIncomingPacket private void giveSkill(L2PcInstance player, L2Npc trainer, Skill skill, boolean store) { // Send message. - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_S1_2); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_LEARNED_S1); sm.addSkillName(skill); player.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java index 61b88962de..f918eb66c5 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestCrystallizeItem.java @@ -221,7 +221,7 @@ public final class RequestCrystallizeItem implements IClientIncomingPacket if (itemToRemove.getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(itemToRemove.getEnchantLevel()); sm.addItemName(itemToRemove); } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java index 47b144ed9a..c95a377552 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestDestroyItem.java @@ -184,7 +184,7 @@ public final class RequestDestroyItem implements IClientIncomingPacket { if (itemToRemove.getEnchantLevel() > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(itemToRemove.getEnchantLevel()); sm.addItemName(itemToRemove); client.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java index 9e0ea8767d..24e3d807a3 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestEnchantItem.java @@ -301,7 +301,7 @@ public final class RequestEnchantItem implements IClientIncomingPacket { if (item.getEnchantLevel() > 0) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); client.sendPacket(sm); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java index 58d564de15..88067f4e20 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestExSetPledgeCrestLarge.java @@ -93,7 +93,7 @@ public final class RequestExSetPledgeCrestLarge implements IClientIncomingPacket { if (clan.getLevel() < 3) { - client.sendPacket(SystemMessageId.A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE); + client.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java index 766def128f..221428dfec 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestGiveNickName.java @@ -63,7 +63,7 @@ public class RequestGiveNickName implements IClientIncomingPacket if (activeChar.getClan().getLevel() < 3) { - client.sendPacket(SystemMessageId.A_PLAYER_CAN_ONLY_BE_GRANTED_A_TITLE_IF_THE_CLAN_IS_LEVEL_3_OR_ABOVE); + client.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_GRANT_A_TITLE); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestMoveToLocationInVehicle.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestMoveToLocationInVehicle.java index ee17e4e2f1..a178bbf637 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestMoveToLocationInVehicle.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestMoveToLocationInVehicle.java @@ -95,7 +95,7 @@ public final class RequestMoveToLocationInVehicle implements IClientIncomingPack if (activeChar.isTransformed()) { - client.sendPacket(SystemMessageId.YOU_CANNOT_POLYMORPH_WHILE_RIDING_A_BOAT); + client.sendPacket(SystemMessageId.YOU_CANNOT_POLYMORPH_WHILE_RIDING_ON_A_BOAT_AIRSHIP_OR_ELEVATOR); client.sendPacket(ActionFailed.STATIC_PACKET); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java index 7907f6e7e8..b69636399c 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestOustPledgeMember.java @@ -86,7 +86,7 @@ public final class RequestOustPledgeMember implements IClientIncomingPacket clan.setCharPenaltyExpiryTime(System.currentTimeMillis() + (Config.ALT_CLAN_JOIN_DAYS * 86400000)); // 24*60*60*1000 = 86400000 clan.updateClanInDB(); - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.CLAN_MEMBER_S1_HAS_BEEN_EXPELLED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_BEEN_DISMISSED); sm.addString(member.getName()); clan.broadcastToOnlineMembers(sm); client.sendPacket(SystemMessageId.YOU_HAVE_SUCCEEDED_IN_EXPELLING_THE_CLAN_MEMBER); diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java index 792ce9b523..67a82f7c44 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPetition.java @@ -77,7 +77,7 @@ public final class RequestPetition implements IClientIncomingPacket if (PetitionManager.getInstance().getPendingPetitionCount() == Config.MAX_PETITIONS_PENDING) { - client.sendPacket(SystemMessageId.THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_LINEAGE2_COM); + client.sendPacket(SystemMessageId.THE_PETITION_SERVICE_IS_CURRENTLY_UNAVAILABLE_PLEASE_SEND_A_SUPPORT_TICKET_BY_VISITING_HTTPS_SUPPORT_4GAME_COM); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java index 876ed4402d..e89439001c 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java @@ -87,7 +87,7 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().addToClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); } else { @@ -101,7 +101,7 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().updateClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); } else { diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java index 9b3557e325..0a8fcfd613 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestSetPledgeCrest.java @@ -98,7 +98,7 @@ public final class RequestSetPledgeCrest implements IClientIncomingPacket { if (clan.getLevel() < 3) { - activeChar.sendPacket(SystemMessageId.A_CLAN_CREST_CAN_ONLY_BE_REGISTERED_WHEN_THE_CLAN_S_SKILL_LEVEL_IS_3_OR_ABOVE); + activeChar.sendPacket(SystemMessageId.THE_CLAN_MUST_BE_LEVEL_3_OR_ABOVE_TO_REGISTER_A_CLAN_CREST); return; } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java index bbbdb16169..3a932d67fc 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestUnEquipItem.java @@ -108,7 +108,7 @@ public class RequestUnEquipItem implements IClientIncomingPacket SystemMessage sm = null; if (unequipped[0].getEnchantLevel() > 0) { - sm = SystemMessage.getSystemMessage(SystemMessageId.THE_EQUIPMENT_S1_S2_HAS_BEEN_REMOVED); + sm = SystemMessage.getSystemMessage(SystemMessageId.S1_S2_HAS_BEEN_UNEQUIPPED); sm.addInt(unequipped[0].getEnchantLevel()); } else diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java index 4643fd942e..6c0b9a5326 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/RequestWithdrawalPledge.java @@ -74,7 +74,7 @@ public final class RequestWithdrawalPledge implements IClientIncomingPacket clan.broadcastToOnlineMembers(new PledgeShowMemberListDelete(activeChar.getName())); clan.broadcastToOnlineMembers(new ExPledgeCount(clan)); - client.sendPacket(SystemMessageId.YOU_HAVE_WITHDRAWN_FROM_THE_CLAN); + client.sendPacket(SystemMessageId.YOU_HAVE_LEFT_THE_CLAN); client.sendPacket(SystemMessageId.AFTER_LEAVING_OR_HAVING_BEEN_DISMISSED_FROM_A_CLAN_YOU_MUST_WAIT_AT_LEAST_A_DAY_BEFORE_JOINING_ANOTHER_CLAN); } } diff --git a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/commission/RequestCommissionBuyInfo.java b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/commission/RequestCommissionBuyInfo.java index 5529ae6a95..8d26aa1036 100644 --- a/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/commission/RequestCommissionBuyInfo.java +++ b/L2J_Mobius_5.5_EtinasFate/java/com/l2jmobius/gameserver/network/clientpackets/commission/RequestCommissionBuyInfo.java @@ -58,7 +58,7 @@ public class RequestCommissionBuyInfo implements IClientIncomingPacket if (!player.isInventoryUnder80(false) || (player.getWeightPenalty() >= 3)) { - client.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_NUMBER_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); + client.sendPacket(SystemMessageId.IF_THE_WEIGHT_IS_80_OR_MORE_AND_THE_INVENTORY_AMOUNT_IS_90_OR_MORE_PURCHASE_CANCELLATION_IS_NOT_POSSIBLE); client.sendPacket(ExResponseCommissionBuyInfo.FAILED); return; } diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index 1582c0394f..75fcafafd7 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -6030,21 +6030,21 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden when dead sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD); + sendPacket(SystemMessageId.A_MOUNT_CANNOT_BE_RIDDEN_WHEN_DEAD); return false; } else if (pet.isDead()) { // A dead strider cannot be ridden. sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_DEAD_STRIDER_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.A_DEAD_MOUNT_CANNOT_BE_RIDDEN); return false; } else if (pet.isInCombat() || pet.isRooted()) { // A strider in battle cannot be ridden sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN); + sendPacket(SystemMessageId.A_MOUNT_IN_BATTLE_CANNOT_BE_RIDDEN); return false; } @@ -6052,14 +6052,14 @@ public final class L2PcInstance extends L2Playable { // A strider cannot be ridden while in battle sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE); + sendPacket(SystemMessageId.A_MOUNT_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE); return false; } else if (_waitTypeSitting) { // A strider can be ridden only when standing sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING); + sendPacket(SystemMessageId.A_MOUNT_CAN_BE_RIDDEN_ONLY_WHEN_STANDING); return false; } else if (isFishing()) @@ -6085,7 +6085,7 @@ public final class L2PcInstance extends L2Playable else if (pet.isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.A_HUNGRY_MOUNT_CANNOT_BE_MOUNTED_OR_DISMOUNTED); return false; } else if (!Util.checkIfInRange(200, this, pet, true)) @@ -6114,7 +6114,7 @@ public final class L2PcInstance extends L2Playable else if (isHungry()) { sendPacket(ActionFailed.STATIC_PACKET); - sendPacket(SystemMessageId.A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED); + sendPacket(SystemMessageId.A_HUNGRY_MOUNT_CANNOT_BE_MOUNTED_OR_DISMOUNTED); return false; } else diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java index 08fabd97c3..f316b3d320 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java @@ -33,7 +33,7 @@ public final class ConditionGroupMin extends Condition public ConditionGroupMin(InstanceTemplate template, StatsSet parameters, boolean onlyLeader, boolean showMessageAndHtml) { super(template, parameters, true, showMessageAndHtml); - setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE, (msg, player) -> msg.addInt(getLimit())); + setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE, (msg, player) -> msg.addInt(getLimit())); } @Override diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/NpcStringId.java index 72eb68272a..04007187ea 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/NpcStringId.java @@ -30,7 +30,7 @@ public final class NpcStringId private static final Logger LOGGER = Logger.getLogger(NpcStringId.class.getName()); public static final NpcStringId[] EMPTY_ARRAY = new NpcStringId[0]; private static Map VALUES = new HashMap<>(); - + @ClientString(id = 1, message = "Hello! I am $s1. You are $s2, right? Hehehe") public static NpcStringId HELLO_I_AM_S1_YOU_ARE_S2_RIGHT_HEHEHE; @@ -43,8 +43,8 @@ public final class NpcStringId @ClientString(id = 4, message = "none") public static NpcStringId NONE_2; - @ClientString(id = 5, message = "Withdraw the fee for the next time at $s1/$s2 $s3") - public static NpcStringId WITHDRAW_THE_FEE_FOR_THE_NEXT_TIME_AT_S1_S2_S3; + @ClientString(id = 5, message = "Next payment on $s1/$s2 at $s3") + public static NpcStringId NEXT_PAYMENT_ON_S1_S2_AT_S3; @ClientString(id = 6, message = "($s1 Adena/$s2 Day(s))") public static NpcStringId FONT_COLOR_FFAABB_S1_FONT_ADENA_S2_DAY_S; @@ -5795,13 +5795,13 @@ public final class NpcStringId public static NpcStringId UNDER_THE_SHADOW_OF_THE_IVORY_TOWER_2; @ClientString(id = 34401, message = "1000 Years, the End of Lamentation (Lv. 48-55)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55; + public static NpcStringId A_HUNDRED0_YEARS_THE_END_OF_LAMENTATION_LV_48_55; @ClientString(id = 34402, message = "1000 Years, the End of Lamentation (Lv. 48-55) (In Progress)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55_IN_PROGRESS; + public static NpcStringId A_HUNDRED0_YEARS_THE_END_OF_LAMENTATION_LV_48_55_IN_PROGRESS; @ClientString(id = 34404, message = "1000 years, the End of Lamentation (Lv. 48-55)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55_2; + public static NpcStringId A_HUNDRED0_YEARS_THE_END_OF_LAMENTATION_LV_48_55_2; @ClientString(id = 34501, message = "Method to Raise the Dead") public static NpcStringId METHOD_TO_RAISE_THE_DEAD; @@ -17533,8 +17533,8 @@ public final class NpcStringId @ClientString(id = 1010198, message = "Southern Shore of Innadril (Garden of Eva)") public static NpcStringId SOUTHERN_SHORE_OF_INNADRIL_GARDEN_OF_EVA; - @ClientString(id = 1010199, message = "Borderland Fortress") - public static NpcStringId BORDERLAND_FORTRESS; + @ClientString(id = 1010199, message = "Town of Goddard") + public static NpcStringId TOWN_OF_GODDARD; @ClientString(id = 1010200, message = "Town of Rune") public static NpcStringId TOWN_OF_RUNE; @@ -18517,8 +18517,8 @@ public final class NpcStringId @ClientString(id = 1010697, message = "Front of the Schuttgart Castle") public static NpcStringId FRONT_OF_THE_SCHUTTGART_CASTLE; - @ClientString(id = 1010698, message = "Primeval Isle Wharf") - public static NpcStringId PRIMEVAL_ISLE_WHARF; + @ClientString(id = 1010698, message = "Forgotten Island (Lv.79)") + public static NpcStringId FORGOTTEN_ISLAND_LV_79; @ClientString(id = 1010699, message = "Isle of Prayer (Lv. 78)") public static NpcStringId ISLE_OF_PRAYER_LV_78; @@ -19250,7 +19250,7 @@ public final class NpcStringId public static NpcStringId IS_OUT_OF_RANGE; @ClientString(id = 1110075, message = "") - public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_255_REPLY_3_MSG_811MONSTER_DERBY_TELEPORT_TO_MONSTER_DERBY_FREE_BUTTON; + public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_255_REPLY_3_MSG_811_MONSTER_DERBY_TELEPORT_TO_MONSTER_DERBY_FREE_BUTTON; @ClientString(id = 1111002, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_2_REPLY_41_STATE_1_GLADIATOR_BUTTON; @@ -21236,7 +21236,7 @@ public final class NpcStringId public static NpcStringId WHITE_SANDS_FORTRESS; @ClientString(id = 1300109, message = "Borderland Fortress") - public static NpcStringId BORDERLAND_FORTRESS_2; + public static NpcStringId BORDERLAND_FORTRESS; @ClientString(id = 1300110, message = "Swamp Fortress") public static NpcStringId SWAMP_FORTRESS; @@ -22168,6 +22168,15 @@ public final class NpcStringId @ClientString(id = 1630002, message = "$s1 is what has been in my possession!") public static NpcStringId S1_IS_WHAT_HAS_BEEN_IN_MY_POSSESSION; + @ClientString(id = 1640001, message = "$s1 has extended the duration for $s2 sec.") + public static NpcStringId S1_HAS_EXTENDED_THE_DURATION_FOR_S2_SEC; + + @ClientString(id = 1640004, message = "$s1 has received a Valor Box!") + public static NpcStringId S1_HAS_RECEIVED_A_VALOR_BOX; + + @ClientString(id = 1640005, message = "All levels are completed.") + public static NpcStringId ALL_LEVELS_ARE_COMPLETED; + @ClientString(id = 1717800, message = "We cannot resonate with voice at the current state.") public static NpcStringId WE_CANNOT_RESONATE_WITH_VOICE_AT_THE_CURRENT_STATE; @@ -24647,10 +24656,10 @@ public final class NpcStringId public static NpcStringId FOUR_SECONDS_ARE_REMAINING; @ClientString(id = 1800809, message = "3 seconds are remaining.") - public static NpcStringId THREE_SECONDS_ARE_REMAINING_3; + public static NpcStringId THREE_SECONDS_ARE_REMAINING_2; @ClientString(id = 1800810, message = "2 seconds are remaining.") - public static NpcStringId TWO_SECONDS_ARE_REMAINING_3; + public static NpcStringId TWO_SECONDS_ARE_REMAINING_2; @ClientString(id = 1800811, message = "1 seconds are remaining.") public static NpcStringId ONE_SECONDS_ARE_REMAINING; @@ -29479,8 +29488,8 @@ public final class NpcStringId @ClientString(id = 1802608, message = "A powerful monster has come to face you!") public static NpcStringId A_POWERFUL_MONSTER_HAS_COME_TO_FACE_YOU; - @ClientString(id = 1802609, message = "$s1 seconds have been added to the instanced zone duration.") - public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCED_ZONE_DURATION; + @ClientString(id = 1802609, message = "$s1 seconds have been added to the Instance Zone duration.") + public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION; @ClientString(id = 1802610, message = "Master Katalin has sent a letter.\\nClick the question-mark icon to read.") public static NpcStringId MASTER_KATALIN_HAS_SENT_A_LETTER_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @@ -29764,8 +29773,8 @@ public final class NpcStringId @ClientString(id = 1802703, message = "Happy New Year! Heh heh!") public static NpcStringId HAPPY_NEW_YEAR_HEH_HEH; - @ClientString(id = 1802704, message = "The instanced zone will close soon!") - public static NpcStringId THE_INSTANCED_ZONE_WILL_CLOSE_SOON; + @ClientString(id = 1802704, message = "The Instance Zone will close soon!") + public static NpcStringId THE_INSTANCE_ZONE_WILL_CLOSE_SOON; @ClientString(id = 1802705, message = "Nooo…not enough Vitality yet!") public static NpcStringId NOOO_NOT_ENOUGH_VITALITY_YET; @@ -30365,10 +30374,10 @@ public final class NpcStringId public static NpcStringId SEVENTH_LEVEL_TIME_LEFT; @ClientString(id = 1803390, message = "8th level. Time left:") - public static NpcStringId EIGTH_LEVEL_TIME_LEFT; + public static NpcStringId EIGHTH_LEVEL_TIME_LEFT; @ClientString(id = 1803391, message = "9th level. Time left:") - public static NpcStringId NINTH_LEVEL_TIME_LEFT; + public static NpcStringId NINETH_LEVEL_TIME_LEFT; @ClientString(id = 1803392, message = "10th level. Time left:") public static NpcStringId TENTH_LEVEL_TIME_LEFT; @@ -30413,7 +30422,7 @@ public final class NpcStringId public static NpcStringId TWENTY_THIRD_LEVEL_TIME_LEFT; @ClientString(id = 1803406, message = "24th level. Time left:") - public static NpcStringId TWENTY_FOURTH_LEVEL_TIME_LEFT; + public static NpcStringId THENTY_FOURTH_LEVEL_TIME_LEFT; @ClientString(id = 1803407, message = "25th level. Time left:") public static NpcStringId TWENTY_FIFTH_LEVEL_TIME_LEFT; @@ -31099,8 +31108,92 @@ public final class NpcStringId @ClientString(id = 1803635, message = "You have already received Zaken's treasure. I have nothing else to give you!") public static NpcStringId YOU_HAVE_ALREADY_RECEIVED_ZAKEN_S_TREASURE_I_HAVE_NOTHING_ELSE_TO_GIVE_YOU; - @ClientString(id = 1810363, message = "You are too far from the corpse.") - public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; + @ClientString(id = 1803636, message = "Event 99999 is starting! The one who is the 99999th to hit the monster will take it all!") + public static NpcStringId EVENT_99999_IS_STARTING_THE_ONE_WHO_IS_THE_99999TH_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803637, message = "Event 33333 is starting! The one who is the 33333rd to hit the monster will take it all!") + public static NpcStringId EVENT_33333_IS_STARTING_THE_ONE_WHO_IS_THE_33333RD_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803638, message = "Event 77777 is starting! The one who is the 77777th to hit the monster will take it all!") + public static NpcStringId EVENT_77777_IS_STARTING_THE_ONE_WHO_IS_THE_77777TH_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803639, message = "The countdown timer is paused for 1 min. Every character may receive supplies once per stage.") + public static NpcStringId THE_COUNTDOWN_TIMER_IS_PAUSED_FOR_1_MIN_EVERY_CHARACTER_MAY_RECEIVE_SUPPLIES_ONCE_PER_STAGE; + + @ClientString(id = 1803640, message = "The countdown is on! The raid begins!") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_RAID_BEGINS; + + @ClientString(id = 1803641, message = "To extend the duration click the Extend duration button.") + public static NpcStringId TO_EXTEND_THE_DURATION_CLICK_THE_EXTEND_DURATION_BUTTON; + + @ClientString(id = 1803642, message = "Time extension error!") + public static NpcStringId TIME_EXTENSION_ERROR; + + @ClientString(id = 1803643, message = "Be careful! You are about to face the last Ol Mahum!") + public static NpcStringId BE_CAREFUL_YOU_ARE_ABOUT_TO_FACE_THE_LAST_OL_MAHUM; + + @ClientString(id = 1803644, message = "Come what may - it is not your fault.") + public static NpcStringId COME_WHAT_MAY_IT_IS_NOT_YOUR_FAULT; + + @ClientString(id = 1803645, message = "Bring over and surrender your precious gold treasure to me!") + public static NpcStringId BRING_OVER_AND_SURRENDER_YOUR_PRECIOUS_GOLD_TREASURE_TO_ME_2; + + @ClientString(id = 1803646, message = "I'm covered in Kraven's blood… You will be punished!") + public static NpcStringId I_M_COVERED_IN_KRAVEN_S_BLOOD_YOU_WILL_BE_PUNISHED; + + @ClientString(id = 1803647, message = "Who is real? It is not easy to tell!") + public static NpcStringId WHO_IS_REAL_IT_IS_NOT_EASY_TO_TELL; + + @ClientString(id = 1803648, message = "I will be fighting until Kandra finally accepts me!") + public static NpcStringId I_WILL_BE_FIGHTING_UNTIL_KANDRA_FINALLY_ACCEPTS_ME; + + @ClientString(id = 1803649, message = "This is the power of Orcs! Hahaha!") + public static NpcStringId THIS_IS_THE_POWER_OF_ORCS_HAHAHA; + + @ClientString(id = 1803650, message = "I'm gonna make you feel my rage!") + public static NpcStringId I_M_GONNA_MAKE_YOU_FEEL_MY_RAGE; + + @ClientString(id = 1803651, message = "Where is Leo? Where have you hidden him?") + public static NpcStringId WHERE_IS_LEO_WHERE_HAVE_YOU_HIDDEN_HIM; + + @ClientString(id = 1803652, message = "It is just the beginning… You will fail!") + public static NpcStringId IT_IS_JUST_THE_BEGINNING_YOU_WILL_FAIL; + + @ClientString(id = 1803653, message = "We are nothing like these Varka weaklings!") + public static NpcStringId WE_ARE_NOTHING_LIKE_THESE_VARKA_WEAKLINGS; + + @ClientString(id = 1803654, message = "I'll kill you! This is Hallate's will! Die!") + public static NpcStringId I_LL_KILL_YOU_THIS_IS_HALLATE_S_WILL_DIE; + + @ClientString(id = 1803655, message = "Fine, let's see what you can do.") + public static NpcStringId FINE_LET_S_SEE_WHAT_YOU_CAN_DO; + + @ClientString(id = 1803656, message = "I will show no mercy! I will kill you!") + public static NpcStringId I_WILL_SHOW_NO_MERCY_I_WILL_KILL_YOU; + + @ClientString(id = 1803657, message = "I'll make you suffer! You will burn forever!") + public static NpcStringId I_LL_MAKE_YOU_SUFFER_YOU_WILL_BURN_FOREVER; + + @ClientString(id = 1803658, message = "I'll make everyone feel this pain!") + public static NpcStringId I_LL_MAKE_EVERYONE_FEEL_THIS_PAIN; + + @ClientString(id = 1803659, message = "You worthless scum… I will break you!") + public static NpcStringId YOU_WORTHLESS_SCUM_I_WILL_BREAK_YOU; + + @ClientString(id = 1803660, message = "There is nothing you can do!") + public static NpcStringId THERE_IS_NOTHING_YOU_CAN_DO; + + @ClientString(id = 1803661, message = "You think you can take me?") + public static NpcStringId YOU_THINK_YOU_CAN_TAKE_ME; + + @ClientString(id = 1803662, message = "Run, run!") + public static NpcStringId RUN_RUN; + + @ClientString(id = 1803663, message = "You are stronger than you look. But this was just a test.") + public static NpcStringId YOU_ARE_STRONGER_THAN_YOU_LOOK_BUT_THIS_WAS_JUST_A_TEST; + + @ClientString(id = 1803664, message = "This was a mistake! You will never defeat me!") + public static NpcStringId THIS_WAS_A_MISTAKE_YOU_WILL_NEVER_DEFEAT_ME; @ClientString(id = 1803665, message = "Ha! Not bad.") public static NpcStringId HA_NOT_BAD; @@ -31108,6 +31201,66 @@ public final class NpcStringId @ClientString(id = 1803666, message = "Welcome to the Arena! Test your clan's strength!") public static NpcStringId WELCOME_TO_THE_ARENA_TEST_YOUR_CLAN_S_STRENGTH; + @ClientString(id = 1803667, message = "The countdown is on! The raid begins! To extend the duration you can click the Extend duration button.") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_RAID_BEGINS_TO_EXTEND_THE_DURATION_YOU_CAN_CLICK_THE_EXTEND_DURATION_BUTTON; + + @ClientString(id = 1803668, message = "What a lovely day! The treasure is mine!") + public static NpcStringId WHAT_A_LOVELY_DAY_THE_TREASURE_IS_MINE; + + @ClientString(id = 1803669, message = "Wow! This was a pure success!") + public static NpcStringId WOW_THIS_WAS_A_PURE_SUCCESS; + + @ClientString(id = 1803670, message = "The treasure chest is over there! Come, quickly!") + public static NpcStringId THE_TREASURE_CHEST_IS_OVER_THERE_COME_QUICKLY; + + @ClientString(id = 1803671, message = "There, that's the treasure chest! Let's see…") + public static NpcStringId THERE_THAT_S_THE_TREASURE_CHEST_LET_S_SEE; + + @ClientString(id = 1803672, message = "The treasure is ours! We will rule the world!") + public static NpcStringId THE_TREASURE_IS_OURS_WE_WILL_RULE_THE_WORLD; + + @ClientString(id = 1803673, message = "I see the treasure chest! Come on, let's go!") + public static NpcStringId I_SEE_THE_TREASURE_CHEST_COME_ON_LET_S_GO; + + @ClientString(id = 1803674, message = "$s1, that's the treasure… It's our lucky day!") + public static NpcStringId S1_THAT_S_THE_TREASURE_IT_S_OUR_LUCKY_DAY; + + @ClientString(id = 1803675, message = "Those guys with $s1 got lucky!") + public static NpcStringId THOSE_GUYS_WITH_S1_GOT_LUCKY; + + @ClientString(id = 1803676, message = "If only you knew how much effort it took us to find this treasure… Thank you.") + public static NpcStringId IF_ONLY_YOU_KNEW_HOW_MUCH_EFFORT_IT_TOOK_US_TO_FIND_THIS_TREASURE_THANK_YOU; + + @ClientString(id = 1803677, message = "The countdown is on! The last raid has begun!") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_LAST_RAID_HAS_BEGUN; + + @ClientString(id = 1803678, message = "All raids are finished for now. We will prepare new arena raids for you. Please come back soon!") + public static NpcStringId ALL_RAIDS_ARE_FINISHED_FOR_NOW_WE_WILL_PREPARE_NEW_ARENA_RAIDS_FOR_YOU_PLEASE_COME_BACK_SOON; + + @ClientString(id = 1803679, message = "The chest is empty!") + public static NpcStringId THE_CHEST_IS_EMPTY; + + @ClientString(id = 1803680, message = "Don't think that treasure hunting is going to be easy…") + public static NpcStringId DON_T_THINK_THAT_TREASURE_HUNTING_IS_GOING_TO_BE_EASY; + + @ClientString(id = 1803681, message = "Oh! This is a treasure chest!") + public static NpcStringId OH_THIS_IS_A_TREASURE_CHEST; + + @ClientString(id = 1803682, message = "I see a chest full of treasures!") + public static NpcStringId I_SEE_A_CHEST_FULL_OF_TREASURES; + + @ClientString(id = 1803683, message = "Antharas is trying to escape.") + public static NpcStringId ANTHARAS_IS_TRYING_TO_ESCAPE; + + @ClientString(id = 1803684, message = "Balthus Knights are looking for mercenaries!") + public static NpcStringId BALTHUS_KNIGHTS_ARE_LOOKING_FOR_MERCENARIES; + + @ClientString(id = 1803685, message = "Let's join our forces and face this together!") + public static NpcStringId LET_S_JOIN_OUR_FORCES_AND_FACE_THIS_TOGETHER; + + @ClientString(id = 1810363, message = "You are too far from the corpse.") + public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; + @ClientString(id = 1810364, message = "Grudge of Ye Sagira victims have been relieved with your tears.") public static NpcStringId GRUDGE_OF_YE_SAGIRA_VICTIMS_HAVE_BEEN_RELIEVED_WITH_YOUR_TEARS; @@ -34903,11 +35056,11 @@ public final class NpcStringId @ClientString(id = 17178332, message = "Imbeciles...you'll disappear on the day of destruction...") public static NpcStringId IMBECILES_YOU_LL_DISAPPEAR_ON_THE_DAY_OF_DESTRUCTION; - @ClientString(id = 17178333, message = "Ah.. Did the backup get wiped out... Looks like we're late.") - public static NpcStringId AH_DID_THE_BACKUP_GET_WIPED_OUT_LOOKS_LIKE_WE_RE_LATE; + @ClientString(id = 17178333, message = "Are you those mercenaries Fellow told me about?") + public static NpcStringId ARE_YOU_THOSE_MERCENARIES_FELLOW_TOLD_ME_ABOUT; - @ClientString(id = 17178334, message = "You guys are the mercenaries.") - public static NpcStringId YOU_GUYS_ARE_THE_MERCENARIES; + @ClientString(id = 17178334, message = "Are you those mercenaries Ateld told me about?") + public static NpcStringId ARE_YOU_THOSE_MERCENARIES_ATELD_TOLD_ME_ABOUT; @ClientString(id = 17178335, message = "He's quiet again. Thanks.") public static NpcStringId HE_S_QUIET_AGAIN_THANKS; @@ -34915,8 +35068,8 @@ public final class NpcStringId @ClientString(id = 17178336, message = "This.. We brought this to support the backup, but we could give these to you.") public static NpcStringId THIS_WE_BROUGHT_THIS_TO_SUPPORT_THE_BACKUP_BUT_WE_COULD_GIVE_THESE_TO_YOU; - @ClientString(id = 17178337, message = "Courageous ones who supported Antharas force, come and take the Kingdom's reward.") - public static NpcStringId COURAGEOUS_ONES_WHO_SUPPORTED_ANTHARAS_FORCE_COME_AND_TAKE_THE_KINGDOM_S_REWARD; + @ClientString(id = 17178337, message = "Courageous ones, come and take Balthus Knights' reward.") + public static NpcStringId COURAGEOUS_ONES_COME_AND_TAKE_BALTHUS_KNIGHTS_REWARD; @ClientString(id = 17178338, message = "Are there those who didn't receive the rewards yet? Come and get it from me.") public static NpcStringId ARE_THERE_THOSE_WHO_DIDN_T_RECEIVE_THE_REWARDS_YET_COME_AND_GET_IT_FROM_ME; @@ -35260,7 +35413,7 @@ public final class NpcStringId } catch (Exception e) { - LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '" + field.getName() + "'", e); + LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '"+ field.getName() + "'", e); } } } @@ -35349,11 +35502,11 @@ public final class NpcStringId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: "+ params); } if (params > 10) { - throw new IllegalArgumentException("Maximum param count exceeded: " + params); + throw new IllegalArgumentException("Maximum param count exceeded: "+ params); } if (params != 0) { @@ -35375,6 +35528,6 @@ public final class NpcStringId @Override public final String toString() { - return "NS[" + getId() + ":" + getName() + "]"; + return "NS["+ getId() + ":"+ getName() + "]"; } } diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/SystemMessageId.java b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/SystemMessageId.java index 47e410708a..d0e3a937c7 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/SystemMessageId.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/com/l2jmobius/gameserver/network/SystemMessageId.java @@ -1737,7 +1737,7 @@ public final class SystemMessageId @ClientString(id = 568, message = "Failed to summon Cube.") public static SystemMessageId FAILED_TO_SUMMON_CUBE; - @ClientString(id = 569, message = "Caution -- this item's price greatly differs from non-player run shops. Do you wish to continue?") + @ClientString(id = 569, message = "Caution - this item's price greatly differs from non-player run shops. Do you wish to continue?") public static SystemMessageId CAUTION_THIS_ITEM_S_PRICE_GREATLY_DIFFERS_FROM_NON_PLAYER_RUN_SHOPS_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 570, message = "How many $s1(s) do you want to purchase?") @@ -3054,23 +3054,23 @@ public final class SystemMessageId @ClientString(id = 1007, message = "The preliminary match registration for $s1 has finished.") public static SystemMessageId THE_PRELIMINARY_MATCH_REGISTRATION_FOR_S1_HAS_FINISHED; - @ClientString(id = 1008, message = "A hungry strider cannot be mounted or dismounted.") - public static SystemMessageId A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED; + @ClientString(id = 1008, message = "A hungry mount cannot be mounted or dismounted.") + public static SystemMessageId A_HUNGRY_MOUNT_CANNOT_BE_MOUNTED_OR_DISMOUNTED; - @ClientString(id = 1009, message = "A strider cannot be ridden when dead.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD; + @ClientString(id = 1009, message = "A mount cannot be ridden when dead.") + public static SystemMessageId A_MOUNT_CANNOT_BE_RIDDEN_WHEN_DEAD; - @ClientString(id = 1010, message = "A dead strider cannot be ridden.") - public static SystemMessageId A_DEAD_STRIDER_CANNOT_BE_RIDDEN; + @ClientString(id = 1010, message = "A dead mount cannot be ridden.") + public static SystemMessageId A_DEAD_MOUNT_CANNOT_BE_RIDDEN; - @ClientString(id = 1011, message = "A strider in battle cannot be ridden.") - public static SystemMessageId A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN; + @ClientString(id = 1011, message = "A mount in battle cannot be ridden.") + public static SystemMessageId A_MOUNT_IN_BATTLE_CANNOT_BE_RIDDEN; - @ClientString(id = 1012, message = "A strider cannot be ridden while in battle.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; + @ClientString(id = 1012, message = "A mount cannot be ridden while in battle.") + public static SystemMessageId A_MOUNT_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; - @ClientString(id = 1013, message = "A strider can be ridden only when standing.") - public static SystemMessageId A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; + @ClientString(id = 1013, message = "A mount can be ridden only when standing.") + public static SystemMessageId A_MOUNT_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; @ClientString(id = 1014, message = "Your pet gained $s1 XP.") public static SystemMessageId YOUR_PET_GAINED_S1_XP; @@ -4273,7 +4273,7 @@ public final class SystemMessageId public static SystemMessageId YOU_DO_NOT_MEET_THE_REQUIREMENTS_TO_ENTER_THAT_PARTY_ROOM; @ClientString(id = 1414, message = "The width and length should be 100 or more grids and less than 5,000 grids respectively.") - public static SystemMessageId THE_WIDTH_AND_LENGTH_SHOULD_BE_100_OR_MORE_GRIDS_AND_LESS_THAN_5000_GRIDS_RESPECTIVELY; + public static SystemMessageId THE_WIDTH_AND_LENGTH_SHOULD_BE_100_OR_MORE_GRIDS_AND_LESS_THAN_5_000_GRIDS_RESPECTIVELY; @ClientString(id = 1415, message = "The command file is not set.") public static SystemMessageId THE_COMMAND_FILE_IS_NOT_SET; @@ -6132,11 +6132,11 @@ public final class SystemMessageId @ClientString(id = 2033, message = "A subclass cannot be created or changed because you have exceeded your inventory limit.") public static SystemMessageId A_SUBCLASS_CANNOT_BE_CREATED_OR_CHANGED_BECAUSE_YOU_HAVE_EXCEEDED_YOUR_INVENTORY_LIMIT; - @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be purchased.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED; + @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; - @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be purchased.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED; + @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; @ClientString(id = 2036, message = "Unable to invite because the party is locked.") public static SystemMessageId UNABLE_TO_INVITE_BECAUSE_THE_PARTY_IS_LOCKED; @@ -6697,10 +6697,10 @@ public final class SystemMessageId public static SystemMessageId DO_YOU_WISH_TO_ACTIVATE_THE_SELECTED_FUNCTIONS; @ClientString(id = 2222, message = "It will cost 150,000 Adena to place scouts. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_150000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; + public static SystemMessageId IT_WILL_COST_150_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2223, message = "It will cost 200,000 Adena for a fortress gate enhancement. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_200000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; + public static SystemMessageId IT_WILL_COST_200_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2224, message = "Your crossbow is preparing to fire.") public static SystemMessageId YOUR_CROSSBOW_IS_PREPARING_TO_FIRE; @@ -7110,8 +7110,8 @@ public final class SystemMessageId @ClientString(id = 2359, message = "You cannot teleport because you do not have a teleport item.") public static SystemMessageId YOU_CANNOT_TELEPORT_BECAUSE_YOU_DO_NOT_HAVE_A_TELEPORT_ITEM; - @ClientString(id = 2360, message = "My Teleports Spellbk: $s1") - public static SystemMessageId MY_TELEPORTS_SPELLBK_S1; + @ClientString(id = 2360, message = "Scroll: $s1 pcs") + public static SystemMessageId SCROLL_S1_PCS; @ClientString(id = 2361, message = "Current Location: $s1") public static SystemMessageId CURRENT_LOCATION_S1; @@ -8100,8 +8100,8 @@ public final class SystemMessageId @ClientString(id = 2792, message = "50 Clan Reputation will be awarded. Do you wish to continue?") public static SystemMessageId FIFTY_CLAN_REPUTATION_WILL_BE_AWARDED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this instanced zone.") - public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE; + @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this Instance Zone.") + public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE; @ClientString(id = 2794, message = "The territory war channel and functions will now be deactivated.") public static SystemMessageId THE_TERRITORY_WAR_CHANNEL_AND_FUNCTIONS_WILL_NOW_BE_DEACTIVATED; @@ -8794,7 +8794,7 @@ public final class SystemMessageId public static SystemMessageId SKILL_NOT_AVAILABLE_TO_BE_ENHANCED_CHECK_SKILL_S_LV_AND_CURRENT_CHARACTER_STATUS; @ClientString(id = 3071, message = "Do you really want to reset? 10,000,000(10 million) Adena will be consumed.") - public static SystemMessageId DO_YOU_REALLY_WANT_TO_RESET_10000000_10_MILLION_ADENA_WILL_BE_CONSUMED; + public static SystemMessageId DO_YOU_REALLY_WANT_TO_RESET_10_000_000_10_MILLION_ADENA_WILL_BE_CONSUMED; @ClientString(id = 3072, message = "$s1 acquired the attached item to your mail.") public static SystemMessageId S1_ACQUIRED_THE_ATTACHED_ITEM_TO_YOUR_MAIL; @@ -10069,7 +10069,7 @@ public final class SystemMessageId public static SystemMessageId A_MARK_OF_ADVENTURER_IS_ACQUIRED_THIS_ITEM_CAN_BE_RE_ACQUIRED_AFTER_6_30_A_M_EVERYDAY; @ClientString(id = 3496, message = "How many $s1(s) do you wish to move? (Max: 99,999 units)") - public static SystemMessageId HOW_MANY_S1_S_DO_YOU_WISH_TO_MOVE_MAX_99999_UNITS; + public static SystemMessageId HOW_MANY_S1_S_DO_YOU_WISH_TO_MOVE_MAX_99_999_UNITS; @ClientString(id = 3497, message = "You cannot request to auction several clan halls at once, or request to auction clan halls during castle sieges or clan hall wars.") public static SystemMessageId YOU_CANNOT_REQUEST_TO_AUCTION_SEVERAL_CLAN_HALLS_AT_ONCE_OR_REQUEST_TO_AUCTION_CLAN_HALLS_DURING_CASTLE_SIEGES_OR_CLAN_HALL_WARS; @@ -10765,7 +10765,7 @@ public final class SystemMessageId public static SystemMessageId EMPTY_9; @ClientString(id = 3728, message = "$1 receives a prize for raising the temperature most.") - public static SystemMessageId RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; + public static SystemMessageId ONE_RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; @ClientString(id = 3729, message = "The character and item recipe levels do not match, so it cannot be used normally.") public static SystemMessageId THE_CHARACTER_AND_ITEM_RECIPE_LEVELS_DO_NOT_MATCH_SO_IT_CANNOT_BE_USED_NORMALLY; @@ -11124,7 +11124,7 @@ public final class SystemMessageId @ClientString(id = 3847, message = "Use $s1.") public static SystemMessageId USE_S1_2; - @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights Secret Supply Items.") + @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights' Secret Supply Items.") public static SystemMessageId S1_OBTAINED_S2_THE_BALTHUS_KNIGHTS_SECRET_SUPPLY_ITEMS; @ClientString(id = 3849, message = "You obtained $s1 Sibi’s Coins.") @@ -11244,10 +11244,10 @@ public final class SystemMessageId @ClientString(id = 3887, message = "The Balthus Knights event is ready to begin. Marks of the Balthus Knights cannot be used before the event begins.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_READY_TO_BEGIN_MARKS_OF_THE_BALTHUS_KNIGHTS_CANNOT_BE_USED_BEFORE_THE_EVENT_BEGINS; - @ClientString(id = 3888, message = "The Balthus Knights event is in progress.") + @ClientString(id = 3888, message = "The Balthus Knights' event is in progress.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_IN_PROGRESS; - @ClientString(id = 3889, message = "The Balthus Knights Event has begun. Characters of level 20 or higher may participate in it.") + @ClientString(id = 3889, message = "The Balthus Knights' Event has begun. Characters of level 20 or higher may participate in it.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_HAS_BEGUN_CHARACTERS_OF_LEVEL_20_OR_HIGHER_MAY_PARTICIPATE_IN_IT; @ClientString(id = 3890, message = "All buffs like Rosy Seductions and Art of Seduction will be removed. Sayha's Grace will remain.") @@ -12297,8 +12297,8 @@ public final class SystemMessageId @ClientString(id = 4331, message = "This effect is already in use.") public static SystemMessageId THIS_EFFECT_IS_ALREADY_IN_USE; - @ClientString(id = 4332, message = "When rune is changed current effect will disappear. Continue?") - public static SystemMessageId WHEN_RUNE_IS_CHANGED_CURRENT_EFFECT_WILL_DISAPPEAR_CONTINUE; + @ClientString(id = 4332, message = "The current rune and its effect will disappear after rune's replacement.") + public static SystemMessageId THE_CURRENT_RUNE_AND_ITS_EFFECT_WILL_DISAPPEAR_AFTER_RUNE_S_REPLACEMENT; @ClientString(id = 4333, message = "The rune has been inserted successfully.") public static SystemMessageId THE_RUNE_HAS_BEEN_INSERTED_SUCCESSFULLY; @@ -12486,8 +12486,8 @@ public final class SystemMessageId @ClientString(id = 4394, message = "Draw $s1, Attempt $s2 is in progress.") public static SystemMessageId DRAW_S1_ATTEMPT_S2_IS_IN_PROGRESS; - @ClientString(id = 4395, message = "Supplies are being produced. Next supplies will be given out in time.") - public static SystemMessageId SUPPLIES_ARE_BEING_PRODUCED_NEXT_SUPPLIES_WILL_BE_GIVEN_OUT_IN_TIME; + @ClientString(id = 4395, message = "The top prize is currently being produced. The next prize will be drawn within the next hour.") + public static SystemMessageId THE_TOP_PRIZE_IS_CURRENTLY_BEING_PRODUCED_THE_NEXT_PRIZE_WILL_BE_DRAWN_WITHIN_THE_NEXT_HOUR; @ClientString(id = 4396, message = "Current location: $s1 / $s2 / $s3 (Dimensional Rift)") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_DIMENSIONAL_RIFT; @@ -12576,8 +12576,8 @@ public final class SystemMessageId @ClientString(id = 4424, message = "Failure to combine will result in the loss of some or all ingredients. Are you sure that you want to continue?") public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_SOME_OR_ALL_INGREDIENTS_ARE_YOU_SURE_THAT_YOU_WANT_TO_CONTINUE; - @ClientString(id = 4425, message = "$s1 Raid Monster") - public static SystemMessageId S1_RAID_MONSTER; + @ClientString(id = 4425, message = "$s1 Raid Boss") + public static SystemMessageId S1_RAID_BOSS; @ClientString(id = 4426, message = "All objectives of Monster Diagram $s1, level $s2, have been achieved.") public static SystemMessageId ALL_OBJECTIVES_OF_MONSTER_DIAGRAM_S1_LEVEL_S2_HAVE_BEEN_ACHIEVED; @@ -12714,53 +12714,395 @@ public final class SystemMessageId @ClientString(id = 4470, message = "Task cannot be completed: Your balance after the transaction exceeds the Adena limit.") public static SystemMessageId TASK_CANNOT_BE_COMPLETED_YOUR_BALANCE_AFTER_THE_TRANSACTION_EXCEEDS_THE_ADENA_LIMIT; - @ClientString(id = 4471, message = "") - public static SystemMessageId EMPTY_10; + @ClientString(id = 4471, message = "The item was upgraded successfully and you obtained a $s1.") + public static SystemMessageId THE_ITEM_WAS_UPGRADED_SUCCESSFULLY_AND_YOU_OBTAINED_A_S1; - @ClientString(id = 4472, message = "") - public static SystemMessageId EMPTY_11; + @ClientString(id = 4472, message = "$c1 has succeeded in upgrading equipment and obtained a $s2.") + public static SystemMessageId C1_HAS_SUCCEEDED_IN_UPGRADING_EQUIPMENT_AND_OBTAINED_A_S2; - @ClientString(id = 4473, message = "") - public static SystemMessageId EMPTY_12; + @ClientString(id = 4473, message = "Failed the operation.") + public static SystemMessageId FAILED_THE_OPERATION; - @ClientString(id = 4474, message = "") - public static SystemMessageId EMPTY_13; + @ClientString(id = 4474, message = "Failed because the target item does not exist.") + public static SystemMessageId FAILED_BECAUSE_THE_TARGET_ITEM_DOES_NOT_EXIST; - @ClientString(id = 4475, message = "") - public static SystemMessageId EMPTY_14; + @ClientString(id = 4475, message = "Failed because there are not enough ingredients.") + public static SystemMessageId FAILED_BECAUSE_THERE_ARE_NOT_ENOUGH_INGREDIENTS; - @ClientString(id = 4476, message = "") - public static SystemMessageId EMPTY_15; + @ClientString(id = 4476, message = "Failed because there's not enough Adena.") + public static SystemMessageId FAILED_BECAUSE_THERE_S_NOT_ENOUGH_ADENA; - @ClientString(id = 4477, message = "") - public static SystemMessageId EMPTY_16; + @ClientString(id = 4477, message = "Kneel down! Frederick the Destroyer will appear!") + public static SystemMessageId KNEEL_DOWN_FREDERICK_THE_DESTROYER_WILL_APPEAR; - @ClientString(id = 4478, message = "") - public static SystemMessageId EMPTY_17; + @ClientString(id = 4478, message = "The festival of flames begins!") + public static SystemMessageId THE_FESTIVAL_OF_FLAMES_BEGINS; - @ClientString(id = 4479, message = "") - public static SystemMessageId EMPTY_18; + @ClientString(id = 4479, message = "Greenhorns, show your respect!") + public static SystemMessageId GREENHORNS_SHOW_YOUR_RESPECT; - @ClientString(id = 4480, message = "") - public static SystemMessageId EMPTY_19; + @ClientString(id = 4480, message = "After the festival of flames ends, 'Victory' will appear.") + public static SystemMessageId AFTER_THE_FESTIVAL_OF_FLAMES_ENDS_VICTORY_WILL_APPEAR; - @ClientString(id = 4481, message = "") - public static SystemMessageId EMPTY_20; + @ClientString(id = 4481, message = "We remember your excitement, your luck, and your happiness.") + public static SystemMessageId WE_REMEMBER_YOUR_EXCITEMENT_YOUR_LUCK_AND_YOUR_HAPPINESS; - @ClientString(id = 4482, message = "") - public static SystemMessageId EMPTY_21; + @ClientString(id = 4482, message = "We remember your sadness, your anger, and your sorrow.") + public static SystemMessageId WE_REMEMBER_YOUR_SADNESS_YOUR_ANGER_AND_YOUR_SORROW; - @ClientString(id = 4483, message = "") - public static SystemMessageId EMPTY_22; + @ClientString(id = 4483, message = "At some point your memories became mine and they became our memories.") + public static SystemMessageId AT_SOME_POINT_YOUR_MEMORIES_BECAME_MINE_AND_THEY_BECAME_OUR_MEMORIES; - @ClientString(id = 4484, message = "") - public static SystemMessageId EMPTY_23; + @ClientString(id = 4484, message = "Thank you for your unwavering faith for all this time.") + public static SystemMessageId THANK_YOU_FOR_YOUR_UNWAVERING_FAITH_FOR_ALL_THIS_TIME; - @ClientString(id = 4485, message = "") - public static SystemMessageId EMPTY_24; + @ClientString(id = 4485, message = "Thank you for your love.") + public static SystemMessageId THANK_YOU_FOR_YOUR_LOVE; - @ClientString(id = 4486, message = "") - public static SystemMessageId EMPTY_25; + @ClientString(id = 4486, message = "Lineage 2 will always be by your side.") + public static SystemMessageId LINEAGE_2_WILL_ALWAYS_BE_BY_YOUR_SIDE; + + @ClientString(id = 4487, message = "You cannot exchange items during the number card game.") + public static SystemMessageId YOU_CANNOT_EXCHANGE_ITEMS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4488, message = "You cannot send a request to a character who is playing the number card game.") + public static SystemMessageId YOU_CANNOT_SEND_A_REQUEST_TO_A_CHARACTER_WHO_IS_PLAYING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4489, message = "You cannot send or receive attached items during the number card game. You can only read or send mail.") + public static SystemMessageId YOU_CANNOT_SEND_OR_RECEIVE_ATTACHED_ITEMS_DURING_THE_NUMBER_CARD_GAME_YOU_CAN_ONLY_READ_OR_SEND_MAIL; + + @ClientString(id = 4490, message = "The number card game has ended because you are too far from the event NPC.") + public static SystemMessageId THE_NUMBER_CARD_GAME_HAS_ENDED_BECAUSE_YOU_ARE_TOO_FAR_FROM_THE_EVENT_NPC; + + @ClientString(id = 4491, message = "You cannot do Couple Actions during the number card game.") + public static SystemMessageId YOU_CANNOT_DO_COUPLE_ACTIONS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4492, message = "$c1 is playing the number card game. You cannot request Couple Actions.") + public static SystemMessageId C1_IS_PLAYING_THE_NUMBER_CARD_GAME_YOU_CANNOT_REQUEST_COUPLE_ACTIONS; + + @ClientString(id = 4493, message = "Guess the number on my card!") + public static SystemMessageId GUESS_THE_NUMBER_ON_MY_CARD; + + @ClientString(id = 4494, message = "The number is higher!") + public static SystemMessageId THE_NUMBER_IS_HIGHER; + + @ClientString(id = 4495, message = "The number is lower!") + public static SystemMessageId THE_NUMBER_IS_LOWER; + + @ClientString(id = 4496, message = "I can't believe it... I lost!") + public static SystemMessageId I_CAN_T_BELIEVE_IT_I_LOST; + + @ClientString(id = 4497, message = "I won! Haha.") + public static SystemMessageId I_WON_HAHA; + + @ClientString(id = 4498, message = "The game has ended because you have used all your chances.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_YOU_HAVE_USED_ALL_YOUR_CHANCES; + + @ClientString(id = 4499, message = "The game has ended because time has run out.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_TIME_HAS_RUN_OUT; + + @ClientString(id = 4500, message = "The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.") + public static SystemMessageId THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4501, message = "You can receive the reward only when your inventory is below 80% of its weight and quantity limits.\r\n(The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.)") + public static SystemMessageId YOU_CAN_RECEIVE_THE_REWARD_ONLY_WHEN_YOUR_INVENTORY_IS_BELOW_80_OF_ITS_WEIGHT_AND_QUANTITY_LIMITS_R_N_THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4502, message = "NC OTP Service ended on February 15, 2017. You can no longer play the game with the account registered for NC OTP Service. Unregister the account from NC OTP Service, and log in again.") + public static SystemMessageId NC_OTP_SERVICE_ENDED_ON_FEBRUARY_15_2017_YOU_CAN_NO_LONGER_PLAY_THE_GAME_WITH_THE_ACCOUNT_REGISTERED_FOR_NC_OTP_SERVICE_UNREGISTER_THE_ACCOUNT_FROM_NC_OTP_SERVICE_AND_LOG_IN_AGAIN; + + @ClientString(id = 4503, message = "NC OTP Service ended on February 15, 2017. You can no longer play the game with the account registered for NC OTP Service. Unregister the account from NC OTP Service, and log in again.") + public static SystemMessageId NC_OTP_SERVICE_ENDED_ON_FEBRUARY_15_2017_YOU_CAN_NO_LONGER_PLAY_THE_GAME_WITH_THE_ACCOUNT_REGISTERED_FOR_NC_OTP_SERVICE_UNREGISTER_THE_ACCOUNT_FROM_NC_OTP_SERVICE_AND_LOG_IN_AGAIN_2; + + @ClientString(id = 4504, message = "Register the Agathion you want to grow.") + public static SystemMessageId REGISTER_THE_AGATHION_YOU_WANT_TO_GROW; + + @ClientString(id = 4505, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION; + + @ClientString(id = 4506, message = "If the growth fails, the Agathion will be lost.") + public static SystemMessageId IF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_LOST; + + @ClientString(id = 4507, message = "Warning of destruction!\\n\\nIf the growth fails, the Agathion will be destroyed.\\n\\nAre you sure you want to continue?") + public static SystemMessageId WARNING_OF_DESTRUCTION_N_NIF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_DESTROYED_N_NARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4508, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RESET; + + @ClientString(id = 4509, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RETAINED; + + @ClientString(id = 4510, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION_2; + + @ClientString(id = 4511, message = "The growth failed. The Agathion was lost, and the item was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_WAS_LOST_AND_THE_ITEM_WAS_DESTROYED; + + @ClientString(id = 4512, message = "The growth failed. The Agathion's growth level was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_S_GROWTH_LEVEL_WAS_RESET; + + @ClientString(id = 4513, message = "Congratulations! The Agathion was successfully grown to <$s1>.") + public static SystemMessageId CONGRATULATIONS_THE_AGATHION_WAS_SUCCESSFULLY_GROWN_TO_S1; + + @ClientString(id = 4514, message = "Do you want to leave the $s1 clan? If you leave, you cannot join another clan for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_LEAVE_THE_S1_CLAN_IF_YOU_LEAVE_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4515, message = "Do you want to dismiss $s1 from your clan? If you dismiss a clan member, you cannot accept a new member for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_DISMISS_S1_FROM_YOUR_CLAN_IF_YOU_DISMISS_A_CLAN_MEMBER_YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4516, message = "You were dismissed from the clan. You cannot join another clan for $s1 minutes.") + public static SystemMessageId YOU_WERE_DISMISSED_FROM_THE_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4517, message = "You cannot accept a new member for $s1 minutes after dismissing a clan member.") + public static SystemMessageId YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_S1_MINUTES_AFTER_DISMISSING_A_CLAN_MEMBER; + + @ClientString(id = 4518, message = "If you are dismissed from or leave a clan, you cannot join another clan for $s1 minutes.") + public static SystemMessageId IF_YOU_ARE_DISMISSED_FROM_OR_LEAVE_A_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4519, message = "$c1 cannot join your clan because $s2 minutes has not passed since they left another clan.") + public static SystemMessageId C1_CANNOT_JOIN_YOUR_CLAN_BECAUSE_S2_MINUTES_HAS_NOT_PASSED_SINCE_THEY_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4520, message = "You cannot join this clan because $s1 minutes has not passed since you left another clan.") + public static SystemMessageId YOU_CANNOT_JOIN_THIS_CLAN_BECAUSE_S1_MINUTES_HAS_NOT_PASSED_SINCE_YOU_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4521, message = "$s1 was summoned as a Primary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4522, message = "$s1‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4523, message = "$s1 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4524, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4525, message = "$s1‘s power was sealed.") + public static SystemMessageId S1_S_POWER_WAS_SEALED; + + @ClientString(id = 4526, message = "Cannot summon any more Agathions.") + public static SystemMessageId CANNOT_SUMMON_ANY_MORE_AGATHIONS; + + @ClientString(id = 4527, message = "You cannot use the Agathion's power because you are not wearing the left bracelet.") + public static SystemMessageId YOU_CANNOT_USE_THE_AGATHION_S_POWER_BECAUSE_YOU_ARE_NOT_WEARING_THE_LEFT_BRACELET; + + @ClientString(id = 4528, message = "+$s1$s2 was summoned as a Primary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4529, message = "$s1‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES_2; + + @ClientString(id = 4530, message = "+$s1$s2 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4531, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE_2; + + @ClientString(id = 4532, message = "+$s1$s2‘s power was sealed.") + public static SystemMessageId S1_S2_S_POWER_WAS_SEALED; + + @ClientString(id = 4533, message = "Your status does not allow for you to use this function.") + public static SystemMessageId YOUR_STATUS_DOES_NOT_ALLOW_FOR_YOU_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4534, message = "$s1‘s status does allow for them to use this function.") + public static SystemMessageId S1_S_STATUS_DOES_ALLOW_FOR_THEM_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4535, message = "Current location: $s1/$s2/$s3 (Balthus Knight Barracks)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_BALTHUS_KNIGHT_BARRACKS; + + @ClientString(id = 4536, message = "Current location: $s1/$s2/$s3 (Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_HATCHLING_HABITAT; + + @ClientString(id = 4537, message = "Current location: $s1/$s2/$s3 (Near Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_HATCHLING_HABITAT; + + @ClientString(id = 4538, message = "Current location: $s1/$s2/$s3 (Antharas' Nest)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_ANTHARAS_NEST; + + @ClientString(id = 4539, message = "You do not belong to any Clan.") + public static SystemMessageId YOU_DO_NOT_BELONG_TO_ANY_CLAN; + + @ClientString(id = 4540, message = "Your clan's point is 0.") + public static SystemMessageId YOUR_CLAN_S_POINT_IS_0; + + @ClientString(id = 4541, message = "Your clan has not played the Throne of Heroes.") + public static SystemMessageId YOUR_CLAN_HAS_NOT_PLAYED_THE_THRONE_OF_HEROES; + + @ClientString(id = 4542, message = "You can enter up to 16 alphanumeric characters.") + public static SystemMessageId YOU_CAN_ENTER_UP_TO_16_ALPHANUMERIC_CHARACTERS; + + @ClientString(id = 4543, message = "No spaces are allowed.") + public static SystemMessageId NO_SPACES_ARE_ALLOWED; + + @ClientString(id = 4544, message = "$s1‘s affiliation will be changed.") + public static SystemMessageId S1_S_AFFILIATION_WILL_BE_CHANGED; + + @ClientString(id = 4545, message = "$s1‘s privileges will be changed.") + public static SystemMessageId S1_S_PRIVILEGES_WILL_BE_CHANGED; + + @ClientString(id = 4546, message = "Clan Level $s1 or higher") + public static SystemMessageId CLAN_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4547, message = "Character Level $s1 or higher") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4548, message = "Character Level $s1 or lower") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_LOWER; + + @ClientString(id = 4549, message = "$s1 playable") + public static SystemMessageId S1_PLAYABLE; + + @ClientString(id = 4550, message = "$s1 must be completed") + public static SystemMessageId S1_MUST_BE_COMPLETED; + + @ClientString(id = 4551, message = "The cycle is updated at 7:00 every Wednesday.") + public static SystemMessageId THE_CYCLE_IS_UPDATED_AT_7_00_EVERY_WEDNESDAY; + + @ClientString(id = 4552, message = "If you fulfill the goal, you can earn $s1 Personal Fame.") + public static SystemMessageId IF_YOU_FULFILL_THE_GOAL_YOU_CAN_EARN_S1_PERSONAL_FAME; + + @ClientString(id = 4553, message = "Rank $s1") + public static SystemMessageId RANK_S1; + + @ClientString(id = 4554, message = "· Consumes 1 Clan Development Point.\\n· Consumes $s1 Clan Reputation Points.\\n· Able to retrieve the Clan Development Points but not Clan Reputation Points by resetting to default.\\n\\nDo you want to unlock the characteristic?") + public static SystemMessageId CONSUMES_1_CLAN_DEVELOPMENT_POINT_N_CONSUMES_S1_CLAN_REPUTATION_POINTS_N_ABLE_TO_RETRIEVE_THE_CLAN_DEVELOPMENT_POINTS_BUT_NOT_CLAN_REPUTATION_POINTS_BY_RESETTING_TO_DEFAULT_N_NDO_YOU_WANT_TO_UNLOCK_THE_CHARACTERISTIC; + + @ClientString(id = 4555, message = "· Consumes $s1 Clan Reputation Points.\\n· Unable to retrieve the Clan Reputation Points by resetting to default.\\n· Extends the durations of previously unlocked seal.\\n\\nDo you want to unlock the seal?") + public static SystemMessageId CONSUMES_S1_CLAN_REPUTATION_POINTS_N_UNABLE_TO_RETRIEVE_THE_CLAN_REPUTATION_POINTS_BY_RESETTING_TO_DEFAULT_N_EXTENDS_THE_DURATIONS_OF_PREVIOUSLY_UNLOCKED_SEAL_N_NDO_YOU_WANT_TO_UNLOCK_THE_SEAL; + + @ClientString(id = 4556, message = "· Consumes 10,000 Clan Reputation Points.\\n· Resets all Specialized skills and seal effects.\\n· Retrieves the Clan Development Points paid for unlocking.\\n· Unable to retrieve the Clam Fame paid for unlocking.\\n\\nAre you sure to reset?") + public static SystemMessageId CONSUMES_10_000_CLAN_REPUTATION_POINTS_N_RESETS_ALL_SPECIALIZED_SKILLS_AND_SEAL_EFFECTS_N_RETRIEVES_THE_CLAN_DEVELOPMENT_POINTS_PAID_FOR_UNLOCKING_N_UNABLE_TO_RETRIEVE_THE_CLAM_FAME_PAID_FOR_UNLOCKING_N_NARE_YOU_SURE_TO_RESET; + + @ClientString(id = 4557, message = "Unlocked $s1.") + public static SystemMessageId UNLOCKED_S1; + + @ClientString(id = 4558, message = "All clan characteristics were reset.") + public static SystemMessageId ALL_CLAN_CHARACTERISTICS_WERE_RESET; + + @ClientString(id = 4559, message = "System error. Please try again.") + public static SystemMessageId SYSTEM_ERROR_PLEASE_TRY_AGAIN; + + @ClientString(id = 4560, message = "Cannot extend the seal activation time any longer.") + public static SystemMessageId CANNOT_EXTEND_THE_SEAL_ACTIVATION_TIME_ANY_LONGER; + + @ClientString(id = 4561, message = "Not enough money to unlock Specialization.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_UNLOCK_SPECIALIZATION; + + @ClientString(id = 4562, message = "Not enough money to unlock seal.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_UNLOCK_SEAL; + + @ClientString(id = 4563, message = "Not enough money to reset.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_RESET; + + @ClientString(id = 4564, message = "Activation required") + public static SystemMessageId ACTIVATION_REQUIRED; + + @ClientString(id = 4565, message = "None") + public static SystemMessageId NONE_6; + + @ClientString(id = 4566, message = "Locked") + public static SystemMessageId LOCKED; + + @ClientString(id = 4567, message = "The above item will be activated. Are you sure you want to continue?") + public static SystemMessageId THE_ABOVE_ITEM_WILL_BE_ACTIVATED_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4568, message = "Activated the above item in the Clan Shop.") + public static SystemMessageId ACTIVATED_THE_ABOVE_ITEM_IN_THE_CLAN_SHOP; + + @ClientString(id = 4569, message = "The item will be purchased. Are you sure you want to continue?") + public static SystemMessageId THE_ITEM_WILL_BE_PURCHASED_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4570, message = "Purchased the item successfully.") + public static SystemMessageId PURCHASED_THE_ITEM_SUCCESSFULLY; + + @ClientString(id = 4571, message = "Valid for: $s1 days after unlocked") + public static SystemMessageId VALID_FOR_S1_DAYS_AFTER_UNLOCKED; + + @ClientString(id = 4572, message = "$s1/5 kills") + public static SystemMessageId S1_5_KILLS; + + @ClientString(id = 4573, message = "$s1/5 killed") + public static SystemMessageId S1_5_KILLED; + + @ClientString(id = 4574, message = "Invite players to the clan") + public static SystemMessageId INVITE_PLAYERS_TO_THE_CLAN; + + @ClientString(id = 4575, message = "Grant or remove titles") + public static SystemMessageId GRANT_OR_REMOVE_TITLES; + + @ClientString(id = 4576, message = "View the warehouse and deposit items (only the clan reader can take items)") + public static SystemMessageId VIEW_THE_WAREHOUSE_AND_DEPOSIT_ITEMS_ONLY_THE_CLAN_READER_CAN_TAKE_ITEMS; + + @ClientString(id = 4577, message = "Change a clan member's privilege level and manage the Clan Membership System (registering and editing the clan, approving membership, etc.)") + public static SystemMessageId CHANGE_A_CLAN_MEMBER_S_PRIVILEGE_LEVEL_AND_MANAGE_THE_CLAN_MEMBERSHIP_SYSTEM_REGISTERING_AND_EDITING_THE_CLAN_APPROVING_MEMBERSHIP_ETC; + + @ClientString(id = 4578, message = "Declare/Cancel a Clan War") + public static SystemMessageId DECLARE_CANCEL_A_CLAN_WAR; + + @ClientString(id = 4579, message = "Start the clan raid (Throne of Heroes)") + public static SystemMessageId START_THE_CLAN_RAID_THRONE_OF_HEROES; + + @ClientString(id = 4580, message = "Dismiss a clan member") + public static SystemMessageId DISMISS_A_CLAN_MEMBER; + + @ClientString(id = 4581, message = "Manage the clan crest and mark (only the alliance leader can control the alliance crest)") + public static SystemMessageId MANAGE_THE_CLAN_CREST_AND_MARK_ONLY_THE_ALLIANCE_LEADER_CAN_CONTROL_THE_ALLIANCE_CREST; + + @ClientString(id = 4582, message = "Buy clan items from the Clan Shop") + public static SystemMessageId BUY_CLAN_ITEMS_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4583, message = "Activate clan items in the Clan Shop, manage clan characteristics, and level up the clan") + public static SystemMessageId ACTIVATE_CLAN_ITEMS_IN_THE_CLAN_SHOP_MANAGE_CLAN_CHARACTERISTICS_AND_LEVEL_UP_THE_CLAN; + + @ClientString(id = 4584, message = "Summon the clan airship") + public static SystemMessageId SUMMON_THE_CLAN_AIRSHIP; + + @ClientString(id = 4585, message = "Access the Clan Hall") + public static SystemMessageId ACCESS_THE_CLAN_HALL; + + @ClientString(id = 4586, message = "Use the additional functions set in the Clan Hall") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CLAN_HALL; + + @ClientString(id = 4587, message = "Use the functions related with the Clan Hall bidding and auction") + public static SystemMessageId USE_THE_FUNCTIONS_RELATED_WITH_THE_CLAN_HALL_BIDDING_AND_AUCTION; + + @ClientString(id = 4588, message = "Expel outsiders from the Clan Hall") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CLAN_HALL; + + @ClientString(id = 4589, message = "Set additional functions to the Clan Hall") + public static SystemMessageId SET_ADDITIONAL_FUNCTIONS_TO_THE_CLAN_HALL; + + @ClientString(id = 4590, message = "Access the castle and open/close the castle gate") + public static SystemMessageId ACCESS_THE_CASTLE_AND_OPEN_CLOSE_THE_CASTLE_GATE; + + @ClientString(id = 4591, message = "Register, cancel, and approve the list of castle siege and defense warfare") + public static SystemMessageId REGISTER_CANCEL_AND_APPROVE_THE_LIST_OF_CASTLE_SIEGE_AND_DEFENSE_WARFARE; + + @ClientString(id = 4592, message = "Use the additional functions set in the castle/fortress") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CASTLE_FORTRESS; + + @ClientString(id = 4593, message = "Set functions such as enhancing traps or castle walls") + public static SystemMessageId SET_FUNCTIONS_SUCH_AS_ENHANCING_TRAPS_OR_CASTLE_WALLS; + + @ClientString(id = 4594, message = "Expel outsiders from the castle/fortress") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CASTLE_FORTRESS; + + @ClientString(id = 4595, message = "Manage the castle taxation, castle vault, and control the castle vault deposits/withdrawals") + public static SystemMessageId MANAGE_THE_CASTLE_TAXATION_CASTLE_VAULT_AND_CONTROL_THE_CASTLE_VAULT_DEPOSITS_WITHDRAWALS; + + @ClientString(id = 4596, message = "Hire/position mercenaries") + public static SystemMessageId HIRE_POSITION_MERCENARIES; + + @ClientString(id = 4597, message = "Manor settings and use blacksmith") + public static SystemMessageId MANOR_SETTINGS_AND_USE_BLACKSMITH; + + @ClientString(id = 4598, message = "Increase the number of clan members ($s1)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1; + + @ClientString(id = 4599, message = "Increase the number of clan members ($s1) and elite clan members ($s2)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1_AND_ELITE_CLAN_MEMBERS_S2; + + @ClientString(id = 4600, message = "Clan warehouse available") + public static SystemMessageId CLAN_WAREHOUSE_AVAILABLE; @ClientString(id = 4601, message = "- Great P. Def. and skillful Shield Defense
- Increased P. Def. for the whole party
- Protect party members") public static SystemMessageId GREAT_P_DEF_AND_SKILLFUL_SHIELD_DEFENSE_BR_INCREASED_P_DEF_FOR_THE_WHOLE_PARTY_BR_PROTECT_PARTY_MEMBERS; @@ -12984,6 +13326,84 @@ public final class SystemMessageId @ClientString(id = 4674, message = "Able to tap into the power of the wind god, Sayha's Seers can diffuse themselves into the wind for transport or defenses. Their talents account for their extraordinary survivability.") public static SystemMessageId ABLE_TO_TAP_INTO_THE_POWER_OF_THE_WIND_GOD_SAYHA_S_SEERS_CAN_DIFFUSE_THEMSELVES_INTO_THE_WIND_FOR_TRANSPORT_OR_DEFENSES_THEIR_TALENTS_ACCOUNT_FOR_THEIR_EXTRAORDINARY_SURVIVABILITY; + @ClientString(id = 4675, message = "Clan Bulletin") + public static SystemMessageId CLAN_BULLETIN; + + @ClientString(id = 4676, message = "Use the clan crest/title") + public static SystemMessageId USE_THE_CLAN_CREST_TITLE; + + @ClientString(id = 4677, message = "Participate in the Ceremony of Chaos") + public static SystemMessageId PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS; + + @ClientString(id = 4678, message = "Bid/own auctionable Clan Hall") + public static SystemMessageId BID_OWN_AUCTIONABLE_CLAN_HALL; + + @ClientString(id = 4679, message = "Create an alliance and declare a clan war") + public static SystemMessageId CREATE_AN_ALLIANCE_AND_DECLARE_A_CLAN_WAR; + + @ClientString(id = 4680, message = "Participate in clan hall wars, fortress battles, castle siege, and the Throne of Heroes") + public static SystemMessageId PARTICIPATE_IN_CLAN_HALL_WARS_FORTRESS_BATTLES_CASTLE_SIEGE_AND_THE_THRONE_OF_HEROES; + + @ClientString(id = 4681, message = "Bid/own provisional Clan Hall") + public static SystemMessageId BID_OWN_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4682, message = "Bid/own super advanced provisional Clan Hall") + public static SystemMessageId BID_OWN_SUPER_ADVANCED_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4683, message = "Earn Clan Development Points") + public static SystemMessageId EARN_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4684, message = "Quite good for a newbie!") + public static SystemMessageId QUITE_GOOD_FOR_A_NEWBIE; + + @ClientString(id = 4685, message = "Hey! Are you okay?") + public static SystemMessageId HEY_ARE_YOU_OKAY; + + @ClientString(id = 4686, message = "You cannot enter because a party member does not belong to your clan.") + public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_A_PARTY_MEMBER_DOES_NOT_BELONG_TO_YOUR_CLAN; + + @ClientString(id = 4687, message = "<$s1> activated. You can buy it from the Clan Shop.") + public static SystemMessageId S1_ACTIVATED_YOU_CAN_BUY_IT_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4688, message = "<$s1> purchased <$s2> from the Clan Shop.") + public static SystemMessageId S1_PURCHASED_S2_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4689, message = "Cannot use this function consecutively. Please try again later.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_CONSECUTIVELY_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4690, message = "Cannot use this function while casting a skill.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_CASTING_A_SKILL; + + @ClientString(id = 4691, message = "Not enough money for activation.") + public static SystemMessageId NOT_ENOUGH_MONEY_FOR_ACTIVATION; + + @ClientString(id = 4692, message = "You don't have enough money to buy the item or your inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_MONEY_TO_BUY_THE_ITEM_OR_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; + + @ClientString(id = 4693, message = "The clan level rose to $s1.") + public static SystemMessageId THE_CLAN_LEVEL_ROSE_TO_S1; + + @ClientString(id = 4694, message = "Earned the Clan Development Points.") + public static SystemMessageId EARNED_THE_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4695, message = "Your clan has added $s1 point(s) to its Clan Reputation.") + public static SystemMessageId YOUR_CLAN_HAS_ADDED_S1_POINT_S_TO_ITS_CLAN_REPUTATION_2; + + @ClientString(id = 4696, message = "Reset $s1 to default settings.") + public static SystemMessageId RESET_S1_TO_DEFAULT_SETTINGS; + + @ClientString(id = 4697, message = "Canceled.") + public static SystemMessageId CANCELED; + + @ClientString(id = 4698, message = "Changed the clan privileges.") + public static SystemMessageId CHANGED_THE_CLAN_PRIVILEGES; + + @ClientString(id = 4699, message = "Clan Shop available") + public static SystemMessageId CLAN_SHOP_AVAILABLE; + + @ClientString(id = 4700, message = "This dummy message is not displayed on the chat window.") + public static SystemMessageId THIS_DUMMY_MESSAGE_IS_NOT_DISPLAYED_ON_THE_CHAT_WINDOW; + @ClientString(id = 4701, message = "You can easily configure the graphic quality with presets. A higher value means more visual effects. Note that a high value may reduce game performance.") public static SystemMessageId YOU_CAN_EASILY_CONFIGURE_THE_GRAPHIC_QUALITY_WITH_PRESETS_A_HIGHER_VALUE_MEANS_MORE_VISUAL_EFFECTS_NOTE_THAT_A_HIGH_VALUE_MAY_REDUCE_GAME_PERFORMANCE; @@ -13491,8 +13911,8 @@ public final class SystemMessageId @ClientString(id = 4869, message = "View various records within the world.") public static SystemMessageId VIEW_VARIOUS_RECORDS_WITHIN_THE_WORLD; - @ClientString(id = 4870, message = "View instanced zone usage status.") - public static SystemMessageId VIEW_INSTANCED_ZONE_USAGE_STATUS; + @ClientString(id = 4870, message = "View Instance Zone usage status.") + public static SystemMessageId VIEW_INSTANCE_ZONE_USAGE_STATUS; @ClientString(id = 4871, message = "You can view clan information and request entry into clan.") public static SystemMessageId YOU_CAN_VIEW_CLAN_INFORMATION_AND_REQUEST_ENTRY_INTO_CLAN; @@ -13512,8 +13932,8 @@ public final class SystemMessageId @ClientString(id = 4876, message = "Display the names of another player's character and their servitor.") public static SystemMessageId DISPLAY_THE_NAMES_OF_ANOTHER_PLAYER_S_CHARACTER_AND_THEIR_SERVITOR; - @ClientString(id = 4877, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION_3; + @ClientString(id = 4877, message = "Reset the settings of the activated Chat tab.") + public static SystemMessageId RESET_THE_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; @ClientString(id = 4878, message = "Use the 1:1 inquiry service.") public static SystemMessageId USE_THE_1_1_INQUIRY_SERVICE; @@ -13566,6 +13986,42 @@ public final class SystemMessageId @ClientString(id = 4894, message = "Change the quality of the visual effect settings quickly according to the pre-configured setting value.") public static SystemMessageId CHANGE_THE_QUALITY_OF_THE_VISUAL_EFFECT_SETTINGS_QUICKLY_ACCORDING_TO_THE_PRE_CONFIGURED_SETTING_VALUE; + @ClientString(id = 4895, message = "Selects all hostile targets.") + public static SystemMessageId SELECTS_ALL_HOSTILE_TARGETS; + + @ClientString(id = 4896, message = "Selects a hostile monster (Excludes hostile PC's Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_MONSTER_EXCLUDES_HOSTILE_PC_S_SERVITORS; + + @ClientString(id = 4897, message = "Selects a hostile PC (Excludes hostile PC's Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_PC_EXCLUDES_HOSTILE_PC_S_SERVITORS; + + @ClientString(id = 4898, message = "Selects a friendly NPC.") + public static SystemMessageId SELECTS_A_FRIENDLY_NPC; + + @ClientString(id = 4899, message = "Hide the servitors of other PCs in peaceful zones.") + public static SystemMessageId HIDE_THE_SERVITORS_OF_OTHER_PCS_IN_PEACEFUL_ZONES; + + @ClientString(id = 4900, message = "Reject a regular user's invitation to a party.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4901, message = "Reject a friend's invitation to a party.") + public static SystemMessageId REJECT_A_FRIEND_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4902, message = "Reject a clan member's invitation to a party.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4903, message = "Turn on/off to reject party invitations from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_PARTY_INVITATIONS_FROM_EVERYONE; + + @ClientString(id = 4904, message = "Reject a regular user's friend request.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_FRIEND_REQUEST; + + @ClientString(id = 4905, message = "Reject a clan member's friend request.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_FRIEND_REQUEST; + + @ClientString(id = 4906, message = "Turn on/off to reject friend requests from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_FRIEND_REQUESTS_FROM_EVERYONE; + @ClientString(id = 5000, message = "Your account has been restricted due to an account theft issue. If you have an email address registered to your account information, please check your inbox for an email message with details. If you have no direct connection to account theft, please visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center and file a petition. For more details, please visit 1:1 Customer Service Center.") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_AN_ACCOUNT_THEFT_ISSUE_IF_YOU_HAVE_AN_EMAIL_ADDRESS_REGISTERED_TO_YOUR_ACCOUNT_INFORMATION_PLEASE_CHECK_YOUR_INBOX_FOR_AN_EMAIL_MESSAGE_WITH_DETAILS_IF_YOU_HAVE_NO_DIRECT_CONNECTION_TO_ACCOUNT_THEFT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_AND_FILE_A_PETITION_FOR_MORE_DETAILS_PLEASE_VISIT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; @@ -13770,8 +14226,8 @@ public final class SystemMessageId @ClientString(id = 5067, message = "If you fail authentication 3 times in a row, game access will be restricted for 30 minutes. Please try again later.") public static SystemMessageId IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 5068, message = "To request an NC OTP service,
run the cell phone NC OTP service
and enter the displayed NC OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") - public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_NC_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; + @ClientString(id = 5068, message = "To request an OTP service,
run the cell phone OTP service
and enter the displayed OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") + public static SystemMessageId TO_REQUEST_AN_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; @ClientString(id = 5069, message = "Please enter card number $s1.") public static SystemMessageId PLEASE_ENTER_CARD_NUMBER_FONT_COLOR_FFDF4C_S1_FONT; @@ -13785,8 +14241,134 @@ public final class SystemMessageId @ClientString(id = 5072, message = "You can receive the benefits provided to dormant customers on Lineage II Homepage > Dormant Membership Page(https://eu.4game.com).
Receive benefits for dormant customers and log into the game again!") public static SystemMessageId YOU_CAN_RECEIVE_THE_BENEFITS_PROVIDED_TO_DORMANT_CUSTOMERS_ON_FONT_COLOR_FFDF4C_LINEAGE_II_HOMEPAGE_DORMANT_MEMBERSHIP_PAGE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_EU_4GAME_COM_A_FONT_BR_RECEIVE_BENEFITS_FOR_DORMANT_CUSTOMERS_AND_LOG_INTO_THE_GAME_AGAIN; - @ClientString(id = 5142, message = "") - public static SystemMessageId EMPTY_26; + @ClientString(id = 5100, message = "Available only for members authorized to activate items") + public static SystemMessageId AVAILABLE_ONLY_FOR_MEMBERS_AUTHORIZED_TO_ACTIVATE_ITEMS; + + @ClientString(id = 5101, message = "No war in progress. The clan must be level 5 or higher to start a clan war.") + public static SystemMessageId NO_WAR_IN_PROGRESS_THE_CLAN_MUST_BE_LEVEL_5_OR_HIGHER_TO_START_A_CLAN_WAR; + + @ClientString(id = 5102, message = "Assigned the target to the selected division.") + public static SystemMessageId ASSIGNED_THE_TARGET_TO_THE_SELECTED_DIVISION; + + @ClientString(id = 5103, message = "Changed the target's privileges.") + public static SystemMessageId CHANGED_THE_TARGET_S_PRIVILEGES; + + @ClientString(id = 5104, message = "Cannot use this function while using a Private Store.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_USING_A_PRIVATE_STORE; + + @ClientString(id = 5105, message = "Cannot report a character who is fighting in a duel.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_IS_FIGHTING_IN_A_DUEL; + + @ClientString(id = 5106, message = "No Spirits are available.") + public static SystemMessageId NO_SPIRITS_ARE_AVAILABLE; + + @ClientString(id = 5107, message = "<$s1> will be your attack attribute from now on.") + public static SystemMessageId S1_WILL_BE_YOUR_ATTACK_ATTRIBUTE_FROM_NOW_ON; + + @ClientString(id = 5108, message = "<$s1> will evolve to <$s2-Star>. $s3-Star Spirits can grow up to Lv. $s4.") + public static SystemMessageId S1_WILL_EVOLVE_TO_S2_STAR_S3_STAR_SPIRITS_CAN_GROW_UP_TO_LV_S4; + + @ClientString(id = 5109, message = "<$s1> evolved to <$s2-Star>!") + public static SystemMessageId S1_EVOLVED_TO_S2_STAR; + + @ClientString(id = 5110, message = "<$s1, $s2-Star> card will be extracted. After the extraction, the Spirit will return to the egg state.") + public static SystemMessageId S1_S2_STAR_CARD_WILL_BE_EXTRACTED_AFTER_THE_EXTRACTION_THE_SPIRIT_WILL_RETURN_TO_THE_EGG_STATE; + + @ClientString(id = 5111, message = "Extracted <$s1, $s2-Star> card successfully!") + public static SystemMessageId EXTRACTED_S1_S2_STAR_CARD_SUCCESSFULLY; + + @ClientString(id = 5112, message = "Register a card you want to drain. $s1-Star Spirits can grow up to Lv. $s2.") + public static SystemMessageId REGISTER_A_CARD_YOU_WANT_TO_DRAIN_S1_STAR_SPIRITS_CAN_GROW_UP_TO_LV_S2; + + @ClientString(id = 5113, message = "<$s1, $s2-Star> card will be drained. $s3-Star Spirit scan grow up to Lv. $s4.") + public static SystemMessageId S1_S2_STAR_CARD_WILL_BE_DRAINED_S3_STAR_SPIRIT_SCAN_GROW_UP_TO_LV_S4; + + @ClientString(id = 5114, message = "Drain successful!") + public static SystemMessageId DRAIN_SUCCESSFUL; + + @ClientString(id = 5115, message = "Characteristics Points will be used to enhance the stats of <$s1>. You can retrieve these points by resetting the stats. Are you sure you want to continue?") + public static SystemMessageId CHARACTERISTICS_POINTS_WILL_BE_USED_TO_ENHANCE_THE_STATS_OF_S1_YOU_CAN_RETRIEVE_THESE_POINTS_BY_RESETTING_THE_STATS_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5116, message = "Characteristics were applied successfully.") + public static SystemMessageId CHARACTERISTICS_WERE_APPLIED_SUCCESSFULLY; + + @ClientString(id = 5117, message = "To reset the characteristics of the selected spirit, the following ingredients will be consumed, and <$s1> Characteristics Points will be lost. Are you sure you want to continue?") + public static SystemMessageId TO_RESET_THE_CHARACTERISTICS_OF_THE_SELECTED_SPIRIT_THE_FOLLOWING_INGREDIENTS_WILL_BE_CONSUMED_AND_S1_CHARACTERISTICS_POINTS_WILL_BE_LOST_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5118, message = "Reset the selected Spirit's Characteristics successfully.") + public static SystemMessageId RESET_THE_SELECTED_SPIRIT_S_CHARACTERISTICS_SUCCESSFULLY; + + @ClientString(id = 5119, message = "Cannot report a character who has signed up for Olympiad.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_HAS_SIGNED_UP_FOR_OLYMPIAD; + + @ClientString(id = 5120, message = "Not allowed to sign up for Olympiad while the report of illegal program users is being verified.") + public static SystemMessageId NOT_ALLOWED_TO_SIGN_UP_FOR_OLYMPIAD_WHILE_THE_REPORT_OF_ILLEGAL_PROGRAM_USERS_IS_BEING_VERIFIED; + + @ClientString(id = 5121, message = "The item has been sealed.") + public static SystemMessageId THE_ITEM_HAS_BEEN_SEALED; + + @ClientString(id = 5122, message = "The seal has been released from the item.") + public static SystemMessageId THE_SEAL_HAS_BEEN_RELEASED_FROM_THE_ITEM; + + @ClientString(id = 5123, message = "Not allowed because the item is sealed. Try again after unsealing the item.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_THE_ITEM_IS_SEALED_TRY_AGAIN_AFTER_UNSEALING_THE_ITEM; + + @ClientString(id = 5124, message = "$s1 cannot be sealed.") + public static SystemMessageId S1_CANNOT_BE_SEALED; + + @ClientString(id = 5125, message = "Not allowed because $s1 is not sealed.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_S1_IS_NOT_SEALED; + + @ClientString(id = 5126, message = "Canceled the use of the Seal/Release Seal Scroll.") + public static SystemMessageId CANCELED_THE_USE_OF_THE_SEAL_RELEASE_SEAL_SCROLL; + + @ClientString(id = 5127, message = "Sealing/unsealing is in progress. Please try again after completing this process.") + public static SystemMessageId SEALING_UNSEALING_IS_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_PROCESS; + + @ClientString(id = 5128, message = "You cannot seal/unseal an item while you're running a Private Store or Private Workshop.") + public static SystemMessageId YOU_CANNOT_SEAL_UNSEAL_AN_ITEM_WHILE_YOU_RE_RUNNING_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP; + + @ClientString(id = 5129, message = "Select an item you want to seal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_SEAL; + + @ClientString(id = 5130, message = "The selected item will be sealed.\\nTo unseal it, you must go through the identify verification process.") + public static SystemMessageId THE_SELECTED_ITEM_WILL_BE_SEALED_NTO_UNSEAL_IT_YOU_MUST_GO_THROUGH_THE_IDENTIFY_VERIFICATION_PROCESS; + + @ClientString(id = 5131, message = "\\nYou can release the seal by requesting N Shop for the Release Seal Scroll Box.") + public static SystemMessageId NOTE_ON_SEALING_NYOU_CAN_RELEASE_THE_SEAL_BY_REQUESTING_N_SHOP_FOR_THE_RELEASE_SEAL_SCROLL_BOX; + + @ClientString(id = 5132, message = "Select an item you want to unseal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_UNSEAL; + + @ClientString(id = 5133, message = "The seal will be removed from the selected item.") + public static SystemMessageId THE_SEAL_WILL_BE_REMOVED_FROM_THE_SELECTED_ITEM; + + @ClientString(id = 5134, message = "Cannot grow any more.") + public static SystemMessageId CANNOT_GROW_ANY_MORE; + + @ClientString(id = 5135, message = "Used all the registered items.") + public static SystemMessageId USED_ALL_THE_REGISTERED_ITEMS; + + @ClientString(id = 5136, message = "$s1 Attribute Attack Power") + public static SystemMessageId S1_ATTRIBUTE_ATTACK_POWER; + + @ClientString(id = 5137, message = "$s1 Attribute Defense") + public static SystemMessageId S1_ATTRIBUTE_DEFENSE; + + @ClientString(id = 5138, message = "$s1 Attribute Critical Rate") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_RATE; + + @ClientString(id = 5139, message = "$s1 Attribute Critical Damage") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_DAMAGE; + + @ClientString(id = 5140, message = "$s1 will be used. You can use $s2 times more.") + public static SystemMessageId S1_WILL_BE_USED_YOU_CAN_USE_S2_TIMES_MORE; + + @ClientString(id = 5141, message = "$s1 is used. $s1 will be lost because it has been used the maximum amount of times.") + public static SystemMessageId S1_IS_USED_S1_WILL_BE_LOST_BECAUSE_IT_HAS_BEEN_USED_THE_MAXIMUM_AMOUNT_OF_TIMES; + + @ClientString(id = 5142, message = "Level $s1 Reward") + public static SystemMessageId LEVEL_S1_REWARD; @ClientString(id = 5300, message = "Your account has been restricted due to an account theft issue. If you have an email address registered to your account information, please check your inbox for an email message with details. If you have no direct connection to account theft, please visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center and file a petition. For more details, please visit 1:1 Chat in Customer Service Center.") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_AN_ACCOUNT_THEFT_ISSUE_IF_YOU_HAVE_AN_EMAIL_ADDRESS_REGISTERED_TO_YOUR_ACCOUNT_INFORMATION_PLEASE_CHECK_YOUR_INBOX_FOR_AN_EMAIL_MESSAGE_WITH_DETAILS_IF_YOU_HAVE_NO_DIRECT_CONNECTION_TO_ACCOUNT_THEFT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_AND_FILE_A_PETITION_FOR_MORE_DETAILS_PLEASE_VISIT_FONT_COLOR_FFDF4C_1_1_CHAT_IN_CUSTOMER_SERVICE_CENTER_FONT; @@ -13882,7 +14464,7 @@ public final class SystemMessageId public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_YOUR_ABUSE_OF_SYSTEM_WEAKNESSES_OR_BUGS_ABUSING_BUGS_CAN_CAUSE_GRIEVOUS_SYSTEM_ERRORS_OR_DESTROY_THE_GAME_BALANCE_FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_3; @ClientString(id = 5331, message = "Your account is temporarily restricted due to a complaint filed in the process of name changing. For more information,visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_RESTRICTED_DUE_TO_A_COMPLAINT_FILED_IN_THE_PROCESS_OF_NAME_CHANGING_FOR_MORE_INFORMATIONVISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_RESTRICTED_DUE_TO_A_COMPLAINT_FILED_IN_THE_PROCESS_OF_NAME_CHANGING_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; @ClientString(id = 5332, message = "You have not used your account for a long time. If you have not logged into the game for a set period of time, you will be able to log in via plaync homepage (id.plaync.com/account/dormant/index) https://id.plaync.com/account/dormant/index'>id.plaync.com/account/dormant/index).") public static SystemMessageId YOU_HAVE_NOT_USED_YOUR_ACCOUNT_FOR_A_LONG_TIME_IF_YOU_HAVE_NOT_LOGGED_INTO_THE_GAME_FOR_A_SET_PERIOD_OF_TIME_YOU_WILL_BE_ABLE_TO_LOG_IN_VIA_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_FONT; @@ -13890,6 +14472,9 @@ public final class SystemMessageId @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, please visit the Support Center on the official website (https://support.4game.com).") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; + @ClientString(id = 5334, message = "Your account is temporarily banned because a suspicious attempt to sign into your account was detected. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_BANNED_BECAUSE_A_SUSPICIOUS_ATTEMPT_TO_SIGN_INTO_YOUR_ACCOUNT_WAS_DETECTED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; + @ClientString(id = 5501, message = "$s1 is killed by $s2.") public static SystemMessageId S1_IS_KILLED_BY_S2; @@ -14004,6 +14589,93 @@ public final class SystemMessageId @ClientString(id = 5538, message = "You must be in a group to access the Group channel.") public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL; + @ClientString(id = 5539, message = "Will you accept $s1‘s group invitation?") + public static SystemMessageId WILL_YOU_ACCEPT_S1_S_GROUP_INVITATION; + + @ClientString(id = 5540, message = "$s1 joined the group.") + public static SystemMessageId S1_JOINED_THE_GROUP; + + @ClientString(id = 5541, message = "$s1 has declined to join the group.") + public static SystemMessageId S1_HAS_DECLINED_TO_JOIN_THE_GROUP; + + @ClientString(id = 5542, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND; + + @ClientString(id = 5543, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND_2; + + @ClientString(id = 5544, message = "The player belongs to another group.") + public static SystemMessageId THE_PLAYER_BELONGS_TO_ANOTHER_GROUP; + + @ClientString(id = 5545, message = "Failed to invite the player as they are fighting in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_FIGHTING_IN_THE_ARENA; + + @ClientString(id = 5546, message = "Failed to invite the player as they are preparing to fight in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_PREPARING_TO_FIGHT_IN_THE_ARENA; + + @ClientString(id = 5547, message = "Cannot find the target.") + public static SystemMessageId CANNOT_FIND_THE_TARGET; + + @ClientString(id = 5548, message = "You cannot invite yourself.") + public static SystemMessageId YOU_CANNOT_INVITE_YOURSELF; + + @ClientString(id = 5549, message = "Select a player you want to invite to the group.") + public static SystemMessageId SELECT_A_PLAYER_YOU_WANT_TO_INVITE_TO_THE_GROUP; + + @ClientString(id = 5550, message = "Cannot invite a new player because your group is full.") + public static SystemMessageId CANNOT_INVITE_A_NEW_PLAYER_BECAUSE_YOUR_GROUP_IS_FULL; + + @ClientString(id = 5551, message = "$s1 left the group.") + public static SystemMessageId S1_LEFT_THE_GROUP; + + @ClientString(id = 5552, message = "The group was disbanded.") + public static SystemMessageId THE_GROUP_WAS_DISBANDED; + + @ClientString(id = 5553, message = "You don't belong to any group.") + public static SystemMessageId YOU_DON_T_BELONG_TO_ANY_GROUP; + + @ClientString(id = 5554, message = "Dismissed $s1 from the group.") + public static SystemMessageId DISMISSED_S1_FROM_THE_GROUP; + + @ClientString(id = 5555, message = "Only the group leader can dismiss a group member.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DISMISS_A_GROUP_MEMBER; + + @ClientString(id = 5556, message = "You cannot dismiss yourself.") + public static SystemMessageId YOU_CANNOT_DISMISS_YOURSELF_2; + + @ClientString(id = 5557, message = "$s1 is now the group leader.") + public static SystemMessageId S1_IS_NOW_THE_GROUP_LEADER; + + @ClientString(id = 5558, message = "Only the group leader can delegate the privileges.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DELEGATE_THE_PRIVILEGES; + + @ClientString(id = 5559, message = "Slow down, you are already the party leader.") + public static SystemMessageId SLOW_DOWN_YOU_ARE_ALREADY_THE_PARTY_LEADER_2; + + @ClientString(id = 5560, message = "You can delegate the privileges only to a group member.") + public static SystemMessageId YOU_CAN_DELEGATE_THE_PRIVILEGES_ONLY_TO_A_GROUP_MEMBER; + + @ClientString(id = 5561, message = "You must be in a group to access the Group channel.") + public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL_2; + + @ClientString(id = 5562, message = "Input a name and press the Enter key to invite") + public static SystemMessageId INPUT_A_NAME_AND_PRESS_THE_ENTER_KEY_TO_INVITE; + + @ClientString(id = 5563, message = "You cannot resurrect while you're signing up for battle.") + public static SystemMessageId YOU_CANNOT_RESURRECT_WHILE_YOU_RE_SIGNING_UP_FOR_BATTLE; + + @ClientString(id = 5564, message = "You cannot apply as some of your group members are still in the arena.") + public static SystemMessageId YOU_CANNOT_APPLY_AS_SOME_OF_YOUR_GROUP_MEMBERS_ARE_STILL_IN_THE_ARENA; + + @ClientString(id = 5565, message = "Liberated $s1 Stage $s2.") + public static SystemMessageId LIBERATED_S1_STAGE_S2; + + @ClientString(id = 5566, message = "The seal of the monster can be removed.") + public static SystemMessageId THE_SEAL_OF_THE_MONSTER_CAN_BE_REMOVED; + + @ClientString(id = 5567, message = "$s1: $s2! Be careful!") + public static SystemMessageId S1_S2_BE_CAREFUL; + @ClientString(id = 6001, message = "The item has been successfully purchased.") public static SystemMessageId THE_ITEM_HAS_BEEN_SUCCESSFULLY_PURCHASED_2; @@ -14202,11 +14874,11 @@ public final class SystemMessageId @ClientString(id = 6066, message = "If you cancel sending, the gift item cannot be sent again, and it will be returned to your character.") public static SystemMessageId IF_YOU_CANCEL_SENDING_THE_GIFT_ITEM_CANNOT_BE_SENT_AGAIN_AND_IT_WILL_BE_RETURNED_TO_YOUR_CHARACTER; - @ClientString(id = 6067, message = "Vitality is applied, and you receive $s1 bonus XP. A maximum of $s2 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") - public static SystemMessageId VITALITY_IS_APPLIED_AND_YOU_RECEIVE_S1_BONUS_XP_A_MAXIMUM_OF_S2_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; + @ClientString(id = 6067, message = "Saiha's Grace is applied, and you receive $s1 bonus XP. A maximum of $s2 Saiha's Grace item(s) can be used per week.") + public static SystemMessageId SAIHA_S_GRACE_IS_APPLIED_AND_YOU_RECEIVE_S1_BONUS_XP_A_MAXIMUM_OF_S2_SAIHA_S_GRACE_ITEM_S_CAN_BE_USED_PER_WEEK; - @ClientString(id = 6068, message = "Vitality is not yet applied. Vitality is replenished every Wednesday at 6:30 a.m. A maximum of $s1 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") - public static SystemMessageId VITALITY_IS_NOT_YET_APPLIED_VITALITY_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_A_MAXIMUM_OF_S1_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; + @ClientString(id = 6068, message = "Saiha's Grace is not yet applied. Saiha's Grace is replenished every Wednesday at 6:30 a.m. A maximum of $s1 Saiha's Grace item(s) can be used per week.") + public static SystemMessageId SAIHA_S_GRACE_IS_NOT_YET_APPLIED_SAIHA_S_GRACE_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_A_MAXIMUM_OF_S1_SAIHA_S_GRACE_ITEM_S_CAN_BE_USED_PER_WEEK; @ClientString(id = 6069, message = "You used the Adventurer's Song. Today you can use $s1 more. The use limit is reset daily at 6:30 a.m.") public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_TODAY_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_DAILY_AT_6_30_A_M; @@ -14220,8 +14892,8 @@ public final class SystemMessageId @ClientString(id = 6072, message = "$s1%% XP Rate, Bonus XP is applied.") public static SystemMessageId S1_XP_RATE_BONUS_XP_IS_APPLIED; - @ClientString(id = 6073, message = "$s1 vitality items can be used.") - public static SystemMessageId S1_VITALITY_ITEMS_CAN_BE_USED; + @ClientString(id = 6073, message = "$s1 Saiha's Grace items can be used.") + public static SystemMessageId S1_SAIHA_S_GRACE_ITEMS_CAN_BE_USED; @ClientString(id = 6074, message = "The name of the character cannot be in English.") public static SystemMessageId THE_NAME_OF_THE_CHARACTER_CANNOT_BE_IN_ENGLISH; @@ -14334,8 +15006,8 @@ public final class SystemMessageId @ClientString(id = 6110, message = "Hair Accessories only.") public static SystemMessageId HAIR_ACCESSORIES_ONLY; - @ClientString(id = 6111, message = "The number of Vitality effects usable during this period has increased by $s1. You can currently use $s2 Vitality items.") - public static SystemMessageId THE_NUMBER_OF_VITALITY_EFFECTS_USABLE_DURING_THIS_PERIOD_HAS_INCREASED_BY_S1_YOU_CAN_CURRENTLY_USE_S2_VITALITY_ITEMS; + @ClientString(id = 6111, message = "The number of Saiha's Grace effects usable during this period has increased by $s1. You can currently use $s2 Saiha's Grace items.") + public static SystemMessageId THE_NUMBER_OF_SAIHA_S_GRACE_EFFECTS_USABLE_DURING_THIS_PERIOD_HAS_INCREASED_BY_S1_YOU_CAN_CURRENTLY_USE_S2_SAIHA_S_GRACE_ITEMS; @ClientString(id = 6112, message = "You cannot restore items that have not been modified.") public static SystemMessageId YOU_CANNOT_RESTORE_ITEMS_THAT_HAVE_NOT_BEEN_MODIFIED; @@ -14553,8 +15225,8 @@ public final class SystemMessageId @ClientString(id = 6183, message = "Your VIP rank is too low to receive the reward.") public static SystemMessageId YOUR_VIP_RANK_IS_TOO_LOW_TO_RECEIVE_THE_REWARD; - @ClientString(id = 6184, message = "New Field for Addition") - public static SystemMessageId NEW_FIELD_FOR_ADDITION; + @ClientString(id = 6184, message = "Items in the Pet Inventory cannot be used as offerings.") + public static SystemMessageId ITEMS_IN_THE_PET_INVENTORY_CANNOT_BE_USED_AS_OFFERINGS; @ClientString(id = 6185, message = "You can make another report in $s1-minute(s). You have $s2 point(s) remaining on this account.") public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MINUTE_S_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT_2; @@ -14565,10 +15237,10 @@ public final class SystemMessageId @ClientString(id = 6187, message = "Cannot continue because another report is being processed. Please try again after entering the verification number.") public static SystemMessageId CANNOT_CONTINUE_BECAUSE_ANOTHER_REPORT_IS_BEING_PROCESSED_PLEASE_TRY_AGAIN_AFTER_ENTERING_THE_VERIFICATION_NUMBER; - @ClientString(id = 6188, message = "New Field for Addition") - public static SystemMessageId NEW_FIELD_FOR_ADDITION_2; + @ClientString(id = 6188, message = "You do not meet the level requirements to receive the Attendance Reward. Please check the required level. (You can redeem your reward 30 minutes after logging in.)") + public static SystemMessageId YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENTS_TO_RECEIVE_THE_ATTENDANCE_REWARD_PLEASE_CHECK_THE_REQUIRED_LEVEL_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; - @ClientString(id = 6189, message = "You must receive the reward in a given day to receive the next day's reward.\\\\nRewards received once cannot be reverted back.") + @ClientString(id = 6189, message = "You must receive the reward in a given day to receive the next day's reward.\\nRewards received once cannot be reverted back.") public static SystemMessageId YOU_MUST_RECEIVE_THE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_NREWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6190, message = "This item cannot be used as an offering.") @@ -14617,7 +15289,7 @@ public final class SystemMessageId public static SystemMessageId C1_HAS_SUCCEEDED_IN_CRAFTING_S2; @ClientString(id = 6205, message = "") - public static SystemMessageId EMPTY_27; + public static SystemMessageId EMPTY_10; @ClientString(id = 6206, message = "Use offerings to increase the success rate to 100%. At the moment the success rate is $s1%%. Do you want to continue?") public static SystemMessageId USE_OFFERINGS_TO_INCREASE_THE_SUCCESS_RATE_TO_100_AT_THE_MOMENT_THE_SUCCESS_RATE_IS_S1_DO_YOU_WANT_TO_CONTINUE; @@ -14716,7 +15388,7 @@ public final class SystemMessageId public static SystemMessageId THE_NUMBER_OF_ITEMS_YOU_ARE_TRYING_TO_PURCHASE_IS_LIMITED_FOR_EACH_ACCOUNT_YOU_HAVE_PURCHASED_THE_MAXIMUM_QUANTITY_AND_CANNOT_PURCHASE_MORE; @ClientString(id = 6824, message = "") - public static SystemMessageId EMPTY_28; + public static SystemMessageId EMPTY_11; @ClientString(id = 6825, message = "The client will be closed. Do you want to continue?") public static SystemMessageId THE_CLIENT_WILL_BE_CLOSED_DO_YOU_WANT_TO_CONTINUE; @@ -14743,7 +15415,7 @@ public final class SystemMessageId public static SystemMessageId NO_ITEMS_WILL_BE_DROPPED_IN_THIS_LOCATION_UNTIL_YOU_COLLECT_DROPPED_ONES; @ClientString(id = 6833, message = "") - public static SystemMessageId EMPTY_29; + public static SystemMessageId EMPTY_12; @ClientString(id = 6834, message = "The sanctions were imposed on the character.
Please, click on the icon below to find out the details.") public static SystemMessageId THE_SANCTIONS_WERE_IMPOSED_ON_THE_CHARACTER_BR_PLEASE_CLICK_ON_THE_ICON_BELOW_TO_FIND_OUT_THE_DETAILS; @@ -14751,1424 +15423,1430 @@ public final class SystemMessageId @ClientString(id = 6835, message = "According to the User Agreement (https://eu.4game.com/l2ceu-user-agreement/), the game was temporarily blocked. Please, contact support to find out the details.") public static SystemMessageId ACCORDING_TO_THE_USER_AGREEMENT_HTTPS_EU_4GAME_COM_L2CEU_USER_AGREEMENT_THE_GAME_WAS_TEMPORARILY_BLOCKED_PLEASE_CONTACT_SUPPORT_TO_FIND_OUT_THE_DETAILS; - @ClientString(id = 6836, message = "The security card service is terminated and the game can be accessed after revoking the security card. To protect your account, please close your secure card and apply for Google Authenticator.") - public static SystemMessageId THE_SECURITY_CARD_SERVICE_IS_TERMINATED_AND_THE_GAME_CAN_BE_ACCESSED_AFTER_REVOKING_THE_SECURITY_CARD_TO_PROTECT_YOUR_ACCOUNT_PLEASE_CLOSE_YOUR_SECURE_CARD_AND_APPLY_FOR_GOOGLE_AUTHENTICATOR; + @ClientString(id = 6836, message = "The security card service has ended so you will be able to connect to the game after cancelling the security card. In order to protect your account, please cancel the security card and request Google OTP.") + public static SystemMessageId THE_SECURITY_CARD_SERVICE_HAS_ENDED_SO_YOU_WILL_BE_ABLE_TO_CONNECT_TO_THE_GAME_AFTER_CANCELLING_THE_SECURITY_CARD_IN_ORDER_TO_PROTECT_YOUR_ACCOUNT_PLEASE_CANCEL_THE_SECURITY_CARD_AND_REQUEST_GOOGLE_OTP; + + @ClientString(id = 6837, message = "Please enter the OTP number. The numbers change for each login.") + public static SystemMessageId PLEASE_ENTER_THE_OTP_NUMBER_THE_NUMBERS_CHANGE_FOR_EACH_LOGIN; + + @ClientString(id = 6838, message = "The Secret Supplies of the Balthus Knights arrived! Someone received $s1.") + public static SystemMessageId THE_SECRET_SUPPLIES_OF_THE_BALTHUS_KNIGHTS_ARRIVED_SOMEONE_RECEIVED_S1; @ClientString(id = 7001, message = "") - public static SystemMessageId EMPTY_30; + public static SystemMessageId EMPTY_13; @ClientString(id = 7002, message = "") - public static SystemMessageId EMPTY_31; + public static SystemMessageId EMPTY_14; @ClientString(id = 7003, message = "") - public static SystemMessageId EMPTY_32; + public static SystemMessageId EMPTY_15; @ClientString(id = 7004, message = "") - public static SystemMessageId EMPTY_33; + public static SystemMessageId EMPTY_16; @ClientString(id = 7005, message = "") - public static SystemMessageId EMPTY_34; + public static SystemMessageId EMPTY_17; @ClientString(id = 7006, message = "") - public static SystemMessageId EMPTY_35; + public static SystemMessageId EMPTY_18; @ClientString(id = 7007, message = "") - public static SystemMessageId EMPTY_36; + public static SystemMessageId EMPTY_19; @ClientString(id = 7008, message = "") - public static SystemMessageId EMPTY_37; + public static SystemMessageId EMPTY_20; @ClientString(id = 7009, message = "") - public static SystemMessageId EMPTY_38; + public static SystemMessageId EMPTY_21; @ClientString(id = 7010, message = "") - public static SystemMessageId EMPTY_39; + public static SystemMessageId EMPTY_22; @ClientString(id = 7011, message = "") - public static SystemMessageId EMPTY_40; + public static SystemMessageId EMPTY_23; @ClientString(id = 7012, message = "") - public static SystemMessageId EMPTY_41; + public static SystemMessageId EMPTY_24; @ClientString(id = 7013, message = "") - public static SystemMessageId EMPTY_42; + public static SystemMessageId EMPTY_25; @ClientString(id = 7014, message = "") - public static SystemMessageId EMPTY_43; + public static SystemMessageId EMPTY_26; @ClientString(id = 7015, message = "") - public static SystemMessageId EMPTY_44; + public static SystemMessageId EMPTY_27; @ClientString(id = 7016, message = "") - public static SystemMessageId EMPTY_45; + public static SystemMessageId EMPTY_28; @ClientString(id = 7017, message = "") - public static SystemMessageId EMPTY_46; + public static SystemMessageId EMPTY_29; @ClientString(id = 7018, message = "") - public static SystemMessageId EMPTY_47; + public static SystemMessageId EMPTY_30; @ClientString(id = 7019, message = "") - public static SystemMessageId EMPTY_48; + public static SystemMessageId EMPTY_31; @ClientString(id = 7020, message = "") - public static SystemMessageId EMPTY_49; + public static SystemMessageId EMPTY_32; @ClientString(id = 7021, message = "") - public static SystemMessageId EMPTY_50; + public static SystemMessageId EMPTY_33; @ClientString(id = 7022, message = "") - public static SystemMessageId EMPTY_51; + public static SystemMessageId EMPTY_34; @ClientString(id = 7023, message = "") - public static SystemMessageId EMPTY_52; + public static SystemMessageId EMPTY_35; @ClientString(id = 7024, message = "") - public static SystemMessageId EMPTY_53; + public static SystemMessageId EMPTY_36; @ClientString(id = 7025, message = "") - public static SystemMessageId EMPTY_54; + public static SystemMessageId EMPTY_37; @ClientString(id = 7026, message = "") - public static SystemMessageId EMPTY_55; + public static SystemMessageId EMPTY_38; @ClientString(id = 7027, message = "") - public static SystemMessageId EMPTY_56; + public static SystemMessageId EMPTY_39; @ClientString(id = 7028, message = "") - public static SystemMessageId EMPTY_57; + public static SystemMessageId EMPTY_40; @ClientString(id = 7029, message = "") - public static SystemMessageId EMPTY_58; + public static SystemMessageId EMPTY_41; @ClientString(id = 7030, message = "") - public static SystemMessageId EMPTY_59; + public static SystemMessageId EMPTY_42; @ClientString(id = 7031, message = "") - public static SystemMessageId EMPTY_60; + public static SystemMessageId EMPTY_43; @ClientString(id = 7032, message = "") - public static SystemMessageId EMPTY_61; + public static SystemMessageId EMPTY_44; @ClientString(id = 7033, message = "") - public static SystemMessageId EMPTY_62; + public static SystemMessageId EMPTY_45; @ClientString(id = 7034, message = "") - public static SystemMessageId EMPTY_63; + public static SystemMessageId EMPTY_46; @ClientString(id = 7035, message = "") - public static SystemMessageId EMPTY_64; + public static SystemMessageId EMPTY_47; @ClientString(id = 7036, message = "") - public static SystemMessageId EMPTY_65; + public static SystemMessageId EMPTY_48; @ClientString(id = 7037, message = "") - public static SystemMessageId EMPTY_66; + public static SystemMessageId EMPTY_49; @ClientString(id = 7038, message = "") - public static SystemMessageId EMPTY_67; + public static SystemMessageId EMPTY_50; @ClientString(id = 7039, message = "") - public static SystemMessageId EMPTY_68; + public static SystemMessageId EMPTY_51; @ClientString(id = 7040, message = "") - public static SystemMessageId EMPTY_69; + public static SystemMessageId EMPTY_52; @ClientString(id = 7041, message = "") - public static SystemMessageId EMPTY_70; + public static SystemMessageId EMPTY_53; @ClientString(id = 7042, message = "") - public static SystemMessageId EMPTY_71; + public static SystemMessageId EMPTY_54; @ClientString(id = 7043, message = "") - public static SystemMessageId EMPTY_72; + public static SystemMessageId EMPTY_55; @ClientString(id = 7044, message = "") - public static SystemMessageId EMPTY_73; + public static SystemMessageId EMPTY_56; @ClientString(id = 7045, message = "") - public static SystemMessageId EMPTY_74; + public static SystemMessageId EMPTY_57; @ClientString(id = 7046, message = "") - public static SystemMessageId EMPTY_75; + public static SystemMessageId EMPTY_58; @ClientString(id = 7047, message = "") - public static SystemMessageId EMPTY_76; + public static SystemMessageId EMPTY_59; @ClientString(id = 7048, message = "") - public static SystemMessageId EMPTY_77; + public static SystemMessageId EMPTY_60; @ClientString(id = 7049, message = "") - public static SystemMessageId EMPTY_78; + public static SystemMessageId EMPTY_61; @ClientString(id = 7050, message = "") - public static SystemMessageId EMPTY_79; + public static SystemMessageId EMPTY_62; @ClientString(id = 7051, message = "") - public static SystemMessageId EMPTY_80; + public static SystemMessageId EMPTY_63; @ClientString(id = 7052, message = "") - public static SystemMessageId EMPTY_81; + public static SystemMessageId EMPTY_64; @ClientString(id = 7053, message = "") - public static SystemMessageId EMPTY_82; + public static SystemMessageId EMPTY_65; @ClientString(id = 7054, message = "") - public static SystemMessageId EMPTY_83; + public static SystemMessageId EMPTY_66; @ClientString(id = 7055, message = "") - public static SystemMessageId EMPTY_84; + public static SystemMessageId EMPTY_67; @ClientString(id = 7056, message = "") - public static SystemMessageId EMPTY_85; + public static SystemMessageId EMPTY_68; @ClientString(id = 7057, message = "") - public static SystemMessageId EMPTY_86; + public static SystemMessageId EMPTY_69; @ClientString(id = 7058, message = "") - public static SystemMessageId EMPTY_87; + public static SystemMessageId EMPTY_70; @ClientString(id = 7059, message = "") - public static SystemMessageId EMPTY_88; + public static SystemMessageId EMPTY_71; @ClientString(id = 7060, message = "") - public static SystemMessageId EMPTY_89; + public static SystemMessageId EMPTY_72; @ClientString(id = 7061, message = "") - public static SystemMessageId EMPTY_90; + public static SystemMessageId EMPTY_73; @ClientString(id = 7062, message = "") - public static SystemMessageId EMPTY_91; + public static SystemMessageId EMPTY_74; @ClientString(id = 7063, message = "") - public static SystemMessageId EMPTY_92; + public static SystemMessageId EMPTY_75; @ClientString(id = 7064, message = "") - public static SystemMessageId EMPTY_93; + public static SystemMessageId EMPTY_76; @ClientString(id = 7065, message = "") - public static SystemMessageId EMPTY_94; + public static SystemMessageId EMPTY_77; @ClientString(id = 7066, message = "") - public static SystemMessageId EMPTY_95; + public static SystemMessageId EMPTY_78; @ClientString(id = 7067, message = "") - public static SystemMessageId EMPTY_96; + public static SystemMessageId EMPTY_79; @ClientString(id = 7068, message = "") - public static SystemMessageId EMPTY_97; + public static SystemMessageId EMPTY_80; @ClientString(id = 7069, message = "") - public static SystemMessageId EMPTY_98; + public static SystemMessageId EMPTY_81; @ClientString(id = 7070, message = "") - public static SystemMessageId EMPTY_99; + public static SystemMessageId EMPTY_82; @ClientString(id = 7071, message = "") - public static SystemMessageId EMPTY_100; + public static SystemMessageId EMPTY_83; @ClientString(id = 7072, message = "") - public static SystemMessageId EMPTY_101; + public static SystemMessageId EMPTY_84; @ClientString(id = 7073, message = "") - public static SystemMessageId EMPTY_102; + public static SystemMessageId EMPTY_85; @ClientString(id = 7074, message = "") - public static SystemMessageId EMPTY_103; + public static SystemMessageId EMPTY_86; @ClientString(id = 7075, message = "") - public static SystemMessageId EMPTY_104; + public static SystemMessageId EMPTY_87; @ClientString(id = 7076, message = "") - public static SystemMessageId EMPTY_105; + public static SystemMessageId EMPTY_88; @ClientString(id = 7077, message = "") - public static SystemMessageId EMPTY_106; + public static SystemMessageId EMPTY_89; @ClientString(id = 7078, message = "") - public static SystemMessageId EMPTY_107; + public static SystemMessageId EMPTY_90; @ClientString(id = 7079, message = "") - public static SystemMessageId EMPTY_108; + public static SystemMessageId EMPTY_91; @ClientString(id = 7080, message = "") - public static SystemMessageId EMPTY_109; + public static SystemMessageId EMPTY_92; @ClientString(id = 7081, message = "") - public static SystemMessageId EMPTY_110; + public static SystemMessageId EMPTY_93; @ClientString(id = 7082, message = "") - public static SystemMessageId EMPTY_111; + public static SystemMessageId EMPTY_94; @ClientString(id = 7083, message = "") - public static SystemMessageId EMPTY_112; + public static SystemMessageId EMPTY_95; @ClientString(id = 7084, message = "") - public static SystemMessageId EMPTY_113; + public static SystemMessageId EMPTY_96; @ClientString(id = 7085, message = "") - public static SystemMessageId EMPTY_114; + public static SystemMessageId EMPTY_97; @ClientString(id = 7086, message = "") - public static SystemMessageId EMPTY_115; + public static SystemMessageId EMPTY_98; @ClientString(id = 7087, message = "") - public static SystemMessageId EMPTY_116; + public static SystemMessageId EMPTY_99; @ClientString(id = 7088, message = "") - public static SystemMessageId EMPTY_117; + public static SystemMessageId EMPTY_100; @ClientString(id = 7089, message = "") - public static SystemMessageId EMPTY_118; + public static SystemMessageId EMPTY_101; @ClientString(id = 7090, message = "") - public static SystemMessageId EMPTY_119; + public static SystemMessageId EMPTY_102; @ClientString(id = 7091, message = "") - public static SystemMessageId EMPTY_120; + public static SystemMessageId EMPTY_103; @ClientString(id = 7092, message = "") - public static SystemMessageId EMPTY_121; + public static SystemMessageId EMPTY_104; @ClientString(id = 7093, message = "") - public static SystemMessageId EMPTY_122; + public static SystemMessageId EMPTY_105; @ClientString(id = 7094, message = "") - public static SystemMessageId EMPTY_123; + public static SystemMessageId EMPTY_106; @ClientString(id = 7095, message = "") - public static SystemMessageId EMPTY_124; + public static SystemMessageId EMPTY_107; @ClientString(id = 7096, message = "") - public static SystemMessageId EMPTY_125; + public static SystemMessageId EMPTY_108; @ClientString(id = 7097, message = "") - public static SystemMessageId EMPTY_126; + public static SystemMessageId EMPTY_109; @ClientString(id = 7098, message = "") - public static SystemMessageId EMPTY_127; + public static SystemMessageId EMPTY_110; @ClientString(id = 7099, message = "") - public static SystemMessageId EMPTY_128; + public static SystemMessageId EMPTY_111; @ClientString(id = 7100, message = "") - public static SystemMessageId EMPTY_129; + public static SystemMessageId EMPTY_112; @ClientString(id = 7101, message = "") - public static SystemMessageId EMPTY_130; + public static SystemMessageId EMPTY_113; @ClientString(id = 7102, message = "") - public static SystemMessageId EMPTY_131; + public static SystemMessageId EMPTY_114; @ClientString(id = 7103, message = "") - public static SystemMessageId EMPTY_132; + public static SystemMessageId EMPTY_115; @ClientString(id = 7104, message = "") - public static SystemMessageId EMPTY_133; + public static SystemMessageId EMPTY_116; @ClientString(id = 7105, message = "") - public static SystemMessageId EMPTY_134; + public static SystemMessageId EMPTY_117; @ClientString(id = 7106, message = "") - public static SystemMessageId EMPTY_135; + public static SystemMessageId EMPTY_118; @ClientString(id = 7107, message = "") - public static SystemMessageId EMPTY_136; + public static SystemMessageId EMPTY_119; @ClientString(id = 7108, message = "") - public static SystemMessageId EMPTY_137; + public static SystemMessageId EMPTY_120; @ClientString(id = 7109, message = "") - public static SystemMessageId EMPTY_138; + public static SystemMessageId EMPTY_121; @ClientString(id = 7110, message = "") - public static SystemMessageId EMPTY_139; + public static SystemMessageId EMPTY_122; @ClientString(id = 7111, message = "") - public static SystemMessageId EMPTY_140; + public static SystemMessageId EMPTY_123; @ClientString(id = 7112, message = "") - public static SystemMessageId EMPTY_141; + public static SystemMessageId EMPTY_124; @ClientString(id = 7113, message = "") - public static SystemMessageId EMPTY_142; + public static SystemMessageId EMPTY_125; @ClientString(id = 7114, message = "") - public static SystemMessageId EMPTY_143; + public static SystemMessageId EMPTY_126; @ClientString(id = 7115, message = "") - public static SystemMessageId EMPTY_144; + public static SystemMessageId EMPTY_127; @ClientString(id = 7116, message = "") - public static SystemMessageId EMPTY_145; + public static SystemMessageId EMPTY_128; @ClientString(id = 7117, message = "") - public static SystemMessageId EMPTY_146; + public static SystemMessageId EMPTY_129; @ClientString(id = 7118, message = "") - public static SystemMessageId EMPTY_147; + public static SystemMessageId EMPTY_130; @ClientString(id = 7119, message = "") - public static SystemMessageId EMPTY_148; + public static SystemMessageId EMPTY_131; @ClientString(id = 7120, message = "") - public static SystemMessageId EMPTY_149; + public static SystemMessageId EMPTY_132; @ClientString(id = 7121, message = "") - public static SystemMessageId EMPTY_150; + public static SystemMessageId EMPTY_133; @ClientString(id = 7122, message = "") - public static SystemMessageId EMPTY_151; + public static SystemMessageId EMPTY_134; @ClientString(id = 7123, message = "") - public static SystemMessageId EMPTY_152; + public static SystemMessageId EMPTY_135; @ClientString(id = 7124, message = "") - public static SystemMessageId EMPTY_153; + public static SystemMessageId EMPTY_136; @ClientString(id = 7125, message = "") - public static SystemMessageId EMPTY_154; + public static SystemMessageId EMPTY_137; @ClientString(id = 7126, message = "") - public static SystemMessageId EMPTY_155; + public static SystemMessageId EMPTY_138; @ClientString(id = 7127, message = "") - public static SystemMessageId EMPTY_156; + public static SystemMessageId EMPTY_139; @ClientString(id = 7128, message = "") - public static SystemMessageId EMPTY_157; + public static SystemMessageId EMPTY_140; @ClientString(id = 7129, message = "") - public static SystemMessageId EMPTY_158; + public static SystemMessageId EMPTY_141; @ClientString(id = 7130, message = "") - public static SystemMessageId EMPTY_159; + public static SystemMessageId EMPTY_142; @ClientString(id = 7140, message = "") - public static SystemMessageId EMPTY_160; + public static SystemMessageId EMPTY_143; @ClientString(id = 7150, message = "") - public static SystemMessageId EMPTY_161; + public static SystemMessageId EMPTY_144; @ClientString(id = 7151, message = "") - public static SystemMessageId EMPTY_162; + public static SystemMessageId EMPTY_145; @ClientString(id = 7152, message = "") - public static SystemMessageId EMPTY_163; + public static SystemMessageId EMPTY_146; @ClientString(id = 7153, message = "") - public static SystemMessageId EMPTY_164; + public static SystemMessageId EMPTY_147; @ClientString(id = 7154, message = "") - public static SystemMessageId EMPTY_165; + public static SystemMessageId EMPTY_148; @ClientString(id = 7155, message = "") - public static SystemMessageId EMPTY_166; + public static SystemMessageId EMPTY_149; @ClientString(id = 7156, message = "") - public static SystemMessageId EMPTY_167; + public static SystemMessageId EMPTY_150; @ClientString(id = 7157, message = "") - public static SystemMessageId EMPTY_168; + public static SystemMessageId EMPTY_151; @ClientString(id = 7158, message = "") - public static SystemMessageId EMPTY_169; + public static SystemMessageId EMPTY_152; @ClientString(id = 7159, message = "") - public static SystemMessageId EMPTY_170; + public static SystemMessageId EMPTY_153; @ClientString(id = 7160, message = "") - public static SystemMessageId EMPTY_171; + public static SystemMessageId EMPTY_154; @ClientString(id = 7161, message = "") - public static SystemMessageId EMPTY_172; + public static SystemMessageId EMPTY_155; @ClientString(id = 7162, message = "") - public static SystemMessageId EMPTY_173; + public static SystemMessageId EMPTY_156; @ClientString(id = 7163, message = "") - public static SystemMessageId EMPTY_174; + public static SystemMessageId EMPTY_157; @ClientString(id = 7164, message = "") - public static SystemMessageId EMPTY_175; + public static SystemMessageId EMPTY_158; @ClientString(id = 7165, message = "") - public static SystemMessageId EMPTY_176; + public static SystemMessageId EMPTY_159; @ClientString(id = 7166, message = "") - public static SystemMessageId EMPTY_177; + public static SystemMessageId EMPTY_160; @ClientString(id = 7167, message = "") - public static SystemMessageId EMPTY_178; + public static SystemMessageId EMPTY_161; @ClientString(id = 7168, message = "") - public static SystemMessageId EMPTY_179; + public static SystemMessageId EMPTY_162; @ClientString(id = 7169, message = "") - public static SystemMessageId EMPTY_180; + public static SystemMessageId EMPTY_163; @ClientString(id = 7170, message = "") - public static SystemMessageId EMPTY_181; + public static SystemMessageId EMPTY_164; @ClientString(id = 7171, message = "") - public static SystemMessageId EMPTY_182; + public static SystemMessageId EMPTY_165; @ClientString(id = 7172, message = "") - public static SystemMessageId EMPTY_183; + public static SystemMessageId EMPTY_166; @ClientString(id = 7173, message = "") - public static SystemMessageId EMPTY_184; + public static SystemMessageId EMPTY_167; @ClientString(id = 7174, message = "") - public static SystemMessageId EMPTY_185; + public static SystemMessageId EMPTY_168; @ClientString(id = 7175, message = "") - public static SystemMessageId EMPTY_186; + public static SystemMessageId EMPTY_169; @ClientString(id = 7176, message = "") - public static SystemMessageId EMPTY_187; + public static SystemMessageId EMPTY_170; @ClientString(id = 7177, message = "") - public static SystemMessageId EMPTY_188; + public static SystemMessageId EMPTY_171; @ClientString(id = 7178, message = "") - public static SystemMessageId EMPTY_189; + public static SystemMessageId EMPTY_172; @ClientString(id = 7179, message = "") - public static SystemMessageId EMPTY_190; + public static SystemMessageId EMPTY_173; @ClientString(id = 7180, message = "") - public static SystemMessageId EMPTY_191; + public static SystemMessageId EMPTY_174; @ClientString(id = 7181, message = "") - public static SystemMessageId EMPTY_192; + public static SystemMessageId EMPTY_175; @ClientString(id = 7182, message = "") - public static SystemMessageId EMPTY_193; + public static SystemMessageId EMPTY_176; @ClientString(id = 7183, message = "") - public static SystemMessageId EMPTY_194; + public static SystemMessageId EMPTY_177; @ClientString(id = 7184, message = "") - public static SystemMessageId EMPTY_195; + public static SystemMessageId EMPTY_178; @ClientString(id = 7185, message = "") - public static SystemMessageId EMPTY_196; + public static SystemMessageId EMPTY_179; @ClientString(id = 7186, message = "") - public static SystemMessageId EMPTY_197; + public static SystemMessageId EMPTY_180; @ClientString(id = 7187, message = "") - public static SystemMessageId EMPTY_198; + public static SystemMessageId EMPTY_181; @ClientString(id = 7188, message = "") - public static SystemMessageId EMPTY_199; + public static SystemMessageId EMPTY_182; @ClientString(id = 7189, message = "") - public static SystemMessageId EMPTY_200; + public static SystemMessageId EMPTY_183; @ClientString(id = 7190, message = "") - public static SystemMessageId EMPTY_201; + public static SystemMessageId EMPTY_184; @ClientString(id = 7191, message = "") - public static SystemMessageId EMPTY_202; + public static SystemMessageId EMPTY_185; @ClientString(id = 7192, message = "") - public static SystemMessageId EMPTY_203; + public static SystemMessageId EMPTY_186; @ClientString(id = 7193, message = "") - public static SystemMessageId EMPTY_204; + public static SystemMessageId EMPTY_187; @ClientString(id = 7194, message = "") - public static SystemMessageId EMPTY_205; + public static SystemMessageId EMPTY_188; @ClientString(id = 7195, message = "") - public static SystemMessageId EMPTY_206; + public static SystemMessageId EMPTY_189; @ClientString(id = 7196, message = "") - public static SystemMessageId EMPTY_207; + public static SystemMessageId EMPTY_190; @ClientString(id = 7197, message = "") - public static SystemMessageId EMPTY_208; + public static SystemMessageId EMPTY_191; @ClientString(id = 7198, message = "") - public static SystemMessageId EMPTY_209; + public static SystemMessageId EMPTY_192; @ClientString(id = 7199, message = "") - public static SystemMessageId EMPTY_210; + public static SystemMessageId EMPTY_193; @ClientString(id = 7200, message = "") - public static SystemMessageId EMPTY_211; + public static SystemMessageId EMPTY_194; @ClientString(id = 7201, message = "") - public static SystemMessageId EMPTY_212; + public static SystemMessageId EMPTY_195; @ClientString(id = 7202, message = "") - public static SystemMessageId EMPTY_213; + public static SystemMessageId EMPTY_196; @ClientString(id = 7203, message = "") - public static SystemMessageId EMPTY_214; + public static SystemMessageId EMPTY_197; @ClientString(id = 7204, message = "") - public static SystemMessageId EMPTY_215; + public static SystemMessageId EMPTY_198; @ClientString(id = 7205, message = "") - public static SystemMessageId EMPTY_216; + public static SystemMessageId EMPTY_199; @ClientString(id = 7206, message = "") - public static SystemMessageId EMPTY_217; + public static SystemMessageId EMPTY_200; @ClientString(id = 7207, message = "") - public static SystemMessageId EMPTY_218; + public static SystemMessageId EMPTY_201; @ClientString(id = 7208, message = "") - public static SystemMessageId EMPTY_219; + public static SystemMessageId EMPTY_202; @ClientString(id = 7209, message = "") - public static SystemMessageId EMPTY_220; + public static SystemMessageId EMPTY_203; @ClientString(id = 7210, message = "") - public static SystemMessageId EMPTY_221; + public static SystemMessageId EMPTY_204; @ClientString(id = 7211, message = "") - public static SystemMessageId EMPTY_222; + public static SystemMessageId EMPTY_205; @ClientString(id = 7212, message = "") - public static SystemMessageId EMPTY_223; + public static SystemMessageId EMPTY_206; @ClientString(id = 7213, message = "") - public static SystemMessageId EMPTY_224; + public static SystemMessageId EMPTY_207; @ClientString(id = 7214, message = "") - public static SystemMessageId EMPTY_225; + public static SystemMessageId EMPTY_208; @ClientString(id = 7215, message = "") - public static SystemMessageId EMPTY_226; + public static SystemMessageId EMPTY_209; @ClientString(id = 7216, message = "") - public static SystemMessageId EMPTY_227; + public static SystemMessageId EMPTY_210; @ClientString(id = 7217, message = "") - public static SystemMessageId EMPTY_228; + public static SystemMessageId EMPTY_211; @ClientString(id = 7218, message = "") - public static SystemMessageId EMPTY_229; + public static SystemMessageId EMPTY_212; @ClientString(id = 7219, message = "") - public static SystemMessageId EMPTY_230; + public static SystemMessageId EMPTY_213; @ClientString(id = 7220, message = "") - public static SystemMessageId EMPTY_231; + public static SystemMessageId EMPTY_214; @ClientString(id = 7221, message = "") - public static SystemMessageId EMPTY_232; + public static SystemMessageId EMPTY_215; @ClientString(id = 7222, message = "") - public static SystemMessageId EMPTY_233; + public static SystemMessageId EMPTY_216; @ClientString(id = 7223, message = "") - public static SystemMessageId EMPTY_234; + public static SystemMessageId EMPTY_217; @ClientString(id = 7224, message = "") - public static SystemMessageId EMPTY_235; + public static SystemMessageId EMPTY_218; @ClientString(id = 7225, message = "") - public static SystemMessageId EMPTY_236; + public static SystemMessageId EMPTY_219; @ClientString(id = 7226, message = "") - public static SystemMessageId EMPTY_237; + public static SystemMessageId EMPTY_220; @ClientString(id = 7227, message = "") - public static SystemMessageId EMPTY_238; + public static SystemMessageId EMPTY_221; @ClientString(id = 7228, message = "") - public static SystemMessageId EMPTY_239; + public static SystemMessageId EMPTY_222; @ClientString(id = 7229, message = "") - public static SystemMessageId EMPTY_240; + public static SystemMessageId EMPTY_223; @ClientString(id = 7230, message = "") - public static SystemMessageId EMPTY_241; + public static SystemMessageId EMPTY_224; @ClientString(id = 7231, message = "") - public static SystemMessageId EMPTY_242; + public static SystemMessageId EMPTY_225; @ClientString(id = 7232, message = "") - public static SystemMessageId EMPTY_243; + public static SystemMessageId EMPTY_226; @ClientString(id = 7233, message = "") - public static SystemMessageId EMPTY_244; + public static SystemMessageId EMPTY_227; @ClientString(id = 7234, message = "") - public static SystemMessageId EMPTY_245; + public static SystemMessageId EMPTY_228; @ClientString(id = 7235, message = "") - public static SystemMessageId EMPTY_246; + public static SystemMessageId EMPTY_229; @ClientString(id = 7236, message = "") - public static SystemMessageId EMPTY_247; + public static SystemMessageId EMPTY_230; @ClientString(id = 7237, message = "") - public static SystemMessageId EMPTY_248; + public static SystemMessageId EMPTY_231; @ClientString(id = 7238, message = "") - public static SystemMessageId EMPTY_249; + public static SystemMessageId EMPTY_232; @ClientString(id = 7239, message = "") - public static SystemMessageId EMPTY_250; + public static SystemMessageId EMPTY_233; @ClientString(id = 7240, message = "") - public static SystemMessageId EMPTY_251; + public static SystemMessageId EMPTY_234; @ClientString(id = 7241, message = "") - public static SystemMessageId EMPTY_252; + public static SystemMessageId EMPTY_235; @ClientString(id = 7242, message = "") - public static SystemMessageId EMPTY_253; + public static SystemMessageId EMPTY_236; @ClientString(id = 7243, message = "") - public static SystemMessageId EMPTY_254; + public static SystemMessageId EMPTY_237; @ClientString(id = 7244, message = "") - public static SystemMessageId EMPTY_255; + public static SystemMessageId EMPTY_238; @ClientString(id = 7245, message = "") - public static SystemMessageId EMPTY_256; + public static SystemMessageId EMPTY_239; @ClientString(id = 7246, message = "") - public static SystemMessageId EMPTY_257; + public static SystemMessageId EMPTY_240; @ClientString(id = 7247, message = "") - public static SystemMessageId EMPTY_258; + public static SystemMessageId EMPTY_241; @ClientString(id = 7248, message = "") - public static SystemMessageId EMPTY_259; + public static SystemMessageId EMPTY_242; @ClientString(id = 7249, message = "") - public static SystemMessageId EMPTY_260; + public static SystemMessageId EMPTY_243; @ClientString(id = 7250, message = "") - public static SystemMessageId EMPTY_261; + public static SystemMessageId EMPTY_244; @ClientString(id = 7251, message = "") - public static SystemMessageId EMPTY_262; + public static SystemMessageId EMPTY_245; @ClientString(id = 7252, message = "") - public static SystemMessageId EMPTY_263; + public static SystemMessageId EMPTY_246; @ClientString(id = 7253, message = "") - public static SystemMessageId EMPTY_264; + public static SystemMessageId EMPTY_247; @ClientString(id = 7254, message = "") - public static SystemMessageId EMPTY_265; + public static SystemMessageId EMPTY_248; @ClientString(id = 7255, message = "") - public static SystemMessageId EMPTY_266; + public static SystemMessageId EMPTY_249; @ClientString(id = 7256, message = "") - public static SystemMessageId EMPTY_267; + public static SystemMessageId EMPTY_250; @ClientString(id = 7257, message = "") - public static SystemMessageId EMPTY_268; + public static SystemMessageId EMPTY_251; @ClientString(id = 7258, message = "") - public static SystemMessageId EMPTY_269; + public static SystemMessageId EMPTY_252; @ClientString(id = 7259, message = "") - public static SystemMessageId EMPTY_270; + public static SystemMessageId EMPTY_253; @ClientString(id = 7260, message = "") - public static SystemMessageId EMPTY_271; + public static SystemMessageId EMPTY_254; @ClientString(id = 7261, message = "") - public static SystemMessageId EMPTY_272; + public static SystemMessageId EMPTY_255; @ClientString(id = 7262, message = "") - public static SystemMessageId EMPTY_273; + public static SystemMessageId EMPTY_256; @ClientString(id = 7263, message = "") - public static SystemMessageId EMPTY_274; + public static SystemMessageId EMPTY_257; @ClientString(id = 7264, message = "") - public static SystemMessageId EMPTY_275; + public static SystemMessageId EMPTY_258; @ClientString(id = 7265, message = "") - public static SystemMessageId EMPTY_276; + public static SystemMessageId EMPTY_259; @ClientString(id = 7266, message = "") - public static SystemMessageId EMPTY_277; + public static SystemMessageId EMPTY_260; @ClientString(id = 7267, message = "") - public static SystemMessageId EMPTY_278; + public static SystemMessageId EMPTY_261; @ClientString(id = 7268, message = "") - public static SystemMessageId EMPTY_279; + public static SystemMessageId EMPTY_262; @ClientString(id = 7269, message = "") - public static SystemMessageId EMPTY_280; + public static SystemMessageId EMPTY_263; @ClientString(id = 7270, message = "") - public static SystemMessageId EMPTY_281; + public static SystemMessageId EMPTY_264; @ClientString(id = 7271, message = "") - public static SystemMessageId EMPTY_282; + public static SystemMessageId EMPTY_265; @ClientString(id = 7272, message = "") - public static SystemMessageId EMPTY_283; + public static SystemMessageId EMPTY_266; @ClientString(id = 7273, message = "") - public static SystemMessageId EMPTY_284; + public static SystemMessageId EMPTY_267; @ClientString(id = 7274, message = "") - public static SystemMessageId EMPTY_285; + public static SystemMessageId EMPTY_268; @ClientString(id = 7275, message = "") - public static SystemMessageId EMPTY_286; + public static SystemMessageId EMPTY_269; @ClientString(id = 7276, message = "") - public static SystemMessageId EMPTY_287; + public static SystemMessageId EMPTY_270; @ClientString(id = 7277, message = "") - public static SystemMessageId EMPTY_288; + public static SystemMessageId EMPTY_271; @ClientString(id = 7278, message = "") - public static SystemMessageId EMPTY_289; + public static SystemMessageId EMPTY_272; @ClientString(id = 7279, message = "") - public static SystemMessageId EMPTY_290; + public static SystemMessageId EMPTY_273; @ClientString(id = 7280, message = "") - public static SystemMessageId EMPTY_291; + public static SystemMessageId EMPTY_274; @ClientString(id = 7281, message = "") - public static SystemMessageId EMPTY_292; + public static SystemMessageId EMPTY_275; @ClientString(id = 7282, message = "") - public static SystemMessageId EMPTY_293; + public static SystemMessageId EMPTY_276; @ClientString(id = 7283, message = "") - public static SystemMessageId EMPTY_294; + public static SystemMessageId EMPTY_277; @ClientString(id = 7284, message = "") - public static SystemMessageId EMPTY_295; + public static SystemMessageId EMPTY_278; @ClientString(id = 7285, message = "") - public static SystemMessageId EMPTY_296; + public static SystemMessageId EMPTY_279; @ClientString(id = 7286, message = "") - public static SystemMessageId EMPTY_297; + public static SystemMessageId EMPTY_280; @ClientString(id = 7287, message = "") - public static SystemMessageId EMPTY_298; + public static SystemMessageId EMPTY_281; @ClientString(id = 7288, message = "") - public static SystemMessageId EMPTY_299; + public static SystemMessageId EMPTY_282; @ClientString(id = 7289, message = "") - public static SystemMessageId EMPTY_300; + public static SystemMessageId EMPTY_283; @ClientString(id = 7290, message = "") - public static SystemMessageId EMPTY_301; + public static SystemMessageId EMPTY_284; @ClientString(id = 7291, message = "") - public static SystemMessageId EMPTY_302; + public static SystemMessageId EMPTY_285; @ClientString(id = 7292, message = "") - public static SystemMessageId EMPTY_303; + public static SystemMessageId EMPTY_286; @ClientString(id = 7293, message = "") - public static SystemMessageId EMPTY_304; + public static SystemMessageId EMPTY_287; @ClientString(id = 7294, message = "") - public static SystemMessageId EMPTY_305; + public static SystemMessageId EMPTY_288; @ClientString(id = 7295, message = "") - public static SystemMessageId EMPTY_306; + public static SystemMessageId EMPTY_289; @ClientString(id = 7296, message = "") - public static SystemMessageId EMPTY_307; + public static SystemMessageId EMPTY_290; @ClientString(id = 7297, message = "") - public static SystemMessageId EMPTY_308; + public static SystemMessageId EMPTY_291; @ClientString(id = 7298, message = "") - public static SystemMessageId EMPTY_309; + public static SystemMessageId EMPTY_292; @ClientString(id = 7299, message = "") - public static SystemMessageId EMPTY_310; + public static SystemMessageId EMPTY_293; @ClientString(id = 7300, message = "") - public static SystemMessageId EMPTY_311; + public static SystemMessageId EMPTY_294; @ClientString(id = 7301, message = "") - public static SystemMessageId EMPTY_312; + public static SystemMessageId EMPTY_295; @ClientString(id = 7302, message = "") - public static SystemMessageId EMPTY_313; + public static SystemMessageId EMPTY_296; @ClientString(id = 7303, message = "") - public static SystemMessageId EMPTY_314; + public static SystemMessageId EMPTY_297; @ClientString(id = 7304, message = "") - public static SystemMessageId EMPTY_315; + public static SystemMessageId EMPTY_298; @ClientString(id = 7305, message = "") - public static SystemMessageId EMPTY_316; + public static SystemMessageId EMPTY_299; @ClientString(id = 7306, message = "") - public static SystemMessageId EMPTY_317; + public static SystemMessageId EMPTY_300; @ClientString(id = 7307, message = "") - public static SystemMessageId EMPTY_318; + public static SystemMessageId EMPTY_301; @ClientString(id = 7308, message = "") - public static SystemMessageId EMPTY_319; + public static SystemMessageId EMPTY_302; @ClientString(id = 7309, message = "") - public static SystemMessageId EMPTY_320; + public static SystemMessageId EMPTY_303; @ClientString(id = 7310, message = "") - public static SystemMessageId EMPTY_321; + public static SystemMessageId EMPTY_304; @ClientString(id = 7311, message = "") - public static SystemMessageId EMPTY_322; + public static SystemMessageId EMPTY_305; @ClientString(id = 7312, message = "") - public static SystemMessageId EMPTY_323; + public static SystemMessageId EMPTY_306; @ClientString(id = 7313, message = "") - public static SystemMessageId EMPTY_324; + public static SystemMessageId EMPTY_307; @ClientString(id = 7314, message = "") - public static SystemMessageId EMPTY_325; + public static SystemMessageId EMPTY_308; @ClientString(id = 7315, message = "") - public static SystemMessageId EMPTY_326; + public static SystemMessageId EMPTY_309; @ClientString(id = 7316, message = "") - public static SystemMessageId EMPTY_327; + public static SystemMessageId EMPTY_310; @ClientString(id = 7317, message = "") - public static SystemMessageId EMPTY_328; + public static SystemMessageId EMPTY_311; @ClientString(id = 7318, message = "") - public static SystemMessageId EMPTY_329; + public static SystemMessageId EMPTY_312; @ClientString(id = 7319, message = "") - public static SystemMessageId EMPTY_330; + public static SystemMessageId EMPTY_313; @ClientString(id = 7320, message = "") - public static SystemMessageId EMPTY_331; + public static SystemMessageId EMPTY_314; @ClientString(id = 7321, message = "") - public static SystemMessageId EMPTY_332; + public static SystemMessageId EMPTY_315; @ClientString(id = 7322, message = "") - public static SystemMessageId EMPTY_333; + public static SystemMessageId EMPTY_316; @ClientString(id = 7323, message = "") - public static SystemMessageId EMPTY_334; + public static SystemMessageId EMPTY_317; @ClientString(id = 7324, message = "") - public static SystemMessageId EMPTY_335; + public static SystemMessageId EMPTY_318; @ClientString(id = 7325, message = "") - public static SystemMessageId EMPTY_336; + public static SystemMessageId EMPTY_319; @ClientString(id = 7326, message = "") - public static SystemMessageId EMPTY_337; + public static SystemMessageId EMPTY_320; @ClientString(id = 7327, message = "") - public static SystemMessageId EMPTY_338; + public static SystemMessageId EMPTY_321; @ClientString(id = 7328, message = "") - public static SystemMessageId EMPTY_339; + public static SystemMessageId EMPTY_322; @ClientString(id = 7329, message = "") - public static SystemMessageId EMPTY_340; + public static SystemMessageId EMPTY_323; @ClientString(id = 7330, message = "") - public static SystemMessageId EMPTY_341; + public static SystemMessageId EMPTY_324; @ClientString(id = 7331, message = "") - public static SystemMessageId EMPTY_342; + public static SystemMessageId EMPTY_325; @ClientString(id = 7332, message = "") - public static SystemMessageId EMPTY_343; + public static SystemMessageId EMPTY_326; @ClientString(id = 7333, message = "") - public static SystemMessageId EMPTY_344; + public static SystemMessageId EMPTY_327; @ClientString(id = 7334, message = "") - public static SystemMessageId EMPTY_345; + public static SystemMessageId EMPTY_328; @ClientString(id = 7335, message = "") - public static SystemMessageId EMPTY_346; + public static SystemMessageId EMPTY_329; @ClientString(id = 7336, message = "") - public static SystemMessageId EMPTY_347; + public static SystemMessageId EMPTY_330; @ClientString(id = 7337, message = "") - public static SystemMessageId EMPTY_348; + public static SystemMessageId EMPTY_331; @ClientString(id = 7338, message = "") - public static SystemMessageId EMPTY_349; + public static SystemMessageId EMPTY_332; @ClientString(id = 7339, message = "") - public static SystemMessageId EMPTY_350; + public static SystemMessageId EMPTY_333; @ClientString(id = 7340, message = "") - public static SystemMessageId EMPTY_351; + public static SystemMessageId EMPTY_334; @ClientString(id = 7341, message = "") - public static SystemMessageId EMPTY_352; + public static SystemMessageId EMPTY_335; @ClientString(id = 7342, message = "") - public static SystemMessageId EMPTY_353; + public static SystemMessageId EMPTY_336; @ClientString(id = 7343, message = "") - public static SystemMessageId EMPTY_354; + public static SystemMessageId EMPTY_337; @ClientString(id = 7344, message = "") - public static SystemMessageId EMPTY_355; + public static SystemMessageId EMPTY_338; @ClientString(id = 7345, message = "") - public static SystemMessageId EMPTY_356; + public static SystemMessageId EMPTY_339; @ClientString(id = 7346, message = "") - public static SystemMessageId EMPTY_357; + public static SystemMessageId EMPTY_340; @ClientString(id = 7347, message = "") - public static SystemMessageId EMPTY_358; + public static SystemMessageId EMPTY_341; @ClientString(id = 7348, message = "") - public static SystemMessageId EMPTY_359; + public static SystemMessageId EMPTY_342; @ClientString(id = 7349, message = "") - public static SystemMessageId EMPTY_360; + public static SystemMessageId EMPTY_343; @ClientString(id = 7350, message = "") - public static SystemMessageId EMPTY_361; + public static SystemMessageId EMPTY_344; @ClientString(id = 7351, message = "") - public static SystemMessageId EMPTY_362; + public static SystemMessageId EMPTY_345; @ClientString(id = 7352, message = "") - public static SystemMessageId EMPTY_363; + public static SystemMessageId EMPTY_346; @ClientString(id = 7353, message = "") - public static SystemMessageId EMPTY_364; + public static SystemMessageId EMPTY_347; @ClientString(id = 7354, message = "") - public static SystemMessageId EMPTY_365; + public static SystemMessageId EMPTY_348; @ClientString(id = 7355, message = "") - public static SystemMessageId EMPTY_366; + public static SystemMessageId EMPTY_349; @ClientString(id = 7356, message = "") - public static SystemMessageId EMPTY_367; + public static SystemMessageId EMPTY_350; @ClientString(id = 7357, message = "") - public static SystemMessageId EMPTY_368; + public static SystemMessageId EMPTY_351; @ClientString(id = 7358, message = "") - public static SystemMessageId EMPTY_369; + public static SystemMessageId EMPTY_352; @ClientString(id = 7359, message = "") - public static SystemMessageId EMPTY_370; + public static SystemMessageId EMPTY_353; @ClientString(id = 7360, message = "") - public static SystemMessageId EMPTY_371; + public static SystemMessageId EMPTY_354; @ClientString(id = 7361, message = "") - public static SystemMessageId EMPTY_372; + public static SystemMessageId EMPTY_355; @ClientString(id = 7362, message = "") - public static SystemMessageId EMPTY_373; + public static SystemMessageId EMPTY_356; @ClientString(id = 7363, message = "") - public static SystemMessageId EMPTY_374; + public static SystemMessageId EMPTY_357; @ClientString(id = 7364, message = "") - public static SystemMessageId EMPTY_375; + public static SystemMessageId EMPTY_358; @ClientString(id = 7365, message = "") - public static SystemMessageId EMPTY_376; + public static SystemMessageId EMPTY_359; @ClientString(id = 7366, message = "") - public static SystemMessageId EMPTY_377; + public static SystemMessageId EMPTY_360; @ClientString(id = 7367, message = "") - public static SystemMessageId EMPTY_378; + public static SystemMessageId EMPTY_361; @ClientString(id = 7368, message = "") - public static SystemMessageId EMPTY_379; + public static SystemMessageId EMPTY_362; @ClientString(id = 7369, message = "") - public static SystemMessageId EMPTY_380; + public static SystemMessageId EMPTY_363; @ClientString(id = 7370, message = "") - public static SystemMessageId EMPTY_381; + public static SystemMessageId EMPTY_364; @ClientString(id = 7371, message = "") - public static SystemMessageId EMPTY_382; + public static SystemMessageId EMPTY_365; @ClientString(id = 7372, message = "") - public static SystemMessageId EMPTY_383; + public static SystemMessageId EMPTY_366; @ClientString(id = 7373, message = "") - public static SystemMessageId EMPTY_384; + public static SystemMessageId EMPTY_367; @ClientString(id = 7374, message = "") - public static SystemMessageId EMPTY_385; + public static SystemMessageId EMPTY_368; @ClientString(id = 7375, message = "") - public static SystemMessageId EMPTY_386; + public static SystemMessageId EMPTY_369; @ClientString(id = 7376, message = "") - public static SystemMessageId EMPTY_387; + public static SystemMessageId EMPTY_370; @ClientString(id = 7377, message = "") - public static SystemMessageId EMPTY_388; + public static SystemMessageId EMPTY_371; @ClientString(id = 7378, message = "") - public static SystemMessageId EMPTY_389; + public static SystemMessageId EMPTY_372; @ClientString(id = 7379, message = "") - public static SystemMessageId EMPTY_390; + public static SystemMessageId EMPTY_373; @ClientString(id = 7380, message = "") - public static SystemMessageId EMPTY_391; + public static SystemMessageId EMPTY_374; @ClientString(id = 7381, message = "") - public static SystemMessageId EMPTY_392; + public static SystemMessageId EMPTY_375; @ClientString(id = 7382, message = "") - public static SystemMessageId EMPTY_393; + public static SystemMessageId EMPTY_376; @ClientString(id = 7383, message = "") - public static SystemMessageId EMPTY_394; + public static SystemMessageId EMPTY_377; @ClientString(id = 7384, message = "") - public static SystemMessageId EMPTY_395; + public static SystemMessageId EMPTY_378; @ClientString(id = 7385, message = "") - public static SystemMessageId EMPTY_396; + public static SystemMessageId EMPTY_379; @ClientString(id = 7386, message = "") - public static SystemMessageId EMPTY_397; + public static SystemMessageId EMPTY_380; @ClientString(id = 7387, message = "") - public static SystemMessageId EMPTY_398; + public static SystemMessageId EMPTY_381; @ClientString(id = 7388, message = "") - public static SystemMessageId EMPTY_399; + public static SystemMessageId EMPTY_382; @ClientString(id = 7389, message = "") - public static SystemMessageId EMPTY_400; + public static SystemMessageId EMPTY_383; @ClientString(id = 7390, message = "") - public static SystemMessageId EMPTY_401; + public static SystemMessageId EMPTY_384; @ClientString(id = 7391, message = "") - public static SystemMessageId EMPTY_402; + public static SystemMessageId EMPTY_385; @ClientString(id = 7392, message = "") - public static SystemMessageId EMPTY_403; + public static SystemMessageId EMPTY_386; @ClientString(id = 7393, message = "") - public static SystemMessageId EMPTY_404; + public static SystemMessageId EMPTY_387; @ClientString(id = 7394, message = "") - public static SystemMessageId EMPTY_405; + public static SystemMessageId EMPTY_388; @ClientString(id = 7395, message = "") - public static SystemMessageId EMPTY_406; + public static SystemMessageId EMPTY_389; @ClientString(id = 7396, message = "") - public static SystemMessageId EMPTY_407; + public static SystemMessageId EMPTY_390; @ClientString(id = 7397, message = "") - public static SystemMessageId EMPTY_408; + public static SystemMessageId EMPTY_391; @ClientString(id = 7398, message = "") - public static SystemMessageId EMPTY_409; + public static SystemMessageId EMPTY_392; @ClientString(id = 7399, message = "") - public static SystemMessageId EMPTY_410; + public static SystemMessageId EMPTY_393; @ClientString(id = 7400, message = "") - public static SystemMessageId EMPTY_411; + public static SystemMessageId EMPTY_394; @ClientString(id = 7401, message = "") - public static SystemMessageId EMPTY_412; + public static SystemMessageId EMPTY_395; @ClientString(id = 7402, message = "") - public static SystemMessageId EMPTY_413; + public static SystemMessageId EMPTY_396; @ClientString(id = 7403, message = "") - public static SystemMessageId EMPTY_414; + public static SystemMessageId EMPTY_397; @ClientString(id = 7404, message = "") - public static SystemMessageId EMPTY_415; + public static SystemMessageId EMPTY_398; @ClientString(id = 7405, message = "") - public static SystemMessageId EMPTY_416; + public static SystemMessageId EMPTY_399; @ClientString(id = 7406, message = "") - public static SystemMessageId EMPTY_417; + public static SystemMessageId EMPTY_400; @ClientString(id = 7407, message = "") - public static SystemMessageId EMPTY_418; + public static SystemMessageId EMPTY_401; @ClientString(id = 7408, message = "") - public static SystemMessageId EMPTY_419; + public static SystemMessageId EMPTY_402; @ClientString(id = 7409, message = "") - public static SystemMessageId EMPTY_420; + public static SystemMessageId EMPTY_403; @ClientString(id = 7410, message = "") - public static SystemMessageId EMPTY_421; + public static SystemMessageId EMPTY_404; @ClientString(id = 7411, message = "") - public static SystemMessageId EMPTY_422; + public static SystemMessageId EMPTY_405; @ClientString(id = 7412, message = "") - public static SystemMessageId EMPTY_423; + public static SystemMessageId EMPTY_406; @ClientString(id = 7413, message = "") - public static SystemMessageId EMPTY_424; + public static SystemMessageId EMPTY_407; @ClientString(id = 7414, message = "") - public static SystemMessageId EMPTY_425; + public static SystemMessageId EMPTY_408; @ClientString(id = 7415, message = "") - public static SystemMessageId EMPTY_426; + public static SystemMessageId EMPTY_409; @ClientString(id = 7416, message = "") - public static SystemMessageId EMPTY_427; + public static SystemMessageId EMPTY_410; @ClientString(id = 7417, message = "") - public static SystemMessageId EMPTY_428; + public static SystemMessageId EMPTY_411; @ClientString(id = 7418, message = "") - public static SystemMessageId EMPTY_429; + public static SystemMessageId EMPTY_412; @ClientString(id = 7419, message = "") - public static SystemMessageId EMPTY_430; + public static SystemMessageId EMPTY_413; @ClientString(id = 7420, message = "") - public static SystemMessageId EMPTY_431; + public static SystemMessageId EMPTY_414; @ClientString(id = 7421, message = "") - public static SystemMessageId EMPTY_432; + public static SystemMessageId EMPTY_415; @ClientString(id = 7422, message = "") - public static SystemMessageId EMPTY_433; + public static SystemMessageId EMPTY_416; @ClientString(id = 7423, message = "") - public static SystemMessageId EMPTY_434; + public static SystemMessageId EMPTY_417; @ClientString(id = 7424, message = "") - public static SystemMessageId EMPTY_435; + public static SystemMessageId EMPTY_418; @ClientString(id = 7425, message = "") - public static SystemMessageId EMPTY_436; + public static SystemMessageId EMPTY_419; @ClientString(id = 7426, message = "") - public static SystemMessageId EMPTY_437; + public static SystemMessageId EMPTY_420; @ClientString(id = 7427, message = "") - public static SystemMessageId EMPTY_438; + public static SystemMessageId EMPTY_421; @ClientString(id = 7428, message = "") - public static SystemMessageId EMPTY_439; + public static SystemMessageId EMPTY_422; @ClientString(id = 7429, message = "") - public static SystemMessageId EMPTY_440; + public static SystemMessageId EMPTY_423; @ClientString(id = 7430, message = "") - public static SystemMessageId EMPTY_441; + public static SystemMessageId EMPTY_424; @ClientString(id = 7431, message = "") - public static SystemMessageId EMPTY_442; + public static SystemMessageId EMPTY_425; @ClientString(id = 7432, message = "") - public static SystemMessageId EMPTY_443; + public static SystemMessageId EMPTY_426; @ClientString(id = 7433, message = "") - public static SystemMessageId EMPTY_444; + public static SystemMessageId EMPTY_427; @ClientString(id = 7434, message = "") - public static SystemMessageId EMPTY_445; + public static SystemMessageId EMPTY_428; @ClientString(id = 7435, message = "") - public static SystemMessageId EMPTY_446; + public static SystemMessageId EMPTY_429; @ClientString(id = 7436, message = "") - public static SystemMessageId EMPTY_447; + public static SystemMessageId EMPTY_430; @ClientString(id = 7437, message = "") - public static SystemMessageId EMPTY_448; + public static SystemMessageId EMPTY_431; @ClientString(id = 7438, message = "") - public static SystemMessageId EMPTY_449; + public static SystemMessageId EMPTY_432; @ClientString(id = 7439, message = "") - public static SystemMessageId EMPTY_450; + public static SystemMessageId EMPTY_433; @ClientString(id = 7440, message = "") - public static SystemMessageId EMPTY_451; + public static SystemMessageId EMPTY_434; @ClientString(id = 7441, message = "") - public static SystemMessageId EMPTY_452; + public static SystemMessageId EMPTY_435; @ClientString(id = 7442, message = "") - public static SystemMessageId EMPTY_453; + public static SystemMessageId EMPTY_436; @ClientString(id = 7443, message = "") - public static SystemMessageId EMPTY_454; + public static SystemMessageId EMPTY_437; @ClientString(id = 7444, message = "") - public static SystemMessageId EMPTY_455; + public static SystemMessageId EMPTY_438; @ClientString(id = 7445, message = "") - public static SystemMessageId EMPTY_456; + public static SystemMessageId EMPTY_439; @ClientString(id = 7446, message = "") - public static SystemMessageId EMPTY_457; + public static SystemMessageId EMPTY_440; @ClientString(id = 7447, message = "") - public static SystemMessageId EMPTY_458; + public static SystemMessageId EMPTY_441; @ClientString(id = 7448, message = "") - public static SystemMessageId EMPTY_459; + public static SystemMessageId EMPTY_442; @ClientString(id = 7449, message = "") - public static SystemMessageId EMPTY_460; + public static SystemMessageId EMPTY_443; @ClientString(id = 7450, message = "") - public static SystemMessageId EMPTY_461; + public static SystemMessageId EMPTY_444; @ClientString(id = 7451, message = "") - public static SystemMessageId EMPTY_462; + public static SystemMessageId EMPTY_445; @ClientString(id = 7452, message = "") - public static SystemMessageId EMPTY_463; + public static SystemMessageId EMPTY_446; @ClientString(id = 7453, message = "") - public static SystemMessageId EMPTY_464; + public static SystemMessageId EMPTY_447; @ClientString(id = 7454, message = "") - public static SystemMessageId EMPTY_465; + public static SystemMessageId EMPTY_448; @ClientString(id = 7455, message = "") - public static SystemMessageId EMPTY_466; + public static SystemMessageId EMPTY_449; @ClientString(id = 7456, message = "") - public static SystemMessageId EMPTY_467; + public static SystemMessageId EMPTY_450; @ClientString(id = 7457, message = "") - public static SystemMessageId EMPTY_468; + public static SystemMessageId EMPTY_451; @ClientString(id = 7458, message = "") - public static SystemMessageId EMPTY_469; + public static SystemMessageId EMPTY_452; @ClientString(id = 7459, message = "") - public static SystemMessageId EMPTY_470; + public static SystemMessageId EMPTY_453; @ClientString(id = 7460, message = "") - public static SystemMessageId EMPTY_471; + public static SystemMessageId EMPTY_454; @ClientString(id = 7461, message = "") - public static SystemMessageId EMPTY_472; + public static SystemMessageId EMPTY_455; @ClientString(id = 7462, message = "") - public static SystemMessageId EMPTY_473; + public static SystemMessageId EMPTY_456; @ClientString(id = 7463, message = "") - public static SystemMessageId EMPTY_474; + public static SystemMessageId EMPTY_457; @ClientString(id = 7464, message = "") - public static SystemMessageId EMPTY_475; + public static SystemMessageId EMPTY_458; @ClientString(id = 7465, message = "") - public static SystemMessageId EMPTY_476; + public static SystemMessageId EMPTY_459; @ClientString(id = 7466, message = "") - public static SystemMessageId EMPTY_477; + public static SystemMessageId EMPTY_460; @ClientString(id = 7467, message = "") - public static SystemMessageId EMPTY_478; + public static SystemMessageId EMPTY_461; @ClientString(id = 7468, message = "") - public static SystemMessageId EMPTY_479; + public static SystemMessageId EMPTY_462; @ClientString(id = 7469, message = "") - public static SystemMessageId EMPTY_480; + public static SystemMessageId EMPTY_463; @ClientString(id = 7470, message = "") - public static SystemMessageId EMPTY_481; + public static SystemMessageId EMPTY_464; @ClientString(id = 7471, message = "") - public static SystemMessageId EMPTY_482; + public static SystemMessageId EMPTY_465; @ClientString(id = 7472, message = "") - public static SystemMessageId EMPTY_483; + public static SystemMessageId EMPTY_466; @ClientString(id = 7473, message = "") - public static SystemMessageId EMPTY_484; + public static SystemMessageId EMPTY_467; @ClientString(id = 7474, message = "") - public static SystemMessageId EMPTY_485; + public static SystemMessageId EMPTY_468; @ClientString(id = 7475, message = "") - public static SystemMessageId EMPTY_486; + public static SystemMessageId EMPTY_469; @ClientString(id = 7476, message = "") - public static SystemMessageId EMPTY_487; + public static SystemMessageId EMPTY_470; @ClientString(id = 7477, message = "") - public static SystemMessageId EMPTY_488; + public static SystemMessageId EMPTY_471; @ClientString(id = 7478, message = "") - public static SystemMessageId EMPTY_489; + public static SystemMessageId EMPTY_472; @ClientString(id = 7479, message = "") - public static SystemMessageId EMPTY_490; + public static SystemMessageId EMPTY_473; @ClientString(id = 7480, message = "") - public static SystemMessageId EMPTY_491; + public static SystemMessageId EMPTY_474; @ClientString(id = 7481, message = "") - public static SystemMessageId EMPTY_492; + public static SystemMessageId EMPTY_475; @ClientString(id = 7482, message = "") - public static SystemMessageId EMPTY_493; + public static SystemMessageId EMPTY_476; @ClientString(id = 7483, message = "") - public static SystemMessageId EMPTY_494; + public static SystemMessageId EMPTY_477; @ClientString(id = 7484, message = "") - public static SystemMessageId EMPTY_495; + public static SystemMessageId EMPTY_478; @ClientString(id = 7485, message = "") - public static SystemMessageId EMPTY_496; + public static SystemMessageId EMPTY_479; @ClientString(id = 7486, message = "") - public static SystemMessageId EMPTY_497; + public static SystemMessageId EMPTY_480; @ClientString(id = 7487, message = "") - public static SystemMessageId EMPTY_498; + public static SystemMessageId EMPTY_481; @ClientString(id = 7488, message = "") - public static SystemMessageId EMPTY_499; + public static SystemMessageId EMPTY_482; @ClientString(id = 7489, message = "") - public static SystemMessageId EMPTY_500; + public static SystemMessageId EMPTY_483; @ClientString(id = 7490, message = "") - public static SystemMessageId EMPTY_501; + public static SystemMessageId EMPTY_484; static { @@ -16266,7 +16944,7 @@ public final class SystemMessageId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: " + params); } if (params > 10) { diff --git a/L2J_Mobius_Classic_2.2_Antharas/readme.txt b/L2J_Mobius_Classic_2.2_Antharas/readme.txt index cc52ba0928..1f7f46e8be 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/readme.txt +++ b/L2J_Mobius_Classic_2.2_Antharas/readme.txt @@ -64,6 +64,7 @@ Zaken: https://eu.4game.com/lineage2classic/play/zaken/ -Newbie quest changes Antharas: https://eu.4game.com/lineage2classic/play/antharas/ +-Parsed new system messages and npc strings from client. -Parsed new skills from client -Parsed new items from client -Parsed new NPCs from L2Wiki and client diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/instances/AbstractInstance.java b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/instances/AbstractInstance.java index dcb47ca35b..cdd642eeca 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/instances/AbstractInstance.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/instances/AbstractInstance.java @@ -112,7 +112,7 @@ public abstract class AbstractInstance extends AbstractNpcAI { if (instance.getTemplateId() != templateId) { - player.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON); + player.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANCE_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON); return; } onEnter(player, instance, false); @@ -146,7 +146,7 @@ public abstract class AbstractInstance extends AbstractNpcAI // Check if maximum world count limit is exceeded if ((template.getMaxWorlds() != -1) && (manager.getWorldCount(templateId) >= template.getMaxWorlds())) { - player.sendPacket(SystemMessageId.THE_NUMBER_OF_INSTANT_ZONES_THAT_CAN_BE_CREATED_HAS_BEEN_EXCEEDED_PLEASE_TRY_AGAIN_LATER); + player.sendPacket(SystemMessageId.THE_NUMBER_OF_INSTANCE_ZONES_THAT_CAN_BE_CREATED_HAS_BEEN_EXCEEDED_PLEASE_TRY_AGAIN_LATER); return; } @@ -155,7 +155,7 @@ public abstract class AbstractInstance extends AbstractNpcAI { if (getPlayerInstance(member) != null) { - enterGroup.forEach(p -> p.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON)); + enterGroup.forEach(p -> p.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANCE_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON)); return; } diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java index f40c3bdd04..6329918096 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/instancemanager/CeremonyOfChaosManager.java @@ -349,7 +349,7 @@ public class CeremonyOfChaosManager extends AbstractEventManager 0)) { // Send message - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANCE_ZONE); sm.addInt(_template.getEjectTime()); player.sendPacket(sm); @@ -1147,7 +1147,7 @@ public final class Instance implements IIdentifiable, INamable */ private void sendWorldDestroyMessage(int delay) { - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THIS_INSTANCE_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES); sm.addInt(delay); broadcastPacket(sm); } diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java index 08fabd97c3..f316b3d320 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java @@ -33,7 +33,7 @@ public final class ConditionGroupMin extends Condition public ConditionGroupMin(InstanceTemplate template, StatsSet parameters, boolean onlyLeader, boolean showMessageAndHtml) { super(template, parameters, true, showMessageAndHtml); - setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE, (msg, player) -> msg.addInt(getLimit())); + setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE, (msg, player) -> msg.addInt(getLimit())); } @Override diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/NpcStringId.java index 72eb68272a..568cb1a6f2 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/NpcStringId.java @@ -43,8 +43,8 @@ public final class NpcStringId @ClientString(id = 4, message = "none") public static NpcStringId NONE_2; - @ClientString(id = 5, message = "Withdraw the fee for the next time at $s1/$s2 $s3") - public static NpcStringId WITHDRAW_THE_FEE_FOR_THE_NEXT_TIME_AT_S1_S2_S3; + @ClientString(id = 5, message = "Next payment on $s1/$s2 at $s3") + public static NpcStringId NEXT_PAYMENT_ON_S1_S2_AT_S3; @ClientString(id = 6, message = "($s1 Adena/$s2 Day(s))") public static NpcStringId FONT_COLOR_FFAABB_S1_FONT_ADENA_S2_DAY_S; @@ -175,17 +175,17 @@ public final class NpcStringId @ClientString(id = 1204, message = "Secret Meeting with Varka Silenos") public static NpcStringId SECRET_MEETING_WITH_VARKA_SILENOS_2; - @ClientString(id = 1301, message = "Parcel Delivery (Lv. 74-80)") - public static NpcStringId PARCEL_DELIVERY_LV_74_80; + @ClientString(id = 1301, message = "|Lv. 74-80| Parcel Delivery") + public static NpcStringId LV_74_80_PARCEL_DELIVERY; - @ClientString(id = 1302, message = "Parcel Delivery (Lv. 74-80) (In Progress)") - public static NpcStringId PARCEL_DELIVERY_LV_74_80_IN_PROGRESS; + @ClientString(id = 1302, message = "|Lv. 74-80| Parcel Delivery (In Progress)") + public static NpcStringId LV_74_80_PARCEL_DELIVERY_IN_PROGRESS; - @ClientString(id = 1303, message = "Parcel Delivery (Lv. 74-80) (Done)") - public static NpcStringId PARCEL_DELIVERY_LV_74_80_DONE; + @ClientString(id = 1303, message = "|Lv. 74-80| Parcel Delivery (Done)") + public static NpcStringId LV_74_80_PARCEL_DELIVERY_DONE; - @ClientString(id = 1304, message = "Parcel Delivery (Lv. 74-80)") - public static NpcStringId PARCEL_DELIVERY_LV_74_80_2; + @ClientString(id = 1304, message = "|Lv. 74-80| Parcel Delivery") + public static NpcStringId LV_74_80_PARCEL_DELIVERY_2; @ClientString(id = 1401, message = "Whereabouts of the Archaeologist") public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST; @@ -199,41 +199,41 @@ public final class NpcStringId @ClientString(id = 1404, message = "Whereabouts of the Archaeologist") public static NpcStringId WHEREABOUTS_OF_THE_ARCHAEOLOGIST_2; - @ClientString(id = 1501, message = "Sweet Whispers (Lv. 60-99)") - public static NpcStringId SWEET_WHISPERS_LV_60_99; + @ClientString(id = 1501, message = "|Lv. 60-99| Sweet Whispers") + public static NpcStringId LV_60_99_SWEET_WHISPERS; - @ClientString(id = 1502, message = "Sweet Whispers (Lv. 60-99) (In Progress)") - public static NpcStringId SWEET_WHISPERS_LV_60_99_IN_PROGRESS; + @ClientString(id = 1502, message = "|Lv. 60-99| Sweet Whispers (In Progress)") + public static NpcStringId LV_60_99_SWEET_WHISPERS_IN_PROGRESS; - @ClientString(id = 1503, message = "Sweet Whispers (Lv. 60-99) (Done)") - public static NpcStringId SWEET_WHISPERS_LV_60_99_DONE; + @ClientString(id = 1503, message = "|Lv. 60-99| Sweet Whispers (Done)") + public static NpcStringId LV_60_99_SWEET_WHISPERS_DONE; - @ClientString(id = 1504, message = "Sweet Whispers (Lv. 60-99)") - public static NpcStringId SWEET_WHISPERS_LV_60_99_2; + @ClientString(id = 1504, message = "|Lv. 60-99| Sweet Whispers") + public static NpcStringId LV_60_99_SWEET_WHISPERS_2; - @ClientString(id = 1601, message = "The Coming Darkness (Lv. 62-99)") - public static NpcStringId THE_COMING_DARKNESS_LV_62_99; + @ClientString(id = 1601, message = "|Lv. 62-99| The Coming Darkness") + public static NpcStringId LV_62_99_THE_COMING_DARKNESS; - @ClientString(id = 1602, message = "The Coming Darkness (Lv. 62-99) (In Progress)") - public static NpcStringId THE_COMING_DARKNESS_LV_62_99_IN_PROGRESS; + @ClientString(id = 1602, message = "|Lv. 62-99| The Coming Darkness(In Progress)") + public static NpcStringId LV_62_99_THE_COMING_DARKNESS_IN_PROGRESS; - @ClientString(id = 1603, message = "The Coming Darkness (Lv. 62-99) (Done)") - public static NpcStringId THE_COMING_DARKNESS_LV_62_99_DONE; + @ClientString(id = 1603, message = "|Lv. 62-99| The Coming Darkness (Done)") + public static NpcStringId LV_62_99_THE_COMING_DARKNESS_DONE; - @ClientString(id = 1604, message = "The Coming Darkness (Lv. 62-99)") - public static NpcStringId THE_COMING_DARKNESS_LV_62_99_2; + @ClientString(id = 1604, message = "|Lv. 62-99| The Coming Darkness") + public static NpcStringId LV_62_99_THE_COMING_DARKNESS_2; - @ClientString(id = 1701, message = "Light and Darkness (Lv. 61-99)") - public static NpcStringId LIGHT_AND_DARKNESS_LV_61_99; + @ClientString(id = 1701, message = "|Lv. 61-99| Light and Darkness") + public static NpcStringId LV_61_99_LIGHT_AND_DARKNESS; - @ClientString(id = 1702, message = "Light and Darkness (Lv. 61-99) (In Progress)") - public static NpcStringId LIGHT_AND_DARKNESS_LV_61_99_IN_PROGRESS; + @ClientString(id = 1702, message = "|Lv. 61-99| Light and Darkness (In Progress)") + public static NpcStringId LV_61_99_LIGHT_AND_DARKNESS_IN_PROGRESS; - @ClientString(id = 1703, message = "Light and Darkness (Lv. 61-99) (Done)") - public static NpcStringId LIGHT_AND_DARKNESS_LV_61_99_DONE; + @ClientString(id = 1703, message = "|Lv. 61-99| Light and Darkness (Done)") + public static NpcStringId LV_61_99_LIGHT_AND_DARKNESS_DONE; - @ClientString(id = 1704, message = "Light and Darkness (Lv. 61-99)") - public static NpcStringId LIGHT_AND_DARKNESS_LV_61_99_2; + @ClientString(id = 1704, message = "|Lv. 61-99| Light and Darkness") + public static NpcStringId LV_61_99_LIGHT_AND_DARKNESS_2; @ClientString(id = 1801, message = "Meeting with the Golden Ram") public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM; @@ -247,29 +247,29 @@ public final class NpcStringId @ClientString(id = 1804, message = "Meeting with the Golden Ram") public static NpcStringId MEETING_WITH_THE_GOLDEN_RAM_2; - @ClientString(id = 1901, message = "Go to the Pastureland (Lv. 82-99)") - public static NpcStringId GO_TO_THE_PASTURELAND_LV_82_99; + @ClientString(id = 1901, message = "|Lv. 82-99| Go to the Pastureland") + public static NpcStringId LV_82_99_GO_TO_THE_PASTURELAND; - @ClientString(id = 1902, message = "Go to the Pastureland (Lv. 82-99) (In Progress)") - public static NpcStringId GO_TO_THE_PASTURELAND_LV_82_99_IN_PROGRESS; + @ClientString(id = 1902, message = "|Lv. 82-99| Go to the Pastureland (In Progress)") + public static NpcStringId LV_82_99_GO_TO_THE_PASTURELAND_IN_PROGRESS; - @ClientString(id = 1903, message = "Go to the Pastureland (Lv. 82-99) (Done)") - public static NpcStringId GO_TO_THE_PASTURELAND_LV_82_99_DONE; + @ClientString(id = 1903, message = "|Lv. 82-99| Go to the Pastureland (Done)") + public static NpcStringId LV_82_99_GO_TO_THE_PASTURELAND_DONE; - @ClientString(id = 1904, message = "Go to the Pastureland (Lv. 82-99)") - public static NpcStringId GO_TO_THE_PASTURELAND_LV_82_99_2; + @ClientString(id = 1904, message = "|Lv. 82-99| Go to the Pastureland") + public static NpcStringId LV_82_99_GO_TO_THE_PASTURELAND_2; - @ClientString(id = 2001, message = "Bring Up With Love (Lv. 82-99)") - public static NpcStringId BRING_UP_WITH_LOVE_LV_82_99; + @ClientString(id = 2001, message = "|Lv. 82-99| Bring Up With Love") + public static NpcStringId LV_82_99_BRING_UP_WITH_LOVE; - @ClientString(id = 2002, message = "Bring Up With Love (Lv. 82-99) (In Progress)") - public static NpcStringId BRING_UP_WITH_LOVE_LV_82_99_IN_PROGRESS; + @ClientString(id = 2002, message = "|Lv. 82-99| Bring Up With Love (In Progress)") + public static NpcStringId LV_82_99_BRING_UP_WITH_LOVE_IN_PROGRESS; - @ClientString(id = 2003, message = "Bring Up With Love (Lv. 82-99) (Done)") - public static NpcStringId BRING_UP_WITH_LOVE_LV_82_99_DONE; + @ClientString(id = 2003, message = "|Lv. 82-99| Bring Up With Love (Done)") + public static NpcStringId LV_82_99_BRING_UP_WITH_LOVE_DONE; - @ClientString(id = 2004, message = "Bring Up With Love (Lv. 82-99)") - public static NpcStringId BRING_UP_WITH_LOVE_LV_82_99_2; + @ClientString(id = 2004, message = "|Lv. 82-99| Bring Up With Love") + public static NpcStringId LV_82_99_BRING_UP_WITH_LOVE_2; @ClientString(id = 2005, message = "Are you trying to tame me? Don't do that!") public static NpcStringId ARE_YOU_TRYING_TO_TAME_ME_DON_T_DO_THAT; @@ -460,14 +460,14 @@ public final class NpcStringId @ClientString(id = 2551, message = "You've ended my immortal life! You're protected by the feudal lord, aren't you?") public static NpcStringId YOU_VE_ENDED_MY_IMMORTAL_LIFE_YOU_RE_PROTECTED_BY_THE_FEUDAL_LORD_AREN_T_YOU; - @ClientString(id = 2601, message = "Tired of Waiting (Lv. 80-99)") - public static NpcStringId TIRED_OF_WAITING_LV_80_99; + @ClientString(id = 2601, message = "|Lv. 80-99| Tired of Waiting") + public static NpcStringId LV_80_99_TIRED_OF_WAITING; - @ClientString(id = 2602, message = "Tired of Waiting (Lv. 80-99) (In Progress)") - public static NpcStringId TIRED_OF_WAITING_LV_80_99_IN_PROGRESS; + @ClientString(id = 2602, message = "|Lv. 80-99| Tired of Waiting (In Progress)") + public static NpcStringId LV_80_99_TIRED_OF_WAITING_IN_PROGRESS; - @ClientString(id = 2603, message = "Tired of Waiting (Lv. 80-99) (Done)") - public static NpcStringId TIRED_OF_WAITING_LV_80_99_DONE; + @ClientString(id = 2603, message = "|Lv. 80-99| Tired of Waiting (Done)") + public static NpcStringId LV_80_99_TIRED_OF_WAITING_DONE; @ClientString(id = 2701, message = "Chest Caught with a Wind Bait") public static NpcStringId CHEST_CAUGHT_WITH_A_WIND_BAIT; @@ -517,125 +517,125 @@ public final class NpcStringId @ClientString(id = 3004, message = "Chest Caught with a Bait of Flame") public static NpcStringId CHEST_CAUGHT_WITH_A_BAIT_OF_FLAME_2; - @ClientString(id = 3101, message = "Secret Buried in the Swamp (Lv. 66-76)") - public static NpcStringId SECRET_BURIED_IN_THE_SWAMP_LV_66_76; + @ClientString(id = 3101, message = "|Lv. 66-76| Secret Buried in the Swamp") + public static NpcStringId LV_66_76_SECRET_BURIED_IN_THE_SWAMP; - @ClientString(id = 3102, message = "Secret Buried in the Swamp (Lv. 66-76) (In Progress)") - public static NpcStringId SECRET_BURIED_IN_THE_SWAMP_LV_66_76_IN_PROGRESS; + @ClientString(id = 3102, message = "|Lv. 66-76| Secret Buried in the Swamp (In Progress)") + public static NpcStringId LV_66_76_SECRET_BURIED_IN_THE_SWAMP_IN_PROGRESS; - @ClientString(id = 3103, message = "Secret Buried in the Swamp (Lv. 66-76) (Done)") - public static NpcStringId SECRET_BURIED_IN_THE_SWAMP_LV_66_76_DONE; + @ClientString(id = 3103, message = "|Lv. 66-76| Secret Buried in the Swamp (Done)") + public static NpcStringId LV_66_76_SECRET_BURIED_IN_THE_SWAMP_DONE; - @ClientString(id = 3104, message = "Secret Buried in the Swamp (Lv. 66-76)") - public static NpcStringId SECRET_BURIED_IN_THE_SWAMP_LV_66_76_2; + @ClientString(id = 3104, message = "|Lv. 66-76| Secret Buried in the Swamp") + public static NpcStringId LV_66_76_SECRET_BURIED_IN_THE_SWAMP_2; - @ClientString(id = 3201, message = "An Obvious Lie (Lv. 45-99)") - public static NpcStringId AN_OBVIOUS_LIE_LV_45_99; + @ClientString(id = 3201, message = "|Lv. 45-99| An Obvious Lie") + public static NpcStringId LV_45_99_AN_OBVIOUS_LIE; - @ClientString(id = 3202, message = "An Obvious Lie (Lv. 45-99) (In Progress)") - public static NpcStringId AN_OBVIOUS_LIE_LV_45_99_IN_PROGRESS; + @ClientString(id = 3202, message = "|Lv. 45-99| An Obvious Lie (In Progress)") + public static NpcStringId LV_45_99_AN_OBVIOUS_LIE_IN_PROGRESS; - @ClientString(id = 3203, message = "An Obvious Lie (Lv. 45-99) (Done)") - public static NpcStringId AN_OBVIOUS_LIE_LV_45_99_DONE; + @ClientString(id = 3203, message = "|Lv. 45-99| An Obvious Lie (Done)") + public static NpcStringId LV_45_99_AN_OBVIOUS_LIE_DONE; - @ClientString(id = 3204, message = "An Obvious Lie (Lv. 45-99)") - public static NpcStringId AN_OBVIOUS_LIE_LV_45_99_2; + @ClientString(id = 3204, message = "|Lv. 45-99| An Obvious Lie") + public static NpcStringId LV_45_99_AN_OBVIOUS_LIE_2; - @ClientString(id = 3301, message = "Make a Pair of Dress Shoes (Lv. 60-99)") - public static NpcStringId MAKE_A_PAIR_OF_DRESS_SHOES_LV_60_99; + @ClientString(id = 3301, message = "|Lv. 60-99| Make a Pair of Dress Shoes") + public static NpcStringId LV_60_99_MAKE_A_PAIR_OF_DRESS_SHOES; - @ClientString(id = 3302, message = "Make a Pair of Dress Shoes (Lv. 60-99) (In Progress)") - public static NpcStringId MAKE_A_PAIR_OF_DRESS_SHOES_LV_60_99_IN_PROGRESS; + @ClientString(id = 3302, message = "|Lv. 60-99| Make a Pair of Dress Shoes (In Progress)") + public static NpcStringId LV_60_99_MAKE_A_PAIR_OF_DRESS_SHOES_IN_PROGRESS; - @ClientString(id = 3303, message = "Make a Pair of Dress Shoes (Lv. 60-99) (Done)") - public static NpcStringId MAKE_A_PAIR_OF_DRESS_SHOES_LV_60_99_DONE; + @ClientString(id = 3303, message = "|Lv. 60-99| Make a Pair of Dress Shoes (Done)") + public static NpcStringId LV_60_99_MAKE_A_PAIR_OF_DRESS_SHOES_DONE; - @ClientString(id = 3304, message = "Make a Pair of Dress Shoes (Lv. 60-99)") - public static NpcStringId MAKE_A_PAIR_OF_DRESS_SHOES_LV_60_99_2; + @ClientString(id = 3304, message = "|Lv. 60-99| Make a Pair of Dress Shoes (Lv. 60-99)") + public static NpcStringId LV_60_99_MAKE_A_PAIR_OF_DRESS_SHOES_LV_60_99; - @ClientString(id = 3401, message = "In Search of Cloth (Lv. 60-99)") - public static NpcStringId IN_SEARCH_OF_CLOTH_LV_60_99; + @ClientString(id = 3401, message = "|Lv. 60-99| In Search of Cloth") + public static NpcStringId LV_60_99_IN_SEARCH_OF_CLOTH; - @ClientString(id = 3402, message = "In Search of Cloth (Lv. 60-99) (In Progress)") - public static NpcStringId IN_SEARCH_OF_CLOTH_LV_60_99_IN_PROGRESS; + @ClientString(id = 3402, message = "|Lv. 60-99| In Search of Cloth (In Progress)") + public static NpcStringId LV_60_99_IN_SEARCH_OF_CLOTH_IN_PROGRESS; - @ClientString(id = 3403, message = "In Search of Cloth (Lv. 60-99) (Done)") - public static NpcStringId IN_SEARCH_OF_CLOTH_LV_60_99_DONE; + @ClientString(id = 3403, message = "|Lv. 60-99| In Search of Cloth (Done)") + public static NpcStringId LV_60_99_IN_SEARCH_OF_CLOTH_DONE; - @ClientString(id = 3404, message = "In Search of Cloth (Lv. 60-99)") - public static NpcStringId IN_SEARCH_OF_CLOTH_LV_60_99_2; + @ClientString(id = 3404, message = "|Lv. 60-99| In Search of Cloth") + public static NpcStringId LV_60_99_IN_SEARCH_OF_CLOTH_2; - @ClientString(id = 3501, message = "Find Glittering Jewelry (Lv. 60-99)") - public static NpcStringId FIND_GLITTERING_JEWELRY_LV_60_99; + @ClientString(id = 3501, message = "|Lv. 60-99| Find Glittering Jewelry") + public static NpcStringId LV_60_99_FIND_GLITTERING_JEWELRY; - @ClientString(id = 3502, message = "Find Glittering Jewelry (Lv. 60-99) (In Progress)") - public static NpcStringId FIND_GLITTERING_JEWELRY_LV_60_99_IN_PROGRESS; + @ClientString(id = 3502, message = "|Lv. 60-99| Find Glittering Jewelry (In Progress)") + public static NpcStringId LV_60_99_FIND_GLITTERING_JEWELRY_IN_PROGRESS; - @ClientString(id = 3503, message = "Find Glittering Jewelry (Lv. 60-99) (In Progress)") - public static NpcStringId FIND_GLITTERING_JEWELRY_LV_60_99_IN_PROGRESS_2; + @ClientString(id = 3503, message = "|Lv. 60-99| Find Glittering Jewelry (In Progress)") + public static NpcStringId LV_60_99_FIND_GLITTERING_JEWELRY_IN_PROGRESS_2; - @ClientString(id = 3504, message = "Find Glittering Jewelry (Lv. 60-99)") - public static NpcStringId FIND_GLITTERING_JEWELRY_LV_60_99_2; + @ClientString(id = 3504, message = "|Lv. 60-99| Find Glittering Jewelry") + public static NpcStringId LV_60_99_FIND_GLITTERING_JEWELRY_2; - @ClientString(id = 3601, message = "Make a Sewing Kit (Lv. 60-99)") - public static NpcStringId MAKE_A_SEWING_KIT_LV_60_99; + @ClientString(id = 3601, message = "|Lv. 60-99| Make a Sewing Kit") + public static NpcStringId LV_60_99_MAKE_A_SEWING_KIT; - @ClientString(id = 3602, message = "Make a Sewing Kit (Lv. 60-99) (In Progress)") - public static NpcStringId MAKE_A_SEWING_KIT_LV_60_99_IN_PROGRESS; + @ClientString(id = 3602, message = "|Lv. 60-99| Make a Sewing Kit (In Progress)") + public static NpcStringId LV_60_99_MAKE_A_SEWING_KIT_IN_PROGRESS; - @ClientString(id = 3603, message = "Make a Sewing Kit (Lv. 60-99) (Done)") - public static NpcStringId MAKE_A_SEWING_KIT_LV_60_99_DONE; + @ClientString(id = 3603, message = "|Lv. 60-99| Make a Sewing Kit (Done)") + public static NpcStringId LV_60_99_MAKE_A_SEWING_KIT_DONE; - @ClientString(id = 3604, message = "Make a Sewing Kit (Lv. 60-99)") - public static NpcStringId MAKE_A_SEWING_KIT_LV_60_99_2; + @ClientString(id = 3604, message = "|Lv. 60-99| Make a Sewing Kit") + public static NpcStringId LV_60_99_MAKE_A_SEWING_KIT_2; - @ClientString(id = 3701, message = "Make Formal Wear (Lv. 60-99)") - public static NpcStringId MAKE_FORMAL_WEAR_LV_60_99; + @ClientString(id = 3701, message = "|Lv. 60-99| Make Formal Wear") + public static NpcStringId LV_60_99_MAKE_FORMAL_WEAR; - @ClientString(id = 3702, message = "Make Formal Wear (Lv. 60-99) (In Progress)") - public static NpcStringId MAKE_FORMAL_WEAR_LV_60_99_IN_PROGRESS; + @ClientString(id = 3702, message = "|Lv. 60-99| Make Formal Wear (In Progress)") + public static NpcStringId LV_60_99_MAKE_FORMAL_WEAR_IN_PROGRESS; - @ClientString(id = 3703, message = "Make Formal Wear (Lv. 60-99) (Done)") - public static NpcStringId MAKE_FORMAL_WEAR_LV_60_99_DONE; + @ClientString(id = 3703, message = "|Lv. 60-99| Make Formal Wear (Done)") + public static NpcStringId LV_60_99_MAKE_FORMAL_WEAR_DONE; - @ClientString(id = 3704, message = "Make Formal Wear (Lv. 60-99)") - public static NpcStringId MAKE_FORMAL_WEAR_LV_60_99_2; + @ClientString(id = 3704, message = "|Lv. 60-99| Make Formal Wear") + public static NpcStringId LV_60_99_MAKE_FORMAL_WEAR_2; - @ClientString(id = 3801, message = "Dragon Fangs (Lv. 19-29)") - public static NpcStringId DRAGON_FANGS_LV_19_29; + @ClientString(id = 3801, message = "|Lv. 19-29| Dragon Fangs") + public static NpcStringId LV_19_29_DRAGON_FANGS; - @ClientString(id = 3802, message = "Dragon Fangs (Lv. 19-29) (In Progress)") - public static NpcStringId DRAGON_FANGS_LV_19_29_IN_PROGRESS; + @ClientString(id = 3802, message = "|Lv. 19-29| Dragon Fangs (In Progress)") + public static NpcStringId LV_19_29_DRAGON_FANGS_IN_PROGRESS; - @ClientString(id = 3803, message = "Dragon Fangs (Lv. 19-29) (Done)") - public static NpcStringId DRAGON_FANGS_LV_19_29_DONE; + @ClientString(id = 3803, message = "|Lv. 19-29| Dragon Fangs (Done)") + public static NpcStringId LV_19_29_DRAGON_FANGS_DONE; - @ClientString(id = 3804, message = "Dragon Fangs (Lv. 19-29)") - public static NpcStringId DRAGON_FANGS_LV_19_29_2; + @ClientString(id = 3804, message = "|Lv. 19-29| Dragon Fangs") + public static NpcStringId LV_19_29_DRAGON_FANGS_2; - @ClientString(id = 3901, message = "Red-eyed Invader (Lv. 20-28)") - public static NpcStringId RED_EYED_INVADER_LV_20_28; + @ClientString(id = 3901, message = "|Lv. 20-28| Red-eyed Invader") + public static NpcStringId LV_20_28_RED_EYED_INVADER; - @ClientString(id = 3902, message = "Red-eyed Invader (Lv. 20-28) (In Progress)") - public static NpcStringId RED_EYED_INVADER_LV_20_28_IN_PROGRESS; + @ClientString(id = 3902, message = "|Lv. 20-28| Red-eyed Invader (In Progress)") + public static NpcStringId LV_20_28_RED_EYED_INVADER_IN_PROGRESS; - @ClientString(id = 3903, message = "Red-eyed Invader (Lv. 20-28) (Done)") - public static NpcStringId RED_EYED_INVADER_LV_20_28_DONE; + @ClientString(id = 3903, message = "|Lv. 20-28| Red-eyed Invader (Done)") + public static NpcStringId LV_20_28_RED_EYED_INVADER_DONE; - @ClientString(id = 3904, message = "Red-eyed Invader (Lv. 20-28)") - public static NpcStringId RED_EYED_INVADER_LV_20_28_2; + @ClientString(id = 3904, message = "|Lv. 20-28| Red-eyed Invader") + public static NpcStringId LV_20_28_RED_EYED_INVADER_2; - @ClientString(id = 4001, message = "A Special Order (Lv. 40-99)") - public static NpcStringId A_SPECIAL_ORDER_LV_40_99; + @ClientString(id = 4001, message = "|Lv. 40-99| A Special Order") + public static NpcStringId LV_40_99_A_SPECIAL_ORDER; - @ClientString(id = 4002, message = "A Special Order (Lv. 40-99) (In Progress)") - public static NpcStringId A_SPECIAL_ORDER_LV_40_99_IN_PROGRESS; + @ClientString(id = 4002, message = "|Lv. 40-99| A Special Order (In Progress)") + public static NpcStringId LV_40_99_A_SPECIAL_ORDER_IN_PROGRESS; - @ClientString(id = 4003, message = "A Special Order (Lv. 40-99) (Done)") - public static NpcStringId A_SPECIAL_ORDER_LV_40_99_DONE; + @ClientString(id = 4003, message = "|Lv. 40-99| A Special Order (Done)") + public static NpcStringId LV_40_99_A_SPECIAL_ORDER_DONE; - @ClientString(id = 4004, message = "A Special Order (Lv. 40-99)") - public static NpcStringId A_SPECIAL_ORDER_LV_40_99_2; + @ClientString(id = 4004, message = "|Lv. 40-99| A Special Order") + public static NpcStringId LV_40_99_A_SPECIAL_ORDER_2; @ClientString(id = 4101, message = "The Adventurer's Challenge") public static NpcStringId THE_ADVENTURER_S_CHALLENGE; @@ -661,41 +661,41 @@ public final class NpcStringId @ClientString(id = 4155, message = "Last duty complete. \\n Go find the Newbie Helper.") public static NpcStringId LAST_DUTY_COMPLETE_N_GO_FIND_THE_NEWBIE_HELPER; - @ClientString(id = 4201, message = "Help the Uncle! (Lv. 25-99)") - public static NpcStringId HELP_THE_UNCLE_LV_25_99; + @ClientString(id = 4201, message = "|Lv. 25-99| Help the Uncle!") + public static NpcStringId LV_25_99_HELP_THE_UNCLE; - @ClientString(id = 4202, message = "Help the Uncle! (Lv. 25-99) (In Progress)") - public static NpcStringId HELP_THE_UNCLE_LV_25_99_IN_PROGRESS; + @ClientString(id = 4202, message = "|Lv. 25-99| Help the Uncle! (In Progress)") + public static NpcStringId LV_25_99_HELP_THE_UNCLE_IN_PROGRESS; - @ClientString(id = 4203, message = "Help the Uncle! (Lv. 25-99) (Done)") - public static NpcStringId HELP_THE_UNCLE_LV_25_99_DONE; + @ClientString(id = 4203, message = "|Lv. 25-99| Help the Uncle! (Done)") + public static NpcStringId LV_25_99_HELP_THE_UNCLE_DONE; - @ClientString(id = 4204, message = "Help the Uncle! (Lv. 25-99)") - public static NpcStringId HELP_THE_UNCLE_LV_25_99_2; + @ClientString(id = 4204, message = "|Lv. 25-99| Help the Uncle!") + public static NpcStringId LV_25_99_HELP_THE_UNCLE_2; - @ClientString(id = 4301, message = "Help the Sister! (Lv. 26-99)") - public static NpcStringId HELP_THE_SISTER_LV_26_99; + @ClientString(id = 4301, message = "|Lv. 26-99| Help the Sister!") + public static NpcStringId LV_26_99_HELP_THE_SISTER; - @ClientString(id = 4302, message = "Help the Sister! (Lv. 26-99) (In Progress)") - public static NpcStringId HELP_THE_SISTER_LV_26_99_IN_PROGRESS; + @ClientString(id = 4302, message = "|Lv. 26-99| Help the Sister! (In Progress)") + public static NpcStringId LV_26_99_HELP_THE_SISTER_IN_PROGRESS; - @ClientString(id = 4303, message = "Help the Sister! (Lv. 26-99) (Done)") - public static NpcStringId HELP_THE_SISTER_LV_26_99_DONE; + @ClientString(id = 4303, message = "|Lv. 26-99| Help the Sister! (Done)") + public static NpcStringId LV_26_99_HELP_THE_SISTER_DONE; - @ClientString(id = 4304, message = "Help the Sister! (Lv. 26-99)") - public static NpcStringId HELP_THE_SISTER_LV_26_99_2; + @ClientString(id = 4304, message = "|Lv. 26-99| Help the Sister!") + public static NpcStringId LV_26_99_HELP_THE_SISTER_2; - @ClientString(id = 4401, message = "Help the Son! (Lv. 24-99)") - public static NpcStringId HELP_THE_SON_LV_24_99; + @ClientString(id = 4401, message = "|Lv. 24-99| Help the Son!") + public static NpcStringId LV_24_99_HELP_THE_SON; - @ClientString(id = 4402, message = "Help the Son! (Lv. 24-99) (In Progress)") - public static NpcStringId HELP_THE_SON_LV_24_99_IN_PROGRESS; + @ClientString(id = 4402, message = "|Lv. 24-99| Help the Son! (In Progress)") + public static NpcStringId LV_24_99_HELP_THE_SON_IN_PROGRESS; - @ClientString(id = 4403, message = "Help the Son! (Lv. 24-99) (Done)") - public static NpcStringId HELP_THE_SON_LV_24_99_DONE; + @ClientString(id = 4403, message = "|Lv. 24-99| Help the Son! (Done)") + public static NpcStringId LV_24_99_HELP_THE_SON_DONE; - @ClientString(id = 4404, message = "Help the Son! (Lv. 24-99)") - public static NpcStringId HELP_THE_SON_LV_24_99_2; + @ClientString(id = 4404, message = "|Lv. 24-99| Help the Son!") + public static NpcStringId LV_24_99_HELP_THE_SON_2; @ClientString(id = 4501, message = "To Talking Island") public static NpcStringId TO_TALKING_ISLAND; @@ -811,17 +811,17 @@ public final class NpcStringId @ClientString(id = 6054, message = "Who are you to join in the battle? How upsetting.") public static NpcStringId WHO_ARE_YOU_TO_JOIN_IN_THE_BATTLE_HOW_UPSETTING; - @ClientString(id = 6101, message = "Law Enforcement (Lv. 76-99)") - public static NpcStringId LAW_ENFORCEMENT_LV_76_99; + @ClientString(id = 6101, message = "|Lv. 76-99| Law Enforcement") + public static NpcStringId LV_76_99_LAW_ENFORCEMENT; - @ClientString(id = 6102, message = "Law Enforcement (Lv. 76-99) (In Progress)") - public static NpcStringId LAW_ENFORCEMENT_LV_76_99_IN_PROGRESS; + @ClientString(id = 6102, message = "|Lv. 76-99| Law Enforcement (In Progress)") + public static NpcStringId LV_76_99_LAW_ENFORCEMENT_IN_PROGRESS; - @ClientString(id = 6103, message = "Law Enforcement (Lv. 76-99) (Done)") - public static NpcStringId LAW_ENFORCEMENT_LV_76_99_DONE; + @ClientString(id = 6103, message = "|Lv. 76-99| Law Enforcement (Done)") + public static NpcStringId LV_76_99_LAW_ENFORCEMENT_DONE; - @ClientString(id = 6104, message = "Law Enforcement (Lv. 76-99)") - public static NpcStringId LAW_ENFORCEMENT_LV_76_99_2; + @ClientString(id = 6104, message = "|Lv. 76-99| Law Enforcement") + public static NpcStringId LV_76_99_LAW_ENFORCEMENT_2; @ClientString(id = 6201, message = "Path of the Trooper") public static NpcStringId PATH_OF_THE_TROOPER; @@ -3145,41 +3145,41 @@ public final class NpcStringId @ClientString(id = 10803, message = "Jumble, Tumble, Diamond Fuss (Done)") public static NpcStringId JUMBLE_TUMBLE_DIAMOND_FUSS_DONE; - @ClientString(id = 10901, message = "In Search of the Nest (Lv. 81-99)") - public static NpcStringId IN_SEARCH_OF_THE_NEST_LV_81_99; + @ClientString(id = 10901, message = "|Lv. 81-99| In Search of the Nest") + public static NpcStringId LV_81_99_IN_SEARCH_OF_THE_NEST; - @ClientString(id = 10902, message = "In Search of the Nest (Lv. 81-99) (In Progress)") - public static NpcStringId IN_SEARCH_OF_THE_NEST_LV_81_99_IN_PROGRESS; + @ClientString(id = 10902, message = "|Lv. 81-99| In Search of the Nest (In Progress)") + public static NpcStringId LV_81_99_IN_SEARCH_OF_THE_NEST_IN_PROGRESS; - @ClientString(id = 10903, message = "In Search of the Nest (Lv. 81-99) (Done)") - public static NpcStringId IN_SEARCH_OF_THE_NEST_LV_81_99_DONE; + @ClientString(id = 10903, message = "|Lv. 81-99| In Search of the Nest (Done)") + public static NpcStringId LV_81_99_IN_SEARCH_OF_THE_NEST_DONE; - @ClientString(id = 10904, message = "In Search of the Nest (Lv. 81-99)") - public static NpcStringId IN_SEARCH_OF_THE_NEST_LV_81_99_2; + @ClientString(id = 10904, message = "|Lv. 81-99| In Search of the Nest") + public static NpcStringId LV_81_99_IN_SEARCH_OF_THE_NEST_2; - @ClientString(id = 11001, message = "To the Primeval Isle (Lv. 75-99)") - public static NpcStringId TO_THE_PRIMEVAL_ISLE_LV_75_99; + @ClientString(id = 11001, message = "|Lv. 75-99| To the Primeval Isle") + public static NpcStringId LV_75_99_TO_THE_PRIMEVAL_ISLE; - @ClientString(id = 11002, message = "To the Primeval Isle (Lv. 75-99) (In Progress)") - public static NpcStringId TO_THE_PRIMEVAL_ISLE_LV_75_99_IN_PROGRESS; + @ClientString(id = 11002, message = "|Lv. 75-99| To the Primeval Isle (In Progress)") + public static NpcStringId LV_75_99_TO_THE_PRIMEVAL_ISLE_IN_PROGRESS; - @ClientString(id = 11003, message = "To the Primeval Isle (Lv. 75-99) (Done)") - public static NpcStringId TO_THE_PRIMEVAL_ISLE_LV_75_99_DONE; + @ClientString(id = 11003, message = "|Lv. 75-99| To the Primeval Isle (Done)") + public static NpcStringId LV_75_99_TO_THE_PRIMEVAL_ISLE_DONE; - @ClientString(id = 11004, message = "To the Primeval Isle (Lv. 75-99)") - public static NpcStringId TO_THE_PRIMEVAL_ISLE_LV_75_99_2; + @ClientString(id = 11004, message = "|Lv. 75-99| To the Primeval Isle") + public static NpcStringId LV_75_99_TO_THE_PRIMEVAL_ISLE_2; - @ClientString(id = 11101, message = "Elrokian Hunter's Proof (Lv. 75-99)") - public static NpcStringId ELROKIAN_HUNTER_S_PROOF_LV_75_99; + @ClientString(id = 11101, message = "|Lv. 75-99| Elrokian Hunter's Proof") + public static NpcStringId LV_75_99_ELROKIAN_HUNTER_S_PROOF; - @ClientString(id = 11102, message = "Elrokian Hunter's Proof (Lv. 75-99) (In Progress)") - public static NpcStringId ELROKIAN_HUNTER_S_PROOF_LV_75_99_IN_PROGRESS; + @ClientString(id = 11102, message = "|Lv. 75-99| Elrokian Hunter's Proof (In Progress)") + public static NpcStringId LV_75_99_ELROKIAN_HUNTER_S_PROOF_IN_PROGRESS; - @ClientString(id = 11103, message = "Elrokian Hunter's Proof (Lv. 75-99) (Done)") - public static NpcStringId ELROKIAN_HUNTER_S_PROOF_LV_75_99_DONE; + @ClientString(id = 11103, message = "|Lv. 75-99| Elrokian Hunter's Proof (Done)") + public static NpcStringId LV_75_99_ELROKIAN_HUNTER_S_PROOF_DONE; - @ClientString(id = 11104, message = "Elrokian Hunter's Proof (Lv. 75-99)") - public static NpcStringId ELROKIAN_HUNTER_S_PROOF_LV_75_99_2; + @ClientString(id = 11104, message = "|Lv. 75-99| Elrokian Hunter's Proof") + public static NpcStringId LV_75_99_ELROKIAN_HUNTER_S_PROOF_2; @ClientString(id = 11201, message = "Walk of Fate") public static NpcStringId WALK_OF_FATE; @@ -3190,29 +3190,29 @@ public final class NpcStringId @ClientString(id = 11203, message = "Walk of Fate (Done)") public static NpcStringId WALK_OF_FATE_DONE; - @ClientString(id = 11301, message = "Status of the Beacon Tower (Lv. 80-99)") - public static NpcStringId STATUS_OF_THE_BEACON_TOWER_LV_80_99; + @ClientString(id = 11301, message = "|Lv. 80-99| Status of the Beacon Tower") + public static NpcStringId LV_80_99_STATUS_OF_THE_BEACON_TOWER; - @ClientString(id = 11302, message = "Status of the Beacon Tower (Lv. 80-99) (In Progress)") - public static NpcStringId STATUS_OF_THE_BEACON_TOWER_LV_80_99_IN_PROGRESS; + @ClientString(id = 11302, message = "|Lv. 80-99| Status of the Beacon Tower (In Progress)") + public static NpcStringId LV_80_99_STATUS_OF_THE_BEACON_TOWER_IN_PROGRESS; - @ClientString(id = 11303, message = "Status of the Beacon Tower (Lv. 80-99) (Done)") - public static NpcStringId STATUS_OF_THE_BEACON_TOWER_LV_80_99_DONE; + @ClientString(id = 11303, message = "|Lv. 80-99| Status of the Beacon Tower (Done)") + public static NpcStringId LV_80_99_STATUS_OF_THE_BEACON_TOWER_DONE; - @ClientString(id = 11304, message = "Status of the Beacon Tower (Lv. 80-99)") - public static NpcStringId STATUS_OF_THE_BEACON_TOWER_LV_80_99_2; + @ClientString(id = 11304, message = "|Lv. 80-99| Status of the Beacon Tower") + public static NpcStringId LV_80_99_STATUS_OF_THE_BEACON_TOWER_2; - @ClientString(id = 11401, message = "Resurrection of an Old Manager (Lv. 70-99)") - public static NpcStringId RESURRECTION_OF_AN_OLD_MANAGER_LV_70_99; + @ClientString(id = 11401, message = "|Lv. 70-99| Resurrection of an Old Manager") + public static NpcStringId LV_70_99_RESURRECTION_OF_AN_OLD_MANAGER; - @ClientString(id = 11402, message = "Resurrection of an Old Manager (Lv. 70-99) (In Progress)") - public static NpcStringId RESURRECTION_OF_AN_OLD_MANAGER_LV_70_99_IN_PROGRESS; + @ClientString(id = 11402, message = "|Lv. 70-99| Resurrection of an Old Manager (In Progress)") + public static NpcStringId LV_70_99_RESURRECTION_OF_AN_OLD_MANAGER_IN_PROGRESS; - @ClientString(id = 11403, message = "Resurrection of an Old Manager (Lv. 70-99) (Done)") - public static NpcStringId RESURRECTION_OF_AN_OLD_MANAGER_LV_70_99_DONE; + @ClientString(id = 11403, message = "|Lv. 70-99| Resurrection of an Old Manager (Done)") + public static NpcStringId LV_70_99_RESURRECTION_OF_AN_OLD_MANAGER_DONE; - @ClientString(id = 11404, message = "Resurrection of an Old Manager (Lv. 70-99)") - public static NpcStringId RESURRECTION_OF_AN_OLD_MANAGER_LV_70_99_2; + @ClientString(id = 11404, message = "|Lv. 70-99| Resurrection of an Old Manager") + public static NpcStringId LV_70_99_RESURRECTION_OF_AN_OLD_MANAGER_2; @ClientString(id = 11450, message = "You, $s1, you attacked Wendy. Prepare to die!") public static NpcStringId YOU_S1_YOU_ATTACKED_WENDY_PREPARE_TO_DIE; @@ -3226,17 +3226,17 @@ public final class NpcStringId @ClientString(id = 11453, message = "The radio signal detector is responding. # A suspicious pile of stones catches your eye.") public static NpcStringId THE_RADIO_SIGNAL_DETECTOR_IS_RESPONDING_A_SUSPICIOUS_PILE_OF_STONES_CATCHES_YOUR_EYE; - @ClientString(id = 11501, message = "The Other Side of Truth (Lv. 53-63)") - public static NpcStringId THE_OTHER_SIDE_OF_TRUTH_LV_53_63; + @ClientString(id = 11501, message = "|Lv. 53-63| The Other Side of Truth") + public static NpcStringId LV_53_63_THE_OTHER_SIDE_OF_TRUTH; - @ClientString(id = 11502, message = "The Other Side of Truth (Lv. 53-63) (In Progress)") - public static NpcStringId THE_OTHER_SIDE_OF_TRUTH_LV_53_63_IN_PROGRESS; + @ClientString(id = 11502, message = "|Lv. 53-63| The Other Side of Truth (In Progress)") + public static NpcStringId LV_53_63_THE_OTHER_SIDE_OF_TRUTH_IN_PROGRESS; - @ClientString(id = 11503, message = "The Other Side of Truth (Lv. 53-63) (Done)") - public static NpcStringId THE_OTHER_SIDE_OF_TRUTH_LV_53_63_DONE; + @ClientString(id = 11503, message = "|Lv. 53-63| The Other Side of Truth (Done)") + public static NpcStringId LV_53_63_THE_OTHER_SIDE_OF_TRUTH_DONE; - @ClientString(id = 11504, message = "The Other Side of Truth (Lv. 53-63)") - public static NpcStringId THE_OTHER_SIDE_OF_TRUTH_LV_53_63_2; + @ClientString(id = 11504, message = "|Lv. 53-63| The Other Side of Truth") + public static NpcStringId LV_53_63_THE_OTHER_SIDE_OF_TRUTH_2; @ClientString(id = 11505, message = "$s1 has become the Hero of the Sigel Phoenix Knight class. Congratulations!") public static NpcStringId S1_HAS_BECOME_THE_HERO_OF_THE_SIGEL_PHOENIX_KNIGHT_CLASS_CONGRATULATIONS; @@ -3367,17 +3367,17 @@ public final class NpcStringId @ClientString(id = 11603, message = "Beyond the Hills of Winter (Done)") public static NpcStringId BEYOND_THE_HILLS_OF_WINTER_DONE; - @ClientString(id = 11701, message = "The Ocean of Distant Stars (Lv. 39-99)") - public static NpcStringId THE_OCEAN_OF_DISTANT_STARS_LV_39_99; + @ClientString(id = 11701, message = "|Lv. 39-99| The Ocean of Distant Stars") + public static NpcStringId LV_39_99_THE_OCEAN_OF_DISTANT_STARS; - @ClientString(id = 11702, message = "The Ocean of Distant Stars (Lv. 39-99) (In Progress)") - public static NpcStringId THE_OCEAN_OF_DISTANT_STARS_LV_39_99_IN_PROGRESS; + @ClientString(id = 11702, message = "|Lv. 39-99| The Ocean of Distant Stars (In Progress)") + public static NpcStringId LV_39_99_THE_OCEAN_OF_DISTANT_STARS_IN_PROGRESS; - @ClientString(id = 11703, message = "The Ocean of Distant Stars (Lv. 39-99) (Done)") - public static NpcStringId THE_OCEAN_OF_DISTANT_STARS_LV_39_99_DONE; + @ClientString(id = 11703, message = "|Lv. 39-99| The Ocean of Distant Stars (Done)") + public static NpcStringId LV_39_99_THE_OCEAN_OF_DISTANT_STARS_DONE; - @ClientString(id = 11704, message = "The Ocean of Distant Stars (Lv. 39-99)") - public static NpcStringId THE_OCEAN_OF_DISTANT_STARS_LV_39_99_2; + @ClientString(id = 11704, message = "|Lv. 39-99| The Ocean of Distant Stars") + public static NpcStringId LV_39_99_THE_OCEAN_OF_DISTANT_STARS_2; @ClientString(id = 11801, message = "To Lead and Be Led") public static NpcStringId TO_LEAD_AND_BE_LED; @@ -3391,53 +3391,53 @@ public final class NpcStringId @ClientString(id = 11804, message = "To Lead and Be Led (Sponsor)") public static NpcStringId TO_LEAD_AND_BE_LED_SPONSOR; - @ClientString(id = 11901, message = "Last Imperial Prince (Lv. 74-80)") - public static NpcStringId LAST_IMPERIAL_PRINCE_LV_74_80; + @ClientString(id = 11901, message = "|Lv. 74-80| Last Imperial Prince") + public static NpcStringId LV_74_80_LAST_IMPERIAL_PRINCE; - @ClientString(id = 11902, message = "Last Imperial Prince (Lv. 74-80) (In Progress)") - public static NpcStringId LAST_IMPERIAL_PRINCE_LV_74_80_IN_PROGRESS; + @ClientString(id = 11902, message = "|Lv. 74-80| Last Imperial Prince (In Progress)") + public static NpcStringId LV_74_80_LAST_IMPERIAL_PRINCE_IN_PROGRESS; - @ClientString(id = 11903, message = "Last Imperial Prince (Lv. 74-80) (Done)") - public static NpcStringId LAST_IMPERIAL_PRINCE_LV_74_80_DONE; + @ClientString(id = 11903, message = "|Lv. 74-80| Last Imperial Prince (Done)") + public static NpcStringId LV_74_80_LAST_IMPERIAL_PRINCE_DONE; - @ClientString(id = 11904, message = "Last Imperial Prince (Lv. 74-80)") - public static NpcStringId LAST_IMPERIAL_PRINCE_LV_74_80_2; + @ClientString(id = 11904, message = "|Lv. 74-80| Last Imperial Prince") + public static NpcStringId LV_74_80_LAST_IMPERIAL_PRINCE_2; - @ClientString(id = 12001, message = "Pavel's Last Research (Lv. 70-99)") - public static NpcStringId PAVEL_S_LAST_RESEARCH_LV_70_99; + @ClientString(id = 12001, message = "|Lv. 70-99| Pavel's Last Research") + public static NpcStringId LV_70_99_PAVEL_S_LAST_RESEARCH; - @ClientString(id = 12002, message = "Pavel's Last Research (Lv. 70-99) (In Progress)") - public static NpcStringId PAVEL_S_LAST_RESEARCH_LV_70_99_IN_PROGRESS; + @ClientString(id = 12002, message = "|Lv. 70-99| Pavel's Last Research (In Progress)") + public static NpcStringId LV_70_99_PAVEL_S_LAST_RESEARCH_IN_PROGRESS; - @ClientString(id = 12003, message = "Pavel's Last Research (Lv. 70-99) (Done)") - public static NpcStringId PAVEL_S_LAST_RESEARCH_LV_70_99_DONE; + @ClientString(id = 12003, message = "|Lv. 70-99| Pavel's Last Research (Done)") + public static NpcStringId LV_70_99_PAVEL_S_LAST_RESEARCH_DONE; - @ClientString(id = 12004, message = "Pavel's Last Research (Lv. 70-99)") - public static NpcStringId PAVEL_S_LAST_RESEARCH_LV_70_99_2; + @ClientString(id = 12004, message = "|Lv. 70-99| Pavel's Last Research") + public static NpcStringId LV_70_99_PAVEL_S_LAST_RESEARCH_2; - @ClientString(id = 12101, message = "Pavel the Giant (Lv. 70-99)") - public static NpcStringId PAVEL_THE_GIANT_LV_70_99; + @ClientString(id = 12101, message = "|Lv. 70-99| Pavel the Giant") + public static NpcStringId LV_70_99_PAVEL_THE_GIANT; - @ClientString(id = 12102, message = "Pavel the Giant (Lv. 70-99) (In Progress)") - public static NpcStringId PAVEL_THE_GIANT_LV_70_99_IN_PROGRESS; + @ClientString(id = 12102, message = "|Lv. 70-99| Pavel the Giant (In Progress)") + public static NpcStringId LV_70_99_PAVEL_THE_GIANT_IN_PROGRESS; - @ClientString(id = 12103, message = "Pavel the Giant (Lv. 70-99) (Done)") - public static NpcStringId PAVEL_THE_GIANT_LV_70_99_DONE; + @ClientString(id = 12103, message = "|Lv. 70-99| Pavel the Giant (Done)") + public static NpcStringId LV_70_99_PAVEL_THE_GIANT_DONE; - @ClientString(id = 12104, message = "Pavel the Giant (Lv. 70-99)") - public static NpcStringId PAVEL_THE_GIANT_LV_70_99_2; + @ClientString(id = 12104, message = "|Lv. 70-99| Pavel the Giant") + public static NpcStringId LV_70_99_PAVEL_THE_GIANT_2; - @ClientString(id = 12201, message = "Ominous News (Lv. 20-36)") - public static NpcStringId OMINOUS_NEWS_LV_20_36; + @ClientString(id = 12201, message = "|Lv. 20-36| Ominous News") + public static NpcStringId LV_20_36_OMINOUS_NEWS; - @ClientString(id = 12202, message = "Ominous News (Lv. 20-36) (In Progress)") - public static NpcStringId OMINOUS_NEWS_LV_20_36_IN_PROGRESS; + @ClientString(id = 12202, message = "|Lv. 20-36| Ominous News (In Progress)") + public static NpcStringId LV_20_36_OMINOUS_NEWS_IN_PROGRESS; - @ClientString(id = 12203, message = "Ominous News (Lv. 20-36) (Done)") - public static NpcStringId OMINOUS_NEWS_LV_20_36_DONE; + @ClientString(id = 12203, message = "|Lv. 20-36| Ominous News (Done)") + public static NpcStringId LV_20_36_OMINOUS_NEWS_DONE; - @ClientString(id = 12204, message = "Ominous News (Lv. 20-36)") - public static NpcStringId OMINOUS_NEWS_LV_20_36_2; + @ClientString(id = 12204, message = "|Lv. 20-36| Ominous News") + public static NpcStringId LV_20_36_OMINOUS_NEWS_2; @ClientString(id = 12301, message = "The Leader and the Follower") public static NpcStringId THE_LEADER_AND_THE_FOLLOWER; @@ -3451,41 +3451,41 @@ public final class NpcStringId @ClientString(id = 12304, message = "The Leader and the Follower (Sponsor)") public static NpcStringId THE_LEADER_AND_THE_FOLLOWER_SPONSOR; - @ClientString(id = 12401, message = "Meeting the Elroki (Lv. 75-99)") - public static NpcStringId MEETING_THE_ELROKI_LV_75_99; + @ClientString(id = 12401, message = "|Lv. 75-99| Meeting the Elroki") + public static NpcStringId LV_75_99_MEETING_THE_ELROKI; - @ClientString(id = 12402, message = "Meeting the Elroki (Lv. 75-99) (In Progress)") - public static NpcStringId MEETING_THE_ELROKI_LV_75_99_IN_PROGRESS; + @ClientString(id = 12402, message = "|Lv. 75-99| Meeting the Elroki (In Progress)") + public static NpcStringId LV_75_99_MEETING_THE_ELROKI_IN_PROGRESS; - @ClientString(id = 12403, message = "Meeting the Elroki (Lv. 75-99) (Done)") - public static NpcStringId MEETING_THE_ELROKI_LV_75_99_DONE; + @ClientString(id = 12403, message = "|Lv. 75-99| Meeting the Elroki (Done)") + public static NpcStringId LV_75_99_MEETING_THE_ELROKI_DONE; - @ClientString(id = 12404, message = "Meeting the Elroki (Lv. 75-99)") - public static NpcStringId MEETING_THE_ELROKI_LV_75_99_2; + @ClientString(id = 12404, message = "|Lv. 75-99| Meeting the Elroki") + public static NpcStringId LV_75_99_MEETING_THE_ELROKI_2; - @ClientString(id = 12501, message = "The Name of Evil 1 (Lv. 76-99)") - public static NpcStringId THE_NAME_OF_EVIL_1_LV_76_99; + @ClientString(id = 12501, message = "|Lv. 76-99| The Name of Evil 1") + public static NpcStringId LV_76_99_THE_NAME_OF_EVIL_1; - @ClientString(id = 12502, message = "The Name of Evil 1 (Lv. 76-99) (In Progress)") - public static NpcStringId THE_NAME_OF_EVIL_1_LV_76_99_IN_PROGRESS; + @ClientString(id = 12502, message = "|Lv. 76-99| The Name of Evil 1 (In Progress)") + public static NpcStringId LV_76_99_THE_NAME_OF_EVIL_1_IN_PROGRESS; - @ClientString(id = 12503, message = "The Name of Evil 1 (Lv. 76-99) (Done)") - public static NpcStringId THE_NAME_OF_EVIL_1_LV_76_99_DONE; + @ClientString(id = 12503, message = "|Lv. 76-99| The Name of Evil 1 (Done)") + public static NpcStringId LV_76_99_THE_NAME_OF_EVIL_1_DONE; - @ClientString(id = 12504, message = "The Name of Evil 1 (Lv. 76-99)") - public static NpcStringId THE_NAME_OF_EVIL_1_LV_76_99_2; + @ClientString(id = 12504, message = "|Lv. 76-99| The Name of Evil 1") + public static NpcStringId LV_76_99_THE_NAME_OF_EVIL_1_2; - @ClientString(id = 12601, message = "The Name of Evil 2 (Lv. 77-99)") - public static NpcStringId THE_NAME_OF_EVIL_2_LV_77_99; + @ClientString(id = 12601, message = "|Lv. 77-99| The Name of Evil 2") + public static NpcStringId LV_77_99_THE_NAME_OF_EVIL_2; - @ClientString(id = 12602, message = "The Name of Evil 2 (Lv. 77-99) (In Progress)") - public static NpcStringId THE_NAME_OF_EVIL_2_LV_77_99_IN_PROGRESS; + @ClientString(id = 12602, message = "|Lv. 77-99| The Name of Evil 2 (In Progress)") + public static NpcStringId LV_77_99_THE_NAME_OF_EVIL_2_IN_PROGRESS; - @ClientString(id = 12603, message = "The Name of Evil 2 (Lv. 77-99) (Done)") - public static NpcStringId THE_NAME_OF_EVIL_2_LV_77_99_DONE; + @ClientString(id = 12603, message = "|Lv. 77-99| The Name of Evil 2 (Done)") + public static NpcStringId LV_77_99_THE_NAME_OF_EVIL_2_DONE; - @ClientString(id = 12604, message = "The Name of Evil 2 (Lv. 77-99)") - public static NpcStringId THE_NAME_OF_EVIL_2_LV_77_99_2; + @ClientString(id = 12604, message = "|Lv. 77-99| The Name of Evil 2") + public static NpcStringId LV_77_99_THE_NAME_OF_EVIL_2_2; @ClientString(id = 12701, message = "Fishing Specialist's Request") public static NpcStringId FISHING_SPECIALIST_S_REQUEST; @@ -3496,26 +3496,26 @@ public final class NpcStringId @ClientString(id = 12703, message = "Fishing Specialist's Request (Done)") public static NpcStringId FISHING_SPECIALIST_S_REQUEST_DONE; - @ClientString(id = 12801, message = "Pailaka - Song of Ice and Fire (Lv. 49-55)") - public static NpcStringId PAILAKA_SONG_OF_ICE_AND_FIRE_LV_49_55; + @ClientString(id = 12801, message = "|Lv. 49-55| Pailaka - Song of Ice and Fire") + public static NpcStringId LV_49_55_PAILAKA_SONG_OF_ICE_AND_FIRE; - @ClientString(id = 12802, message = "Pailaka - Song of Ice and Fire (Lv. 49-55) (In Progress)") - public static NpcStringId PAILAKA_SONG_OF_ICE_AND_FIRE_LV_49_55_IN_PROGRESS; + @ClientString(id = 12802, message = "|Lv. 49-55| Pailaka - Song of Ice and Fire (In Progress)") + public static NpcStringId LV_49_55_PAILAKA_SONG_OF_ICE_AND_FIRE_IN_PROGRESS; - @ClientString(id = 12803, message = "Pailaka - Song of Ice and Fire (Lv. 49-55) (done)") - public static NpcStringId PAILAKA_SONG_OF_ICE_AND_FIRE_LV_49_55_DONE; + @ClientString(id = 12803, message = "|Lv. 49-55| Pailaka - Song of Ice and Fire (Done)") + public static NpcStringId LV_49_55_PAILAKA_SONG_OF_ICE_AND_FIRE_DONE; - @ClientString(id = 12804, message = "Pailaka - Song of Ice and Fire (Lv. 49-55)") - public static NpcStringId PAILAKA_SONG_OF_ICE_AND_FIRE_LV_49_55_2; + @ClientString(id = 12804, message = "|Lv. 49-55| Pailaka - Song of Ice and Fire") + public static NpcStringId LV_49_55_PAILAKA_SONG_OF_ICE_AND_FIRE_2; - @ClientString(id = 12901, message = "Pailaka - Devil's Legacy (Lv. 61-67)") - public static NpcStringId PAILAKA_DEVIL_S_LEGACY_LV_61_67; + @ClientString(id = 12901, message = "|Lv. 61-67| Pailaka - Devil's Legacy") + public static NpcStringId LV_61_67_PAILAKA_DEVIL_S_LEGACY; - @ClientString(id = 12902, message = "Pailaka - Devil's Legacy (Lv. 61-67) (In Progress)") - public static NpcStringId PAILAKA_DEVIL_S_LEGACY_LV_61_67_IN_PROGRESS; + @ClientString(id = 12902, message = "|Lv. 61-67| Pailaka - Devil's Legacy (In Progress)") + public static NpcStringId LV_61_67_PAILAKA_DEVIL_S_LEGACY_IN_PROGRESS; - @ClientString(id = 12903, message = "Pailaka - Devil's Legacy (Lv. 61-67) (done)") - public static NpcStringId PAILAKA_DEVIL_S_LEGACY_LV_61_67_DONE; + @ClientString(id = 12903, message = "|Lv. 61-67| Pailaka - Devil's Legacy (Done)") + public static NpcStringId LV_61_67_PAILAKA_DEVIL_S_LEGACY_DONE; @ClientString(id = 13001, message = "Path to Hellbound") public static NpcStringId PATH_TO_HELLBOUND; @@ -3565,134 +3565,134 @@ public final class NpcStringId @ClientString(id = 13304, message = "That's Bloody Hot!") public static NpcStringId THAT_S_BLOODY_HOT_2; - @ClientString(id = 13401, message = "Temple Missionary (Lv. 35-99)") - public static NpcStringId TEMPLE_MISSIONARY_LV_35_99; + @ClientString(id = 13401, message = "|Lv. 35-99| Temple Missionary") + public static NpcStringId LV_35_99_TEMPLE_MISSIONARY; - @ClientString(id = 13402, message = "Temple Missionary (Lv. 35-99) (In Progress)") - public static NpcStringId TEMPLE_MISSIONARY_LV_35_99_IN_PROGRESS; + @ClientString(id = 13402, message = "|Lv. 35-99| Temple Missionary (In Progress)") + public static NpcStringId LV_35_99_TEMPLE_MISSIONARY_IN_PROGRESS; - @ClientString(id = 13403, message = "Temple Missionary (Lv. 35-99) (Done)") - public static NpcStringId TEMPLE_MISSIONARY_LV_35_99_DONE; + @ClientString(id = 13403, message = "|Lv. 35-99| Temple Missionary (Done)") + public static NpcStringId LV_35_99_TEMPLE_MISSIONARY_DONE; - @ClientString(id = 13404, message = "Temple Missionary (Lv. 35-99)") - public static NpcStringId TEMPLE_MISSIONARY_LV_35_99_2; + @ClientString(id = 13404, message = "|Lv. 35-99| Temple Missionary") + public static NpcStringId LV_35_99_TEMPLE_MISSIONARY_2; - @ClientString(id = 13501, message = "Temple Executor (Lv. 35-99)") - public static NpcStringId TEMPLE_EXECUTOR_LV_35_99; + @ClientString(id = 13501, message = "|Lv. 35-99| Temple Executor") + public static NpcStringId LV_35_99_TEMPLE_EXECUTOR; - @ClientString(id = 13502, message = "Temple Executor (Lv. 35-99) (In Progress)") - public static NpcStringId TEMPLE_EXECUTOR_LV_35_99_IN_PROGRESS; + @ClientString(id = 13502, message = "|Lv. 35-99| Temple Executor (In Progress)") + public static NpcStringId LV_35_99_TEMPLE_EXECUTOR_IN_PROGRESS; - @ClientString(id = 13503, message = "Temple Executor (Lv. 35-99) (Done)") - public static NpcStringId TEMPLE_EXECUTOR_LV_35_99_DONE; + @ClientString(id = 13503, message = "|Lv. 35-99| Temple Executor (Done)") + public static NpcStringId LV_35_99_TEMPLE_EXECUTOR_DONE; - @ClientString(id = 13504, message = "Temple Executor (Lv. 35-99)") - public static NpcStringId TEMPLE_EXECUTOR_LV_35_99_2; + @ClientString(id = 13504, message = "|Lv. 35-99| Temple Executor") + public static NpcStringId LV_35_99_TEMPLE_EXECUTOR_2; - @ClientString(id = 13601, message = "More Than Meets the Eye (Lv. 50-99)") - public static NpcStringId MORE_THAN_MEETS_THE_EYE_LV_50_99; + @ClientString(id = 13601, message = "|Lv. 50-99| More Than Meets the Eye") + public static NpcStringId LV_50_99_MORE_THAN_MEETS_THE_EYE; - @ClientString(id = 13602, message = "More Than Meets the Eye (Lv. 50-99) (In Progress)") - public static NpcStringId MORE_THAN_MEETS_THE_EYE_LV_50_99_IN_PROGRESS; + @ClientString(id = 13602, message = "|Lv. 50-99| More Than Meets the Eye (In Progress)") + public static NpcStringId LV_50_99_MORE_THAN_MEETS_THE_EYE_IN_PROGRESS; - @ClientString(id = 13603, message = "More Than Meets the Eye (Lv. 50-99) (Done)") - public static NpcStringId MORE_THAN_MEETS_THE_EYE_LV_50_99_DONE; + @ClientString(id = 13603, message = "|Lv. 50-99| More Than Meets the Eye (Done)") + public static NpcStringId LV_50_99_MORE_THAN_MEETS_THE_EYE_DONE; - @ClientString(id = 13604, message = "More Than Meets the Eye (Lv. 50-99)") - public static NpcStringId MORE_THAN_MEETS_THE_EYE_LV_50_99_2; + @ClientString(id = 13604, message = "|Lv. 50-99| More Than Meets the Eye") + public static NpcStringId LV_50_99_MORE_THAN_MEETS_THE_EYE_2; - @ClientString(id = 13701, message = "Temple Champion - 1 (Lv. 35-99)") - public static NpcStringId TEMPLE_CHAMPION_1_LV_35_99; + @ClientString(id = 13701, message = "|Lv. 35-99| Temple Champion - 1") + public static NpcStringId LV_35_99_TEMPLE_CHAMPION_1; - @ClientString(id = 13702, message = "Temple Champion - 1 (Lv. 35-99) (In Progress)") - public static NpcStringId TEMPLE_CHAMPION_1_LV_35_99_IN_PROGRESS; + @ClientString(id = 13702, message = "|Lv. 35-99| Temple Champion - 1 (In Progress)") + public static NpcStringId LV_35_99_TEMPLE_CHAMPION_1_IN_PROGRESS; - @ClientString(id = 13703, message = "Temple Champion - 1 (Lv. 35-99) (Done)") - public static NpcStringId TEMPLE_CHAMPION_1_LV_35_99_DONE; + @ClientString(id = 13703, message = "|Lv. 35-99| Temple Champion - 1 (Done)") + public static NpcStringId LV_35_99_TEMPLE_CHAMPION_1_DONE; - @ClientString(id = 13704, message = "Temple Champion - 1 (Lv. 35-99)") - public static NpcStringId TEMPLE_CHAMPION_1_LV_35_99_2; + @ClientString(id = 13704, message = "|Lv. 35-99| Temple Champion - 1") + public static NpcStringId LV_35_99_TEMPLE_CHAMPION_1_2; - @ClientString(id = 13801, message = "Temple Champion - 2 (Lv. 36-99)") - public static NpcStringId TEMPLE_CHAMPION_2_LV_36_99; + @ClientString(id = 13801, message = "|Lv. 36-99| Temple Champion - 2") + public static NpcStringId LV_36_99_TEMPLE_CHAMPION_2; - @ClientString(id = 13802, message = "Temple Champion - 2 (Lv. 36-99) (In Progress)") - public static NpcStringId TEMPLE_CHAMPION_2_LV_36_99_IN_PROGRESS; + @ClientString(id = 13802, message = "|Lv. 36-99| Temple Champion - 2 (In Progress)") + public static NpcStringId LV_36_99_TEMPLE_CHAMPION_2_IN_PROGRESS; - @ClientString(id = 13803, message = "Temple Champion - 2 (Lv. 36-99) (Done)") - public static NpcStringId TEMPLE_CHAMPION_2_LV_36_99_DONE; + @ClientString(id = 13803, message = "|Lv. 36-99| Temple Champion - 2 (Done)") + public static NpcStringId LV_36_99_TEMPLE_CHAMPION_2_DONE; - @ClientString(id = 13804, message = "Temple Champion - 2 (Lv. 36-99)") - public static NpcStringId TEMPLE_CHAMPION_2_LV_36_99_2; + @ClientString(id = 13804, message = "|Lv. 36-99| Temple Champion - 2") + public static NpcStringId LV_36_99_TEMPLE_CHAMPION_2_2; - @ClientString(id = 13901, message = "Shadow Fox - 1 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_1_LV_37_99; + @ClientString(id = 13901, message = "|Lv. 37-99| Shadow Fox - 1") + public static NpcStringId LV_37_99_SHADOW_FOX_1; - @ClientString(id = 13902, message = "Shadow Fox - 1 (Lv. 37-99) (In Progress)") - public static NpcStringId SHADOW_FOX_1_LV_37_99_IN_PROGRESS; + @ClientString(id = 13902, message = "|Lv. 37-99| Shadow Fox - 1 (In Progress)") + public static NpcStringId LV_37_99_SHADOW_FOX_1_IN_PROGRESS; - @ClientString(id = 13903, message = "Shadow Fox - 1 (Lv. 37-99) (Done)") - public static NpcStringId SHADOW_FOX_1_LV_37_99_DONE; + @ClientString(id = 13903, message = "|Lv. 37-99| Shadow Fox - 1 (Done)") + public static NpcStringId LV_37_99_SHADOW_FOX_1_DONE; - @ClientString(id = 13904, message = "Shadow Fox - 1 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_1_LV_37_99_2; + @ClientString(id = 13904, message = "|Lv. 37-99| Shadow Fox - 1") + public static NpcStringId LV_37_99_SHADOW_FOX_1_2; - @ClientString(id = 14001, message = "Shadow Fox - 2 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_2_LV_37_99; + @ClientString(id = 14001, message = "|Lv. 37-99| Shadow Fox - 2") + public static NpcStringId LV_37_99_SHADOW_FOX_2; - @ClientString(id = 14002, message = "Shadow Fox - 2 (Lv. 37-99) (In Progress)") - public static NpcStringId SHADOW_FOX_2_LV_37_99_IN_PROGRESS; + @ClientString(id = 14002, message = "|Lv. 37-99| Shadow Fox - 2 (In Progress)") + public static NpcStringId LV_37_99_SHADOW_FOX_2_IN_PROGRESS; - @ClientString(id = 14003, message = "Shadow Fox - 2 (Lv. 37-99) (Done)") - public static NpcStringId SHADOW_FOX_2_LV_37_99_DONE; + @ClientString(id = 14003, message = "|Lv. 37-99| Shadow Fox - 2 (Done)") + public static NpcStringId LV_37_99_SHADOW_FOX_2_DONE; - @ClientString(id = 14004, message = "Shadow Fox - 2 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_2_LV_37_99_2; + @ClientString(id = 14004, message = "|Lv. 37-99| Shadow Fox - 2") + public static NpcStringId LV_37_99_SHADOW_FOX_2_2; - @ClientString(id = 14101, message = "Shadow Fox - 3 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_3_LV_37_99; + @ClientString(id = 14101, message = "|Lv. 37-99| Shadow Fox - 3") + public static NpcStringId LV_37_99_SHADOW_FOX_3; - @ClientString(id = 14102, message = "Shadow Fox - 3 (Lv. 37-99) (In Progress)") - public static NpcStringId SHADOW_FOX_3_LV_37_99_IN_PROGRESS; + @ClientString(id = 14102, message = "|Lv. 37-99| Shadow Fox - 3 (In Progress)") + public static NpcStringId LV_37_99_SHADOW_FOX_3_IN_PROGRESS; - @ClientString(id = 14103, message = "Shadow Fox - 3 (Lv. 37-99) (Done)") - public static NpcStringId SHADOW_FOX_3_LV_37_99_DONE; + @ClientString(id = 14103, message = "|Lv. 37-99| Shadow Fox - 3 (Done)") + public static NpcStringId LV_37_99_SHADOW_FOX_3_DONE; - @ClientString(id = 14104, message = "Shadow Fox - 3 (Lv. 37-99)") - public static NpcStringId SHADOW_FOX_3_LV_37_99_2; + @ClientString(id = 14104, message = "|Lv. 37-99| Shadow Fox - 3") + public static NpcStringId LV_37_99_SHADOW_FOX_3_2; - @ClientString(id = 14201, message = "Fallen Angel - Request of Dawn (Lv. 38-99)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DAWN_LV_38_99; + @ClientString(id = 14201, message = "|Lv. 38-99| Fallen Angel - Request of Dawn") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DAWN; - @ClientString(id = 14202, message = "Fallen Angel - Request of Dawn (Lv. 38-99) (In Progress)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DAWN_LV_38_99_IN_PROGRESS; + @ClientString(id = 14202, message = "|Lv. 38-99| Fallen Angel - Request of Dawn (In Progress)") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DAWN_IN_PROGRESS; - @ClientString(id = 14203, message = "Fallen Angel - Request of Dawn (Lv. 38-99) (Done)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DAWN_LV_38_99_DONE; + @ClientString(id = 14203, message = "|Lv. 38-99| Fallen Angel - Request of Dawn (Done)") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DAWN_DONE; - @ClientString(id = 14204, message = "Fallen Angel - Request of Dawn (Lv. 38-99)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DAWN_LV_38_99_2; + @ClientString(id = 14204, message = "|Lv. 38-99| Fallen Angel - Request of Dawn") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DAWN_2; @ClientString(id = 14205, message = "Fallen Angel - Select") public static NpcStringId FALLEN_ANGEL_SELECT; - @ClientString(id = 14301, message = "Fallen Angel - Request of Dusk (Lv. 38-99)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DUSK_LV_38_99; + @ClientString(id = 14301, message = "|Lv. 38-99| Fallen Angel - Request of Dusk") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DUSK; - @ClientString(id = 14302, message = "Fallen Angel - Request of Dusk (Lv. 38-99) (In Progress)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DUSK_LV_38_99_IN_PROGRESS; + @ClientString(id = 14302, message = "|Lv. 38-99| Fallen Angel - Request of Dusk (In Progress)") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DUSK_IN_PROGRESS; - @ClientString(id = 14303, message = "Fallen Angel - Request of Dusk (Lv. 38-99) (Done)") - public static NpcStringId FALLEN_ANGEL_REQUEST_OF_DUSK_LV_38_99_DONE; + @ClientString(id = 14303, message = "|Lv. 38-99| Fallen Angel - Request of Dusk (Done)") + public static NpcStringId LV_38_99_FALLEN_ANGEL_REQUEST_OF_DUSK_DONE; - @ClientString(id = 14401, message = "Pailaka - Injured Dragon (Lv. 73-77)") - public static NpcStringId PAILAKA_INJURED_DRAGON_LV_73_77; + @ClientString(id = 14401, message = "|Lv. 73-77| Pailaka - Injured Dragon") + public static NpcStringId LV_73_77_PAILAKA_INJURED_DRAGON; - @ClientString(id = 14402, message = "Pailaka - Injured Dragon (Lv. 73-77) (In Progress)") - public static NpcStringId PAILAKA_INJURED_DRAGON_LV_73_77_IN_PROGRESS; + @ClientString(id = 14402, message = "|Lv. 73-77| Pailaka - Injured Dragon (In Progress)") + public static NpcStringId LV_73_77_PAILAKA_INJURED_DRAGON_IN_PROGRESS; - @ClientString(id = 14403, message = "Pailaka - Injured Dragon (Lv. 73-77) (done)") - public static NpcStringId PAILAKA_INJURED_DRAGON_LV_73_77_DONE; + @ClientString(id = 14403, message = "|Lv. 73-77| Pailaka - Injured Dragon (Done)") + public static NpcStringId LV_73_77_PAILAKA_INJURED_DRAGON_DONE; @ClientString(id = 14701, message = "Path to Becoming an Elite Mercenary") public static NpcStringId PATH_TO_BECOMING_AN_ELITE_MERCENARY; @@ -3712,29 +3712,29 @@ public final class NpcStringId @ClientString(id = 14803, message = "Path to Becoming an Exalted Mercenary (Done)") public static NpcStringId PATH_TO_BECOMING_AN_EXALTED_MERCENARY_DONE; - @ClientString(id = 14901, message = "Primal Mother, Istina (Lv. 90-99)") - public static NpcStringId PRIMAL_MOTHER_ISTINA_LV_90_99; + @ClientString(id = 14901, message = "|Lv. 90-99| Primal Mother, Istina") + public static NpcStringId LV_90_99_PRIMAL_MOTHER_ISTINA; - @ClientString(id = 14902, message = "Primal Mother, Istina (Lv. 90-99) (In Progress)") - public static NpcStringId PRIMAL_MOTHER_ISTINA_LV_90_99_IN_PROGRESS; + @ClientString(id = 14902, message = "|Lv. 90-99| Primal Mother, Istina (In Progress)") + public static NpcStringId LV_90_99_PRIMAL_MOTHER_ISTINA_IN_PROGRESS; - @ClientString(id = 14903, message = "Primal Mother, Istina (Lv. 90-99) (Done)") - public static NpcStringId PRIMAL_MOTHER_ISTINA_LV_90_99_DONE; + @ClientString(id = 14903, message = "|Lv. 90-99| Primal Mother, Istina (Done)") + public static NpcStringId LV_90_99_PRIMAL_MOTHER_ISTINA_DONE; - @ClientString(id = 14904, message = "Primal Mother, Istina (Lv. 90-99)") - public static NpcStringId PRIMAL_MOTHER_ISTINA_LV_90_99_2; + @ClientString(id = 14904, message = "|Lv. 90-99| Primal Mother, Istina") + public static NpcStringId LV_90_99_PRIMAL_MOTHER_ISTINA_2; - @ClientString(id = 15001, message = "Extreme Challenge: Primal Mother Resurrected (Lv. 97-99)") - public static NpcStringId EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_LV_97_99; + @ClientString(id = 15001, message = "|Lv. 97-99| Extreme Challenge: Primal Mother Resurrected") + public static NpcStringId LV_97_99_EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED; - @ClientString(id = 15002, message = "Extreme Challenge: Primal Mother Resurrected (Lv. 97-99) (In Progress)") - public static NpcStringId EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_LV_97_99_IN_PROGRESS; + @ClientString(id = 15002, message = "|Lv. 97-99| Extreme Challenge: Primal Mother Resurrected (In Progress)") + public static NpcStringId LV_97_99_EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_IN_PROGRESS; - @ClientString(id = 15003, message = "Extreme Challenge: Primal Mother Resurrected (Lv. 97-99) (Done)") - public static NpcStringId EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_LV_97_99_DONE; + @ClientString(id = 15003, message = "|Lv. 97-99| Extreme Challenge: Primal Mother Resurrected (Done)") + public static NpcStringId LV_97_99_EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_DONE; - @ClientString(id = 15004, message = "Extreme Challenge: Primal Mother Resurrected (Lv. 97-99)") - public static NpcStringId EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_LV_97_99_2; + @ClientString(id = 15004, message = "|Lv. 97-99| Extreme Challenge: Primal Mother Resurrected") + public static NpcStringId LV_97_99_EXTREME_CHALLENGE_PRIMAL_MOTHER_RESURRECTED_2; @ClientString(id = 15101, message = "Cure for Fever") public static NpcStringId CURE_FOR_FEVER; @@ -3997,17 +3997,17 @@ public final class NpcStringId @ClientString(id = 17604, message = "Steps for Honor") public static NpcStringId STEPS_FOR_HONOR_2; - @ClientString(id = 17701, message = "Split Destiny (Lv. 80-99)") - public static NpcStringId SPLIT_DESTINY_LV_80_99; + @ClientString(id = 17701, message = "|Lv. 80-99| Split Destiny") + public static NpcStringId LV_80_99_SPLIT_DESTINY; - @ClientString(id = 17702, message = "Split Destiny (Lv. 80-99) (In Progress)") - public static NpcStringId SPLIT_DESTINY_LV_80_99_IN_PROGRESS; + @ClientString(id = 17702, message = "|Lv. 80-99| Split Destiny (In Progress)") + public static NpcStringId LV_80_99_SPLIT_DESTINY_IN_PROGRESS; - @ClientString(id = 17703, message = "Split Destiny (Lv. 80-99) (Done)") - public static NpcStringId SPLIT_DESTINY_LV_80_99_DONE; + @ClientString(id = 17703, message = "|Lv. 80-99| Split Destiny (Done)") + public static NpcStringId LV_80_99_SPLIT_DESTINY_DONE; - @ClientString(id = 17704, message = "Split Destiny (Lv. 80-99)") - public static NpcStringId SPLIT_DESTINY_LV_80_99_2; + @ClientString(id = 17704, message = "|Lv. 80-99| Split Destiny") + public static NpcStringId LV_80_99_SPLIT_DESTINY_2; @ClientString(id = 17801, message = "Iconic Trinity") public static NpcStringId ICONIC_TRINITY; @@ -4036,29 +4036,29 @@ public final class NpcStringId @ClientString(id = 17953, message = "Chaos and Time...") public static NpcStringId CHAOS_AND_TIME; - @ClientString(id = 18001, message = "Infernal Flames Burning in Crystal Prison (Lv. 97-99)") - public static NpcStringId INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_LV_97_99; + @ClientString(id = 18001, message = "|Lv. 97-99| Infernal Flames Burning in Crystal Prison") + public static NpcStringId LV_97_99_INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON; - @ClientString(id = 18002, message = "Infernal Flames Burning in Crystal Prison (Lv. 97-99) (In Progress)") - public static NpcStringId INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_LV_97_99_IN_PROGRESS; + @ClientString(id = 18002, message = "|Lv. 97-99| Infernal Flames Burning in Crystal Prison (In Progress)") + public static NpcStringId LV_97_99_INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_IN_PROGRESS; - @ClientString(id = 18003, message = "Infernal Flames Burning in Crystal Prison (Lv. 97-99) (Done)") - public static NpcStringId INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_LV_97_99_DONE; + @ClientString(id = 18003, message = "|Lv. 97-99| Infernal Flames Burning in Crystal Prison (Done)") + public static NpcStringId LV_97_99_INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_DONE; - @ClientString(id = 18004, message = "Infernal Flames Burning in Crystal Prison (Lv. 97-99)") - public static NpcStringId INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_LV_97_99_2; + @ClientString(id = 18004, message = "|Lv. 97-99| Infernal Flames Burning in Crystal Prison") + public static NpcStringId LV_97_99_INFERNAL_FLAMES_BURNING_IN_CRYSTAL_PRISON_2; - @ClientString(id = 18101, message = "Devils Strike Back, Advent of Balok (Lv. 97-99)") - public static NpcStringId DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_LV_97_99; + @ClientString(id = 18101, message = "|Lv. 97-99| Devils Strike Back, Advent of Balok") + public static NpcStringId LV_97_99_DEVILS_STRIKE_BACK_ADVENT_OF_BALOK; - @ClientString(id = 18102, message = "Devils Strike Back, Advent of Balok (Lv. 97-99) (In Progress)") - public static NpcStringId DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_LV_97_99_IN_PROGRESS; + @ClientString(id = 18102, message = "|Lv. 97-99| Devils Strike Back, Advent of Balok (In Progress)") + public static NpcStringId LV_97_99_DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_IN_PROGRESS; - @ClientString(id = 18103, message = "Devils Strike Back, Advent of Balok (Lv. 97-99) (Done)") - public static NpcStringId DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_LV_97_99_DONE; + @ClientString(id = 18103, message = "|Lv. 97-99| Devils Strike Back, Advent of Balok (Done)") + public static NpcStringId LV_97_99_DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_DONE; - @ClientString(id = 18104, message = "Devils Strike Back, Advent of Balok (Lv. 97-99)") - public static NpcStringId DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_LV_97_99_2; + @ClientString(id = 18104, message = "|Lv. 97-99| Devils Strike Back, Advent of Balok") + public static NpcStringId LV_97_99_DEVILS_STRIKE_BACK_ADVENT_OF_BALOK_2; @ClientString(id = 18201, message = "New Recruits") public static NpcStringId NEW_RECRUITS; @@ -4069,29 +4069,29 @@ public final class NpcStringId @ClientString(id = 18203, message = "New Recruits (Done)") public static NpcStringId NEW_RECRUITS_DONE; - @ClientString(id = 18301, message = "Relics Exploration (Lv. 40-99)") - public static NpcStringId RELICS_EXPLORATION_LV_40_99; + @ClientString(id = 18301, message = "|Lv. 40-99| Relics Exploration") + public static NpcStringId LV_40_99_RELICS_EXPLORATION; - @ClientString(id = 18302, message = "Relics Exploration (Lv. 40-99) (In Progress)") - public static NpcStringId RELICS_EXPLORATION_LV_40_99_IN_PROGRESS; + @ClientString(id = 18302, message = "|Lv. 40-99| Relics Exploration (In Progress)") + public static NpcStringId LV_40_99_RELICS_EXPLORATION_IN_PROGRESS; - @ClientString(id = 18303, message = "Relics Exploration (Lv. 40-99) (Done)") - public static NpcStringId RELICS_EXPLORATION_LV_40_99_DONE; + @ClientString(id = 18303, message = "|Lv. 40-99| Relics Exploration (Done)") + public static NpcStringId LV_40_99_RELICS_EXPLORATION_DONE; - @ClientString(id = 18304, message = "Relics Exploration (Lv. 40-99)") - public static NpcStringId RELICS_EXPLORATION_LV_40_99_2; + @ClientString(id = 18304, message = "|Lv. 40-99| Relics Exploration") + public static NpcStringId LV_40_99_RELICS_EXPLORATION_2; - @ClientString(id = 18401, message = "Art of Persuasion (Lv. 40-99)") - public static NpcStringId ART_OF_PERSUASION_LV_40_99; + @ClientString(id = 18401, message = "|Lv. 40-99| Art of Persuasion") + public static NpcStringId LV_40_99_ART_OF_PERSUASION; - @ClientString(id = 18402, message = "Art of Persuasion (Lv. 40-99) (In Progress)") - public static NpcStringId ART_OF_PERSUASION_LV_40_99_IN_PROGRESS; + @ClientString(id = 18402, message = "|Lv. 40-99| Art of Persuasion (In Progress)") + public static NpcStringId LV_40_99_ART_OF_PERSUASION_IN_PROGRESS; - @ClientString(id = 18403, message = "Art of Persuasion (Lv. 40-99) (Done)") - public static NpcStringId ART_OF_PERSUASION_LV_40_99_DONE; + @ClientString(id = 18403, message = "|Lv. 40-99| Art of Persuasion (Done)") + public static NpcStringId LV_40_99_ART_OF_PERSUASION_DONE; - @ClientString(id = 18404, message = "Art of Persuasion (Lv. 40-99)") - public static NpcStringId ART_OF_PERSUASION_LV_40_99_2; + @ClientString(id = 18404, message = "|Lv. 40-99| Art of Persuasion") + public static NpcStringId LV_40_99_ART_OF_PERSUASION_2; @ClientString(id = 18451, message = "Intruder Alert! The alarm will self-destruct in 2 minutes.") public static NpcStringId INTRUDER_ALERT_THE_ALARM_WILL_SELF_DESTRUCT_IN_2_MINUTES; @@ -4108,17 +4108,17 @@ public final class NpcStringId @ClientString(id = 18455, message = "Recorder crushed.") public static NpcStringId RECORDER_CRUSHED; - @ClientString(id = 18501, message = "Nikola's Cooperation (Lv. 40-99)") - public static NpcStringId NIKOLA_S_COOPERATION_LV_40_99; + @ClientString(id = 18501, message = "|Lv. 40-99| Nikola's Cooperation") + public static NpcStringId LV_40_99_NIKOLA_S_COOPERATION; - @ClientString(id = 18502, message = "Nikola's Cooperation (Lv. 40-99) (In Progress)") - public static NpcStringId NIKOLA_S_COOPERATION_LV_40_99_IN_PROGRESS; + @ClientString(id = 18502, message = "|Lv. 40-99| Nikola's Cooperation (In Progress)") + public static NpcStringId LV_40_99_NIKOLA_S_COOPERATION_IN_PROGRESS; - @ClientString(id = 18503, message = "Nikola's Cooperation (Lv. 40-99) (Done)") - public static NpcStringId NIKOLA_S_COOPERATION_LV_40_99_DONE; + @ClientString(id = 18503, message = "|Lv. 40-99| Nikola's Cooperation (Done)") + public static NpcStringId LV_40_99_NIKOLA_S_COOPERATION_DONE; - @ClientString(id = 18504, message = "Nikola's Cooperation (Lv. 40-99)") - public static NpcStringId NIKOLA_S_COOPERATION_LV_40_99_2; + @ClientString(id = 18504, message = "|Lv. 40-99| Nikola's Cooperation") + public static NpcStringId LV_40_99_NIKOLA_S_COOPERATION_2; @ClientString(id = 18551, message = "Intruder Alert! The alarm will self-destruct in 2 minutes.") public static NpcStringId INTRUDER_ALERT_THE_ALARM_WILL_SELF_DESTRUCT_IN_2_MINUTES_2; @@ -4177,101 +4177,101 @@ public final class NpcStringId @ClientString(id = 18569, message = "") public static NpcStringId EMPTY_2; - @ClientString(id = 18601, message = "Contract Execution (Lv. 41-99)") - public static NpcStringId CONTRACT_EXECUTION_LV_41_99; + @ClientString(id = 18601, message = "|Lv. 41-99| Contract Execution") + public static NpcStringId LV_41_99_CONTRACT_EXECUTION; - @ClientString(id = 18602, message = "Contract Execution (Lv. 41-99) (In Progress)") - public static NpcStringId CONTRACT_EXECUTION_LV_41_99_IN_PROGRESS; + @ClientString(id = 18602, message = "|Lv. 41-99| Contract Execution (In Progress)") + public static NpcStringId LV_41_99_CONTRACT_EXECUTION_IN_PROGRESS; - @ClientString(id = 18603, message = "Contract Execution (Lv. 41-99) (Done)") - public static NpcStringId CONTRACT_EXECUTION_LV_41_99_DONE; + @ClientString(id = 18603, message = "|Lv. 41-99| Contract Execution (Done)") + public static NpcStringId LV_41_99_CONTRACT_EXECUTION_DONE; - @ClientString(id = 18604, message = "Contract Execution (Lv. 41-99)") - public static NpcStringId CONTRACT_EXECUTION_LV_41_99_2; + @ClientString(id = 18604, message = "|Lv. 41-99| Contract Execution") + public static NpcStringId LV_41_99_CONTRACT_EXECUTION_2; - @ClientString(id = 18701, message = "Nikola's Heart (Lv. 41-99)") - public static NpcStringId NIKOLA_S_HEART_LV_41_99; + @ClientString(id = 18701, message = "|Lv. 41-99| Nikola's Heart") + public static NpcStringId LV_41_99_NIKOLA_S_HEART; - @ClientString(id = 18702, message = "Nikola's Heart (Lv. 41-99) (In Progress)") - public static NpcStringId NIKOLA_S_HEART_LV_41_99_IN_PROGRESS; + @ClientString(id = 18702, message = "|Lv. 41-99| Nikola's Heart (In Progress)") + public static NpcStringId LV_41_99_NIKOLA_S_HEART_IN_PROGRESS; - @ClientString(id = 18703, message = "Nikola's Heart (Lv. 41-99) (Done)") - public static NpcStringId NIKOLA_S_HEART_LV_41_99_DONE; + @ClientString(id = 18703, message = "|Lv. 41-99| Nikola's Heart (Done)") + public static NpcStringId LV_41_99_NIKOLA_S_HEART_DONE; - @ClientString(id = 18704, message = "Nikola's Heart (Lv. 41-99)") - public static NpcStringId NIKOLA_S_HEART_LV_41_99_2; + @ClientString(id = 18704, message = "|Lv. 41-99| Nikola's Heart") + public static NpcStringId LV_41_99_NIKOLA_S_HEART_2; - @ClientString(id = 18801, message = "Seal Removal (Lv. 41-99)") - public static NpcStringId SEAL_REMOVAL_LV_41_99; + @ClientString(id = 18801, message = "|Lv. 41-99| Seal Removal") + public static NpcStringId LV_41_99_SEAL_REMOVAL; - @ClientString(id = 18802, message = "Seal Removal (Lv. 41-99) (In Progress)") - public static NpcStringId SEAL_REMOVAL_LV_41_99_IN_PROGRESS; + @ClientString(id = 18802, message = "|Lv. 41-99| Seal Removal (In Progress)") + public static NpcStringId LV_41_99_SEAL_REMOVAL_IN_PROGRESS; - @ClientString(id = 18803, message = "Seal Removal (Lv. 41-99) (Done)") - public static NpcStringId SEAL_REMOVAL_LV_41_99_DONE; + @ClientString(id = 18803, message = "|Lv. 41-99| Seal Removal (Done)") + public static NpcStringId LV_41_99_SEAL_REMOVAL_DONE; - @ClientString(id = 18804, message = "Seal Removal (Lv. 41-99)") - public static NpcStringId SEAL_REMOVAL_LV_41_99_2; + @ClientString(id = 18804, message = "|Lv. 41-99| Seal Removal") + public static NpcStringId LV_41_99_SEAL_REMOVAL_2; - @ClientString(id = 18901, message = "Contract Completion (Lv. 42-99)") - public static NpcStringId CONTRACT_COMPLETION_LV_42_99; + @ClientString(id = 18901, message = "|Lv. 42-99| Contract Completion") + public static NpcStringId LV_42_99_CONTRACT_COMPLETION; - @ClientString(id = 18902, message = "Contract Completion (Lv. 42-99) (In Progress)") - public static NpcStringId CONTRACT_COMPLETION_LV_42_99_IN_PROGRESS; + @ClientString(id = 18902, message = "|Lv. 42-99| Contract Completion (In Progress)") + public static NpcStringId LV_42_99_CONTRACT_COMPLETION_IN_PROGRESS; - @ClientString(id = 18903, message = "Contract Completion (Lv. 42-99) (Done)") - public static NpcStringId CONTRACT_COMPLETION_LV_42_99_DONE; + @ClientString(id = 18903, message = "|Lv. 42-99| Contract Completion (Done)") + public static NpcStringId LV_42_99_CONTRACT_COMPLETION_DONE; - @ClientString(id = 18904, message = "Contract Completion (Lv. 42-99)") - public static NpcStringId CONTRACT_COMPLETION_LV_42_99_2; + @ClientString(id = 18904, message = "|Lv. 42-99| Contract Completion") + public static NpcStringId LV_42_99_CONTRACT_COMPLETION_2; - @ClientString(id = 19001, message = "Lost Dream (Lv. 42-99)") - public static NpcStringId LOST_DREAM_LV_42_99; + @ClientString(id = 19001, message = "|Lv. 42-99| Lost Dream") + public static NpcStringId LV_42_99_LOST_DREAM; - @ClientString(id = 19002, message = "Lost Dream (Lv. 42-99) (In Progress)") - public static NpcStringId LOST_DREAM_LV_42_99_IN_PROGRESS; + @ClientString(id = 19002, message = "|Lv. 42-99| Lost Dream (In Progress)") + public static NpcStringId LV_42_99_LOST_DREAM_IN_PROGRESS; - @ClientString(id = 19003, message = "Lost Dream (Lv. 42-99) (Done)") - public static NpcStringId LOST_DREAM_LV_42_99_DONE; + @ClientString(id = 19003, message = "|Lv. 42-99| Lost Dream (Done)") + public static NpcStringId LV_42_99_LOST_DREAM_DONE; - @ClientString(id = 19004, message = "Lost Dream (Lv. 42-99)") - public static NpcStringId LOST_DREAM_LV_42_99_2; + @ClientString(id = 19004, message = "|Lv. 42-99| Lost Dream") + public static NpcStringId LV_42_99_LOST_DREAM_2; - @ClientString(id = 19101, message = "Vain Conclusion (Lv. 42-99)") - public static NpcStringId VAIN_CONCLUSION_LV_42_99; + @ClientString(id = 19101, message = "|Lv. 42-99| Vain Conclusion") + public static NpcStringId LV_42_99_VAIN_CONCLUSION; - @ClientString(id = 19102, message = "Vain Conclusion (Lv. 42-99) (In Progress)") - public static NpcStringId VAIN_CONCLUSION_LV_42_99_IN_PROGRESS; + @ClientString(id = 19102, message = "|Lv. 42-99| Vain Conclusion (In Progress)") + public static NpcStringId LV_42_99_VAIN_CONCLUSION_IN_PROGRESS; - @ClientString(id = 19103, message = "Vain Conclusion (Lv. 42-99) (Done)") - public static NpcStringId VAIN_CONCLUSION_LV_42_99_DONE; + @ClientString(id = 19103, message = "|Lv. 42-99| Vain Conclusion (Done)") + public static NpcStringId LV_42_99_VAIN_CONCLUSION_DONE; - @ClientString(id = 19104, message = "Vain Conclusion (Lv. 42-99)") - public static NpcStringId VAIN_CONCLUSION_LV_42_99_2; + @ClientString(id = 19104, message = "|Lv. 42-99| Vain Conclusion") + public static NpcStringId LV_42_99_VAIN_CONCLUSION_2; - @ClientString(id = 19201, message = "Seven Signs, Series of Doubt (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SERIES_OF_DOUBT_LV_79_99; + @ClientString(id = 19201, message = "|Lv. 79-99| Seven Signs, Series of Doubt") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SERIES_OF_DOUBT; - @ClientString(id = 19202, message = "Seven Signs, Series of Doubt (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_SERIES_OF_DOUBT_LV_79_99_IN_PROGRESS; + @ClientString(id = 19202, message = "|Lv. 79-99| Seven Signs, Series of Doubt (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SERIES_OF_DOUBT_IN_PROGRESS; - @ClientString(id = 19203, message = "Seven Signs, Series of Doubt (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_SERIES_OF_DOUBT_LV_79_99_DONE; + @ClientString(id = 19203, message = "|Lv. 79-99| Seven Signs, Series of Doubt (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SERIES_OF_DOUBT_DONE; - @ClientString(id = 19204, message = "Seven Signs, Series of Doubt (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SERIES_OF_DOUBT_LV_79_99_2; + @ClientString(id = 19204, message = "|Lv. 79-99| Seven Signs, Series of Doubt") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SERIES_OF_DOUBT_2; - @ClientString(id = 19301, message = "Seven Signs, Dying Message (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_DYING_MESSAGE_LV_79_99; + @ClientString(id = 19301, message = "|Lv. 79-99| Seven Signs, Dying Message") + public static NpcStringId LV_79_99_SEVEN_SIGNS_DYING_MESSAGE; - @ClientString(id = 19302, message = "Seven Signs, Dying Message (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_DYING_MESSAGE_LV_79_99_IN_PROGRESS; + @ClientString(id = 19302, message = "|Lv. 79-99| Seven Signs, Dying Message (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_DYING_MESSAGE_IN_PROGRESS; - @ClientString(id = 19303, message = "Seven Signs, Dying Message (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_DYING_MESSAGE_LV_79_99_DONE; + @ClientString(id = 19303, message = "|Lv. 79-99| Seven Signs, Dying Message (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_DYING_MESSAGE_DONE; - @ClientString(id = 19304, message = "Seven Signs, Dying Message (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_DYING_MESSAGE_LV_79_99_2; + @ClientString(id = 19304, message = "|Lv. 79-99| Seven Signs, Dying Message") + public static NpcStringId LV_79_99_SEVEN_SIGNS_DYING_MESSAGE_2; @ClientString(id = 19305, message = "Next time, you will not escape!") public static NpcStringId NEXT_TIME_YOU_WILL_NOT_ESCAPE; @@ -4282,29 +4282,29 @@ public final class NpcStringId @ClientString(id = 19314, message = "$s1! You are not the owner of that item.") public static NpcStringId S1_YOU_ARE_NOT_THE_OWNER_OF_THAT_ITEM; - @ClientString(id = 19401, message = "Seven Signs, Mammon's Contract (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_MAMMON_S_CONTRACT_LV_79_99; + @ClientString(id = 19401, message = "|Lv. 79-99| Seven Signs, Mammon's Contract") + public static NpcStringId LV_79_99_SEVEN_SIGNS_MAMMON_S_CONTRACT; - @ClientString(id = 19402, message = "Seven Signs, Mammon's Contract (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_MAMMON_S_CONTRACT_LV_79_99_IN_PROGRESS; + @ClientString(id = 19402, message = "|Lv. 79-99| Seven Signs, Mammon's Contract (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_MAMMON_S_CONTRACT_IN_PROGRESS; - @ClientString(id = 19403, message = "Seven Signs, Mammon's Contract (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_MAMMON_S_CONTRACT_LV_79_99_DONE; + @ClientString(id = 19403, message = "|Lv. 79-99| Seven Signs, Mammon's Contract (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_MAMMON_S_CONTRACT_DONE; - @ClientString(id = 19404, message = "Seven Signs, Mammon's Contract (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_MAMMON_S_CONTRACT_LV_79_99_2; + @ClientString(id = 19404, message = "|Lv. 79-99| Seven Signs, Mammon's Contract") + public static NpcStringId LV_79_99_SEVEN_SIGNS_MAMMON_S_CONTRACT_2; - @ClientString(id = 19501, message = "Seven Signs, Secret Ritual of the Priests (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_LV_79_99; + @ClientString(id = 19501, message = "|Lv. 79-99| Seven Signs, Secret Ritual of the Priests") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS; - @ClientString(id = 19502, message = "Seven Signs, Secret Ritual of the Priests (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_LV_79_99_IN_PROGRESS; + @ClientString(id = 19502, message = "|Lv. 79-99| Seven Signs, Secret Ritual of the Priests (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_IN_PROGRESS; - @ClientString(id = 19503, message = "Seven Signs, Secret Ritual of the Priests (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_LV_79_99_DONE; + @ClientString(id = 19503, message = "|Lv. 79-99| Seven Signs, Secret Ritual of the Priests (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_DONE; - @ClientString(id = 19504, message = "Seven Signs, Secret Ritual of the Priests (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_LV_79_99_2; + @ClientString(id = 19504, message = "|Lv. 79-99| Seven Signs, Secret Ritual of the Priests") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SECRET_RITUAL_OF_THE_PRIESTS_2; @ClientString(id = 19505, message = "Who are you?! A new face like you can't approach this place!") public static NpcStringId WHO_ARE_YOU_A_NEW_FACE_LIKE_YOU_CAN_T_APPROACH_THIS_PLACE; @@ -4315,17 +4315,17 @@ public final class NpcStringId @ClientString(id = 19514, message = "Intruder! Protect the Priests of Dawn!") public static NpcStringId INTRUDER_PROTECT_THE_PRIESTS_OF_DAWN; - @ClientString(id = 19601, message = "Seven Signs, Seal of the Emperor (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_LV_79_99; + @ClientString(id = 19601, message = "|Lv. 79-99| Seven Signs, Seal of the Emperor") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SEAL_OF_THE_EMPEROR; - @ClientString(id = 19602, message = "Seven Signs, Seal of the Emperor (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_LV_79_99_IN_PROGRESS; + @ClientString(id = 19602, message = "|Lv. 79-99| Seven Signs, Seal of the Emperor (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_IN_PROGRESS; - @ClientString(id = 19603, message = "Seven Signs, Seal of the Emperor (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_LV_79_99_DONE; + @ClientString(id = 19603, message = "|Lv. 79-99| Seven Signs, Seal of the Emperor (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_DONE; - @ClientString(id = 19604, message = "Seven Signs, Seal of the Emperor (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_LV_79_99_2; + @ClientString(id = 19604, message = "|Lv. 79-99| Seven Signs, Seal of the Emperor") + public static NpcStringId LV_79_99_SEVEN_SIGNS_SEAL_OF_THE_EMPEROR_2; @ClientString(id = 19605, message = "The ancient promise to the Emperor has been fulfilled.") public static NpcStringId THE_ANCIENT_PROMISE_TO_THE_EMPEROR_HAS_BEEN_FULFILLED; @@ -4375,29 +4375,29 @@ public final class NpcStringId @ClientString(id = 19624, message = "Who dares summon the merchant of mammon…?") public static NpcStringId WHO_DARES_SUMMON_THE_MERCHANT_OF_MAMMON; - @ClientString(id = 19701, message = "Seven Signs, the Sacred Book of Seal (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_LV_79_99; + @ClientString(id = 19701, message = "|Lv. 79-99| Seven Signs, the Sacred Book of Seal") + public static NpcStringId LV_79_99_SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL; - @ClientString(id = 19702, message = "Seven Signs, the Sacred Book of Seal (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_LV_79_99_IN_PROGRESS; + @ClientString(id = 19702, message = "|Lv. 79-99| Seven Signs, the Sacred Book of Seal (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_IN_PROGRESS; - @ClientString(id = 19703, message = "Seven Signs, the Sacred Book of Seal (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_LV_79_99_DONE; + @ClientString(id = 19703, message = "|Lv. 79-99| Seven Signs, the Sacred Book of Seal (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_DONE; - @ClientString(id = 19704, message = "Seven Signs, the Sacred Book of Seal (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_LV_79_99_2; + @ClientString(id = 19704, message = "|Lv. 79-99| Seven Signs, the Sacred Book of Seal") + public static NpcStringId LV_79_99_SEVEN_SIGNS_THE_SACRED_BOOK_OF_SEAL_2; - @ClientString(id = 19801, message = "Seven Signs, Embryo (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_EMBRYO_LV_79_99; + @ClientString(id = 19801, message = "|Lv. 79-99| Seven Signs, Embryo") + public static NpcStringId LV_79_99_SEVEN_SIGNS_EMBRYO; - @ClientString(id = 19802, message = "Seven Signs, Embryo (Lv. 79-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_EMBRYO_LV_79_99_IN_PROGRESS; + @ClientString(id = 19802, message = "|Lv. 79-99| Seven Signs, Embryo (In Progress)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_EMBRYO_IN_PROGRESS; - @ClientString(id = 19803, message = "Seven Signs, Embryo (Lv. 79-99) (Done)") - public static NpcStringId SEVEN_SIGNS_EMBRYO_LV_79_99_DONE; + @ClientString(id = 19803, message = "|Lv. 79-99| Seven Signs, Embryo (Done)") + public static NpcStringId LV_79_99_SEVEN_SIGNS_EMBRYO_DONE; - @ClientString(id = 19804, message = "Seven Signs, Embryo (Lv. 79-99)") - public static NpcStringId SEVEN_SIGNS_EMBRYO_LV_79_99_2; + @ClientString(id = 19804, message = "|Lv. 79-99| Seven Signs, Embryo") + public static NpcStringId LV_79_99_SEVEN_SIGNS_EMBRYO_2; @ClientString(id = 19805, message = "We will be with you always...") public static NpcStringId WE_WILL_BE_WITH_YOU_ALWAYS; @@ -4468,17 +4468,17 @@ public final class NpcStringId @ClientString(id = 20901, message = "Kamael Tutorial") public static NpcStringId KAMAEL_TUTORIAL; - @ClientString(id = 21001, message = "Obtain a Wolf Pet (Lv. 15-99)") - public static NpcStringId OBTAIN_A_WOLF_PET_LV_15_99; + @ClientString(id = 21001, message = "|Lv. 15-99| Obtain a Wolf Pet") + public static NpcStringId LV_15_99_OBTAIN_A_WOLF_PET; - @ClientString(id = 21002, message = "Obtain a Wolf Pet (Lv. 15-99) (In Progress)") - public static NpcStringId OBTAIN_A_WOLF_PET_LV_15_99_IN_PROGRESS; + @ClientString(id = 21002, message = "|Lv. 15-99| Obtain a Wolf Pet (In Progress)") + public static NpcStringId LV_15_99_OBTAIN_A_WOLF_PET_IN_PROGRESS; - @ClientString(id = 21003, message = "Obtain a Wolf Pet (Lv. 15-99) (Complete)") - public static NpcStringId OBTAIN_A_WOLF_PET_LV_15_99_COMPLETE; + @ClientString(id = 21003, message = "|Lv. 15-99| Obtain a Wolf Pet (Complete)") + public static NpcStringId LV_15_99_OBTAIN_A_WOLF_PET_COMPLETE; - @ClientString(id = 21004, message = "Obtain a Wolf Pet (Lv. 15-99)") - public static NpcStringId OBTAIN_A_WOLF_PET_LV_15_99_2; + @ClientString(id = 21004, message = "|Lv. 15-99| Obtain a Wolf Pet") + public static NpcStringId LV_15_99_OBTAIN_A_WOLF_PET_2; @ClientString(id = 21101, message = "Trial of the Challenger") public static NpcStringId TRIAL_OF_THE_CHALLENGER; @@ -4894,50 +4894,50 @@ public final class NpcStringId @ClientString(id = 23687, message = "Safe travels!") public static NpcStringId SAFE_TRAVELS; - @ClientString(id = 23701, message = "Winds of Change (Lv. 82-99)") - public static NpcStringId WINDS_OF_CHANGE_LV_82_99; + @ClientString(id = 23701, message = "|Lv. 82-99| Winds of Change") + public static NpcStringId LV_82_99_WINDS_OF_CHANGE; - @ClientString(id = 23702, message = "Winds of Change (Lv. 82-99) (In Progress)") - public static NpcStringId WINDS_OF_CHANGE_LV_82_99_IN_PROGRESS; + @ClientString(id = 23702, message = "|Lv. 82-99| Winds of Change (In Progress)") + public static NpcStringId LV_82_99_WINDS_OF_CHANGE_IN_PROGRESS; - @ClientString(id = 23703, message = "Winds of Change (Lv. 82-99) (Done)") - public static NpcStringId WINDS_OF_CHANGE_LV_82_99_DONE; + @ClientString(id = 23703, message = "|Lv. 82-99| Winds of Change (Done)") + public static NpcStringId LV_82_99_WINDS_OF_CHANGE_DONE; - @ClientString(id = 23801, message = "Success/Failure of Business (Lv. 82-99)") - public static NpcStringId SUCCESS_FAILURE_OF_BUSINESS_LV_82_99; + @ClientString(id = 23801, message = "|Lv. 82-99| Success/Failure of Business") + public static NpcStringId LV_82_99_SUCCESS_FAILURE_OF_BUSINESS; - @ClientString(id = 23802, message = "Success/Failure of Business (Lv. 82-99) (In Progress)") - public static NpcStringId SUCCESS_FAILURE_OF_BUSINESS_LV_82_99_IN_PROGRESS; + @ClientString(id = 23802, message = "|Lv. 82-99| Success/Failure of Business (In Progress)") + public static NpcStringId LV_82_99_SUCCESS_FAILURE_OF_BUSINESS_IN_PROGRESS; - @ClientString(id = 23803, message = "Success/Failure of Business (Lv. 82-99) (Done)") - public static NpcStringId SUCCESS_FAILURE_OF_BUSINESS_LV_82_99_DONE; + @ClientString(id = 23803, message = "|Lv. 82-99| Success/Failure of Business (Done)") + public static NpcStringId LV_82_99_SUCCESS_FAILURE_OF_BUSINESS_DONE; - @ClientString(id = 23804, message = "Success/Failure of Business (Lv. 82-99)") - public static NpcStringId SUCCESS_FAILURE_OF_BUSINESS_LV_82_99_2; + @ClientString(id = 23804, message = "|Lv. 82-99| Success/Failure of Business") + public static NpcStringId LV_82_99_SUCCESS_FAILURE_OF_BUSINESS_2; - @ClientString(id = 23901, message = "Won't You Join Us? (Lv. 82-99)") - public static NpcStringId WON_T_YOU_JOIN_US_LV_82_99; + @ClientString(id = 23901, message = "|Lv. 82-99| Won't You Join Us?") + public static NpcStringId LV_82_99_WON_T_YOU_JOIN_US; - @ClientString(id = 23902, message = "Won't You Join Us? (Lv. 82-99) (In Progress)") - public static NpcStringId WON_T_YOU_JOIN_US_LV_82_99_IN_PROGRESS; + @ClientString(id = 23902, message = "|Lv. 82-99| Won't You Join Us? (In Progress)") + public static NpcStringId LV_82_99_WON_T_YOU_JOIN_US_IN_PROGRESS; - @ClientString(id = 23903, message = "Won't You Join Us? (Lv. 82-99) (Done)") - public static NpcStringId WON_T_YOU_JOIN_US_LV_82_99_DONE; + @ClientString(id = 23903, message = "|Lv. 82-99| Won't You Join Us? (Done)") + public static NpcStringId LV_82_99_WON_T_YOU_JOIN_US_DONE; - @ClientString(id = 23904, message = "Won't You Join Us? (Lv. 82-99)") - public static NpcStringId WON_T_YOU_JOIN_US_LV_82_99_2; + @ClientString(id = 23904, message = "|Lv. 82-99| Won't You Join Us?") + public static NpcStringId LV_82_99_WON_T_YOU_JOIN_US_2; - @ClientString(id = 24001, message = "I'm the Only One You Can Trust (Lv. 81-99)") - public static NpcStringId I_M_THE_ONLY_ONE_YOU_CAN_TRUST_LV_81_99; + @ClientString(id = 24001, message = "|Lv. 81-99| I'm the Only One You Can Trust") + public static NpcStringId LV_81_99_I_M_THE_ONLY_ONE_YOU_CAN_TRUST; - @ClientString(id = 24002, message = "I'm the Only One You Can Trust (Lv. 81-99) (In Progress)") - public static NpcStringId I_M_THE_ONLY_ONE_YOU_CAN_TRUST_LV_81_99_IN_PROGRESS; + @ClientString(id = 24002, message = "|Lv. 81-99| I'm the Only One You Can Trust (In Progress)") + public static NpcStringId LV_81_99_I_M_THE_ONLY_ONE_YOU_CAN_TRUST_IN_PROGRESS; - @ClientString(id = 24003, message = "I'm the Only One You Can Trust (Lv. 81-99) (Done)") - public static NpcStringId I_M_THE_ONLY_ONE_YOU_CAN_TRUST_LV_81_99_DONE; + @ClientString(id = 24003, message = "|Lv. 81-99| I'm the Only One You Can Trust (Done)") + public static NpcStringId LV_81_99_I_M_THE_ONLY_ONE_YOU_CAN_TRUST_DONE; - @ClientString(id = 24004, message = "I'm the Only One You Can Trust (Lv. 81-99)") - public static NpcStringId I_M_THE_ONLY_ONE_YOU_CAN_TRUST_LV_81_99_2; + @ClientString(id = 24004, message = "|Lv. 81-99| I'm the Only One You Can Trust") + public static NpcStringId LV_81_99_I_M_THE_ONLY_ONE_YOU_CAN_TRUST_2; @ClientString(id = 24101, message = "Path of the Noblesse, Precious Soul - 1") public static NpcStringId PATH_OF_THE_NOBLESSE_PRECIOUS_SOUL_1; @@ -4978,17 +4978,17 @@ public final class NpcStringId @ClientString(id = 24411, message = "Follow Me (Sponsor)") public static NpcStringId FOLLOW_ME_SPONSOR; - @ClientString(id = 24501, message = "Come to Me (Lv. 70-75)") - public static NpcStringId COME_TO_ME_LV_70_75; + @ClientString(id = 24501, message = "|Lv. 70-75| Come to Me") + public static NpcStringId LV_70_75_COME_TO_ME; - @ClientString(id = 24502, message = "Come to Me (Lv. 70-75) (In Progress)") - public static NpcStringId COME_TO_ME_LV_70_75_IN_PROGRESS; + @ClientString(id = 24502, message = "|Lv. 70-75| Come to Me (In Progress)") + public static NpcStringId LV_70_75_COME_TO_ME_IN_PROGRESS; - @ClientString(id = 24503, message = "Come to Me (Lv. 70-75) (Done)") - public static NpcStringId COME_TO_ME_LV_70_75_DONE; + @ClientString(id = 24503, message = "|Lv. 70-75| Come to Me (Done)") + public static NpcStringId LV_70_75_COME_TO_ME_DONE; - @ClientString(id = 24504, message = "Come to Me (Lv. 70-75)") - public static NpcStringId COME_TO_ME_LV_70_75_2; + @ClientString(id = 24504, message = "|Lv. 70-75| Come to Me") + public static NpcStringId LV_70_75_COME_TO_ME_2; @ClientString(id = 24511, message = "Come to Me (Sponsor)") public static NpcStringId COME_TO_ME_SPONSOR; @@ -5074,14 +5074,14 @@ public final class NpcStringId @ClientString(id = 25204, message = "It Smells Delicious!") public static NpcStringId IT_SMELLS_DELICIOUS_2; - @ClientString(id = 25401, message = "Legendary Tales (Lv. 80-99)") - public static NpcStringId LEGENDARY_TALES_LV_80_99; + @ClientString(id = 25401, message = "|Lv. 80-99| Legendary Tales") + public static NpcStringId LV_80_99_LEGENDARY_TALES; - @ClientString(id = 25402, message = "Legendary Tales (Lv. 80-99) (In Progress)") - public static NpcStringId LEGENDARY_TALES_LV_80_99_IN_PROGRESS; + @ClientString(id = 25402, message = "|Lv. 80-99| Legendary Tales (In Progress)") + public static NpcStringId LV_80_99_LEGENDARY_TALES_IN_PROGRESS; - @ClientString(id = 25403, message = "Legendary Tales (Lv. 80-99) (Done)") - public static NpcStringId LEGENDARY_TALES_LV_80_99_DONE; + @ClientString(id = 25403, message = "|Lv. 80-99| Legendary Tales (Done)") + public static NpcStringId LV_80_99_LEGENDARY_TALES_DONE; @ClientString(id = 25701, message = "The Guard is Busy") public static NpcStringId THE_GUARD_IS_BUSY; @@ -5167,14 +5167,14 @@ public final class NpcStringId @ClientString(id = 26902, message = "Invention Ambition (In Progress)") public static NpcStringId INVENTION_AMBITION_IN_PROGRESS; - @ClientString(id = 27001, message = "The One Who Ends Silence (Lv. 82-99)") - public static NpcStringId THE_ONE_WHO_ENDS_SILENCE_LV_82_99; + @ClientString(id = 27001, message = "|Lv. 82-99| The One Who Ends Silence") + public static NpcStringId LV_82_99_THE_ONE_WHO_ENDS_SILENCE; - @ClientString(id = 27002, message = "The One Who Ends Silence (Lv. 82-99) (In Progress)") - public static NpcStringId THE_ONE_WHO_ENDS_SILENCE_LV_82_99_IN_PROGRESS; + @ClientString(id = 27002, message = "|Lv. 82-99| The One Who Ends Silence (In Progress)") + public static NpcStringId LV_82_99_THE_ONE_WHO_ENDS_SILENCE_IN_PROGRESS; - @ClientString(id = 27004, message = "The One Who Ends Silence (Lv. 82-99)") - public static NpcStringId THE_ONE_WHO_ENDS_SILENCE_LV_82_99_2; + @ClientString(id = 27004, message = "|Lv. 82-99| The One Who Ends Silence") + public static NpcStringId LV_82_99_THE_ONE_WHO_ENDS_SILENCE_2; @ClientString(id = 27101, message = "Proof of Valor") public static NpcStringId PROOF_OF_VALOR; @@ -5218,20 +5218,20 @@ public final class NpcStringId @ClientString(id = 27702, message = "Gatekeeper's Offering (In Progress)") public static NpcStringId GATEKEEPER_S_OFFERING_IN_PROGRESS; - @ClientString(id = 27801, message = "Home Security (Lv. 82-99)") - public static NpcStringId HOME_SECURITY_LV_82_99; + @ClientString(id = 27801, message = "|Lv. 82-99| Home Security") + public static NpcStringId LV_82_99_HOME_SECURITY; - @ClientString(id = 27802, message = "Home Security (Lv. 82-99) (In Progress)") - public static NpcStringId HOME_SECURITY_LV_82_99_IN_PROGRESS; + @ClientString(id = 27802, message = "|Lv. 82-99| Home Security (In Progress)") + public static NpcStringId LV_82_99_HOME_SECURITY_IN_PROGRESS; - @ClientString(id = 27901, message = "Target of Opportunity (Lv. 82-99)") - public static NpcStringId TARGET_OF_OPPORTUNITY_LV_82_99; + @ClientString(id = 27901, message = "|Lv. 82-99| Target of Opportunity") + public static NpcStringId LV_82_99_TARGET_OF_OPPORTUNITY; - @ClientString(id = 27902, message = "Target of Opportunity (Lv. 82-99) (In Progress)") - public static NpcStringId TARGET_OF_OPPORTUNITY_LV_82_99_IN_PROGRESS; + @ClientString(id = 27902, message = "|Lv. 82-99| Target of Opportunity (In Progress)") + public static NpcStringId LV_82_99_TARGET_OF_OPPORTUNITY_IN_PROGRESS; - @ClientString(id = 27904, message = "Target of Opportunity (Lv. 82-99)") - public static NpcStringId TARGET_OF_OPPORTUNITY_LV_82_99_2; + @ClientString(id = 27904, message = "|Lv. 82-99| Target of Opportunity") + public static NpcStringId LV_82_99_TARGET_OF_OPPORTUNITY_2; @ClientString(id = 28001, message = "The Food Chain") public static NpcStringId THE_FOOD_CHAIN; @@ -5341,14 +5341,14 @@ public final class NpcStringId @ClientString(id = 29702, message = "Gatekeeper's Favor (In Progress)") public static NpcStringId GATEKEEPER_S_FAVOR_IN_PROGRESS; - @ClientString(id = 29801, message = "Lizardmen's Conspiracy (Lv. 25-34)") - public static NpcStringId LIZARDMEN_S_CONSPIRACY_LV_25_34; + @ClientString(id = 29801, message = "|Lv. 25-34| Lizardmen's Conspiracy") + public static NpcStringId LV_25_34_LIZARDMEN_S_CONSPIRACY; - @ClientString(id = 29802, message = "Lizardmen's Conspiracy (Lv. 25-34) (In Progress)") - public static NpcStringId LIZARDMEN_S_CONSPIRACY_LV_25_34_IN_PROGRESS; + @ClientString(id = 29802, message = "|Lv. 25-34| Lizardmen's Conspiracy (In Progress)") + public static NpcStringId LV_25_34_LIZARDMEN_S_CONSPIRACY_IN_PROGRESS; - @ClientString(id = 29804, message = "Lizardmen's Conspiracy (Lv. 25-34)") - public static NpcStringId LIZARDMEN_S_CONSPIRACY_LV_25_34_2; + @ClientString(id = 29804, message = "|Lv. 25-34| Lizardmen's Conspiracy") + public static NpcStringId LV_25_34_LIZARDMEN_S_CONSPIRACY_2; @ClientString(id = 29901, message = "Gather Ingredients for Pie") public static NpcStringId GATHER_INGREDIENTS_FOR_PIE; @@ -5380,14 +5380,14 @@ public final class NpcStringId @ClientString(id = 30602, message = "Crystals of Fire and Ice (In Progress)") public static NpcStringId CRYSTALS_OF_FIRE_AND_ICE_IN_PROGRESS; - @ClientString(id = 30701, message = "Control Device of the Giants (Lv. 79-99)") - public static NpcStringId CONTROL_DEVICE_OF_THE_GIANTS_LV_79_99; + @ClientString(id = 30701, message = "|Lv. 79-99| Control Device of the Giants") + public static NpcStringId LV_79_99_CONTROL_DEVICE_OF_THE_GIANTS; - @ClientString(id = 30702, message = "Control Device of the Giants (Lv. 79-99) (In Progress)") - public static NpcStringId CONTROL_DEVICE_OF_THE_GIANTS_LV_79_99_IN_PROGRESS; + @ClientString(id = 30702, message = "|Lv. 79-99| Control Device of the Giants (In Progress)") + public static NpcStringId LV_79_99_CONTROL_DEVICE_OF_THE_GIANTS_IN_PROGRESS; - @ClientString(id = 30704, message = "Control Device of the Giants (Lv. 79-99)") - public static NpcStringId CONTROL_DEVICE_OF_THE_GIANTS_LV_79_99_2; + @ClientString(id = 30704, message = "|Lv. 79-99| Control Device of the Giants") + public static NpcStringId LV_79_99_CONTROL_DEVICE_OF_THE_GIANTS_2; @ClientString(id = 30801, message = "Maintaining the Field Business") public static NpcStringId MAINTAINING_THE_FIELD_BUSINESS; @@ -5407,14 +5407,14 @@ public final class NpcStringId @ClientString(id = 30904, message = "For a Good Cause") public static NpcStringId FOR_A_GOOD_CAUSE_2; - @ClientString(id = 31001, message = "Only What Remains (Lv. 81-99)") - public static NpcStringId ONLY_WHAT_REMAINS_LV_81_99; + @ClientString(id = 31001, message = "|Lv. 81-99| Only What Remains") + public static NpcStringId LV_81_99_ONLY_WHAT_REMAINS; - @ClientString(id = 31002, message = "Only What Remains (Lv. 81-99) (In Progress)") - public static NpcStringId ONLY_WHAT_REMAINS_LV_81_99_IN_PROGRESS; + @ClientString(id = 31002, message = "|Lv. 81-99| Only What Remains (In Progress)") + public static NpcStringId LV_81_99_ONLY_WHAT_REMAINS_IN_PROGRESS; - @ClientString(id = 31004, message = "Only What Remains (Lv. 81-99)") - public static NpcStringId ONLY_WHAT_REMAINS_LV_81_99_2; + @ClientString(id = 31004, message = "|Lv. 81-99| Only What Remains") + public static NpcStringId LV_81_99_ONLY_WHAT_REMAINS_2; @ClientString(id = 31101, message = "Expulsion of Evil Spirits") public static NpcStringId EXPULSION_OF_EVIL_SPIRITS; @@ -5740,23 +5740,23 @@ public final class NpcStringId @ClientString(id = 33558, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_335_REPLY_46_A_10_SWORDS_OF_CADMUS_BUTTON; - @ClientString(id = 33601, message = "Coins of Magic (Lv. 40-60)") - public static NpcStringId COINS_OF_MAGIC_LV_40_60; + @ClientString(id = 33601, message = "|Lv. 40-60| Coins of Magic") + public static NpcStringId LV_40_60_COINS_OF_MAGIC; - @ClientString(id = 33602, message = "Coins of Magic (Lv. 40-60) (In Progress)") - public static NpcStringId COINS_OF_MAGIC_LV_40_60_IN_PROGRESS; + @ClientString(id = 33602, message = "|Lv. 40-60| Coins of Magic (In Progress)") + public static NpcStringId LV_40_60_COINS_OF_MAGIC_IN_PROGRESS; - @ClientString(id = 33604, message = "Coins of Magic (Lv. 40-60)") - public static NpcStringId COINS_OF_MAGIC_LV_40_60_2; + @ClientString(id = 33604, message = "|Lv. 40-60| Coins of Magic") + public static NpcStringId LV_40_60_COINS_OF_MAGIC_2; - @ClientString(id = 33701, message = "Audience with the Land Dragon (Lv. 50-64)") - public static NpcStringId AUDIENCE_WITH_THE_LAND_DRAGON_LV_50_64; + @ClientString(id = 33701, message = "|Lv. 50-64| Audience with the Land Dragon") + public static NpcStringId LV_50_64_AUDIENCE_WITH_THE_LAND_DRAGON; - @ClientString(id = 33702, message = "Audience with the Land Dragon (Lv. 50-64) (In Progress)") - public static NpcStringId AUDIENCE_WITH_THE_LAND_DRAGON_LV_50_64_IN_PROGRESS; + @ClientString(id = 33702, message = "|Lv. 50-64| Audience with the Land Dragon (In Progress)") + public static NpcStringId LV_50_64_AUDIENCE_WITH_THE_LAND_DRAGON_IN_PROGRESS; - @ClientString(id = 33704, message = "Audience with the Land Dragon (Lv. 50-64)") - public static NpcStringId AUDIENCE_WITH_THE_LAND_DRAGON_LV_50_64_2; + @ClientString(id = 33704, message = "|Lv. 50-64| Audience with the Land Dragon") + public static NpcStringId LV_50_64_AUDIENCE_WITH_THE_LAND_DRAGON_2; @ClientString(id = 33801, message = "Alligator Hunter") public static NpcStringId ALLIGATOR_HUNTER; @@ -5794,14 +5794,14 @@ public final class NpcStringId @ClientString(id = 34304, message = "Under the Shadow of the Ivory Tower") public static NpcStringId UNDER_THE_SHADOW_OF_THE_IVORY_TOWER_2; - @ClientString(id = 34401, message = "1000 Years, the End of Lamentation (Lv. 48-55)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55; + @ClientString(id = 34401, message = "|Lv. 48-55| 1000 Years, the End of Lamentation") + public static NpcStringId LV_48_55_1000_YEARS_THE_END_OF_LAMENTATION; - @ClientString(id = 34402, message = "1000 Years, the End of Lamentation (Lv. 48-55) (In Progress)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55_IN_PROGRESS; + @ClientString(id = 34402, message = "|Lv. 48-55| 1000 Years, the End of Lamentation (In Progress)") + public static NpcStringId LV_48_55_1000_YEARS_THE_END_OF_LAMENTATION_IN_PROGRESS; - @ClientString(id = 34404, message = "1000 years, the End of Lamentation (Lv. 48-55)") - public static NpcStringId ONE_THOUSAND_YEARS_THE_END_OF_LAMENTATION_LV_48_55_2; + @ClientString(id = 34404, message = "|Lv. 48-55| 1000 years, the End of Lamentation") + public static NpcStringId LV_48_55_1000_YEARS_THE_END_OF_LAMENTATION_2; @ClientString(id = 34501, message = "Method to Raise the Dead") public static NpcStringId METHOD_TO_RAISE_THE_DEAD; @@ -5860,14 +5860,14 @@ public final class NpcStringId @ClientString(id = 34839, message = "We don't have any further business to discuss... Have you searched the corpse for the key?") public static NpcStringId WE_DON_T_HAVE_ANY_FURTHER_BUSINESS_TO_DISCUSS_HAVE_YOU_SEARCHED_THE_CORPSE_FOR_THE_KEY; - @ClientString(id = 35001, message = "Enhance Your Weapon (Lv. 40-80)") - public static NpcStringId ENHANCE_YOUR_WEAPON_LV_40_80; + @ClientString(id = 35001, message = "|Lv. 40-80| Enhance Your Weapon") + public static NpcStringId LV_40_80_ENHANCE_YOUR_WEAPON; - @ClientString(id = 35002, message = "Enhance Your Weapon (Lv. 40-80) (In Progress)") - public static NpcStringId ENHANCE_YOUR_WEAPON_LV_40_80_IN_PROGRESS; + @ClientString(id = 35002, message = "|Lv. 40-80| Enhance Your Weapon (In Progress)") + public static NpcStringId LV_40_80_ENHANCE_YOUR_WEAPON_IN_PROGRESS; - @ClientString(id = 35004, message = "Enhance Your Weapon (Lv. 40-80)") - public static NpcStringId ENHANCE_YOUR_WEAPON_LV_40_80_2; + @ClientString(id = 35004, message = "|Lv. 40-80| Enhance Your Weapon") + public static NpcStringId LV_40_80_ENHANCE_YOUR_WEAPON_2; @ClientString(id = 35051, message = "$s1 has earned a stage $s2 Blue Soul Crystal.") public static NpcStringId S1_HAS_EARNED_A_STAGE_S2_BLUE_SOUL_CRYSTAL; @@ -5905,11 +5905,11 @@ public final class NpcStringId @ClientString(id = 35204, message = "Help Rood Raise A New Pet!") public static NpcStringId HELP_ROOD_RAISE_A_NEW_PET_2; - @ClientString(id = 35301, message = "Power of Darkness (Lv. 55-60)") - public static NpcStringId POWER_OF_DARKNESS_LV_55_60; + @ClientString(id = 35301, message = "|Lv. 55-60| Power of Darkness") + public static NpcStringId LV_55_60_POWER_OF_DARKNESS; - @ClientString(id = 35302, message = "Power of Darkness (Lv. 55-60) (In Progress)") - public static NpcStringId POWER_OF_DARKNESS_LV_55_60_IN_PROGRESS; + @ClientString(id = 35302, message = "|Lv. 55-60| Power of Darkness (In Progress)") + public static NpcStringId LV_55_60_POWER_OF_DARKNESS_IN_PROGRESS; @ClientString(id = 35401, message = "Conquest of Alligator Island") public static NpcStringId CONQUEST_OF_ALLIGATOR_ISLAND; @@ -5935,14 +5935,14 @@ public final class NpcStringId @ClientString(id = 35602, message = "Dig Up the Sea of Spores! (In Progress)") public static NpcStringId DIG_UP_THE_SEA_OF_SPORES_IN_PROGRESS; - @ClientString(id = 35701, message = "Warehouse Keeper's Ambition (Lv. 47-57)") - public static NpcStringId WAREHOUSE_KEEPER_S_AMBITION_LV_47_57; + @ClientString(id = 35701, message = "|Lv. 47-57| Warehouse Keeper's Ambition") + public static NpcStringId LV_47_57_WAREHOUSE_KEEPER_S_AMBITION; - @ClientString(id = 35702, message = "Warehouse Keeper's Ambition (Lv. 47-57) (In Progress)") - public static NpcStringId WAREHOUSE_KEEPER_S_AMBITION_LV_47_57_IN_PROGRESS; + @ClientString(id = 35702, message = "|Lv. 47-57| Warehouse Keeper's Ambition (In Progress)") + public static NpcStringId LV_47_57_WAREHOUSE_KEEPER_S_AMBITION_IN_PROGRESS; - @ClientString(id = 35704, message = "Warehouse Keeper's Ambition (Lv. 47-57)") - public static NpcStringId WAREHOUSE_KEEPER_S_AMBITION_LV_47_57_2; + @ClientString(id = 35704, message = "|Lv. 47-57| Warehouse Keeper's Ambition") + public static NpcStringId LV_47_57_WAREHOUSE_KEEPER_S_AMBITION_2; @ClientString(id = 35801, message = "Illegitimate Child of a Goddess") public static NpcStringId ILLEGITIMATE_CHILD_OF_A_GODDESS; @@ -5953,14 +5953,14 @@ public final class NpcStringId @ClientString(id = 35804, message = "Illegitimate Child of a Goddess") public static NpcStringId ILLEGITIMATE_CHILD_OF_A_GODDESS_2; - @ClientString(id = 35901, message = "For a Sleepless Deadman (Lv. 60-67)") - public static NpcStringId FOR_A_SLEEPLESS_DEADMAN_LV_60_67; + @ClientString(id = 35901, message = "|Lv. 60-67| For a Sleepless Deadman") + public static NpcStringId LV_60_67_FOR_A_SLEEPLESS_DEADMAN; - @ClientString(id = 35902, message = "For a Sleepless Deadman (Lv. 60-67) (In Progress)") - public static NpcStringId FOR_A_SLEEPLESS_DEADMAN_LV_60_67_IN_PROGRESS; + @ClientString(id = 35902, message = "|Lv. 60-67| For a Sleepless Deadman (In Progress)") + public static NpcStringId LV_60_67_FOR_A_SLEEPLESS_DEADMAN_IN_PROGRESS; - @ClientString(id = 35904, message = "For a Sleepless Deadman (Lv. 60-67)") - public static NpcStringId FOR_A_SLEEPLESS_DEADMAN_LV_60_67_2; + @ClientString(id = 35904, message = "|Lv. 60-67| For a Sleepless Deadman") + public static NpcStringId LV_60_67_FOR_A_SLEEPLESS_DEADMAN_2; @ClientString(id = 36001, message = "Plunder the Supplies") public static NpcStringId PLUNDER_THE_SUPPLIES; @@ -6007,14 +6007,14 @@ public final class NpcStringId @ClientString(id = 36504, message = "Demon's Legacy") public static NpcStringId DEMON_S_LEGACY_2; - @ClientString(id = 36601, message = "Silver Haired Shaman (Lv. 48-58)") - public static NpcStringId SILVER_HAIRED_SHAMAN_LV_48_58; + @ClientString(id = 36601, message = "|Lv. 48-58| Silver Haired Shaman") + public static NpcStringId LV_48_58_SILVER_HAIRED_SHAMAN; - @ClientString(id = 36602, message = "Silver Haired Shaman (Lv. 48-58) (In Progress)") - public static NpcStringId SILVER_HAIRED_SHAMAN_LV_48_58_IN_PROGRESS; + @ClientString(id = 36602, message = "|Lv. 48-58| Silver Haired Shaman (In Progress)") + public static NpcStringId LV_48_58_SILVER_HAIRED_SHAMAN_IN_PROGRESS; - @ClientString(id = 36604, message = "Silver Haired Shaman (Lv. 48-58)") - public static NpcStringId SILVER_HAIRED_SHAMAN_LV_48_58_2; + @ClientString(id = 36604, message = "|Lv. 48-58| Silver Haired Shaman") + public static NpcStringId LV_48_58_SILVER_HAIRED_SHAMAN_2; @ClientString(id = 36701, message = "Electrifying Recharge!") public static NpcStringId ELECTRIFYING_RECHARGE; @@ -6052,62 +6052,62 @@ public final class NpcStringId @ClientString(id = 37004, message = "An Elder Sows Seeds") public static NpcStringId AN_ELDER_SOWS_SEEDS_2; - @ClientString(id = 37101, message = "Shrieks of Ghosts (Lv. 59-71)") - public static NpcStringId SHRIEKS_OF_GHOSTS_LV_59_71; + @ClientString(id = 37101, message = "|Lv. 59-71| Shrieks of Ghosts") + public static NpcStringId LV_59_71_SHRIEKS_OF_GHOSTS; - @ClientString(id = 37102, message = "Shrieks of Ghosts (Lv. 59-71)") - public static NpcStringId SHRIEKS_OF_GHOSTS_LV_59_71_2; + @ClientString(id = 37102, message = "|Lv. 59-71| Shrieks of Ghosts (In Process)") + public static NpcStringId LV_59_71_SHRIEKS_OF_GHOSTS_IN_PROCESS; - @ClientString(id = 37104, message = "Shrieks of Ghosts (Lv. 59-71)") - public static NpcStringId SHRIEKS_OF_GHOSTS_LV_59_71_3; + @ClientString(id = 37104, message = "|Lv. 59-71| Shrieks of Ghosts") + public static NpcStringId LV_59_71_SHRIEKS_OF_GHOSTS_2; - @ClientString(id = 37201, message = "Legacy of Insolence (Lv. 59-75)") - public static NpcStringId LEGACY_OF_INSOLENCE_LV_59_75; + @ClientString(id = 37201, message = "|Lv. 59-75| Legacy of Insolence") + public static NpcStringId LV_59_75_LEGACY_OF_INSOLENCE; - @ClientString(id = 37202, message = "Legacy of Insolence (Lv. 59-75) (In Progress)") - public static NpcStringId LEGACY_OF_INSOLENCE_LV_59_75_IN_PROGRESS; + @ClientString(id = 37202, message = "|Lv. 59-75| Legacy of Insolence (In Progress)") + public static NpcStringId LV_59_75_LEGACY_OF_INSOLENCE_IN_PROGRESS; - @ClientString(id = 37204, message = "Legacy of Insolence (Lv. 59-75)") - public static NpcStringId LEGACY_OF_INSOLENCE_LV_59_75_2; + @ClientString(id = 37204, message = "|Lv. 59-75| Legacy of Insolence") + public static NpcStringId LV_59_75_LEGACY_OF_INSOLENCE_2; - @ClientString(id = 37301, message = "Supplier of Reagents (Lv. 57-75)") - public static NpcStringId SUPPLIER_OF_REAGENTS_LV_57_75; + @ClientString(id = 37301, message = "|Lv. 57-75| Supplier of Reagents") + public static NpcStringId LV_57_75_SUPPLIER_OF_REAGENTS; - @ClientString(id = 37302, message = "Supplier of Reagents (Lv. 57-75) (In Progress)") - public static NpcStringId SUPPLIER_OF_REAGENTS_LV_57_75_IN_PROGRESS; + @ClientString(id = 37302, message = "|Lv. 57-75| Supplier of Reagents (In Progress)") + public static NpcStringId LV_57_75_SUPPLIER_OF_REAGENTS_IN_PROGRESS; - @ClientString(id = 37304, message = "Supplier of Reagents (Lv. 57-75)") - public static NpcStringId SUPPLIER_OF_REAGENTS_LV_57_75_2; + @ClientString(id = 37304, message = "|Lv. 57-75| Supplier of Reagents") + public static NpcStringId LV_57_75_SUPPLIER_OF_REAGENTS_2; - @ClientString(id = 37401, message = "Whisper of Dreams - Part 1 (Lv. 56-66)") - public static NpcStringId WHISPER_OF_DREAMS_PART_1_LV_56_66; + @ClientString(id = 37401, message = "|Lv. 56-66| Whisper of Dreams - Part 1") + public static NpcStringId LV_56_66_WHISPER_OF_DREAMS_PART_1; - @ClientString(id = 37402, message = "Whisper of Dreams - Part 1 (Lv. 56-66) (In Progress)") - public static NpcStringId WHISPER_OF_DREAMS_PART_1_LV_56_66_IN_PROGRESS; + @ClientString(id = 37402, message = "|Lv. 56-66| Whisper of Dreams - Part 1 (In Progress)") + public static NpcStringId LV_56_66_WHISPER_OF_DREAMS_PART_1_IN_PROGRESS; - @ClientString(id = 37501, message = "Whisper of Dreams - Part 2 (Lv. 60-74)") - public static NpcStringId WHISPER_OF_DREAMS_PART_2_LV_60_74; + @ClientString(id = 37501, message = "|Lv. 60-74| Whisper of Dreams - Part 2") + public static NpcStringId LV_60_74_WHISPER_OF_DREAMS_PART_2; - @ClientString(id = 37502, message = "Whisper of Dreams - Part 2 (Lv. 60-74) (In Progress)") - public static NpcStringId WHISPER_OF_DREAMS_PART_2_LV_60_74_IN_PROGRESS; + @ClientString(id = 37502, message = "|Lv. 60-74| Whisper of Dreams - Part 2 (In Progress)") + public static NpcStringId LV_60_74_WHISPER_OF_DREAMS_PART_2_IN_PROGRESS; - @ClientString(id = 37601, message = "Exploration of the Giants' Cave - Part 1 (Lv. 79-99)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_1_LV_79_99; + @ClientString(id = 37601, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 1") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_1; - @ClientString(id = 37602, message = "Exploration of the Giants' Cave - Part 1 (Lv. 79-99) (In Progress)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_1_LV_79_99_IN_PROGRESS; + @ClientString(id = 37602, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 1 (In Progress)") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_1_IN_PROGRESS; - @ClientString(id = 37604, message = "Exploration of the Giants' Cave - Part 1 (Lv. 79-99)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_1_LV_79_99_2; + @ClientString(id = 37604, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 1") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_1_2; - @ClientString(id = 37701, message = "Exploration of the Giants' Cave - Part 2 (Lv. 79-99)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_2_LV_79_99; + @ClientString(id = 37701, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 2") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_2; - @ClientString(id = 37702, message = "Exploration of the Giants' Cave - Part 2 (Lv. 79-99) (In Progress)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_2_LV_79_99_IN_PROGRESS; + @ClientString(id = 37702, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 2 (In Progress)") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_2_IN_PROGRESS; - @ClientString(id = 37704, message = "Exploration of the Giants' Cave - Part 2 (Lv. 79-99)") - public static NpcStringId EXPLORATION_OF_THE_GIANTS_CAVE_PART_2_LV_79_99_2; + @ClientString(id = 37704, message = "|Lv. 79-99| Exploration of the Giants' Cave - Part 2") + public static NpcStringId LV_79_99_EXPLORATION_OF_THE_GIANTS_CAVE_PART_2_2; @ClientString(id = 37801, message = "Grand Feast") public static NpcStringId GRAND_FEAST; @@ -6136,23 +6136,23 @@ public final class NpcStringId @ClientString(id = 38004, message = "Bring Out the Flavor of Ingredients!") public static NpcStringId BRING_OUT_THE_FLAVOR_OF_INGREDIENTS_2; - @ClientString(id = 38101, message = "Let's Become a Royal Member! (Lv. 55-65)") - public static NpcStringId LET_S_BECOME_A_ROYAL_MEMBER_LV_55_65; + @ClientString(id = 38101, message = "|Lv. 55-65| Let's Become a Royal Member!") + public static NpcStringId LV_55_65_LET_S_BECOME_A_ROYAL_MEMBER; - @ClientString(id = 38102, message = "Let's Become a Royal Member! (Lv. 55-65) (In Progress)") - public static NpcStringId LET_S_BECOME_A_ROYAL_MEMBER_LV_55_65_IN_PROGRESS; + @ClientString(id = 38102, message = "|Lv. 55-65| Let's Become a Royal Member! (In Progress)") + public static NpcStringId LV_55_65_LET_S_BECOME_A_ROYAL_MEMBER_IN_PROGRESS; - @ClientString(id = 38104, message = "Let's Become a Royal Member! (Lv. 55-65)") - public static NpcStringId LET_S_BECOME_A_ROYAL_MEMBER_LV_55_65_2; + @ClientString(id = 38104, message = "|Lv. 55-65| Let's Become a Royal Member!") + public static NpcStringId LV_55_65_LET_S_BECOME_A_ROYAL_MEMBER_2; - @ClientString(id = 38201, message = "Kail's Magic Coin (Lv. 55-60)") - public static NpcStringId KAIL_S_MAGIC_COIN_LV_55_60; + @ClientString(id = 38201, message = "|Lv. 55-60| Kail's Magic Coin") + public static NpcStringId LV_55_60_KAIL_S_MAGIC_COIN; - @ClientString(id = 38202, message = "Kail's Magic Coin (Lv. 55-60) (In Progress)") - public static NpcStringId KAIL_S_MAGIC_COIN_LV_55_60_IN_PROGRESS; + @ClientString(id = 38202, message = "|Lv. 55-60| Kail's Magic Coin (In Progress)") + public static NpcStringId LV_55_60_KAIL_S_MAGIC_COIN_IN_PROGRESS; - @ClientString(id = 38204, message = "Kail's Magic Coin (Lv. 55-60)") - public static NpcStringId KAIL_S_MAGIC_COIN_LV_55_60_2; + @ClientString(id = 38204, message = "|Lv. 55-60| Kail's Magic Coin") + public static NpcStringId LV_55_60_KAIL_S_MAGIC_COIN_2; @ClientString(id = 38301, message = "Treasure Hunt") public static NpcStringId TREASURE_HUNT; @@ -6184,14 +6184,14 @@ public final class NpcStringId @ClientString(id = 38504, message = "Yoke of the Past") public static NpcStringId YOKE_OF_THE_PAST_2; - @ClientString(id = 38601, message = "Stolen Dignity (Lv. 58-75)") - public static NpcStringId STOLEN_DIGNITY_LV_58_75; + @ClientString(id = 38601, message = "|Lv. 58-75| Stolen Dignity") + public static NpcStringId LV_58_75_STOLEN_DIGNITY; - @ClientString(id = 38602, message = "Stolen Dignity (Lv. 58-75) (In Progress)") - public static NpcStringId STOLEN_DIGNITY_LV_58_75_IN_PROGRESS; + @ClientString(id = 38602, message = "|Lv. 58-75| Stolen Dignity (In Progress)") + public static NpcStringId LV_58_75_STOLEN_DIGNITY_IN_PROGRESS; - @ClientString(id = 38604, message = "Stolen Dignity (Lv. 58-75)") - public static NpcStringId STOLEN_DIGNITY_LV_58_75_2; + @ClientString(id = 38604, message = "|Lv. 58-75| Stolen Dignity") + public static NpcStringId LV_58_75_STOLEN_DIGNITY_2; @ClientString(id = 40101, message = "Path of the Warrior") public static NpcStringId PATH_OF_THE_WARRIOR; @@ -6355,14 +6355,14 @@ public final class NpcStringId @ClientString(id = 41904, message = "Get a Pet") public static NpcStringId GET_A_PET_2; - @ClientString(id = 42001, message = "Little Wing (Lv. 35-99)") - public static NpcStringId LITTLE_WING_LV_35_99; + @ClientString(id = 42001, message = "|Lv. 35-99| Little Wing") + public static NpcStringId LV_35_99_LITTLE_WING; - @ClientString(id = 42002, message = "Little Wing (Lv. 35-99) (In Progress)") - public static NpcStringId LITTLE_WING_LV_35_99_IN_PROGRESS; + @ClientString(id = 42002, message = "|Lv. 35-99| Little Wing (In Progress)") + public static NpcStringId LV_35_99_LITTLE_WING_IN_PROGRESS; - @ClientString(id = 42004, message = "Little Wing (Lv. 35-99)") - public static NpcStringId LITTLE_WING_LV_35_99_2; + @ClientString(id = 42004, message = "|Lv. 35-99| Little Wing") + public static NpcStringId LV_35_99_LITTLE_WING_2; @ClientString(id = 42046, message = "Hey! Everybody watch the eggs!") public static NpcStringId HEY_EVERYBODY_WATCH_THE_EGGS; @@ -6376,14 +6376,14 @@ public final class NpcStringId @ClientString(id = 42049, message = "If the eggs get taken, we're dead!") public static NpcStringId IF_THE_EGGS_GET_TAKEN_WE_RE_DEAD; - @ClientString(id = 42101, message = "Little Wing's Big Adventure (Lv. 45-99)") - public static NpcStringId LITTLE_WING_S_BIG_ADVENTURE_LV_45_99; + @ClientString(id = 42101, message = "|Lv. 44-99| Little Wing's Big Adventure") + public static NpcStringId LV_44_99_LITTLE_WING_S_BIG_ADVENTURE; - @ClientString(id = 42102, message = "Little Wing's Big Adventure (Lv. 45-99) (In Progress)") - public static NpcStringId LITTLE_WING_S_BIG_ADVENTURE_LV_45_99_IN_PROGRESS; + @ClientString(id = 42102, message = "|Lv. 44-99| Little Wing's Big Adventure (In Progress)") + public static NpcStringId LV_44_99_LITTLE_WING_S_BIG_ADVENTURE_IN_PROGRESS; - @ClientString(id = 42104, message = "Little Wing's Big Adventure (Lv. 45-99)") - public static NpcStringId LITTLE_WING_S_BIG_ADVENTURE_LV_45_99_2; + @ClientString(id = 42104, message = "|Lv. 44-99| Little Wing's Big Adventure") + public static NpcStringId LV_44_99_LITTLE_WING_S_BIG_ADVENTURE_2; @ClientString(id = 42111, message = "Give me a Fairy Leaf...!") public static NpcStringId GIVE_ME_A_FAIRY_LEAF; @@ -6487,101 +6487,101 @@ public final class NpcStringId @ClientString(id = 42602, message = "Quest for Fishing shot (In Progress)") public static NpcStringId QUEST_FOR_FISHING_SHOT_IN_PROGRESS; - @ClientString(id = 43101, message = "Wedding March (Lv. 38-43)") - public static NpcStringId WEDDING_MARCH_LV_38_43; + @ClientString(id = 43101, message = "|Lv. 38-43| Wedding March") + public static NpcStringId LV_38_43_WEDDING_MARCH; - @ClientString(id = 43102, message = "Wedding March (Lv. 38-43) (In Progress)") - public static NpcStringId WEDDING_MARCH_LV_38_43_IN_PROGRESS; + @ClientString(id = 43102, message = "|Lv. 38-43| Wedding March (In Progress)") + public static NpcStringId LV_38_43_WEDDING_MARCH_IN_PROGRESS; - @ClientString(id = 43104, message = "Wedding March (Lv. 38-43)") - public static NpcStringId WEDDING_MARCH_LV_38_43_2; + @ClientString(id = 43104, message = "|Lv. 38-43| Wedding March") + public static NpcStringId LV_38_43_WEDDING_MARCH_2; - @ClientString(id = 43201, message = "Birthday Party Song (Lv. 31-36)") - public static NpcStringId BIRTHDAY_PARTY_SONG_LV_31_36; + @ClientString(id = 43201, message = "|Lv. 31-36| Birthday Party Song") + public static NpcStringId LV_31_36_BIRTHDAY_PARTY_SONG; - @ClientString(id = 43202, message = "Birthday Party Song (Lv. 31-36) (In Progress)") - public static NpcStringId BIRTHDAY_PARTY_SONG_LV_31_36_IN_PROGRESS; + @ClientString(id = 43202, message = "|Lv. 31-36| Birthday Party Song (In Progress)") + public static NpcStringId LV_31_36_BIRTHDAY_PARTY_SONG_IN_PROGRESS; - @ClientString(id = 43204, message = "Birthday Party Song (Lv. 31-36)") - public static NpcStringId BIRTHDAY_PARTY_SONG_LV_31_36_2; + @ClientString(id = 43204, message = "|Lv. 31-36| Birthday Party Song") + public static NpcStringId LV_31_36_BIRTHDAY_PARTY_SONG_2; - @ClientString(id = 45001, message = "Grave Robber Rescue (Lv. 80-99)") - public static NpcStringId GRAVE_ROBBER_RESCUE_LV_80_99; + @ClientString(id = 45001, message = "|Lv. 80-99| Grave Robber Rescue") + public static NpcStringId LV_80_99_GRAVE_ROBBER_RESCUE; - @ClientString(id = 45002, message = "Grave Robber Rescue (Lv. 80-99) (In Progress)") - public static NpcStringId GRAVE_ROBBER_RESCUE_LV_80_99_IN_PROGRESS; + @ClientString(id = 45002, message = "|Lv. 80-99| Grave Robber Rescue (In Progress)") + public static NpcStringId LV_80_99_GRAVE_ROBBER_RESCUE_IN_PROGRESS; - @ClientString(id = 45003, message = "Grave Robber Rescue (Lv. 80-99) (Done)") - public static NpcStringId GRAVE_ROBBER_RESCUE_LV_80_99_DONE; + @ClientString(id = 45003, message = "|Lv. 80-99| Grave Robber Rescue (Done)") + public static NpcStringId LV_80_99_GRAVE_ROBBER_RESCUE_DONE; - @ClientString(id = 45004, message = "Grave Robber Rescue (Lv. 80-99)") - public static NpcStringId GRAVE_ROBBER_RESCUE_LV_80_99_2; + @ClientString(id = 45004, message = "|Lv. 80-99| Grave Robber Rescue") + public static NpcStringId LV_80_99_GRAVE_ROBBER_RESCUE_2; - @ClientString(id = 45101, message = "Lucien's Altar (Lv. 80-99)") - public static NpcStringId LUCIEN_S_ALTAR_LV_80_99; + @ClientString(id = 45101, message = "|Lv. 80-99| Lucien's Altar") + public static NpcStringId LV_80_99_LUCIEN_S_ALTAR; - @ClientString(id = 45102, message = "Lucien's Altar (Lv. 80-99) (In Progress)") - public static NpcStringId LUCIEN_S_ALTAR_LV_80_99_IN_PROGRESS; + @ClientString(id = 45102, message = "|Lv. 80-99| Lucien's Altar (In Progress)") + public static NpcStringId LV_80_99_LUCIEN_S_ALTAR_IN_PROGRESS; - @ClientString(id = 45103, message = "Lucien's Altar (Lv. 80-99) (Done)") - public static NpcStringId LUCIEN_S_ALTAR_LV_80_99_DONE; + @ClientString(id = 45103, message = "|Lv. 80-99| Lucien's Altar (Done)") + public static NpcStringId LV_80_99_LUCIEN_S_ALTAR_DONE; - @ClientString(id = 45104, message = "Lucien's Altar (Lv. 80-99)") - public static NpcStringId LUCIEN_S_ALTAR_LV_80_99_2; + @ClientString(id = 45104, message = "|Lv. 80-99| Lucien's Altar") + public static NpcStringId LV_80_99_LUCIEN_S_ALTAR_2; - @ClientString(id = 45201, message = "Finding the Lost Soldiers (Lv. 85-99)") - public static NpcStringId FINDING_THE_LOST_SOLDIERS_LV_85_99; + @ClientString(id = 45201, message = "|Lv. 85-99| Finding the Lost Soldiers") + public static NpcStringId LV_85_99_FINDING_THE_LOST_SOLDIERS; - @ClientString(id = 45202, message = "Finding the Lost Soldiers (Lv. 85-99) (In Progress)") - public static NpcStringId FINDING_THE_LOST_SOLDIERS_LV_85_99_IN_PROGRESS; + @ClientString(id = 45202, message = "|Lv. 85-99| Finding the Lost Soldiers (In Progress)") + public static NpcStringId LV_85_99_FINDING_THE_LOST_SOLDIERS_IN_PROGRESS; - @ClientString(id = 45203, message = "Finding the Lost Soldiers (Lv. 85-99) (Done)") - public static NpcStringId FINDING_THE_LOST_SOLDIERS_LV_85_99_DONE; + @ClientString(id = 45203, message = "|Lv. 85-99| Finding the Lost Soldiers (Done)") + public static NpcStringId LV_85_99_FINDING_THE_LOST_SOLDIERS_DONE; - @ClientString(id = 45204, message = "Finding the Lost Soldiers (Lv. 85-99)") - public static NpcStringId FINDING_THE_LOST_SOLDIERS_LV_85_99_2; + @ClientString(id = 45204, message = "|Lv. 85-99| Finding the Lost Soldiers") + public static NpcStringId LV_85_99_FINDING_THE_LOST_SOLDIERS_2; - @ClientString(id = 45301, message = "Not Strong Enough Alone (Lv. 85-99)") - public static NpcStringId NOT_STRONG_ENOUGH_ALONE_LV_85_99; + @ClientString(id = 45301, message = "|Lv. 85-99| Not Strong Enough Alone") + public static NpcStringId LV_85_99_NOT_STRONG_ENOUGH_ALONE; - @ClientString(id = 45302, message = "Not Strong Enough Alone (Lv. 85-99) (In Progress)") - public static NpcStringId NOT_STRONG_ENOUGH_ALONE_LV_85_99_IN_PROGRESS; + @ClientString(id = 45302, message = "|Lv. 85-99| Not Strong Enough Alone (In Progress)") + public static NpcStringId LV_85_99_NOT_STRONG_ENOUGH_ALONE_IN_PROGRESS; - @ClientString(id = 45303, message = "Not Strong Enough Alone (Lv. 85-99) (Done)") - public static NpcStringId NOT_STRONG_ENOUGH_ALONE_LV_85_99_DONE; + @ClientString(id = 45303, message = "|Lv. 85-99| Not Strong Enough Alone (Done)") + public static NpcStringId LV_85_99_NOT_STRONG_ENOUGH_ALONE_DONE; - @ClientString(id = 45304, message = "Not Strong Enough Alone (Lv. 85-99)") - public static NpcStringId NOT_STRONG_ENOUGH_ALONE_LV_85_99_2; + @ClientString(id = 45304, message = "|Lv. 85-99| Not Strong Enough Alone") + public static NpcStringId LV_85_99_NOT_STRONG_ENOUGH_ALONE_2; - @ClientString(id = 45401, message = "Completely Lost (Lv. 85-99)") - public static NpcStringId COMPLETELY_LOST_LV_85_99; + @ClientString(id = 45401, message = "|Lv. 85-99| Completely Lost") + public static NpcStringId LV_85_99_COMPLETELY_LOST; - @ClientString(id = 45402, message = "Completely Lost (Lv. 85-99) (In Progress)") - public static NpcStringId COMPLETELY_LOST_LV_85_99_IN_PROGRESS; + @ClientString(id = 45402, message = "|Lv. 85-99| Completely Lost (In Progress)") + public static NpcStringId LV_85_99_COMPLETELY_LOST_IN_PROGRESS; - @ClientString(id = 45403, message = "Completely Lost (Lv. 85-99) (Done)") - public static NpcStringId COMPLETELY_LOST_LV_85_99_DONE; + @ClientString(id = 45403, message = "|Lv. 85-99| Completely Lost (Done)") + public static NpcStringId LV_85_99_COMPLETELY_LOST_DONE; - @ClientString(id = 45404, message = "Completely Lost (Lv. 85-99)") - public static NpcStringId COMPLETELY_LOST_LV_85_99_2; + @ClientString(id = 45404, message = "|Lv. 85-99| Completely Lost") + public static NpcStringId LV_85_99_COMPLETELY_LOST_2; - @ClientString(id = 45501, message = "Wings of Sand (Lv. 80-99)") - public static NpcStringId WINGS_OF_SAND_LV_80_99; + @ClientString(id = 45501, message = "|Lv. 80-99| Wings of Sand") + public static NpcStringId LV_80_99_WINGS_OF_SAND; - @ClientString(id = 45502, message = "Wings of Sand (Lv. 80-99) (In Progress)") - public static NpcStringId WINGS_OF_SAND_LV_80_99_IN_PROGRESS; + @ClientString(id = 45502, message = "|Lv. 80-99| Wings of Sand (In Progress)") + public static NpcStringId LV_80_99_WINGS_OF_SAND_IN_PROGRESS; - @ClientString(id = 45503, message = "Wings of Sand (Lv. 80-99) (Done)") - public static NpcStringId WINGS_OF_SAND_LV_80_99_DONE; + @ClientString(id = 45503, message = "|Lv. 80-99| Wings of Sand (Done)") + public static NpcStringId LV_80_99_WINGS_OF_SAND_DONE; - @ClientString(id = 45601, message = "Don't Know, Don't Care (Lv. 80-99)") - public static NpcStringId DON_T_KNOW_DON_T_CARE_LV_80_99; + @ClientString(id = 45601, message = "|Lv. 80-99| Don't Know, Don't Care") + public static NpcStringId LV_80_99_DON_T_KNOW_DON_T_CARE; - @ClientString(id = 45602, message = "Don't Know, Don't Care (Lv. 80-99) (In Progress)") - public static NpcStringId DON_T_KNOW_DON_T_CARE_LV_80_99_IN_PROGRESS; + @ClientString(id = 45602, message = "|Lv. 80-99| Don't Know, Don't Care (In Progress)") + public static NpcStringId LV_80_99_DON_T_KNOW_DON_T_CARE_IN_PROGRESS; - @ClientString(id = 45603, message = "Don't Know, Don't Care (Lv. 80-99) (Done)") - public static NpcStringId DON_T_KNOW_DON_T_CARE_LV_80_99_DONE; + @ClientString(id = 45603, message = "|Lv. 80-99| Don't Know, Don't Care (Done)") + public static NpcStringId LV_80_99_DON_T_KNOW_DON_T_CARE_DONE; @ClientString(id = 45650, message = "$s1 received a $s2 item as a reward from the separated soul.") public static NpcStringId S1_RECEIVED_A_S2_ITEM_AS_A_REWARD_FROM_THE_SEPARATED_SOUL; @@ -6715,53 +6715,53 @@ public final class NpcStringId @ClientString(id = 45693, message = "Scroll: Enchant Weapon (S-grade)") public static NpcStringId SCROLL_ENCHANT_WEAPON_S_GRADE; - @ClientString(id = 45701, message = "Lost and Found (Lv. 82-99)") - public static NpcStringId LOST_AND_FOUND_LV_82_99; + @ClientString(id = 45701, message = "|Lv. 82-99| Lost and Found") + public static NpcStringId LV_82_99_LOST_AND_FOUND; - @ClientString(id = 45702, message = "Lost and Found (Lv. 82-99) (In Progress)") - public static NpcStringId LOST_AND_FOUND_LV_82_99_IN_PROGRESS; + @ClientString(id = 45702, message = "|Lv. 82-99| Lost and Found (In Progress)") + public static NpcStringId LV_82_99_LOST_AND_FOUND_IN_PROGRESS; - @ClientString(id = 45703, message = "Lost and Found (Lv. 82-99) (Done)") - public static NpcStringId LOST_AND_FOUND_LV_82_99_DONE; + @ClientString(id = 45703, message = "|Lv. 82-99| Lost and Found (Done)") + public static NpcStringId LV_82_99_LOST_AND_FOUND_DONE; - @ClientString(id = 45704, message = "Lost and Found (Lv. 82-99)") - public static NpcStringId LOST_AND_FOUND_LV_82_99_2; + @ClientString(id = 45704, message = "|Lv. 82-99| Lost and Found") + public static NpcStringId LV_82_99_LOST_AND_FOUND_2; - @ClientString(id = 45801, message = "Perfect Form (Lv. 82-99)") - public static NpcStringId PERFECT_FORM_LV_82_99; + @ClientString(id = 45801, message = "|Lv. 82-99| Perfect Form") + public static NpcStringId LV_82_99_PERFECT_FORM; - @ClientString(id = 45802, message = "Perfect Form (Lv. 82-99) (In Progress)") - public static NpcStringId PERFECT_FORM_LV_82_99_IN_PROGRESS; + @ClientString(id = 45802, message = "|Lv. 82-99| Perfect Form (In Progress)") + public static NpcStringId LV_82_99_PERFECT_FORM_IN_PROGRESS; - @ClientString(id = 45803, message = "Perfect Form (Lv. 82-99) (Done)") - public static NpcStringId PERFECT_FORM_LV_82_99_DONE; + @ClientString(id = 45803, message = "|Lv. 82-99| Perfect Form (Done)") + public static NpcStringId LV_82_99_PERFECT_FORM_DONE; - @ClientString(id = 45804, message = "Perfect Form (Lv. 82-99)") - public static NpcStringId PERFECT_FORM_LV_82_99_2; + @ClientString(id = 45804, message = "|Lv. 82-99| Perfect Form") + public static NpcStringId LV_82_99_PERFECT_FORM_2; - @ClientString(id = 45901, message = "Monstrosity in the Underground Mine, Teredor (Lv. 85-99)") - public static NpcStringId MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_LV_85_99; + @ClientString(id = 45901, message = "|Lv. 85-99| Monstrosity in the Underground Mine, Teredor") + public static NpcStringId LV_85_99_MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR; - @ClientString(id = 45902, message = "Monstrosity in the Underground Mine, Teredor (Lv. 85-99)(In Progress)") - public static NpcStringId MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_LV_85_99_IN_PROGRESS; + @ClientString(id = 45902, message = "|Lv. 85-99| Monstrosity in the Underground Mine, Teredor (In Progress)") + public static NpcStringId LV_85_99_MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_IN_PROGRESS; - @ClientString(id = 45903, message = "Monstrosity in the Underground Mine, Teredor (Lv. 85-99) (Done)") - public static NpcStringId MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_LV_85_99_DONE; + @ClientString(id = 45903, message = "|Lv. 85-99| Monstrosity in the Underground Mine, Teredor (Done)") + public static NpcStringId LV_85_99_MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_DONE; - @ClientString(id = 45904, message = "Monstrosity in the Underground Mine, Teredor (Lv. 85-99)") - public static NpcStringId MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_LV_85_99_2; + @ClientString(id = 45904, message = "|Lv. 85-99| Monstrosity in the Underground Mine, Teredor") + public static NpcStringId LV_85_99_MONSTROSITY_IN_THE_UNDERGROUND_MINE_TEREDOR_2; - @ClientString(id = 46001, message = "Precious Research Ingredient (Lv. 85-99)") - public static NpcStringId PRECIOUS_RESEARCH_INGREDIENT_LV_85_99; + @ClientString(id = 46001, message = "|Lv. 85-99| Precious Research Ingredient") + public static NpcStringId LV_85_99_PRECIOUS_RESEARCH_INGREDIENT; - @ClientString(id = 46002, message = "Precious Research Ingredient (Lv. 85-99) (In Progress)") - public static NpcStringId PRECIOUS_RESEARCH_INGREDIENT_LV_85_99_IN_PROGRESS; + @ClientString(id = 46002, message = "|Lv. 85-99| Precious Research Ingredient (In Progress)") + public static NpcStringId LV_85_99_PRECIOUS_RESEARCH_INGREDIENT_IN_PROGRESS; - @ClientString(id = 46003, message = "Precious Research Ingredient (Lv. 85-99) (Done)") - public static NpcStringId PRECIOUS_RESEARCH_INGREDIENT_LV_85_99_DONE; + @ClientString(id = 46003, message = "|Lv. 85-99| Precious Research Ingredient (Done)") + public static NpcStringId LV_85_99_PRECIOUS_RESEARCH_INGREDIENT_DONE; - @ClientString(id = 46004, message = "Precious Research Ingredient (Lv. 85-99)") - public static NpcStringId PRECIOUS_RESEARCH_INGREDIENT_LV_85_99_2; + @ClientString(id = 46004, message = "|Lv. 85-99| Precious Research Ingredient") + public static NpcStringId LV_85_99_PRECIOUS_RESEARCH_INGREDIENT_2; @ClientString(id = 46101, message = "Rumble in the Base") public static NpcStringId RUMBLE_IN_THE_BASE; @@ -6775,197 +6775,197 @@ public final class NpcStringId @ClientString(id = 46104, message = "Rumble in the Base") public static NpcStringId RUMBLE_IN_THE_BASE_2; - @ClientString(id = 46201, message = "Preserved Ancient Heroes (Lv. 95-99)") - public static NpcStringId PRESERVED_ANCIENT_HEROES_LV_95_99; + @ClientString(id = 46201, message = "|Lv. 95-99| Preserved Ancient Heroes") + public static NpcStringId LV_95_99_PRESERVED_ANCIENT_HEROES; - @ClientString(id = 46202, message = "Preserved Ancient Heroes (Lv. 95-99) (In Progress)") - public static NpcStringId PRESERVED_ANCIENT_HEROES_LV_95_99_IN_PROGRESS; + @ClientString(id = 46202, message = "|Lv. 95-99| Preserved Ancient Heroes (In Progress)") + public static NpcStringId LV_95_99_PRESERVED_ANCIENT_HEROES_IN_PROGRESS; - @ClientString(id = 46203, message = "Preserved Ancient Heroes (Lv. 95-99) (Done)") - public static NpcStringId PRESERVED_ANCIENT_HEROES_LV_95_99_DONE; + @ClientString(id = 46203, message = "|Lv. 95-99| Preserved Ancient Heroes (Done)") + public static NpcStringId LV_95_99_PRESERVED_ANCIENT_HEROES_DONE; - @ClientString(id = 46204, message = "Preserved Ancient Heroes (Lv. 95-99)") - public static NpcStringId PRESERVED_ANCIENT_HEROES_LV_95_99_2; + @ClientString(id = 46204, message = "|Lv. 95-99| Preserved Ancient Heroes") + public static NpcStringId LV_95_99_PRESERVED_ANCIENT_HEROES_2; - @ClientString(id = 46301, message = "I Must Be a Genius (Lv. 70-99)") - public static NpcStringId I_MUST_BE_A_GENIUS_LV_70_99; + @ClientString(id = 46301, message = "|Lv. 70-99| I Must Be a Genius") + public static NpcStringId LV_70_99_I_MUST_BE_A_GENIUS; - @ClientString(id = 46302, message = "I Must Be a Genius (Lv. 70-99) (In Progress)") - public static NpcStringId I_MUST_BE_A_GENIUS_LV_70_99_IN_PROGRESS; + @ClientString(id = 46302, message = "|Lv. 70-99| I Must Be a Genius (In Progress)") + public static NpcStringId LV_70_99_I_MUST_BE_A_GENIUS_IN_PROGRESS; - @ClientString(id = 46303, message = "I Must Be a Genius (Lv. 70-99) (Done)") - public static NpcStringId I_MUST_BE_A_GENIUS_LV_70_99_DONE; + @ClientString(id = 46303, message = "|Lv. 70-99| I Must Be a Genius (Done)") + public static NpcStringId LV_70_99_I_MUST_BE_A_GENIUS_DONE; - @ClientString(id = 46304, message = "I Must Be a Genius (Lv. 70-99)") - public static NpcStringId I_MUST_BE_A_GENIUS_LV_70_99_2; + @ClientString(id = 46304, message = "|Lv. 70-99| I Must Be a Genius") + public static NpcStringId LV_70_99_I_MUST_BE_A_GENIUS_2; @ClientString(id = 46350, message = "Att... attack... $s1.. Ro... rogue... $s2..") public static NpcStringId ATT_ATTACK_S1_RO_ROGUE_S2; - @ClientString(id = 46401, message = "Oath (Lv. 82-99)") - public static NpcStringId OATH_LV_82_99; + @ClientString(id = 46401, message = "|Lv. 82-99| Oath") + public static NpcStringId LV_82_99_OATH; - @ClientString(id = 46402, message = "Oath (Lv. 82-99)(In Progress)") - public static NpcStringId OATH_LV_82_99_IN_PROGRESS; + @ClientString(id = 46402, message = "|Lv. 82-99| Oath (In Progress)") + public static NpcStringId LV_82_99_OATH_IN_PROGRESS; - @ClientString(id = 46403, message = "Oath (Lv. 82-99)(Done)") - public static NpcStringId OATH_LV_82_99_DONE; + @ClientString(id = 46403, message = "|Lv. 82-99| Oath (Done)") + public static NpcStringId LV_82_99_OATH_DONE; - @ClientString(id = 46501, message = "We are Friends (Lv. 88-99)") - public static NpcStringId WE_ARE_FRIENDS_LV_88_99; + @ClientString(id = 46501, message = "|Lv. 88-99| We are Friends") + public static NpcStringId LV_88_99_WE_ARE_FRIENDS; - @ClientString(id = 46502, message = "We are Friends (Lv. 88-99) (In progress)") - public static NpcStringId WE_ARE_FRIENDS_LV_88_99_IN_PROGRESS; + @ClientString(id = 46502, message = "|Lv. 88-99| We are Friends (In progress)") + public static NpcStringId LV_88_99_WE_ARE_FRIENDS_IN_PROGRESS; - @ClientString(id = 46503, message = "We are Friends (Lv. 88-99) (Done)") - public static NpcStringId WE_ARE_FRIENDS_LV_88_99_DONE; + @ClientString(id = 46503, message = "|Lv. 88-99| We are Friends (Done)") + public static NpcStringId LV_88_99_WE_ARE_FRIENDS_DONE; - @ClientString(id = 46504, message = "We are Friends (Lv. 88-99)") - public static NpcStringId WE_ARE_FRIENDS_LV_88_99_2; + @ClientString(id = 46504, message = "|Lv. 88-99| We are Friends") + public static NpcStringId LV_88_99_WE_ARE_FRIENDS_2; - @ClientString(id = 46601, message = "Placing My Small Power (Lv. 88-99)") - public static NpcStringId PLACING_MY_SMALL_POWER_LV_88_99; + @ClientString(id = 46601, message = "|Lv. 88-99| Placing My Small Power") + public static NpcStringId LV_88_99_PLACING_MY_SMALL_POWER; - @ClientString(id = 46602, message = "Placing My Small Power (Lv. 88-99) (In Progress)") - public static NpcStringId PLACING_MY_SMALL_POWER_LV_88_99_IN_PROGRESS; + @ClientString(id = 46602, message = "|Lv. 88-99| Placing My Small Power (In Progress)") + public static NpcStringId LV_88_99_PLACING_MY_SMALL_POWER_IN_PROGRESS; - @ClientString(id = 46603, message = "Placing My Small Power (Lv. 88-99) (Done)") - public static NpcStringId PLACING_MY_SMALL_POWER_LV_88_99_DONE; + @ClientString(id = 46603, message = "|Lv. 88-99| Placing My Small Power (Done)") + public static NpcStringId LV_88_99_PLACING_MY_SMALL_POWER_DONE; - @ClientString(id = 46604, message = "Placing My Small Power (Lv. 88-99)") - public static NpcStringId PLACING_MY_SMALL_POWER_LV_88_99_2; + @ClientString(id = 46604, message = "|Lv. 88-99| Placing My Small Power") + public static NpcStringId LV_88_99_PLACING_MY_SMALL_POWER_2; - @ClientString(id = 46701, message = "The Oppressor and The Oppressed (Lv. 60-64)") - public static NpcStringId THE_OPPRESSOR_AND_THE_OPPRESSED_LV_60_64; + @ClientString(id = 46701, message = "|Lv. 60-64| The Oppressor and The Oppressed") + public static NpcStringId LV_60_64_THE_OPPRESSOR_AND_THE_OPPRESSED; - @ClientString(id = 46702, message = "The Oppressor and The Oppressed (Lv. 60-64) (In Progress)") - public static NpcStringId THE_OPPRESSOR_AND_THE_OPPRESSED_LV_60_64_IN_PROGRESS; + @ClientString(id = 46702, message = "|Lv. 60-64| The Oppressor and The Oppressed (In Progress)") + public static NpcStringId LV_60_64_THE_OPPRESSOR_AND_THE_OPPRESSED_IN_PROGRESS; - @ClientString(id = 46703, message = "The Oppressor and The Oppressed (Lv. 60-64) (Done)") - public static NpcStringId THE_OPPRESSOR_AND_THE_OPPRESSED_LV_60_64_DONE; + @ClientString(id = 46703, message = "|Lv. 60-64| The Oppressor and The Oppressed (Done)") + public static NpcStringId LV_60_64_THE_OPPRESSOR_AND_THE_OPPRESSED_DONE; - @ClientString(id = 46704, message = "The Oppressor and The Oppressed (Lv. 60-64)") - public static NpcStringId THE_OPPRESSOR_AND_THE_OPPRESSED_LV_60_64_2; + @ClientString(id = 46704, message = "|Lv. 60-64| The Oppressor and The Oppressed") + public static NpcStringId LV_60_64_THE_OPPRESSOR_AND_THE_OPPRESSED_2; - @ClientString(id = 46801, message = "Be Lost in the Mysterious Scent (Lv. 90-99)") - public static NpcStringId BE_LOST_IN_THE_MYSTERIOUS_SCENT_LV_90_99; + @ClientString(id = 46801, message = "|Lv. 90-99| Be Lost in the Mysterious Scent") + public static NpcStringId LV_90_99_BE_LOST_IN_THE_MYSTERIOUS_SCENT; - @ClientString(id = 46802, message = "Be Lost in the Mysterious Scent (Lv. 90-99) (In Progress)") - public static NpcStringId BE_LOST_IN_THE_MYSTERIOUS_SCENT_LV_90_99_IN_PROGRESS; + @ClientString(id = 46802, message = "|Lv. 90-99| Be Lost in the Mysterious Scent (In Progress)") + public static NpcStringId LV_90_99_BE_LOST_IN_THE_MYSTERIOUS_SCENT_IN_PROGRESS; - @ClientString(id = 46803, message = "Be Lost in the Mysterious Scent (Lv. 90-99) (Done)") - public static NpcStringId BE_LOST_IN_THE_MYSTERIOUS_SCENT_LV_90_99_DONE; + @ClientString(id = 46803, message = "|Lv. 90-99| Be Lost in the Mysterious Scent (Done)") + public static NpcStringId LV_90_99_BE_LOST_IN_THE_MYSTERIOUS_SCENT_DONE; - @ClientString(id = 46804, message = "Be Lost in the Mysterious Scent (Lv. 90-99)") - public static NpcStringId BE_LOST_IN_THE_MYSTERIOUS_SCENT_LV_90_99_2; + @ClientString(id = 46804, message = "|Lv. 90-99| Be Lost in the Mysterious Scent") + public static NpcStringId LV_90_99_BE_LOST_IN_THE_MYSTERIOUS_SCENT_2; - @ClientString(id = 46901, message = "Suspicious Gardener (Lv. 90-99)") - public static NpcStringId SUSPICIOUS_GARDENER_LV_90_99; + @ClientString(id = 46901, message = "|Lv. 90-99| Suspicious Gardener") + public static NpcStringId LV_90_99_SUSPICIOUS_GARDENER; - @ClientString(id = 46902, message = "Suspicious Gardener (Lv. 90-99) (In Progress)") - public static NpcStringId SUSPICIOUS_GARDENER_LV_90_99_IN_PROGRESS; + @ClientString(id = 46902, message = "|Lv. 90-99| Suspicious Gardener (In Progress)") + public static NpcStringId LV_90_99_SUSPICIOUS_GARDENER_IN_PROGRESS; - @ClientString(id = 46903, message = "Suspicious Gardener (Lv. 90-99) (Done)") - public static NpcStringId SUSPICIOUS_GARDENER_LV_90_99_DONE; + @ClientString(id = 46903, message = "|Lv. 90-99| Suspicious Gardener (Done)") + public static NpcStringId LV_90_99_SUSPICIOUS_GARDENER_DONE; - @ClientString(id = 46904, message = "Suspicious Gardener (Lv. 90-99)") - public static NpcStringId SUSPICIOUS_GARDENER_LV_90_99_2; + @ClientString(id = 46904, message = "|Lv. 90-99| Suspicious Gardener") + public static NpcStringId LV_90_99_SUSPICIOUS_GARDENER_2; - @ClientString(id = 47001, message = "Divinity Protector (Lv. 60-64)") - public static NpcStringId DIVINITY_PROTECTOR_LV_60_64; + @ClientString(id = 47001, message = "|Lv. 60-64| Divinity Protector") + public static NpcStringId LV_60_64_DIVINITY_PROTECTOR; - @ClientString(id = 47002, message = "Divinity Protector (Lv. 60-64) (In progress)") - public static NpcStringId DIVINITY_PROTECTOR_LV_60_64_IN_PROGRESS; + @ClientString(id = 47002, message = "|Lv. 60-64| Divinity Protector (In progress)") + public static NpcStringId LV_60_64_DIVINITY_PROTECTOR_IN_PROGRESS; - @ClientString(id = 47003, message = "Divinity Protector (Lv. 60-64) (Done)") - public static NpcStringId DIVINITY_PROTECTOR_LV_60_64_DONE; + @ClientString(id = 47003, message = "|Lv. 60-64| Divinity Protector (Done)") + public static NpcStringId LV_60_64_DIVINITY_PROTECTOR_DONE; - @ClientString(id = 47004, message = "Divinity Protector (Lv. 60-64)") - public static NpcStringId DIVINITY_PROTECTOR_LV_60_64_2; + @ClientString(id = 47004, message = "|Lv. 60-64| Divinity Protector") + public static NpcStringId LV_60_64_DIVINITY_PROTECTOR_2; - @ClientString(id = 47101, message = "Breaking through Emerald Square (Lv. 97-99)") - public static NpcStringId BREAKING_THROUGH_EMERALD_SQUARE_LV_97_99; + @ClientString(id = 47101, message = "|Lv. 97-99| Breaking through Emerald Square") + public static NpcStringId LV_97_99_BREAKING_THROUGH_EMERALD_SQUARE; - @ClientString(id = 47102, message = "Breaking through Emerald Square (Lv. 97-99) (In Progress)") - public static NpcStringId BREAKING_THROUGH_EMERALD_SQUARE_LV_97_99_IN_PROGRESS; + @ClientString(id = 47102, message = "|Lv. 97-99| Breaking through Emerald Square (In Progress)") + public static NpcStringId LV_97_99_BREAKING_THROUGH_EMERALD_SQUARE_IN_PROGRESS; - @ClientString(id = 47103, message = "Breaking through Emerald Square (Lv. 97-99) (Done)") - public static NpcStringId BREAKING_THROUGH_EMERALD_SQUARE_LV_97_99_DONE; + @ClientString(id = 47103, message = "|Lv. 97-99| Breaking through Emerald Square (Done)") + public static NpcStringId LV_97_99_BREAKING_THROUGH_EMERALD_SQUARE_DONE; - @ClientString(id = 47104, message = "Breaking through Emerald Square (Lv. 97-99)") - public static NpcStringId BREAKING_THROUGH_EMERALD_SQUARE_LV_97_99_2; + @ClientString(id = 47104, message = "|Lv. 97-99| Breaking through Emerald Square") + public static NpcStringId LV_97_99_BREAKING_THROUGH_EMERALD_SQUARE_2; - @ClientString(id = 47201, message = "Challenge, Steam Corridor (Lv. 97-99)") - public static NpcStringId CHALLENGE_STEAM_CORRIDOR_LV_97_99; + @ClientString(id = 47201, message = "|Lv. 97-99| Challenge, Steam Corridor") + public static NpcStringId LV_97_99_CHALLENGE_STEAM_CORRIDOR; - @ClientString(id = 47202, message = "Challenge, Steam Corridor (Lv. 97-99) (In Progress)") - public static NpcStringId CHALLENGE_STEAM_CORRIDOR_LV_97_99_IN_PROGRESS; + @ClientString(id = 47202, message = "|Lv. 97-99| Challenge, Steam Corridor (In Progress)") + public static NpcStringId LV_97_99_CHALLENGE_STEAM_CORRIDOR_IN_PROGRESS; - @ClientString(id = 47203, message = "Challenge, Steam Corridor (Lv. 97-99) (Done)") - public static NpcStringId CHALLENGE_STEAM_CORRIDOR_LV_97_99_DONE; + @ClientString(id = 47203, message = "|Lv. 97-99| Challenge, Steam Corridor (Done)") + public static NpcStringId LV_97_99_CHALLENGE_STEAM_CORRIDOR_DONE; - @ClientString(id = 47204, message = "Challenge, Steam Corridor (Lv. 97-99)") - public static NpcStringId CHALLENGE_STEAM_CORRIDOR_LV_97_99_2; + @ClientString(id = 47204, message = "|Lv. 97-99| Challenge, Steam Corridor") + public static NpcStringId LV_97_99_CHALLENGE_STEAM_CORRIDOR_2; - @ClientString(id = 47301, message = "In the Coral Garden (Lv. 97-99)") - public static NpcStringId IN_THE_CORAL_GARDEN_LV_97_99; + @ClientString(id = 47301, message = "|Lv. 97-99| In the Coral Garden") + public static NpcStringId LV_97_99_IN_THE_CORAL_GARDEN; - @ClientString(id = 47302, message = "In the Coral Garden (Lv. 97-99) (In Progress)") - public static NpcStringId IN_THE_CORAL_GARDEN_LV_97_99_IN_PROGRESS; + @ClientString(id = 47302, message = "|Lv. 97-99| In the Coral Garden (In Progress)") + public static NpcStringId LV_97_99_IN_THE_CORAL_GARDEN_IN_PROGRESS; - @ClientString(id = 47303, message = "In the Coral Garden (Lv. 97-99) (Done)") - public static NpcStringId IN_THE_CORAL_GARDEN_LV_97_99_DONE; + @ClientString(id = 47303, message = "|Lv. 97-99| In the Coral Garden (Done)") + public static NpcStringId LV_97_99_IN_THE_CORAL_GARDEN_DONE; - @ClientString(id = 47304, message = "In the Coral Garden (Lv. 97-99)") - public static NpcStringId IN_THE_CORAL_GARDEN_LV_97_99_2; + @ClientString(id = 47304, message = "|Lv. 97-99| In the Coral Garden") + public static NpcStringId LV_97_99_IN_THE_CORAL_GARDEN_2; - @ClientString(id = 47401, message = "Waiting for the Summer (Lv. 60-64)") - public static NpcStringId WAITING_FOR_THE_SUMMER_LV_60_64; + @ClientString(id = 47401, message = "|Lv. 60-64| Waiting for the Summer") + public static NpcStringId LV_60_64_WAITING_FOR_THE_SUMMER; - @ClientString(id = 47402, message = "Waiting for the Summer (Lv. 60-64) (In Progress)") - public static NpcStringId WAITING_FOR_THE_SUMMER_LV_60_64_IN_PROGRESS; + @ClientString(id = 47402, message = "|Lv. 60-64| Waiting for the Summer (In Progress)") + public static NpcStringId LV_60_64_WAITING_FOR_THE_SUMMER_IN_PROGRESS; - @ClientString(id = 47403, message = "Waiting for the Summer (Lv. 60-64) (Done)") - public static NpcStringId WAITING_FOR_THE_SUMMER_LV_60_64_DONE; + @ClientString(id = 47403, message = "|Lv. 60-64| Waiting for the Summer (Done)") + public static NpcStringId LV_60_64_WAITING_FOR_THE_SUMMER_DONE; - @ClientString(id = 47404, message = "Waiting for the Summer (Lv. 60-64)") - public static NpcStringId WAITING_FOR_THE_SUMMER_LV_60_64_2; + @ClientString(id = 47404, message = "|Lv. 60-64| Waiting for the Summer") + public static NpcStringId LV_60_64_WAITING_FOR_THE_SUMMER_2; - @ClientString(id = 47501, message = "For the Sacrificed (Lv. 65-69)") - public static NpcStringId FOR_THE_SACRIFICED_LV_65_69; + @ClientString(id = 47501, message = "|Lv. 65-69| For the Sacrificed") + public static NpcStringId LV_65_69_FOR_THE_SACRIFICED; - @ClientString(id = 47502, message = "For the Sacrificed (Lv. 65-69) (In Progress)") - public static NpcStringId FOR_THE_SACRIFICED_LV_65_69_IN_PROGRESS; + @ClientString(id = 47502, message = "|Lv. 65-69| For the Sacrificed (In Progress)") + public static NpcStringId LV_65_69_FOR_THE_SACRIFICED_IN_PROGRESS; - @ClientString(id = 47503, message = "For the Sacrificed (Lv. 65-69) (Done)") - public static NpcStringId FOR_THE_SACRIFICED_LV_65_69_DONE; + @ClientString(id = 47503, message = "|Lv. 65-69| For the Sacrificed (Done)") + public static NpcStringId LV_65_69_FOR_THE_SACRIFICED_DONE; - @ClientString(id = 47504, message = "For the Sacrificed (Lv. 65-69)") - public static NpcStringId FOR_THE_SACRIFICED_LV_65_69_2; + @ClientString(id = 47504, message = "|Lv. 65-69| For the Sacrificed") + public static NpcStringId LV_65_69_FOR_THE_SACRIFICED_2; - @ClientString(id = 47601, message = "Plain Mission (Lv. 65-69)") - public static NpcStringId PLAIN_MISSION_LV_65_69; + @ClientString(id = 47601, message = "|Lv. 65-69| Plain Mission") + public static NpcStringId LV_65_69_PLAIN_MISSION; - @ClientString(id = 47602, message = "Plain Mission (Lv. 65-69) (In Progress)") - public static NpcStringId PLAIN_MISSION_LV_65_69_IN_PROGRESS; + @ClientString(id = 47602, message = "|Lv. 65-69| Plain Mission (In Progress)") + public static NpcStringId LV_65_69_PLAIN_MISSION_IN_PROGRESS; - @ClientString(id = 47603, message = "Plain Mission (Lv. 65-69) (Done)") - public static NpcStringId PLAIN_MISSION_LV_65_69_DONE; + @ClientString(id = 47603, message = "|Lv. 65-69| Plain Mission (Done)") + public static NpcStringId LV_65_69_PLAIN_MISSION_DONE; - @ClientString(id = 47604, message = "Plain Mission (Lv. 65-69)") - public static NpcStringId PLAIN_MISSION_LV_65_69_2; + @ClientString(id = 47604, message = "|Lv. 65-69| Plain Mission") + public static NpcStringId LV_65_69_PLAIN_MISSION_2; - @ClientString(id = 47701, message = "Blood from the Wall (Lv. 70-74)") - public static NpcStringId BLOOD_FROM_THE_WALL_LV_70_74; + @ClientString(id = 47701, message = "|Lv. 70-74| Blood from the Wall") + public static NpcStringId LV_70_74_BLOOD_FROM_THE_WALL; - @ClientString(id = 47702, message = "Blood from the Wall (Lv. 70-74) (In Progress)") - public static NpcStringId BLOOD_FROM_THE_WALL_LV_70_74_IN_PROGRESS; + @ClientString(id = 47702, message = "|Lv. 70-74| Blood from the Wall (In Progress)") + public static NpcStringId LV_70_74_BLOOD_FROM_THE_WALL_IN_PROGRESS; - @ClientString(id = 47703, message = "Blood from the Wall (Lv. 70-74) (Done)") - public static NpcStringId BLOOD_FROM_THE_WALL_LV_70_74_DONE; + @ClientString(id = 47703, message = "|Lv. 70-74| Blood from the Wall (Done)") + public static NpcStringId LV_70_74_BLOOD_FROM_THE_WALL_DONE; - @ClientString(id = 47704, message = "Blood from the Wall (Lv. 70-74)") - public static NpcStringId BLOOD_FROM_THE_WALL_LV_70_74_2; + @ClientString(id = 47704, message = "|Lv. 70-74| Blood from the Wall") + public static NpcStringId LV_70_74_BLOOD_FROM_THE_WALL_2; @ClientString(id = 47801, message = "Nightmares of Dwarves") public static NpcStringId NIGHTMARES_OF_DWARVES; @@ -7060,137 +7060,137 @@ public final class NpcStringId @ClientString(id = 47904, message = "Destroying the Eggs of Trasken") public static NpcStringId DESTROYING_THE_EGGS_OF_TRASKEN_2; - @ClientString(id = 48001, message = "Another Legacy of Cruma Tower (Lv. 38-99)") - public static NpcStringId ANOTHER_LEGACY_OF_CRUMA_TOWER_LV_38_99; + @ClientString(id = 48001, message = "|Lv. 38-99| Another Legacy of Cruma Tower") + public static NpcStringId LV_38_99_ANOTHER_LEGACY_OF_CRUMA_TOWER; - @ClientString(id = 48002, message = "Another Legacy of Cruma Tower (Lv. 38-99) (In Progress)") - public static NpcStringId ANOTHER_LEGACY_OF_CRUMA_TOWER_LV_38_99_IN_PROGRESS; + @ClientString(id = 48002, message = "|Lv. 38-99| Another Legacy of Cruma Tower (In Progress)") + public static NpcStringId LV_38_99_ANOTHER_LEGACY_OF_CRUMA_TOWER_IN_PROGRESS; - @ClientString(id = 48003, message = "Another Legacy of Cruma Tower (Lv. 38-99) (Done)") - public static NpcStringId ANOTHER_LEGACY_OF_CRUMA_TOWER_LV_38_99_DONE; + @ClientString(id = 48003, message = "|Lv. 38-99| Another Legacy of Cruma Tower (Done)") + public static NpcStringId LV_38_99_ANOTHER_LEGACY_OF_CRUMA_TOWER_DONE; - @ClientString(id = 48004, message = "Another Legacy of Cruma Tower (Lv. 38-99)") - public static NpcStringId ANOTHER_LEGACY_OF_CRUMA_TOWER_LV_38_99_2; + @ClientString(id = 48004, message = "|Lv. 38-99| Another Legacy of Cruma Tower") + public static NpcStringId LV_38_99_ANOTHER_LEGACY_OF_CRUMA_TOWER_2; - @ClientString(id = 48101, message = "Shadow Helper (Lv. 38-99)") - public static NpcStringId SHADOW_HELPER_LV_38_99; + @ClientString(id = 48101, message = "|Lv. 38-99| Shadow Helper") + public static NpcStringId LV_38_99_SHADOW_HELPER; - @ClientString(id = 48102, message = "Shadow Helper (Lv. 38-99) (In Progress)") - public static NpcStringId SHADOW_HELPER_LV_38_99_IN_PROGRESS; + @ClientString(id = 48102, message = "|Lv. 38-99| Shadow Helper (In Progress)") + public static NpcStringId LV_38_99_SHADOW_HELPER_IN_PROGRESS; - @ClientString(id = 48103, message = "Shadow Helper (Lv. 38-99) (Done)") - public static NpcStringId SHADOW_HELPER_LV_38_99_DONE; + @ClientString(id = 48103, message = "|Lv. 38-99| Shadow Helper (Done)") + public static NpcStringId LV_38_99_SHADOW_HELPER_DONE; - @ClientString(id = 48104, message = "Shadow Helper (Lv. 38-99)") - public static NpcStringId SHADOW_HELPER_LV_38_99_2; + @ClientString(id = 48104, message = "|Lv. 38-99| Shadow Helper") + public static NpcStringId LV_38_99_SHADOW_HELPER_2; - @ClientString(id = 48201, message = "Recertification of Value (Lv. 48-99)") - public static NpcStringId RECERTIFICATION_OF_VALUE_LV_48_99; + @ClientString(id = 48201, message = "|Lv. 48-99| Recertification of Value") + public static NpcStringId LV_48_99_RECERTIFICATION_OF_VALUE; - @ClientString(id = 48202, message = "Recertification of Value (Lv. 48-99) (In Progress)") - public static NpcStringId RECERTIFICATION_OF_VALUE_LV_48_99_IN_PROGRESS; + @ClientString(id = 48202, message = "|Lv. 48-99| Recertification of Value (In Progress)") + public static NpcStringId LV_48_99_RECERTIFICATION_OF_VALUE_IN_PROGRESS; - @ClientString(id = 48203, message = "Recertification of Value (Lv. 48-99) (Done)") - public static NpcStringId RECERTIFICATION_OF_VALUE_LV_48_99_DONE; + @ClientString(id = 48203, message = "|Lv. 48-99| Recertification of Value (Done)") + public static NpcStringId LV_48_99_RECERTIFICATION_OF_VALUE_DONE; - @ClientString(id = 48204, message = "Recertification of Value (Lv. 48-99)") - public static NpcStringId RECERTIFICATION_OF_VALUE_LV_48_99_2; + @ClientString(id = 48204, message = "|Lv. 48-99| Recertification of Value") + public static NpcStringId LV_48_99_RECERTIFICATION_OF_VALUE_2; - @ClientString(id = 48301, message = "Intended Tactic (Lv. 48-99)") - public static NpcStringId INTENDED_TACTIC_LV_48_99; + @ClientString(id = 48301, message = "|Lv. 48-99| Intended Tactic") + public static NpcStringId LV_48_99_INTENDED_TACTIC; - @ClientString(id = 48302, message = "Intended Tactic (Lv. 48-99) (In Progress)") - public static NpcStringId INTENDED_TACTIC_LV_48_99_IN_PROGRESS; + @ClientString(id = 48302, message = "|Lv. 48-99| Intended Tactic (In Progress)") + public static NpcStringId LV_48_99_INTENDED_TACTIC_IN_PROGRESS; - @ClientString(id = 48303, message = "Intended Tactic (Lv. 48-99) (Done)") - public static NpcStringId INTENDED_TACTIC_LV_48_99_DONE; + @ClientString(id = 48303, message = "|Lv. 48-99| Intended Tactic (Done)") + public static NpcStringId LV_48_99_INTENDED_TACTIC_DONE; - @ClientString(id = 48304, message = "Intended Tactic (Lv. 48-99)") - public static NpcStringId INTENDED_TACTIC_LV_48_99_2; + @ClientString(id = 48304, message = "|Lv. 48-99| Intended Tactic") + public static NpcStringId LV_48_99_INTENDED_TACTIC_2; - @ClientString(id = 48501, message = "Hot Spring Water (Lv. 70-74)") - public static NpcStringId HOT_SPRING_WATER_LV_70_74; + @ClientString(id = 48501, message = "|Lv. 70-74| Hot Spring Water") + public static NpcStringId LV_70_74_HOT_SPRING_WATER; - @ClientString(id = 48502, message = "Hot Spring Water (Lv. 70-74) (In Progress)") - public static NpcStringId HOT_SPRING_WATER_LV_70_74_IN_PROGRESS; + @ClientString(id = 48502, message = "|Lv. 70-74| Hot Spring Water (In Progress)") + public static NpcStringId LV_70_74_HOT_SPRING_WATER_IN_PROGRESS; - @ClientString(id = 48503, message = "Hot Spring Water (Lv. 70-74) (Done)") - public static NpcStringId HOT_SPRING_WATER_LV_70_74_DONE; + @ClientString(id = 48503, message = "|Lv. 70-74| Hot Spring Water (Done)") + public static NpcStringId LV_70_74_HOT_SPRING_WATER_DONE; - @ClientString(id = 48504, message = "Hot Spring Water (Lv. 70-74)") - public static NpcStringId HOT_SPRING_WATER_LV_70_74_2; + @ClientString(id = 48504, message = "|Lv. 70-74| Hot Spring Water") + public static NpcStringId LV_70_74_HOT_SPRING_WATER_2; - @ClientString(id = 48601, message = "Be Well (Lv. 70-74)") - public static NpcStringId BE_WELL_LV_70_74; + @ClientString(id = 48601, message = "|Lv. 70-74| Be Well") + public static NpcStringId LV_70_74_BE_WELL; - @ClientString(id = 48602, message = "Be Well (Lv. 70-74) (In Progress)") - public static NpcStringId BE_WELL_LV_70_74_IN_PROGRESS; + @ClientString(id = 48602, message = "|Lv. 70-74| Be Well (In Progress)") + public static NpcStringId LV_70_74_BE_WELL_IN_PROGRESS; - @ClientString(id = 48603, message = "Be Well (Lv. 70-74) (Done)") - public static NpcStringId BE_WELL_LV_70_74_DONE; + @ClientString(id = 48603, message = "|Lv. 70-74| Be Well (Done)") + public static NpcStringId LV_70_74_BE_WELL_DONE; - @ClientString(id = 48604, message = "Be Well (Lv. 70-74)") - public static NpcStringId BE_WELL_LV_70_74_2; + @ClientString(id = 48604, message = "|Lv. 70-74| Be Well") + public static NpcStringId LV_70_74_BE_WELL_2; - @ClientString(id = 48701, message = "Open Secret (Lv. 75-79)") - public static NpcStringId OPEN_SECRET_LV_75_79; + @ClientString(id = 48701, message = "|Lv. 75-79| Open Secret") + public static NpcStringId LV_75_79_OPEN_SECRET; - @ClientString(id = 48702, message = "Open Secret (Lv. 75-79) (In Progress)") - public static NpcStringId OPEN_SECRET_LV_75_79_IN_PROGRESS; + @ClientString(id = 48702, message = "|Lv. 75-79| Open Secret (In Progress)") + public static NpcStringId LV_75_79_OPEN_SECRET_IN_PROGRESS; - @ClientString(id = 48703, message = "Open Secret (Lv. 75-79) (Done)") - public static NpcStringId OPEN_SECRET_LV_75_79_DONE; + @ClientString(id = 48703, message = "|Lv. 75-79| Open Secret (Done)") + public static NpcStringId LV_75_79_OPEN_SECRET_DONE; - @ClientString(id = 48704, message = "Open Secret (Lv. 75-79)") - public static NpcStringId OPEN_SECRET_LV_75_79_2; + @ClientString(id = 48704, message = "|Lv. 75-79| Open Secret") + public static NpcStringId LV_75_79_OPEN_SECRET_2; - @ClientString(id = 48801, message = "Wonders of Caring (Lv. 75-79)") - public static NpcStringId WONDERS_OF_CARING_LV_75_79; + @ClientString(id = 48801, message = "|Lv. 75-79| Wonders of Caring") + public static NpcStringId LV_75_79_WONDERS_OF_CARING; - @ClientString(id = 48802, message = "Wonders of Caring (Lv. 75-79) (In Progress)") - public static NpcStringId WONDERS_OF_CARING_LV_75_79_IN_PROGRESS; + @ClientString(id = 48802, message = "|Lv. 75-79| Wonders of Caring (In Progress)") + public static NpcStringId LV_75_79_WONDERS_OF_CARING_IN_PROGRESS; - @ClientString(id = 48803, message = "Wonders of Caring (Lv. 75-79) (Done)") - public static NpcStringId WONDERS_OF_CARING_LV_75_79_DONE; + @ClientString(id = 48803, message = "|Lv. 75-79| Wonders of Caring (Done)") + public static NpcStringId LV_75_79_WONDERS_OF_CARING_DONE; - @ClientString(id = 48804, message = "Wonders of Caring (Lv. 75-79)") - public static NpcStringId WONDERS_OF_CARING_LV_75_79_2; + @ClientString(id = 48804, message = "|Lv. 75-79| Wonders of Caring") + public static NpcStringId LV_75_79_WONDERS_OF_CARING_2; - @ClientString(id = 48901, message = "In This Quiet Place (Lv. 75-79)") - public static NpcStringId IN_THIS_QUIET_PLACE_LV_75_79; + @ClientString(id = 48901, message = "|Lv. 75-79| In This Quiet Place") + public static NpcStringId LV_75_79_IN_THIS_QUIET_PLACE; - @ClientString(id = 48902, message = "In This Quiet Place (Lv. 75-79) (In Progress)") - public static NpcStringId IN_THIS_QUIET_PLACE_LV_75_79_IN_PROGRESS; + @ClientString(id = 48902, message = "|Lv. 75-79| In This Quiet Place (In Progress)") + public static NpcStringId LV_75_79_IN_THIS_QUIET_PLACE_IN_PROGRESS; - @ClientString(id = 48903, message = "In This Quiet Place (Lv. 75-79) (Done)") - public static NpcStringId IN_THIS_QUIET_PLACE_LV_75_79_DONE; + @ClientString(id = 48903, message = "|Lv. 75-79| In This Quiet Place (Done)") + public static NpcStringId LV_75_79_IN_THIS_QUIET_PLACE_DONE; - @ClientString(id = 48904, message = "In This Quiet Place (Lv. 75-79)") - public static NpcStringId IN_THIS_QUIET_PLACE_LV_75_79_2; + @ClientString(id = 48904, message = "|Lv. 75-79| In This Quiet Place") + public static NpcStringId LV_75_79_IN_THIS_QUIET_PLACE_2; - @ClientString(id = 49001, message = "Duty of the Survivor (Lv. 85-89)") - public static NpcStringId DUTY_OF_THE_SURVIVOR_LV_85_89; + @ClientString(id = 49001, message = "|Lv. 85-89| Duty of the Survivor") + public static NpcStringId LV_85_89_DUTY_OF_THE_SURVIVOR; - @ClientString(id = 49002, message = "Duty of the Survivor (Lv. 85-89) (In Progress)") - public static NpcStringId DUTY_OF_THE_SURVIVOR_LV_85_89_IN_PROGRESS; + @ClientString(id = 49002, message = "|Lv. 85-89| Duty of the Survivor (In Progress)") + public static NpcStringId LV_85_89_DUTY_OF_THE_SURVIVOR_IN_PROGRESS; - @ClientString(id = 49003, message = "Duty of the Survivor (Lv. 85-89) (Completed)") - public static NpcStringId DUTY_OF_THE_SURVIVOR_LV_85_89_COMPLETED; + @ClientString(id = 49003, message = "|Lv. 85-89| Duty of the Survivor (Completed)") + public static NpcStringId LV_85_89_DUTY_OF_THE_SURVIVOR_COMPLETED; - @ClientString(id = 49004, message = "Duty of the Survivor (Lv. 85-89)") - public static NpcStringId DUTY_OF_THE_SURVIVOR_LV_85_89_2; + @ClientString(id = 49004, message = "|Lv. 85-89| Duty of the Survivor") + public static NpcStringId LV_85_89_DUTY_OF_THE_SURVIVOR_2; - @ClientString(id = 49101, message = "In Nomine Patris (Lv. 76-81)") - public static NpcStringId IN_NOMINE_PATRIS_LV_76_81; + @ClientString(id = 49101, message = "|Lv. 76-81| In Nomine Patris") + public static NpcStringId LV_76_81_IN_NOMINE_PATRIS; - @ClientString(id = 49102, message = "In Nomine Patris (Lv. 76-81) (In Progress)") - public static NpcStringId IN_NOMINE_PATRIS_LV_76_81_IN_PROGRESS; + @ClientString(id = 49102, message = "|Lv. 76-81| In Nomine Patris (In Progress)") + public static NpcStringId LV_76_81_IN_NOMINE_PATRIS_IN_PROGRESS; - @ClientString(id = 49103, message = "In Nomine Patris (Lv. 76-81) (Done)") - public static NpcStringId IN_NOMINE_PATRIS_LV_76_81_DONE; + @ClientString(id = 49103, message = "|Lv. 76-81| In Nomine Patris (Done)") + public static NpcStringId LV_76_81_IN_NOMINE_PATRIS_DONE; - @ClientString(id = 49104, message = "In Nomine Patris (Lv. 76-81)") - public static NpcStringId IN_NOMINE_PATRIS_LV_76_81_2; + @ClientString(id = 49104, message = "|Lv. 76-81| In Nomine Patris") + public static NpcStringId LV_76_81_IN_NOMINE_PATRIS_2; @ClientString(id = 49151, message = "Hurry and defeat those monsters.") public static NpcStringId HURRY_AND_DEFEAT_THOSE_MONSTERS; @@ -7207,17 +7207,17 @@ public final class NpcStringId @ClientString(id = 49155, message = "So then, I will... No, no. I don't think I need to get involved.") public static NpcStringId SO_THEN_I_WILL_NO_NO_I_DON_T_THINK_I_NEED_TO_GET_INVOLVED; - @ClientString(id = 49201, message = "Tomb Raiders (Lv. 80-99)") - public static NpcStringId TOMB_RAIDERS_LV_80_99; + @ClientString(id = 49201, message = "|Lv. 80-99| Tomb Raiders") + public static NpcStringId LV_80_99_TOMB_RAIDERS; - @ClientString(id = 49202, message = "Tomb Raiders (Lv. 80-99) (In Progress)") - public static NpcStringId TOMB_RAIDERS_LV_80_99_IN_PROGRESS; + @ClientString(id = 49202, message = "|Lv. 80-99| Tomb Raiders (In Progress)") + public static NpcStringId LV_80_99_TOMB_RAIDERS_IN_PROGRESS; - @ClientString(id = 49203, message = "Tomb Raiders (Lv. 80-99) (Done)") - public static NpcStringId TOMB_RAIDERS_LV_80_99_DONE; + @ClientString(id = 49203, message = "|Lv. 80-99| Tomb Raiders (Done)") + public static NpcStringId LV_80_99_TOMB_RAIDERS_DONE; - @ClientString(id = 49204, message = "Tomb Raiders (Lv. 80-99)") - public static NpcStringId TOMB_RAIDERS_LV_80_99_2; + @ClientString(id = 49204, message = "|Lv. 80-99| Tomb Raiders") + public static NpcStringId LV_80_99_TOMB_RAIDERS_2; @ClientString(id = 49250, message = "Stop the monsters from collecting the relics.") public static NpcStringId STOP_THE_MONSTERS_FROM_COLLECTING_THE_RELICS; @@ -7225,89 +7225,89 @@ public final class NpcStringId @ClientString(id = 49251, message = "Thanks again for today's work. I will see you tomorrow.") public static NpcStringId THANKS_AGAIN_FOR_TODAY_S_WORK_I_WILL_SEE_YOU_TOMORROW; - @ClientString(id = 49301, message = "Kicking Out Unwelcome Guests (Lv. 95-99)") - public static NpcStringId KICKING_OUT_UNWELCOME_GUESTS_LV_95_99; + @ClientString(id = 49301, message = "|Lv. 95-99| Kicking Out Unwelcome Guests") + public static NpcStringId LV_95_99_KICKING_OUT_UNWELCOME_GUESTS; - @ClientString(id = 49302, message = "Kicking Out Unwelcome Guests (Lv. 95-99) (In Progress)") - public static NpcStringId KICKING_OUT_UNWELCOME_GUESTS_LV_95_99_IN_PROGRESS; + @ClientString(id = 49302, message = "|Lv. 95-99| Kicking Out Unwelcome Guests (In Progress)") + public static NpcStringId LV_95_99_KICKING_OUT_UNWELCOME_GUESTS_IN_PROGRESS; - @ClientString(id = 49303, message = "Kicking Out Unwelcome Guests (Lv. 95-99) (Done)") - public static NpcStringId KICKING_OUT_UNWELCOME_GUESTS_LV_95_99_DONE; + @ClientString(id = 49303, message = "|Lv. 95-99| Kicking Out Unwelcome Guests (Done)") + public static NpcStringId LV_95_99_KICKING_OUT_UNWELCOME_GUESTS_DONE; - @ClientString(id = 49304, message = "Kicking Out Unwelcome Guests (Lv. 95-99)") - public static NpcStringId KICKING_OUT_UNWELCOME_GUESTS_LV_95_99_2; + @ClientString(id = 49304, message = "|Lv. 95-99| Kicking Out Unwelcome Guests") + public static NpcStringId LV_95_99_KICKING_OUT_UNWELCOME_GUESTS_2; - @ClientString(id = 49401, message = "Incarnation of Greed Zellaka (Lv. 85-89)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89; + @ClientString(id = 49401, message = "|Lv. 85-89| Incarnation of Greed Zellaka") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA; - @ClientString(id = 49402, message = "Incarnation of Greed Zellaka (Lv. 85-89) (In Progress)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_IN_PROGRESS; + @ClientString(id = 49402, message = "|Lv. 85-89| Incarnation of Greed Zellaka (In Progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS; - @ClientString(id = 49403, message = "Incarnation of Greed Zellaka (Lv. 85-89) (Done)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_DONE; + @ClientString(id = 49403, message = "|Lv. 85-89| Incarnation of Greed Zellaka (Done)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_DONE; - @ClientString(id = 49404, message = "Incarnation of Greed Zellaka (Lv. 85-89)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_2; + @ClientString(id = 49404, message = "|Lv. 85-89| Incarnation of Greed Zellaka") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_2; - @ClientString(id = 49501, message = "Incarnation of Jealousy Pelline (Lv. 90-94)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94; + @ClientString(id = 49501, message = "|Lv. 90-94| Incarnation of Jealousy Pelline") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE; - @ClientString(id = 49502, message = "Incarnation of Jealousy Pelline (Lv. 90-94) (In Progress)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_IN_PROGRESS; + @ClientString(id = 49502, message = "|Lv. 90-94| Incarnation of Jealousy Pelline (In Progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS; - @ClientString(id = 49503, message = "Incarnation of Jealousy Pelline (Lv. 90-94) (Done)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_DONE; + @ClientString(id = 49503, message = "|Lv. 90-94| Incarnation of Jealousy Pelline (Done)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_DONE; - @ClientString(id = 49504, message = "Incarnation of Jealousy Pelline (Lv. 90-94)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_2; + @ClientString(id = 49504, message = "|Lv. 90-94| Incarnation of Jealousy Pelline") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_2; - @ClientString(id = 49601, message = "Incarnation of Gluttony Kalios (Lv. 95-99)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99; + @ClientString(id = 49601, message = "|Lv. 95-99| Incarnation of Gluttony Kalios") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS; - @ClientString(id = 49602, message = "Incarnation of Gluttony Kalios (Lv. 95-99) (In Progress)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_IN_PROGRESS; + @ClientString(id = 49602, message = "|Lv. 95-99| Incarnation of Gluttony Kalios (In Progress)") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS; - @ClientString(id = 49603, message = "Incarnation of Gluttony Kalios (Lv. 95-99) (Done)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_DONE; + @ClientString(id = 49603, message = "|Lv. 95-99| Incarnation of Gluttony Kalios (Done)") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_DONE; - @ClientString(id = 49604, message = "Incarnation of Gluttony Kalios (Lv. 95-99)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_2; + @ClientString(id = 49604, message = "|Lv. 95-99| Incarnation of Gluttony Kalios") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_2; - @ClientString(id = 49701, message = "Incarnation of Greed Zellaka (Lv. 85-89)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_3; + @ClientString(id = 49701, message = "|Lv. 85-89| Incarnation of Greed Zellaka") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_3; - @ClientString(id = 49702, message = "Incarnation of Greed Zellaka (Lv. 85-89) (In Progress)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_IN_PROGRESS_2; + @ClientString(id = 49702, message = "|Lv. 85-89| Incarnation of Greed Zellaka (In Progress)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_IN_PROGRESS_2; - @ClientString(id = 49703, message = "Incarnation of Greed Zellaka (Lv. 85-89) (Done)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_DONE_2; + @ClientString(id = 49703, message = "|Lv. 85-89| Incarnation of Greed Zellaka (Done)") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_DONE_2; - @ClientString(id = 49704, message = "Incarnation of Greed Zellaka (Lv. 85-89)") - public static NpcStringId INCARNATION_OF_GREED_ZELLAKA_LV_85_89_4; + @ClientString(id = 49704, message = "|Lv. 85-89| Incarnation of Greed Zellaka") + public static NpcStringId LV_85_89_INCARNATION_OF_GREED_ZELLAKA_4; - @ClientString(id = 49801, message = "Incarnation of Jealousy Pelline (Lv. 90-94)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_3; + @ClientString(id = 49801, message = "|Lv. 90-94| Incarnation of Jealousy Pelline") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_3; - @ClientString(id = 49802, message = "Incarnation of Jealousy Pelline (Lv. 90-94) (In Progress)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_IN_PROGRESS_2; + @ClientString(id = 49802, message = "|Lv. 90-94| Incarnation of Jealousy Pelline (In Progress)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_IN_PROGRESS_2; - @ClientString(id = 49803, message = "Incarnation of Jealousy Pelline (Lv. 90-94) (Done)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_DONE_2; + @ClientString(id = 49803, message = "|Lv. 90-94| Incarnation of Jealousy Pelline (Done)") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_DONE_2; - @ClientString(id = 49804, message = "Incarnation of Jealousy Pelline (Lv. 90-94)") - public static NpcStringId INCARNATION_OF_JEALOUSY_PELLINE_LV_90_94_4; + @ClientString(id = 49804, message = "|Lv. 90-94| Incarnation of Jealousy Pelline") + public static NpcStringId LV_90_94_INCARNATION_OF_JEALOUSY_PELLINE_4; - @ClientString(id = 49901, message = "Incarnation of Gluttony Kalios (Lv. 95-99)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_3; + @ClientString(id = 49901, message = "|Lv. 95-99| Incarnation of Gluttony Kalios") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_3; - @ClientString(id = 49902, message = "Incarnation of Gluttony Kalios (Lv. 95-99) (In Progress)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_IN_PROGRESS_2; + @ClientString(id = 49902, message = "|Lv. 95-99| Incarnation of Gluttony Kalios (In Progress)") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_IN_PROGRESS_2; - @ClientString(id = 49903, message = "Incarnation of Gluttony Kalios (Lv. 95-99) (Done)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_DONE_2; + @ClientString(id = 49903, message = "|Lv. 95-99| Incarnation of Gluttony Kalios (Done)") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_DONE_2; - @ClientString(id = 49904, message = "Incarnation of Gluttony Kalios (Lv. 95-99)") - public static NpcStringId INCARNATION_OF_GLUTTONY_KALIOS_LV_95_99_4; + @ClientString(id = 49904, message = "|Lv. 95-99| Incarnation of Gluttony Kalios") + public static NpcStringId LV_95_99_INCARNATION_OF_GLUTTONY_KALIOS_4; @ClientString(id = 50001, message = "Brothers Bound in Chains") public static NpcStringId BROTHERS_BOUND_IN_CHAINS; @@ -7321,26 +7321,26 @@ public final class NpcStringId @ClientString(id = 50004, message = "Brothers Bound in Chains") public static NpcStringId BROTHERS_BOUND_IN_CHAINS_2; - @ClientString(id = 50101, message = "Proof of Clan Alliance (Lv. 1-99)") - public static NpcStringId PROOF_OF_CLAN_ALLIANCE_LV_1_99; + @ClientString(id = 50101, message = "|Lv. 1-99| Proof of Clan Alliance") + public static NpcStringId LV_1_99_PROOF_OF_CLAN_ALLIANCE; - @ClientString(id = 50102, message = "Proof of Clan Alliance (Lv. 1-99) (In Progress)") - public static NpcStringId PROOF_OF_CLAN_ALLIANCE_LV_1_99_IN_PROGRESS; + @ClientString(id = 50102, message = "|Lv. 1-99| Proof of Clan Alliance (In Progress)") + public static NpcStringId LV_1_99_PROOF_OF_CLAN_ALLIANCE_IN_PROGRESS; - @ClientString(id = 50104, message = "Proof of Clan Alliance (Lv. 1-99)") - public static NpcStringId PROOF_OF_CLAN_ALLIANCE_LV_1_99_2; + @ClientString(id = 50104, message = "|Lv. 1-99| Proof of Clan Alliance") + public static NpcStringId LV_1_99_PROOF_OF_CLAN_ALLIANCE_2; @ClientString(id = 50110, message = "##########Bingo!##########") public static NpcStringId BINGO; - @ClientString(id = 50301, message = "Pursuit of Clan Ambition! (Lv. 1-99)") - public static NpcStringId PURSUIT_OF_CLAN_AMBITION_LV_1_99; + @ClientString(id = 50301, message = "|Lv. 1-99| Pursuit of Clan Ambition!") + public static NpcStringId LV_1_99_PURSUIT_OF_CLAN_AMBITION; - @ClientString(id = 50302, message = "Pursuit of Clan Ambition! (Lv. 1-99) (In Progress)") - public static NpcStringId PURSUIT_OF_CLAN_AMBITION_LV_1_99_IN_PROGRESS; + @ClientString(id = 50302, message = "|Lv. 1-99| Pursuit of Clan Ambition! (In Progress)") + public static NpcStringId LV_1_99_PURSUIT_OF_CLAN_AMBITION_IN_PROGRESS; - @ClientString(id = 50304, message = "Pursuit of Clan Ambition! (Lv. 1-99)") - public static NpcStringId PURSUIT_OF_CLAN_AMBITION_LV_1_99_2; + @ClientString(id = 50304, message = "|Lv. 1-99| Pursuit of Clan Ambition!") + public static NpcStringId LV_1_99_PURSUIT_OF_CLAN_AMBITION_2; @ClientString(id = 50338, message = "Blood and honor!") public static NpcStringId BLOOD_AND_HONOR; @@ -7354,26 +7354,26 @@ public final class NpcStringId @ClientString(id = 50341, message = "Ambition and power!") public static NpcStringId AMBITION_AND_POWER; - @ClientString(id = 50401, message = "Competition for the Bandit Stronghold (Lv. 1-99)") - public static NpcStringId COMPETITION_FOR_THE_BANDIT_STRONGHOLD_LV_1_99; + @ClientString(id = 50401, message = "|Lv. 1-99| Competition for the Bandit Stronghold") + public static NpcStringId LV_1_99_COMPETITION_FOR_THE_BANDIT_STRONGHOLD; - @ClientString(id = 50402, message = "Competition for the Bandit Stronghold (Lv. 1-99) (In Progress)") - public static NpcStringId COMPETITION_FOR_THE_BANDIT_STRONGHOLD_LV_1_99_IN_PROGRESS; + @ClientString(id = 50402, message = "|Lv. 1-99| Competition for the Bandit Stronghold (In Progress)") + public static NpcStringId LV_1_99_COMPETITION_FOR_THE_BANDIT_STRONGHOLD_IN_PROGRESS; - @ClientString(id = 50404, message = "Competition for the Bandit Stronghold (Lv. 1-99)") - public static NpcStringId COMPETITION_FOR_THE_BANDIT_STRONGHOLD_LV_1_99_2; + @ClientString(id = 50404, message = "|Lv. 1-99| Competition for the Bandit Stronghold") + public static NpcStringId LV_1_99_COMPETITION_FOR_THE_BANDIT_STRONGHOLD_2; - @ClientString(id = 50501, message = "Blood Offering (Lv. 1-99)") - public static NpcStringId BLOOD_OFFERING_LV_1_99; + @ClientString(id = 50501, message = "|Lv. 1-99| Blood Offering") + public static NpcStringId LV_1_99_BLOOD_OFFERING; - @ClientString(id = 50502, message = "Blood Offering (Lv. 1-99) (In Progress)") - public static NpcStringId BLOOD_OFFERING_LV_1_99_IN_PROGRESS; + @ClientString(id = 50502, message = "|Lv. 1-99| Blood Offering (In Progress)") + public static NpcStringId LV_1_99_BLOOD_OFFERING_IN_PROGRESS; - @ClientString(id = 50503, message = "Blood Offering (Lv. 1-99) (Done)") - public static NpcStringId BLOOD_OFFERING_LV_1_99_DONE; + @ClientString(id = 50503, message = "|Lv. 1-99| Blood Offering (Done)") + public static NpcStringId LV_1_99_BLOOD_OFFERING_DONE; - @ClientString(id = 50504, message = "Blood Offering (Lv. 1-99)") - public static NpcStringId BLOOD_OFFERING_LV_1_99_2; + @ClientString(id = 50504, message = "|Lv. 1-99| Blood Offering") + public static NpcStringId LV_1_99_BLOOD_OFFERING_2; @ClientString(id = 50701, message = "Into the Chaos") public static NpcStringId INTO_THE_CHAOS; @@ -7384,14 +7384,14 @@ public final class NpcStringId @ClientString(id = 50704, message = "Into the Chaos") public static NpcStringId INTO_THE_CHAOS_2; - @ClientString(id = 50801, message = "A Clan's Reputation (Lv. 1-99)") - public static NpcStringId A_CLAN_S_REPUTATION_LV_1_99; + @ClientString(id = 50801, message = "|Lv. 1-99| A Clan's Reputation") + public static NpcStringId LV_1_99_A_CLAN_S_REPUTATION; - @ClientString(id = 50802, message = "A Clan's Reputation (Lv. 1-99) (In Progress)") - public static NpcStringId A_CLAN_S_REPUTATION_LV_1_99_IN_PROGRESS; + @ClientString(id = 50802, message = "|Lv. 1-99| A Clan's Reputation (In Progress)") + public static NpcStringId LV_1_99_A_CLAN_S_REPUTATION_IN_PROGRESS; - @ClientString(id = 50804, message = "A Clan's Reputation (Lv. 1-99)") - public static NpcStringId A_CLAN_S_REPUTATION_LV_1_99_2; + @ClientString(id = 50804, message = "|Lv. 1-99| A Clan's Reputation") + public static NpcStringId LV_1_99_A_CLAN_S_REPUTATION_2; @ClientString(id = 50851, message = "You have successfully completed a clan quest. $s1 points have been added to your clan's reputation score.") public static NpcStringId YOU_HAVE_SUCCESSFULLY_COMPLETED_A_CLAN_QUEST_S1_POINTS_HAVE_BEEN_ADDED_TO_YOUR_CLAN_S_REPUTATION_SCORE; @@ -7423,41 +7423,41 @@ public final class NpcStringId @ClientString(id = 50861, message = "I curse our blood.. I despise what we are.. Shilen…") public static NpcStringId I_CURSE_OUR_BLOOD_I_DESPISE_WHAT_WE_ARE_SHILEN; - @ClientString(id = 50901, message = "A Clan's Fame (Lv. 1-99)") - public static NpcStringId A_CLAN_S_FAME_LV_1_99; + @ClientString(id = 50901, message = "|Lv. 1-99| A Clan's Fame") + public static NpcStringId LV_1_99_A_CLAN_S_FAME; - @ClientString(id = 50902, message = "A Clan's Fame (Lv. 1-99) (In Progress)") - public static NpcStringId A_CLAN_S_FAME_LV_1_99_IN_PROGRESS; + @ClientString(id = 50902, message = "|Lv. 1-99| A Clan's Fame (In Progress)") + public static NpcStringId LV_1_99_A_CLAN_S_FAME_IN_PROGRESS; - @ClientString(id = 50904, message = "A Clan's Fame (Lv. 1-99)") - public static NpcStringId A_CLAN_S_FAME_LV_1_99_2; + @ClientString(id = 50904, message = "|Lv. 1-99| A Clan's Fame") + public static NpcStringId LV_1_99_A_CLAN_S_FAME_2; - @ClientString(id = 51001, message = "A Clan's Reputation (Lv. 1-99)") - public static NpcStringId A_CLAN_S_REPUTATION_LV_1_99_3; + @ClientString(id = 51001, message = "|Lv. 1-99| A Clan's Reputation") + public static NpcStringId LV_1_99_A_CLAN_S_REPUTATION_3; - @ClientString(id = 51002, message = "A Clan's Reputation (Lv. 1-99) (In Progress)") - public static NpcStringId A_CLAN_S_REPUTATION_LV_1_99_IN_PROGRESS_2; + @ClientString(id = 51002, message = "|Lv. 1-99| A Clan's Reputation (In Progress)") + public static NpcStringId LV_1_99_A_CLAN_S_REPUTATION_IN_PROGRESS_2; - @ClientString(id = 51004, message = "A Clan's Prestige (Lv. 1-99)") - public static NpcStringId A_CLAN_S_PRESTIGE_LV_1_99; + @ClientString(id = 51004, message = "|Lv. 1-99| A Clan's Prestige") + public static NpcStringId LV_1_99_A_CLAN_S_PRESTIGE; - @ClientString(id = 51101, message = "Awl Under Foot (Lv. 85-99)") - public static NpcStringId AWL_UNDER_FOOT_LV_85_99; + @ClientString(id = 51101, message = "|Lv. 85-99| Awl Under Foot") + public static NpcStringId LV_85_99_AWL_UNDER_FOOT; - @ClientString(id = 51102, message = "Awl Under Foot (Lv. 85-99) (In Progress)") - public static NpcStringId AWL_UNDER_FOOT_LV_85_99_IN_PROGRESS; + @ClientString(id = 51102, message = "|Lv. 85-99| Awl Under Foot (In Progress)") + public static NpcStringId LV_85_99_AWL_UNDER_FOOT_IN_PROGRESS; - @ClientString(id = 51104, message = "Awl Under Foot (Lv. 85-99)") - public static NpcStringId AWL_UNDER_FOOT_LV_85_99_2; + @ClientString(id = 51104, message = "|Lv. 85-99| Awl Under Foot") + public static NpcStringId LV_85_99_AWL_UNDER_FOOT_2; - @ClientString(id = 51201, message = "Hidden Blade (Lv. 90-99)") - public static NpcStringId HIDDEN_BLADE_LV_90_99; + @ClientString(id = 51201, message = "|Lv. 90-99| Hidden Blade") + public static NpcStringId LV_90_99_HIDDEN_BLADE; - @ClientString(id = 51202, message = "Hidden Blade (Lv. 90-99) (In Progress)") - public static NpcStringId HIDDEN_BLADE_LV_90_99_IN_PROGRESS; + @ClientString(id = 51202, message = "|Lv. 90-99| Hidden Blade (In Progress)") + public static NpcStringId LV_90_99_HIDDEN_BLADE_IN_PROGRESS; - @ClientString(id = 51204, message = "Hidden Blade (Lv. 90-99)") - public static NpcStringId HIDDEN_BLADE_LV_90_99_2; + @ClientString(id = 51204, message = "|Lv. 90-99| Hidden Blade") + public static NpcStringId LV_90_99_HIDDEN_BLADE_2; @ClientString(id = 53901, message = "Put on the Analysis Hat and try Analysis on me.") public static NpcStringId PUT_ON_THE_ANALYSIS_HAT_AND_TRY_ANALYSIS_ON_ME; @@ -7465,17 +7465,17 @@ public final class NpcStringId @ClientString(id = 53902, message = "That's how you do it!") public static NpcStringId THAT_S_HOW_YOU_DO_IT; - @ClientString(id = 55101, message = "Olympiad Starter (Lv. 85-99)") - public static NpcStringId OLYMPIAD_STARTER_LV_85_99; + @ClientString(id = 55101, message = "|Lv. 85-99| Olympiad Starter") + public static NpcStringId LV_85_99_OLYMPIAD_STARTER; - @ClientString(id = 55102, message = "Olympiad Starter (Lv. 85-99)(In Progress)") - public static NpcStringId OLYMPIAD_STARTER_LV_85_99_IN_PROGRESS; + @ClientString(id = 55102, message = "|Lv. 85-99| Olympiad Starter (In Progress)") + public static NpcStringId LV_85_99_OLYMPIAD_STARTER_IN_PROGRESS; - @ClientString(id = 55103, message = "Olympiad Starter (Lv. 85-99)(Done)") - public static NpcStringId OLYMPIAD_STARTER_LV_85_99_DONE; + @ClientString(id = 55103, message = "|Lv. 85-99| Olympiad Starter (Done)") + public static NpcStringId LV_85_99_OLYMPIAD_STARTER_DONE; - @ClientString(id = 55104, message = "Olympiad Starter (Lv. 85-99)") - public static NpcStringId OLYMPIAD_STARTER_LV_85_99_2; + @ClientString(id = 55104, message = "|Lv. 85-99| Olympiad Starter") + public static NpcStringId LV_85_99_OLYMPIAD_STARTER_2; @ClientString(id = 55201, message = "Olympiad Veteran") public static NpcStringId OLYMPIAD_VETERAN; @@ -7486,17 +7486,17 @@ public final class NpcStringId @ClientString(id = 55203, message = "Olympiad Veteran (Done)") public static NpcStringId OLYMPIAD_VETERAN_DONE; - @ClientString(id = 55301, message = "Olympiad Undefeated (Lv. 85-99)") - public static NpcStringId OLYMPIAD_UNDEFEATED_LV_85_99; + @ClientString(id = 55301, message = "|Lv. 85-99| Olympiad Undefeated") + public static NpcStringId LV_85_99_OLYMPIAD_UNDEFEATED; - @ClientString(id = 55302, message = "Olympiad Undefeated (Lv. 85-99)(In Progress)") - public static NpcStringId OLYMPIAD_UNDEFEATED_LV_85_99_IN_PROGRESS; + @ClientString(id = 55302, message = "|Lv. 85-99| Olympiad Undefeated (In Progress)") + public static NpcStringId LV_85_99_OLYMPIAD_UNDEFEATED_IN_PROGRESS; - @ClientString(id = 55303, message = "Olympiad Undefeated (Lv. 85-99) (Done)") - public static NpcStringId OLYMPIAD_UNDEFEATED_LV_85_99_DONE; + @ClientString(id = 55303, message = "|Lv. 85-99| Olympiad Undefeated (Done)") + public static NpcStringId LV_85_99_OLYMPIAD_UNDEFEATED_DONE; - @ClientString(id = 55304, message = "Olympiad Undefeated (Lv. 85-99)") - public static NpcStringId OLYMPIAD_UNDEFEATED_LV_85_99_2; + @ClientString(id = 55304, message = "|Lv. 85-99| Olympiad Undefeated") + public static NpcStringId LV_85_99_OLYMPIAD_UNDEFEATED_2; @ClientString(id = 60000, message = "I'll start the furnace mechanism. Watch for the pattern.") public static NpcStringId I_LL_START_THE_FURNACE_MECHANISM_WATCH_FOR_THE_PATTERN; @@ -7747,23 +7747,23 @@ public final class NpcStringId @ClientString(id = 61651, message = "The power of constraint is getting weaker. Your ritual has failed!") public static NpcStringId THE_POWER_OF_CONSTRAINT_IS_GETTING_WEAKER_YOUR_RITUAL_HAS_FAILED_2; - @ClientString(id = 61701, message = "Gather the Flames (Lv. 74-80)") - public static NpcStringId GATHER_THE_FLAMES_LV_74_80; + @ClientString(id = 61701, message = "|Lv. 74-80| Gather the Flames") + public static NpcStringId LV_74_80_GATHER_THE_FLAMES; - @ClientString(id = 61702, message = "Gather the Flames (Lv. 74-80) (In Progress)") - public static NpcStringId GATHER_THE_FLAMES_LV_74_80_IN_PROGRESS; + @ClientString(id = 61702, message = "|Lv. 74-80| Gather the Flames (In Progress)") + public static NpcStringId LV_74_80_GATHER_THE_FLAMES_IN_PROGRESS; - @ClientString(id = 61704, message = "Gather the Flames (Lv. 74-80)") - public static NpcStringId GATHER_THE_FLAMES_LV_74_80_2; + @ClientString(id = 61704, message = "|Lv. 74-80| Gather the Flames") + public static NpcStringId LV_74_80_GATHER_THE_FLAMES_2; - @ClientString(id = 61801, message = "Into the Flames (Lv. 60-99)") - public static NpcStringId INTO_THE_FLAMES_LV_60_99; + @ClientString(id = 61801, message = "|Lv. 60-99| Into the Flames") + public static NpcStringId LV_60_99_INTO_THE_FLAMES; - @ClientString(id = 61802, message = "Into the Flames (Lv. 60-99) (In Progress)") - public static NpcStringId INTO_THE_FLAMES_LV_60_99_IN_PROGRESS; + @ClientString(id = 61802, message = "|Lv. 60-99| Into the Flames (In Progress)") + public static NpcStringId LV_60_99_INTO_THE_FLAMES_IN_PROGRESS; - @ClientString(id = 61804, message = "Into the Flames (Lv. 60-99)") - public static NpcStringId INTO_THE_FLAMES_LV_60_99_2; + @ClientString(id = 61804, message = "|Lv. 60-99| Into the Flames") + public static NpcStringId LV_60_99_INTO_THE_FLAMES_2; @ClientString(id = 61901, message = "Relics of the Old Empire") public static NpcStringId RELICS_OF_THE_OLD_EMPIRE; @@ -7774,83 +7774,83 @@ public final class NpcStringId @ClientString(id = 61904, message = "Relics of the Old Empire") public static NpcStringId RELICS_OF_THE_OLD_EMPIRE_2; - @ClientString(id = 62001, message = "Four Goblets (Lv. 74-80)") - public static NpcStringId FOUR_GOBLETS_LV_74_80; + @ClientString(id = 62001, message = "|Lv. 74-80| Four Goblets") + public static NpcStringId LV_74_80_FOUR_GOBLETS; - @ClientString(id = 62002, message = "Four Goblets (Lv. 74-80) (In Progress)") - public static NpcStringId FOUR_GOBLETS_LV_74_80_IN_PROGRESS; + @ClientString(id = 62002, message = "|Lv. 74-80| Four Goblets (In Progress)") + public static NpcStringId LV_74_80_FOUR_GOBLETS_IN_PROGRESS; - @ClientString(id = 62004, message = "Four Goblets (Lv. 74-80)") - public static NpcStringId FOUR_GOBLETS_LV_74_80_2; + @ClientString(id = 62004, message = "|Lv. 74-80| Four Goblets") + public static NpcStringId LV_74_80_FOUR_GOBLETS_2; - @ClientString(id = 62101, message = "Egg Delivery (Lv. 68-73)") - public static NpcStringId EGG_DELIVERY_LV_68_73; + @ClientString(id = 62101, message = "|Lv. 68-73| Egg Delivery") + public static NpcStringId LV_68_73_EGG_DELIVERY; - @ClientString(id = 62102, message = "Egg Delivery (Lv. 68-73) (In Progress)") - public static NpcStringId EGG_DELIVERY_LV_68_73_IN_PROGRESS; + @ClientString(id = 62102, message = "|Lv. 68-73| Egg Delivery (In Progress)") + public static NpcStringId LV_68_73_EGG_DELIVERY_IN_PROGRESS; - @ClientString(id = 62104, message = "Egg Delivery (Lv. 68-73)") - public static NpcStringId EGG_DELIVERY_LV_68_73_2; + @ClientString(id = 62104, message = "|Lv. 68-73| Egg Delivery") + public static NpcStringId LV_68_73_EGG_DELIVERY_2; - @ClientString(id = 62201, message = "Specialty Liquor Delivery (Lv. 68-73)") - public static NpcStringId SPECIALTY_LIQUOR_DELIVERY_LV_68_73; + @ClientString(id = 62201, message = "|Lv. 68-73| Specialty Liquor Delivery") + public static NpcStringId LV_68_73_SPECIALTY_LIQUOR_DELIVERY; - @ClientString(id = 62202, message = "Specialty Liquor Delivery (Lv. 68-73) (In Progress)") - public static NpcStringId SPECIALTY_LIQUOR_DELIVERY_LV_68_73_IN_PROGRESS; + @ClientString(id = 62202, message = "|Lv. 68-73| Specialty Liquor Delivery (In Progress)") + public static NpcStringId LV_68_73_SPECIALTY_LIQUOR_DELIVERY_IN_PROGRESS; - @ClientString(id = 62204, message = "Specialty Liquor Delivery (Lv. 68-73)") - public static NpcStringId SPECIALTY_LIQUOR_DELIVERY_LV_68_73_2; + @ClientString(id = 62204, message = "|Lv. 68-73| Specialty Liquor Delivery") + public static NpcStringId LV_68_73_SPECIALTY_LIQUOR_DELIVERY_2; - @ClientString(id = 62301, message = "The Finest Food (Lv. 71-78)") - public static NpcStringId THE_FINEST_FOOD_LV_71_78; + @ClientString(id = 62301, message = "|Lv. 71-78| The Finest Food") + public static NpcStringId LV_71_78_THE_FINEST_FOOD; - @ClientString(id = 62302, message = "The Finest Food (Lv. 71-78) (In Progress)") - public static NpcStringId THE_FINEST_FOOD_LV_71_78_IN_PROGRESS; + @ClientString(id = 62302, message = "|Lv. 71-78| The Finest Food (In Progress)") + public static NpcStringId LV_71_78_THE_FINEST_FOOD_IN_PROGRESS; - @ClientString(id = 62304, message = "The Finest Food (Lv. 71-78)") - public static NpcStringId THE_FINEST_FOOD_LV_71_78_2; + @ClientString(id = 62304, message = "|Lv. 71-78| The Finest Food") + public static NpcStringId LV_71_78_THE_FINEST_FOOD_2; - @ClientString(id = 62401, message = "The Finest Ingredients - Part 1 (Lv. 73-80)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_1_LV_73_80; + @ClientString(id = 62401, message = "|Lv. 73-80| The Finest Ingredients - Part 1") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_1; - @ClientString(id = 62402, message = "The Finest Ingredients - Part 1 (Lv. 73-80) (In Progress)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_1_LV_73_80_IN_PROGRESS; + @ClientString(id = 62402, message = "|Lv. 73-80| The Finest Ingredients - Part 1 (In Progress)") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_1_IN_PROGRESS; - @ClientString(id = 62404, message = "The Finest Ingredients - Part 1 (Lv. 73-80)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_1_LV_73_80_2; + @ClientString(id = 62404, message = "|Lv. 73-80| The Finest Ingredients - Part 1") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_1_2; - @ClientString(id = 62501, message = "The Finest Ingredients - Part 2 (Lv. 73-80)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_2_LV_73_80; + @ClientString(id = 62501, message = "|Lv. 73-80| The Finest Ingredients - Part 2") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_2; - @ClientString(id = 62502, message = "The Finest Ingredients - Part 2 (Lv. 73-80) (In Progress)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_2_LV_73_80_IN_PROGRESS; + @ClientString(id = 62502, message = "|Lv. 73-80| The Finest Ingredients - Part 2 (In Progress)") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_2_IN_PROGRESS; - @ClientString(id = 62503, message = "The Finest Ingredients - Part 2 (Lv. 73-80) (Done)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_2_LV_73_80_DONE; + @ClientString(id = 62503, message = "|Lv. 73-80| The Finest Ingredients - Part 2 (Done)") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_2_DONE; - @ClientString(id = 62504, message = "The Finest Ingredients - Part 2 (Lv. 73-80)") - public static NpcStringId THE_FINEST_INGREDIENTS_PART_2_LV_73_80_2; + @ClientString(id = 62504, message = "|Lv. 73-80| The Finest Ingredients - Part 2") + public static NpcStringId LV_73_80_THE_FINEST_INGREDIENTS_PART_2_2; @ClientString(id = 62514, message = "Oooh!") public static NpcStringId OOOH; - @ClientString(id = 62601, message = "A Dark Twilight (Lv. 60-71)") - public static NpcStringId A_DARK_TWILIGHT_LV_60_71; + @ClientString(id = 62601, message = "|Lv. 60-71| A Dark Twilight") + public static NpcStringId LV_60_71_A_DARK_TWILIGHT; - @ClientString(id = 62602, message = "A Dark Twilight (Lv. 60-71) (In Progress)") - public static NpcStringId A_DARK_TWILIGHT_LV_60_71_IN_PROGRESS; + @ClientString(id = 62602, message = "|Lv. 60-71| A Dark Twilight (In Progress)") + public static NpcStringId LV_60_71_A_DARK_TWILIGHT_IN_PROGRESS; - @ClientString(id = 62604, message = "A Dark Twilight (Lv. 60-71)") - public static NpcStringId A_DARK_TWILIGHT_LV_60_71_2; + @ClientString(id = 62604, message = "|Lv. 60-71| A Dark Twilight") + public static NpcStringId LV_60_71_A_DARK_TWILIGHT_2; - @ClientString(id = 62701, message = "Heart in Search of Power (Lv. 60-71)") - public static NpcStringId HEART_IN_SEARCH_OF_POWER_LV_60_71; + @ClientString(id = 62701, message = "|Lv. 60-71| Heart in Search of Power") + public static NpcStringId LV_60_71_HEART_IN_SEARCH_OF_POWER; - @ClientString(id = 62702, message = "Heart in Search of Power (Lv. 60-71) (In Progress)") - public static NpcStringId HEART_IN_SEARCH_OF_POWER_LV_60_71_IN_PROGRESS; + @ClientString(id = 62702, message = "|Lv. 60-71| Heart in Search of Power (In Progress)") + public static NpcStringId LV_60_71_HEART_IN_SEARCH_OF_POWER_IN_PROGRESS; - @ClientString(id = 62704, message = "Heart in Search of Power (Lv. 60-71)") - public static NpcStringId HEART_IN_SEARCH_OF_POWER_LV_60_71_2; + @ClientString(id = 62704, message = "|Lv. 60-71| Heart in Search of Power") + public static NpcStringId LV_60_71_HEART_IN_SEARCH_OF_POWER_2; @ClientString(id = 62801, message = "Hunt of the Golden Ram Mercenary Force") public static NpcStringId HUNT_OF_THE_GOLDEN_RAM_MERCENARY_FORCE; @@ -8026,11 +8026,11 @@ public final class NpcStringId @ClientString(id = 63063, message = "Bad luck today. Come back for another chance tomorrow! Ho, ho, ho.") public static NpcStringId BAD_LUCK_TODAY_COME_BACK_FOR_ANOTHER_CHANCE_TOMORROW_HO_HO_HO; - @ClientString(id = 63101, message = "Delicious Top Choice Meat (Lv. 82-99)") - public static NpcStringId DELICIOUS_TOP_CHOICE_MEAT_LV_82_99; + @ClientString(id = 63101, message = "|Lv. 82-99| Delicious Top Choice Meat") + public static NpcStringId LV_82_99_DELICIOUS_TOP_CHOICE_MEAT; - @ClientString(id = 63102, message = "Delicious Top Choice Meat (Lv. 82-99) (In Progress)") - public static NpcStringId DELICIOUS_TOP_CHOICE_MEAT_LV_82_99_IN_PROGRESS; + @ClientString(id = 63102, message = "|Lv. 82-99| Delicious Top Choice Meat (In Progress)") + public static NpcStringId LV_82_99_DELICIOUS_TOP_CHOICE_MEAT_IN_PROGRESS; @ClientString(id = 63201, message = "Necromancer's Request") public static NpcStringId NECROMANCER_S_REQUEST; @@ -8098,44 +8098,44 @@ public final class NpcStringId @ClientString(id = 63904, message = "Guardians of the Holy Grail") public static NpcStringId GUARDIANS_OF_THE_HOLY_GRAIL_2; - @ClientString(id = 64001, message = "The Zero Hour (Lv. 81-99)") - public static NpcStringId THE_ZERO_HOUR_LV_81_99; + @ClientString(id = 64001, message = "|Lv. 81-99| The Zero Hour") + public static NpcStringId LV_81_99_THE_ZERO_HOUR; - @ClientString(id = 64002, message = "The Zero Hour (Lv. 81-99) (In Progress)") - public static NpcStringId THE_ZERO_HOUR_LV_81_99_IN_PROGRESS; + @ClientString(id = 64002, message = "|Lv. 81-99| The Zero Hour (In Progress)") + public static NpcStringId LV_81_99_THE_ZERO_HOUR_IN_PROGRESS; - @ClientString(id = 64003, message = "The Zero Hour (Lv. 81-99) (Done)") - public static NpcStringId THE_ZERO_HOUR_LV_81_99_DONE; + @ClientString(id = 64003, message = "|Lv. 81-99| The Zero Hour (Done)") + public static NpcStringId LV_81_99_THE_ZERO_HOUR_DONE; - @ClientString(id = 64004, message = "The Zero Hour (Lv. 81-99)") - public static NpcStringId THE_ZERO_HOUR_LV_81_99_2; + @ClientString(id = 64004, message = "|Lv. 81-99| The Zero Hour") + public static NpcStringId LV_81_99_THE_ZERO_HOUR_2; - @ClientString(id = 64101, message = "Attack Sailren! (Lv. 77-99)") - public static NpcStringId ATTACK_SAILREN_LV_77_99; + @ClientString(id = 64101, message = "|Lv. 77-99| Attack Sailren!") + public static NpcStringId LV_77_99_ATTACK_SAILREN; - @ClientString(id = 64102, message = "Attack Sailren! (Lv. 77-99) (In Progress)") - public static NpcStringId ATTACK_SAILREN_LV_77_99_IN_PROGRESS; + @ClientString(id = 64102, message = "|Lv. 77-99| Attack Sailren! (In Progress)") + public static NpcStringId LV_77_99_ATTACK_SAILREN_IN_PROGRESS; - @ClientString(id = 64104, message = "Attack Sailren! (Lv. 77-99)") - public static NpcStringId ATTACK_SAILREN_LV_77_99_2; + @ClientString(id = 64104, message = "|Lv. 77-99| Attack Sailren!") + public static NpcStringId LV_77_99_ATTACK_SAILREN_2; - @ClientString(id = 64201, message = "A Powerful Primeval Creature (Lv. 75-99)") - public static NpcStringId A_POWERFUL_PRIMEVAL_CREATURE_LV_75_99; + @ClientString(id = 64201, message = "|Lv. 75-99| A Powerful Primeval Creature") + public static NpcStringId LV_75_99_A_POWERFUL_PRIMEVAL_CREATURE; - @ClientString(id = 64202, message = "A Powerful Primeval Creature (Lv. 75-99) (In Progress)") - public static NpcStringId A_POWERFUL_PRIMEVAL_CREATURE_LV_75_99_IN_PROGRESS; + @ClientString(id = 64202, message = "|Lv. 75-99| A Powerful Primeval Creature (In Progress)") + public static NpcStringId LV_75_99_A_POWERFUL_PRIMEVAL_CREATURE_IN_PROGRESS; - @ClientString(id = 64204, message = "A Powerful Primeval Creature (Lv. 75-99)") - public static NpcStringId A_POWERFUL_PRIMEVAL_CREATURE_LV_75_99_2; + @ClientString(id = 64204, message = "|Lv. 75-99| A Powerful Primeval Creature") + public static NpcStringId LV_75_99_A_POWERFUL_PRIMEVAL_CREATURE_2; - @ClientString(id = 64301, message = "Rise and Fall of the Elroki Tribe (Lv. 75-99)") - public static NpcStringId RISE_AND_FALL_OF_THE_ELROKI_TRIBE_LV_75_99; + @ClientString(id = 64301, message = "|Lv. 75-99| Rise and Fall of the Elroki Tribe") + public static NpcStringId LV_75_99_RISE_AND_FALL_OF_THE_ELROKI_TRIBE; - @ClientString(id = 64302, message = "Rise and Fall of the Elroki Tribe (Lv. 75-99) (In Progress)") - public static NpcStringId RISE_AND_FALL_OF_THE_ELROKI_TRIBE_LV_75_99_IN_PROGRESS; + @ClientString(id = 64302, message = "|Lv. 75-99| Rise and Fall of the Elroki Tribe (In Progress)") + public static NpcStringId LV_75_99_RISE_AND_FALL_OF_THE_ELROKI_TRIBE_IN_PROGRESS; - @ClientString(id = 64304, message = "Rise and Fall of the Elroki Tribe (Lv. 75-99)") - public static NpcStringId RISE_AND_FALL_OF_THE_ELROKI_TRIBE_LV_75_99_2; + @ClientString(id = 64304, message = "|Lv. 75-99| Rise and Fall of the Elroki Tribe") + public static NpcStringId LV_75_99_RISE_AND_FALL_OF_THE_ELROKI_TRIBE_2; @ClientString(id = 64401, message = "Grave Robber Annihilation") public static NpcStringId GRAVE_ROBBER_ANNIHILATION; @@ -8146,14 +8146,14 @@ public final class NpcStringId @ClientString(id = 64404, message = "Grave Robber Annihilation") public static NpcStringId GRAVE_ROBBER_ANNIHILATION_2; - @ClientString(id = 64501, message = "Ghosts of Batur (Lv. 80-99)") - public static NpcStringId GHOSTS_OF_BATUR_LV_80_99; + @ClientString(id = 64501, message = "|Lv. 80-99| Ghosts of Batur") + public static NpcStringId LV_80_99_GHOSTS_OF_BATUR; - @ClientString(id = 64502, message = "Ghosts of Batur (Lv. 80-99) (In Progress)") - public static NpcStringId GHOSTS_OF_BATUR_LV_80_99_IN_PROGRESS; + @ClientString(id = 64502, message = "|Lv. 80-99| Ghosts of Batur (In Progress)") + public static NpcStringId LV_80_99_GHOSTS_OF_BATUR_IN_PROGRESS; - @ClientString(id = 64504, message = "Ghosts of Batur (Lv. 80-99)") - public static NpcStringId GHOSTS_OF_BATUR_LV_80_99_2; + @ClientString(id = 64504, message = "|Lv. 80-99| Ghosts of Batur") + public static NpcStringId LV_80_99_GHOSTS_OF_BATUR_2; @ClientString(id = 64601, message = "Signs of Revolt") public static NpcStringId SIGNS_OF_REVOLT; @@ -8161,23 +8161,23 @@ public final class NpcStringId @ClientString(id = 64602, message = "Signs of Revolt (In Progress)") public static NpcStringId SIGNS_OF_REVOLT_IN_PROGRESS; - @ClientString(id = 64701, message = "Influx of Machines (Lv. 70-99)") - public static NpcStringId INFLUX_OF_MACHINES_LV_70_99; + @ClientString(id = 64701, message = "|Lv. 70-99| Influx of Machines") + public static NpcStringId LV_70_99_INFLUX_OF_MACHINES; - @ClientString(id = 64702, message = "Influx of Machines (Lv. 70-99) (In Progress)") - public static NpcStringId INFLUX_OF_MACHINES_LV_70_99_IN_PROGRESS; + @ClientString(id = 64702, message = "|Lv. 70-99| Influx of Machines (In Progress)") + public static NpcStringId LV_70_99_INFLUX_OF_MACHINES_IN_PROGRESS; - @ClientString(id = 64704, message = "Influx of Machines (Lv. 70-99)") - public static NpcStringId INFLUX_OF_MACHINES_LV_70_99_2; + @ClientString(id = 64704, message = "|Lv. 70-99| Influx of Machines") + public static NpcStringId LV_70_99_INFLUX_OF_MACHINES_2; - @ClientString(id = 64801, message = "An Ice Merchant's Dream (Lv. 53-63)") - public static NpcStringId AN_ICE_MERCHANT_S_DREAM_LV_53_63; + @ClientString(id = 64801, message = "|Lv. 53-63| An Ice Merchant's Dream") + public static NpcStringId LV_53_63_AN_ICE_MERCHANT_S_DREAM; - @ClientString(id = 64802, message = "An Ice Merchant's Dream (Lv. 53-63) (In Progress)") - public static NpcStringId AN_ICE_MERCHANT_S_DREAM_LV_53_63_IN_PROGRESS; + @ClientString(id = 64802, message = "|Lv. 53-63| An Ice Merchant's Dream (In Progress)") + public static NpcStringId LV_53_63_AN_ICE_MERCHANT_S_DREAM_IN_PROGRESS; - @ClientString(id = 64804, message = "An Ice Merchant's Dream (Lv. 53-63)") - public static NpcStringId AN_ICE_MERCHANT_S_DREAM_LV_53_63_2; + @ClientString(id = 64804, message = "|Lv. 53-63| An Ice Merchant's Dream") + public static NpcStringId LV_53_63_AN_ICE_MERCHANT_S_DREAM_2; @ClientString(id = 64901, message = "A Looter and a Railroad Man") public static NpcStringId A_LOOTER_AND_A_RAILROAD_MAN; @@ -8188,14 +8188,14 @@ public final class NpcStringId @ClientString(id = 64904, message = "A Looter and a Railroad Man") public static NpcStringId A_LOOTER_AND_A_RAILROAD_MAN_2; - @ClientString(id = 65001, message = "A Broken Dream (Lv. 39-99)") - public static NpcStringId A_BROKEN_DREAM_LV_39_99; + @ClientString(id = 65001, message = "|Lv. 39-99| A Broken Dream") + public static NpcStringId LV_39_99_A_BROKEN_DREAM; - @ClientString(id = 65002, message = "A Broken Dream (Lv. 39-99) (In Progress)") - public static NpcStringId A_BROKEN_DREAM_LV_39_99_IN_PROGRESS; + @ClientString(id = 65002, message = "|Lv. 39-99| A Broken Dream (In Progress)") + public static NpcStringId LV_39_99_A_BROKEN_DREAM_IN_PROGRESS; - @ClientString(id = 65004, message = "A Broken Dream (Lv. 39-99)") - public static NpcStringId A_BROKEN_DREAM_LV_39_99_2; + @ClientString(id = 65004, message = "|Lv. 39-99| A Broken Dream") + public static NpcStringId LV_39_99_A_BROKEN_DREAM_2; @ClientString(id = 65101, message = "Runaway Youth") public static NpcStringId RUNAWAY_YOUTH; @@ -8206,14 +8206,14 @@ public final class NpcStringId @ClientString(id = 65104, message = "Runaway Youth") public static NpcStringId RUNAWAY_YOUTH_2; - @ClientString(id = 65201, message = "An Aged Ex-Adventurer (Lv. 46-99)") - public static NpcStringId AN_AGED_EX_ADVENTURER_LV_46_99; + @ClientString(id = 65201, message = "|Lv. 46-99| An Aged Ex-Adventurer") + public static NpcStringId LV_46_99_AN_AGED_EX_ADVENTURER; - @ClientString(id = 65202, message = "An Aged Ex-Adventurer (Lv. 46-99) (In Progress)") - public static NpcStringId AN_AGED_EX_ADVENTURER_LV_46_99_IN_PROGRESS; + @ClientString(id = 65202, message = "|Lv. 46-99| An Aged Ex-Adventurer (In Progress)") + public static NpcStringId LV_46_99_AN_AGED_EX_ADVENTURER_IN_PROGRESS; - @ClientString(id = 65204, message = "An Aged Ex-Adventurer (Lv. 46-99)") - public static NpcStringId AN_AGED_EX_ADVENTURER_LV_46_99_2; + @ClientString(id = 65204, message = "|Lv. 46-99| An Aged Ex-Adventurer") + public static NpcStringId LV_46_99_AN_AGED_EX_ADVENTURER_2; @ClientString(id = 65301, message = "Wild Maiden") public static NpcStringId WILD_MAIDEN; @@ -8233,30 +8233,42 @@ public final class NpcStringId @ClientString(id = 65404, message = "Journey to Settlement") public static NpcStringId JOURNEY_TO_SETTLEMENT_2; - @ClientString(id = 65501, message = "A Grand Plan for Taming Wild Beasts (Lv. 1-99)") - public static NpcStringId A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS_LV_1_99; + @ClientString(id = 65501, message = "|Lv. 1-99| A Grand Plan for Taming Wild Beasts") + public static NpcStringId LV_1_99_A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS; - @ClientString(id = 65502, message = "A Grand Plan for Taming Wild Beasts (Lv. 1-99) (In Progress)") - public static NpcStringId A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS_LV_1_99_IN_PROGRESS; + @ClientString(id = 65502, message = "|Lv. 1-99| A Grand Plan for Taming Wild Beasts (In Progress)") + public static NpcStringId LV_1_99_A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS_IN_PROGRESS; - @ClientString(id = 65504, message = "A Grand Plan for Taming Wild Beasts (Lv. 1-99)") - public static NpcStringId A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS_LV_1_99_2; + @ClientString(id = 65504, message = "|Lv. 1-99| A Grand Plan for Taming Wild Beasts") + public static NpcStringId LV_1_99_A_GRAND_PLAN_FOR_TAMING_WILD_BEASTS_2; - @ClientString(id = 65701, message = "|Lv. 60~70| Monster Arena: Trial for Warriors") + @ClientString(id = 65701, message = "|Lv. 60 - 70| Monster Arena: Trial for Warriors") public static NpcStringId LV_60_70_MONSTER_ARENA_TRIAL_FOR_WARRIORS; - @ClientString(id = 65702, message = "|Lv. 60~70| Monster Arena: Trial for Warriors (In progress)") + @ClientString(id = 65702, message = "|Lv. 60 - 70| Monster Arena: Trial for Warriors (In progress)") public static NpcStringId LV_60_70_MONSTER_ARENA_TRIAL_FOR_WARRIORS_IN_PROGRESS; - @ClientString(id = 65703, message = "|Lv. 60~70| Monster Arena: Trial for Warriors (Completed)") + @ClientString(id = 65703, message = "|Lv. 60 - 70| Monster Arena: Trial for Warriors (Completed)") public static NpcStringId LV_60_70_MONSTER_ARENA_TRIAL_FOR_WARRIORS_COMPLETED; - @ClientString(id = 65704, message = "|Lv. 60~70| Monster Arena: Trial for Warriors") + @ClientString(id = 65704, message = "|Lv. 60 - 70| Monster Arena: Trial for Warriors") public static NpcStringId LV_60_70_MONSTER_ARENA_TRIAL_FOR_WARRIORS_2; @ClientString(id = 65705, message = "Complete 5 or 10 stages of Monster Arena") public static NpcStringId COMPLETE_5_OR_10_STAGES_OF_MONSTER_ARENA; + @ClientString(id = 65706, message = "Reach stage 5 or 10 in the Monster Arena") + public static NpcStringId REACH_STAGE_5_OR_10_IN_THE_MONSTER_ARENA; + + @ClientString(id = 65707, message = "Reach stage 10 in the Monster Arena") + public static NpcStringId REACH_STAGE_10_IN_THE_MONSTER_ARENA; + + @ClientString(id = 65708, message = "Reach stage 15 in the Monster Arena") + public static NpcStringId REACH_STAGE_15_IN_THE_MONSTER_ARENA; + + @ClientString(id = 65709, message = "Reach stage 20 or 25 in the Monster Arena") + public static NpcStringId REACH_STAGE_20_OR_25_IN_THE_MONSTER_ARENA; + @ClientString(id = 65801, message = "|Lv. 60+| Monster Arena: Trial for Elite Warriors") public static NpcStringId LV_60_MONSTER_ARENA_TRIAL_FOR_ELITE_WARRIORS; @@ -8272,6 +8284,18 @@ public final class NpcStringId @ClientString(id = 65805, message = "Complete 5 or 10 stages of Elite Monster Arena") public static NpcStringId COMPLETE_5_OR_10_STAGES_OF_ELITE_MONSTER_ARENA; + @ClientString(id = 65806, message = "Reach stage 5 or 10 in the Elite Monster Arena") + public static NpcStringId REACH_STAGE_5_OR_10_IN_THE_ELITE_MONSTER_ARENA; + + @ClientString(id = 65807, message = "Reach stage 10 in the Elite Monster Arena") + public static NpcStringId REACH_STAGE_10_IN_THE_ELITE_MONSTER_ARENA; + + @ClientString(id = 65808, message = "Reach stage 15 in the Elite Monster Arena") + public static NpcStringId REACH_STAGE_15_IN_THE_ELITE_MONSTER_ARENA; + + @ClientString(id = 65809, message = "Reach stage 20 or 25 in the Elite Monster Arena") + public static NpcStringId REACH_STAGE_20_OR_25_IN_THE_ELITE_MONSTER_ARENA; + @ClientString(id = 65901, message = "I'd Rather Be Collecting Fairy Breath") public static NpcStringId I_D_RATHER_BE_COLLECTING_FAIRY_BREATH; @@ -8299,26 +8323,26 @@ public final class NpcStringId @ClientString(id = 66104, message = "Making the Harvest Grounds Safe") public static NpcStringId MAKING_THE_HARVEST_GROUNDS_SAFE_2; - @ClientString(id = 66201, message = "A Game of Cards (Lv. 61-80)") - public static NpcStringId A_GAME_OF_CARDS_LV_61_80; + @ClientString(id = 66201, message = "|Lv. 61-80| A Game of Cards") + public static NpcStringId LV_61_80_A_GAME_OF_CARDS; - @ClientString(id = 66202, message = "A Game of Cards (Lv. 61-80) (In Progress)") - public static NpcStringId A_GAME_OF_CARDS_LV_61_80_IN_PROGRESS; + @ClientString(id = 66202, message = "|Lv. 61-80| A Game of Cards (In Progress)") + public static NpcStringId LV_61_80_A_GAME_OF_CARDS_IN_PROGRESS; - @ClientString(id = 66204, message = "A Game of Cards (Lv. 61-80)") - public static NpcStringId A_GAME_OF_CARDS_LV_61_80_2; + @ClientString(id = 66204, message = "|Lv. 61-80| A Game of Cards") + public static NpcStringId LV_61_80_A_GAME_OF_CARDS_2; @ClientString(id = 66300, message = "No such card") public static NpcStringId NO_SUCH_CARD; - @ClientString(id = 66301, message = "Seductive Whispers (Lv. 50-99)") - public static NpcStringId SEDUCTIVE_WHISPERS_LV_50_99; + @ClientString(id = 66301, message = "|Lv. 50-99| Seductive Whispers") + public static NpcStringId LV_50_99_SEDUCTIVE_WHISPERS; - @ClientString(id = 66302, message = "Seductive Whispers (Lv. 50-99) (In Progress)") - public static NpcStringId SEDUCTIVE_WHISPERS_LV_50_99_IN_PROGRESS; + @ClientString(id = 66302, message = "|Lv. 50-99| Seductive Whispers (In Progress)") + public static NpcStringId LV_50_99_SEDUCTIVE_WHISPERS_IN_PROGRESS; - @ClientString(id = 66304, message = "Seductive Whispers (Lv. 50-99)") - public static NpcStringId SEDUCTIVE_WHISPERS_LV_50_99_2; + @ClientString(id = 66304, message = "|Lv. 50-99| Seductive Whispers") + public static NpcStringId LV_50_99_SEDUCTIVE_WHISPERS_2; @ClientString(id = 66311, message = " Sun Card: 1 ") public static NpcStringId FONT_COLOR_FF453D_SUN_CARD_1_FONT; @@ -8377,14 +8401,14 @@ public final class NpcStringId @ClientString(id = 66415, message = "Talk to Kukoni") public static NpcStringId TALK_TO_KUKONI; - @ClientString(id = 68801, message = "Defeat the Elrokian Raiders! (Lv. 75-99)") - public static NpcStringId DEFEAT_THE_ELROKIAN_RAIDERS_LV_75_99; + @ClientString(id = 68801, message = "|Lv. 75-99| Defeat the Elrokian Raiders!") + public static NpcStringId LV_75_99_DEFEAT_THE_ELROKIAN_RAIDERS; - @ClientString(id = 68802, message = "Defeat the Elrokian Raiders! (Lv. 75-99) (In Progress)") - public static NpcStringId DEFEAT_THE_ELROKIAN_RAIDERS_LV_75_99_IN_PROGRESS; + @ClientString(id = 68802, message = "|Lv. 75-99| Defeat the Elrokian Raiders! (In Progress)") + public static NpcStringId LV_75_99_DEFEAT_THE_ELROKIAN_RAIDERS_IN_PROGRESS; - @ClientString(id = 68804, message = "Defeat the Elrokian Raiders! (Lv. 75-99)") - public static NpcStringId DEFEAT_THE_ELROKIAN_RAIDERS_LV_75_99_2; + @ClientString(id = 68804, message = "|Lv. 75-99| Defeat the Elrokian Raiders!") + public static NpcStringId LV_75_99_DEFEAT_THE_ELROKIAN_RAIDERS_2; @ClientString(id = 69001, message = "Jude's Request") public static NpcStringId JUDE_S_REQUEST; @@ -8464,38 +8488,38 @@ public final class NpcStringId @ClientString(id = 69804, message = "Block the Lord's Escape") public static NpcStringId BLOCK_THE_LORD_S_ESCAPE_2; - @ClientString(id = 69901, message = "Guardian of the Skies (Lv. 75-99)") - public static NpcStringId GUARDIAN_OF_THE_SKIES_LV_75_99; + @ClientString(id = 69901, message = "|Lv. 75-99| Guardian of the Skies") + public static NpcStringId LV_75_99_GUARDIAN_OF_THE_SKIES; - @ClientString(id = 69902, message = "Guardian of the Skies (Lv. 75-99) (In Progress)") - public static NpcStringId GUARDIAN_OF_THE_SKIES_LV_75_99_IN_PROGRESS; + @ClientString(id = 69902, message = "|Lv. 75-99| Guardian of the Skies (In Progress)") + public static NpcStringId LV_75_99_GUARDIAN_OF_THE_SKIES_IN_PROGRESS; - @ClientString(id = 69904, message = "Guardian of the Skies (Lv. 75-99)") - public static NpcStringId GUARDIAN_OF_THE_SKIES_LV_75_99_2; + @ClientString(id = 69904, message = "|Lv. 75-99| Guardian of the Skies") + public static NpcStringId LV_75_99_GUARDIAN_OF_THE_SKIES_2; - @ClientString(id = 70001, message = "Cursed Life (Lv. 75-99)") - public static NpcStringId CURSED_LIFE_LV_75_99; + @ClientString(id = 70001, message = "|Lv. 75-99| Cursed Life") + public static NpcStringId LV_75_99_CURSED_LIFE; - @ClientString(id = 70002, message = "Cursed Life (Lv. 75-99) (In Progress)") - public static NpcStringId CURSED_LIFE_LV_75_99_IN_PROGRESS; + @ClientString(id = 70002, message = "|Lv. 75-99| Cursed Life (In Progress)") + public static NpcStringId LV_75_99_CURSED_LIFE_IN_PROGRESS; - @ClientString(id = 70101, message = "Proof of Existence (Lv. 78-99)") - public static NpcStringId PROOF_OF_EXISTENCE_LV_78_99; + @ClientString(id = 70101, message = "|Lv. 78-99| Proof of Existence") + public static NpcStringId LV_78_99_PROOF_OF_EXISTENCE; - @ClientString(id = 70102, message = "Proof of Existence (Lv. 78-99) (In Progress)") - public static NpcStringId PROOF_OF_EXISTENCE_LV_78_99_IN_PROGRESS; + @ClientString(id = 70102, message = "|Lv. 78-99| Proof of Existence (In Progress)") + public static NpcStringId LV_78_99_PROOF_OF_EXISTENCE_IN_PROGRESS; - @ClientString(id = 70104, message = "Proof of Existence (Lv. 78-99)") - public static NpcStringId PROOF_OF_EXISTENCE_LV_78_99_2; + @ClientString(id = 70104, message = "|Lv. 78-99| Proof of Existence") + public static NpcStringId LV_78_99_PROOF_OF_EXISTENCE_2; - @ClientString(id = 70201, message = "A Trap for Revenge (Lv. 78-99)") - public static NpcStringId A_TRAP_FOR_REVENGE_LV_78_99; + @ClientString(id = 70201, message = "|Lv. 78-99| A Trap for Revenge") + public static NpcStringId LV_78_99_A_TRAP_FOR_REVENGE; - @ClientString(id = 70202, message = "A Trap for Revenge (Lv. 78-99) (In Progress)") - public static NpcStringId A_TRAP_FOR_REVENGE_LV_78_99_IN_PROGRESS; + @ClientString(id = 70202, message = "|Lv. 78-99| A Trap for Revenge (In Progress)") + public static NpcStringId LV_78_99_A_TRAP_FOR_REVENGE_IN_PROGRESS; - @ClientString(id = 70204, message = "A Trap for Revenge (Lv. 78-99)") - public static NpcStringId A_TRAP_FOR_REVENGE_LV_78_99_2; + @ClientString(id = 70204, message = "|Lv. 78-99| A Trap for Revenge") + public static NpcStringId LV_78_99_A_TRAP_FOR_REVENGE_2; @ClientString(id = 70801, message = "Path to Becoming a Lord - Gludio") public static NpcStringId PATH_TO_BECOMING_A_LORD_GLUDIO; @@ -8752,23 +8776,23 @@ public final class NpcStringId @ClientString(id = 72502, message = "For the Sake of the Territory - Rune (In Progress)") public static NpcStringId FOR_THE_SAKE_OF_THE_TERRITORY_RUNE_IN_PROGRESS; - @ClientString(id = 72601, message = "Light within the Darkness (Lv. 85-99)") - public static NpcStringId LIGHT_WITHIN_THE_DARKNESS_LV_85_99; + @ClientString(id = 72601, message = "|Lv. 85-99| Light within the Darkness") + public static NpcStringId LV_85_99_LIGHT_WITHIN_THE_DARKNESS; - @ClientString(id = 72602, message = "Light within the Darkness (Lv. 85-99) (In Progress)") - public static NpcStringId LIGHT_WITHIN_THE_DARKNESS_LV_85_99_IN_PROGRESS; + @ClientString(id = 72602, message = "|Lv. 85-99| Light within the Darkness (In Progress)") + public static NpcStringId LV_85_99_LIGHT_WITHIN_THE_DARKNESS_IN_PROGRESS; - @ClientString(id = 72604, message = "Light within the Darkness (Lv. 85-99)") - public static NpcStringId LIGHT_WITHIN_THE_DARKNESS_LV_85_99_2; + @ClientString(id = 72604, message = "|Lv. 85-99| Light within the Darkness") + public static NpcStringId LV_85_99_LIGHT_WITHIN_THE_DARKNESS_2; - @ClientString(id = 72701, message = "Hope within the Darkness (Lv. 90-99)") - public static NpcStringId HOPE_WITHIN_THE_DARKNESS_LV_90_99; + @ClientString(id = 72701, message = "|Lv. 90-99| Hope within the Darkness") + public static NpcStringId LV_90_99_HOPE_WITHIN_THE_DARKNESS; - @ClientString(id = 72702, message = "Hope within the Darkness (Lv. 90-99) (In Progress)") - public static NpcStringId HOPE_WITHIN_THE_DARKNESS_LV_90_99_IN_PROGRESS; + @ClientString(id = 72702, message = "|Lv. 90-99| Hope within the Darkness (In Progress)") + public static NpcStringId LV_90_99_HOPE_WITHIN_THE_DARKNESS_IN_PROGRESS; - @ClientString(id = 72704, message = "Hope within the Darkness (Lv. 90-99)") - public static NpcStringId HOPE_WITHIN_THE_DARKNESS_LV_90_99_2; + @ClientString(id = 72704, message = "|Lv. 90-99| Hope within the Darkness") + public static NpcStringId LV_90_99_HOPE_WITHIN_THE_DARKNESS_2; @ClientString(id = 72901, message = "Protect the Territory Catapult!") public static NpcStringId PROTECT_THE_TERRITORY_CATAPULT; @@ -9175,17 +9199,17 @@ public final class NpcStringId @ClientString(id = 74252, message = "You and your fellow clan members have completed a great feat!") public static NpcStringId YOU_AND_YOUR_FELLOW_CLAN_MEMBERS_HAVE_COMPLETED_A_GREAT_FEAT_2; - @ClientString(id = 75001, message = "Seven Flowers (Lv. 95-99)") - public static NpcStringId SEVEN_FLOWERS_LV_95_99; + @ClientString(id = 75001, message = "|Lv. 95-99| Seven Flowers") + public static NpcStringId LV_95_99_SEVEN_FLOWERS; - @ClientString(id = 75002, message = "Seven Flowers (Lv. 95-99) (In Progress)") - public static NpcStringId SEVEN_FLOWERS_LV_95_99_IN_PROGRESS; + @ClientString(id = 75002, message = "|Lv. 95-99| Seven Flowers (In Progress)") + public static NpcStringId LV_95_99_SEVEN_FLOWERS_IN_PROGRESS; - @ClientString(id = 75003, message = "Seven Flowers (Lv. 95-99) (Done)") - public static NpcStringId SEVEN_FLOWERS_LV_95_99_DONE; + @ClientString(id = 75003, message = "|Lv. 95-99| Seven Flowers (Done)") + public static NpcStringId LV_95_99_SEVEN_FLOWERS_DONE; - @ClientString(id = 75004, message = "Seven Flowers (Lv. 95-99)") - public static NpcStringId SEVEN_FLOWERS_LV_95_99_2; + @ClientString(id = 75004, message = "|Lv. 95-99| Seven Flowers") + public static NpcStringId LV_95_99_SEVEN_FLOWERS_2; @ClientString(id = 75011, message = "$s1's Fresh Flower") public static NpcStringId S1_S_FRESH_FLOWER; @@ -9253,17 +9277,17 @@ public final class NpcStringId @ClientString(id = 75060, message = "Your comforting feels genuine.") public static NpcStringId YOUR_COMFORTING_FEELS_GENUINE; - @ClientString(id = 75101, message = "Wraith' Liberation (Lv. 95-99)") - public static NpcStringId WRAITH_LIBERATION_LV_95_99; + @ClientString(id = 75101, message = "|Lv. 95-99| Wraith' Liberation") + public static NpcStringId LV_95_99_WRAITH_LIBERATION; - @ClientString(id = 75102, message = "Wraith' Liberation (Lv. 95-99) (In Progress)") - public static NpcStringId WRAITH_LIBERATION_LV_95_99_IN_PROGRESS; + @ClientString(id = 75102, message = "|Lv. 95-99| Wraith' Liberation (In Progress)") + public static NpcStringId LV_95_99_WRAITH_LIBERATION_IN_PROGRESS; - @ClientString(id = 75103, message = "Wraith' Liberation (Lv. 95-99) (Done)") - public static NpcStringId WRAITH_LIBERATION_LV_95_99_DONE; + @ClientString(id = 75103, message = "|Lv. 95-99| Wraith' Liberation (Done)") + public static NpcStringId LV_95_99_WRAITH_LIBERATION_DONE; - @ClientString(id = 75104, message = "Wraith' Liberation (Lv. 95-99)") - public static NpcStringId WRAITH_LIBERATION_LV_95_99_2; + @ClientString(id = 75104, message = "|Lv. 95-99| Wraith' Liberation") + public static NpcStringId LV_95_99_WRAITH_LIBERATION_2; @ClientString(id = 75151, message = "You aren't planning on going by yourself, are you?") public static NpcStringId YOU_AREN_T_PLANNING_ON_GOING_BY_YOURSELF_ARE_YOU; @@ -9274,41 +9298,41 @@ public final class NpcStringId @ClientString(id = 75153, message = "Well done! Please report to Roderik about the completed mission.") public static NpcStringId WELL_DONE_PLEASE_REPORT_TO_RODERIK_ABOUT_THE_COMPLETED_MISSION; - @ClientString(id = 75201, message = "Uncover the Secret (Lv. 93-99)") - public static NpcStringId UNCOVER_THE_SECRET_LV_93_99; + @ClientString(id = 75201, message = "|Lv. 93-99| Uncover the Secret") + public static NpcStringId LV_93_99_UNCOVER_THE_SECRET; - @ClientString(id = 75202, message = "Uncover the Secret (Lv. 93-99) (In Progress)") - public static NpcStringId UNCOVER_THE_SECRET_LV_93_99_IN_PROGRESS; + @ClientString(id = 75202, message = "|Lv. 93-99| Uncover the Secret (In Progress)") + public static NpcStringId LV_93_99_UNCOVER_THE_SECRET_IN_PROGRESS; - @ClientString(id = 75203, message = "Uncover the Secret (Lv. 93-99) (Complete)") - public static NpcStringId UNCOVER_THE_SECRET_LV_93_99_COMPLETE; + @ClientString(id = 75203, message = "|Lv. 93-99| Uncover the Secret (Complete)") + public static NpcStringId LV_93_99_UNCOVER_THE_SECRET_COMPLETE; - @ClientString(id = 75204, message = "Uncover the Secret (Lv. 93-99)") - public static NpcStringId UNCOVER_THE_SECRET_LV_93_99_2; + @ClientString(id = 75204, message = "|Lv. 93-99| Uncover the Secret") + public static NpcStringId LV_93_99_UNCOVER_THE_SECRET_2; - @ClientString(id = 75301, message = "Reacting to a Crisis (Lv. 93-99)") - public static NpcStringId REACTING_TO_A_CRISIS_LV_93_99; + @ClientString(id = 75301, message = "|Lv. 93-99| Reacting to a Crisis") + public static NpcStringId LV_93_99_REACTING_TO_A_CRISIS; - @ClientString(id = 75302, message = "Reacting to a Crisis (Lv. 93-99) (In Progress)") - public static NpcStringId REACTING_TO_A_CRISIS_LV_93_99_IN_PROGRESS; + @ClientString(id = 75302, message = "|Lv. 93-99| Reacting to a Crisis (In Progress)") + public static NpcStringId LV_93_99_REACTING_TO_A_CRISIS_IN_PROGRESS; - @ClientString(id = 75303, message = "Reacting to a Crisis (Lv. 93-99) (Complete)") - public static NpcStringId REACTING_TO_A_CRISIS_LV_93_99_COMPLETE; + @ClientString(id = 75303, message = "|Lv. 93-99| Reacting to a Crisis (Complete)") + public static NpcStringId LV_93_99_REACTING_TO_A_CRISIS_COMPLETE; - @ClientString(id = 75304, message = "Reacting to a Crisis (Lv. 93-99)") - public static NpcStringId REACTING_TO_A_CRISIS_LV_93_99_2; + @ClientString(id = 75304, message = "|Lv. 93-99| Reacting to a Crisis") + public static NpcStringId LV_93_99_REACTING_TO_A_CRISIS_2; - @ClientString(id = 75401, message = "Resistance Support (Lv. 97-99)") - public static NpcStringId RESISTANCE_SUPPORT_LV_97_99; + @ClientString(id = 75401, message = "|Lv. 97-99| Resistance Support") + public static NpcStringId LV_97_99_RESISTANCE_SUPPORT; - @ClientString(id = 75402, message = "Resistance Support (Lv. 97-99) (In Progress)") - public static NpcStringId RESISTANCE_SUPPORT_LV_97_99_IN_PROGRESS; + @ClientString(id = 75402, message = "|Lv. 97-99| Resistance Support (In Progress)") + public static NpcStringId LV_97_99_RESISTANCE_SUPPORT_IN_PROGRESS; - @ClientString(id = 75403, message = "Resistance Support (Lv. 97-99) (Done)") - public static NpcStringId RESISTANCE_SUPPORT_LV_97_99_DONE; + @ClientString(id = 75403, message = "|Lv. 97-99| Resistance Support (Done)") + public static NpcStringId LV_97_99_RESISTANCE_SUPPORT_DONE; - @ClientString(id = 75404, message = "Resistance Support (Lv. 97-99)") - public static NpcStringId RESISTANCE_SUPPORT_LV_97_99_2; + @ClientString(id = 75404, message = "|Lv. 97-99| Resistance Support") + public static NpcStringId LV_97_99_RESISTANCE_SUPPORT_2; @ClientString(id = 75450, message = "You can find the Kundas on the 2nd floor of the Seed of Hellfire.") public static NpcStringId YOU_CAN_FIND_THE_KUNDAS_ON_THE_2ND_FLOOR_OF_THE_SEED_OF_HELLFIRE; @@ -9319,17 +9343,17 @@ public final class NpcStringId @ClientString(id = 75452, message = "Receive the mission from Sizrak again tomorrow.") public static NpcStringId RECEIVE_THE_MISSION_FROM_SIZRAK_AGAIN_TOMORROW; - @ClientString(id = 75501, message = "The Need for Petra (Lv. 97-99)") - public static NpcStringId THE_NEED_FOR_PETRA_LV_97_99; + @ClientString(id = 75501, message = "|Lv. 97-99| The Need for Petra") + public static NpcStringId LV_97_99_THE_NEED_FOR_PETRA; - @ClientString(id = 75502, message = "The Need for Petra (Lv. 97-99) (In Progress)") - public static NpcStringId THE_NEED_FOR_PETRA_LV_97_99_IN_PROGRESS; + @ClientString(id = 75502, message = "|Lv. 97-99| The Need for Petra (In Progress)") + public static NpcStringId LV_97_99_THE_NEED_FOR_PETRA_IN_PROGRESS; - @ClientString(id = 75503, message = "The Need for Petra (Lv. 97-99) (Done)") - public static NpcStringId THE_NEED_FOR_PETRA_LV_97_99_DONE; + @ClientString(id = 75503, message = "|Lv. 97-99| The Need for Petra (Done)") + public static NpcStringId LV_97_99_THE_NEED_FOR_PETRA_DONE; - @ClientString(id = 75504, message = "The Need for Petra (Lv. 97-99)") - public static NpcStringId THE_NEED_FOR_PETRA_LV_97_99_2; + @ClientString(id = 75504, message = "|Lv. 97-99| The Need for Petra") + public static NpcStringId LV_97_99_THE_NEED_FOR_PETRA_2; @ClientString(id = 75550, message = "You can obtain Petras by defeating Zofans.") public static NpcStringId YOU_CAN_OBTAIN_PETRAS_BY_DEFEATING_ZOFANS; @@ -9340,56 +9364,56 @@ public final class NpcStringId @ClientString(id = 75552, message = "Find Lord Aku tomorrow and receive another mission.") public static NpcStringId FIND_LORD_AKU_TOMORROW_AND_RECEIVE_ANOTHER_MISSION; - @ClientString(id = 75601, message = "Top Quality Petra (Lv. 97-99)") - public static NpcStringId TOP_QUALITY_PETRA_LV_97_99; + @ClientString(id = 75601, message = "|Lv. 97-99| Top Quality Petra") + public static NpcStringId LV_97_99_TOP_QUALITY_PETRA; - @ClientString(id = 75602, message = "Top Quality Petra (Lv. 97-99) (In Progress)") - public static NpcStringId TOP_QUALITY_PETRA_LV_97_99_IN_PROGRESS; + @ClientString(id = 75602, message = "|Lv. 97-99| Top Quality Petra (In Progress)") + public static NpcStringId LV_97_99_TOP_QUALITY_PETRA_IN_PROGRESS; - @ClientString(id = 75603, message = "Top Quality Petra (Lv. 97-99) (Done)") - public static NpcStringId TOP_QUALITY_PETRA_LV_97_99_DONE; + @ClientString(id = 75603, message = "|Lv. 97-99| Top Quality Petra (Done)") + public static NpcStringId LV_97_99_TOP_QUALITY_PETRA_DONE; - @ClientString(id = 75604, message = "Top Quality Petra (Lv. 97-99)") - public static NpcStringId TOP_QUALITY_PETRA_LV_97_99_2; + @ClientString(id = 75604, message = "|Lv. 97-99| Top Quality Petra") + public static NpcStringId LV_97_99_TOP_QUALITY_PETRA_2; @ClientString(id = 75650, message = "If you find top quality Petra, bring it to me again. OK?") public static NpcStringId IF_YOU_FIND_TOP_QUALITY_PETRA_BRING_IT_TO_ME_AGAIN_OK; - @ClientString(id = 75701, message = "Triol's Movement (Lv. 97-99)") - public static NpcStringId TRIOL_S_MOVEMENT_LV_97_99; + @ClientString(id = 75701, message = "|Lv. 97-99| Triol's Movement") + public static NpcStringId LV_97_99_TRIOL_S_MOVEMENT; - @ClientString(id = 75702, message = "Triol's Movement (Lv. 97-99) (In Progress)") - public static NpcStringId TRIOL_S_MOVEMENT_LV_97_99_IN_PROGRESS; + @ClientString(id = 75702, message = "|Lv. 97-99| Triol's Movement (In Progress)") + public static NpcStringId LV_97_99_TRIOL_S_MOVEMENT_IN_PROGRESS; - @ClientString(id = 75703, message = "Triol's Movement (Lv. 97-99) (Complete)") - public static NpcStringId TRIOL_S_MOVEMENT_LV_97_99_COMPLETE; + @ClientString(id = 75703, message = "|Lv. 97-99| Triol's Movement (Complete)") + public static NpcStringId LV_97_99_TRIOL_S_MOVEMENT_COMPLETE; - @ClientString(id = 75704, message = "Triol's Movement (Lv. 97-99)") - public static NpcStringId TRIOL_S_MOVEMENT_LV_97_99_2; + @ClientString(id = 75704, message = "|Lv. 97-99| Triol's Movement") + public static NpcStringId LV_97_99_TRIOL_S_MOVEMENT_2; - @ClientString(id = 75801, message = "The Fallen King's Men (Lv. 97-99)") - public static NpcStringId THE_FALLEN_KING_S_MEN_LV_97_99; + @ClientString(id = 75801, message = "|Lv. 97-99| The Fallen King's Men") + public static NpcStringId LV_97_99_THE_FALLEN_KING_S_MEN; - @ClientString(id = 75802, message = "The Fallen King's Men (Lv. 97-99) (In Progress)") - public static NpcStringId THE_FALLEN_KING_S_MEN_LV_97_99_IN_PROGRESS; + @ClientString(id = 75802, message = "|Lv. 97-99| The Fallen King's Men (In Progress)") + public static NpcStringId LV_97_99_THE_FALLEN_KING_S_MEN_IN_PROGRESS; - @ClientString(id = 75803, message = "The Fallen King's Men (Lv. 97-99) (Complete)") - public static NpcStringId THE_FALLEN_KING_S_MEN_LV_97_99_COMPLETE; + @ClientString(id = 75803, message = "|Lv. 97-99| The Fallen King's Men (Complete)") + public static NpcStringId LV_97_99_THE_FALLEN_KING_S_MEN_COMPLETE; - @ClientString(id = 75804, message = "The Fallen King's Men (Lv. 97-99)") - public static NpcStringId THE_FALLEN_KING_S_MEN_LV_97_99_2; + @ClientString(id = 75804, message = "|Lv. 97-99| The Fallen King's Men") + public static NpcStringId LV_97_99_THE_FALLEN_KING_S_MEN_2; - @ClientString(id = 75901, message = "The Dwarven Nightmare Continues (Lv. 98-99)") - public static NpcStringId THE_DWARVEN_NIGHTMARE_CONTINUES_LV_98_99; + @ClientString(id = 75901, message = "|Lv. 98-99| The Dwarven Nightmare Continues") + public static NpcStringId LV_98_99_THE_DWARVEN_NIGHTMARE_CONTINUES; - @ClientString(id = 75902, message = "The Dwarven Nightmare Continues (Lv. 98-99) (In Progress)") - public static NpcStringId THE_DWARVEN_NIGHTMARE_CONTINUES_LV_98_99_IN_PROGRESS; + @ClientString(id = 75902, message = "|Lv. 98-99| The Dwarven Nightmare Continues (In Progress)") + public static NpcStringId LV_98_99_THE_DWARVEN_NIGHTMARE_CONTINUES_IN_PROGRESS; - @ClientString(id = 75903, message = "The Dwarven Nightmare Continues (Lv. 98-99) (Complete)") - public static NpcStringId THE_DWARVEN_NIGHTMARE_CONTINUES_LV_98_99_COMPLETE; + @ClientString(id = 75903, message = "|Lv. 98-99| The Dwarven Nightmare Continues (Complete)") + public static NpcStringId LV_98_99_THE_DWARVEN_NIGHTMARE_CONTINUES_COMPLETE; - @ClientString(id = 75904, message = "The Dwarven Nightmare Continues (Lv. 98-99)") - public static NpcStringId THE_DWARVEN_NIGHTMARE_CONTINUES_LV_98_99_2; + @ClientString(id = 75904, message = "|Lv. 98-99| The Dwarven Nightmare Continues") + public static NpcStringId LV_98_99_THE_DWARVEN_NIGHTMARE_CONTINUES_2; @ClientString(id = 75950, message = "$s1 has received $s2 as a reward from Head Priest of the Earth Daichir.") public static NpcStringId S1_HAS_RECEIVED_S2_AS_A_REWARD_FROM_HEAD_PRIEST_OF_THE_EARTH_DAICHIR; @@ -9460,149 +9484,149 @@ public final class NpcStringId @ClientString(id = 75972, message = "Antharas' Symbol Dye") public static NpcStringId ANTHARAS_SYMBOL_DYE_2; - @ClientString(id = 76101, message = "Assisting the Golden Ram Army (Lv. 65-70)") - public static NpcStringId ASSISTING_THE_GOLDEN_RAM_ARMY_LV_65_70; + @ClientString(id = 76101, message = "|Lv. 65-70| Assisting the Golden Ram Army") + public static NpcStringId LV_65_70_ASSISTING_THE_GOLDEN_RAM_ARMY; - @ClientString(id = 76102, message = "Assisting the Golden Ram Army (Lv. 65-70) (In Progress)") - public static NpcStringId ASSISTING_THE_GOLDEN_RAM_ARMY_LV_65_70_IN_PROGRESS; + @ClientString(id = 76102, message = "|Lv. 65-70| Assisting the Golden Ram Army (In Progress)") + public static NpcStringId LV_65_70_ASSISTING_THE_GOLDEN_RAM_ARMY_IN_PROGRESS; - @ClientString(id = 76103, message = "Assisting the Golden Ram Army (Lv. 65-70) (Complete)") - public static NpcStringId ASSISTING_THE_GOLDEN_RAM_ARMY_LV_65_70_COMPLETE; + @ClientString(id = 76103, message = "|Lv. 65-70| Assisting the Golden Ram Army (Complete)") + public static NpcStringId LV_65_70_ASSISTING_THE_GOLDEN_RAM_ARMY_COMPLETE; - @ClientString(id = 76104, message = "Assisting the Golden Ram Army (Lv. 65-70)") - public static NpcStringId ASSISTING_THE_GOLDEN_RAM_ARMY_LV_65_70_2; + @ClientString(id = 76104, message = "|Lv. 65-70| Assisting the Golden Ram Army") + public static NpcStringId LV_65_70_ASSISTING_THE_GOLDEN_RAM_ARMY_2; - @ClientString(id = 76201, message = "An Ominous Request (Lv. 65-70)") - public static NpcStringId AN_OMINOUS_REQUEST_LV_65_70; + @ClientString(id = 76201, message = "|Lv. 65-70| An Ominous Request") + public static NpcStringId LV_65_70_AN_OMINOUS_REQUEST; - @ClientString(id = 76202, message = "An Ominous Request (Lv. 65-70) (In Progress)") - public static NpcStringId AN_OMINOUS_REQUEST_LV_65_70_IN_PROGRESS; + @ClientString(id = 76202, message = "|Lv. 65-70| An Ominous Request (In Progress)") + public static NpcStringId LV_65_70_AN_OMINOUS_REQUEST_IN_PROGRESS; - @ClientString(id = 76203, message = "An Ominous Request (Lv. 65-70) (Complete)") - public static NpcStringId AN_OMINOUS_REQUEST_LV_65_70_COMPLETE; + @ClientString(id = 76203, message = "|Lv. 65-70| An Ominous Request (Complete)") + public static NpcStringId LV_65_70_AN_OMINOUS_REQUEST_COMPLETE; - @ClientString(id = 76204, message = "An Ominous Request (Lv. 65-70)") - public static NpcStringId AN_OMINOUS_REQUEST_LV_65_70_2; + @ClientString(id = 76204, message = "|Lv. 65-70| An Ominous Request") + public static NpcStringId LV_65_70_AN_OMINOUS_REQUEST_2; - @ClientString(id = 76301, message = "A Daunting Task (Lv. 70-75)") - public static NpcStringId A_DAUNTING_TASK_LV_70_75; + @ClientString(id = 76301, message = "|Lv. 70-75| A Daunting Task") + public static NpcStringId LV_70_75_A_DAUNTING_TASK; - @ClientString(id = 76302, message = "A Daunting Task (Lv. 70-75) (In Progress)") - public static NpcStringId A_DAUNTING_TASK_LV_70_75_IN_PROGRESS; + @ClientString(id = 76302, message = "|Lv. 70-75| A Daunting Task (In Progress)") + public static NpcStringId LV_70_75_A_DAUNTING_TASK_IN_PROGRESS; - @ClientString(id = 76303, message = "A Daunting Task (Lv. 70-75) (Complete)") - public static NpcStringId A_DAUNTING_TASK_LV_70_75_COMPLETE; + @ClientString(id = 76303, message = "|Lv. 70-75| A Daunting Task (Complete)") + public static NpcStringId LV_70_75_A_DAUNTING_TASK_COMPLETE; - @ClientString(id = 76304, message = "A Daunting Task (Lv. 70-75)") - public static NpcStringId A_DAUNTING_TASK_LV_70_75_2; + @ClientString(id = 76304, message = "|Lv. 70-75| A Daunting Task") + public static NpcStringId LV_70_75_A_DAUNTING_TASK_2; - @ClientString(id = 76401, message = "Weakening the Varka Silenos Forces (Lv. 76-80)") - public static NpcStringId WEAKENING_THE_VARKA_SILENOS_FORCES_LV_76_80; + @ClientString(id = 76401, message = "|Lv. 76-80| Weakening the Varka Silenos Forces") + public static NpcStringId LV_76_80_WEAKENING_THE_VARKA_SILENOS_FORCES; - @ClientString(id = 76402, message = "Weakening the Varka Silenos Forces (Lv. 76-80) (In Progress)") - public static NpcStringId WEAKENING_THE_VARKA_SILENOS_FORCES_LV_76_80_IN_PROGRESS; + @ClientString(id = 76402, message = "|Lv. 76-80| Weakening the Varka Silenos Forces (In Progress)") + public static NpcStringId LV_76_80_WEAKENING_THE_VARKA_SILENOS_FORCES_IN_PROGRESS; - @ClientString(id = 76403, message = "Weakening the Varka Silenos Forces (Lv. 76-80) (Complete)") - public static NpcStringId WEAKENING_THE_VARKA_SILENOS_FORCES_LV_76_80_COMPLETE; + @ClientString(id = 76403, message = "|Lv. 76-80| Weakening the Varka Silenos Forces (Complete)") + public static NpcStringId LV_76_80_WEAKENING_THE_VARKA_SILENOS_FORCES_COMPLETE; - @ClientString(id = 76404, message = "Weakening the Varka Silenos Forces (Lv. 76-80)") - public static NpcStringId WEAKENING_THE_VARKA_SILENOS_FORCES_LV_76_80_2; + @ClientString(id = 76404, message = "|Lv. 76-80| Weakening the Varka Silenos Forces") + public static NpcStringId LV_76_80_WEAKENING_THE_VARKA_SILENOS_FORCES_2; - @ClientString(id = 76501, message = "Weakening the Ketra Orc Forces (Lv. 76-80)") - public static NpcStringId WEAKENING_THE_KETRA_ORC_FORCES_LV_76_80; + @ClientString(id = 76501, message = "|Lv. 76-80| Weakening the Ketra Orc Forces") + public static NpcStringId LV_76_80_WEAKENING_THE_KETRA_ORC_FORCES; - @ClientString(id = 76502, message = "Weakening the Ketra Orc Forces (Lv. 76-80) (In Progress)") - public static NpcStringId WEAKENING_THE_KETRA_ORC_FORCES_LV_76_80_IN_PROGRESS; + @ClientString(id = 76502, message = "|Lv. 76-80| Weakening the Ketra Orc Forces (In Progress)") + public static NpcStringId LV_76_80_WEAKENING_THE_KETRA_ORC_FORCES_IN_PROGRESS; - @ClientString(id = 76503, message = "Weakening the Ketra Orc Forces (Lv. 76-80) (Complete)") - public static NpcStringId WEAKENING_THE_KETRA_ORC_FORCES_LV_76_80_COMPLETE; + @ClientString(id = 76503, message = "|Lv. 76-80| Weakening the Ketra Orc Forces (Complete)") + public static NpcStringId LV_76_80_WEAKENING_THE_KETRA_ORC_FORCES_COMPLETE; - @ClientString(id = 76504, message = "Weakening the Ketra Orc Forces (Lv. 76-80)") - public static NpcStringId WEAKENING_THE_KETRA_ORC_FORCES_LV_76_80_2; + @ClientString(id = 76504, message = "|Lv. 76-80| Weakening the Ketra Orc Forces") + public static NpcStringId LV_76_80_WEAKENING_THE_KETRA_ORC_FORCES_2; - @ClientString(id = 76701, message = "Banishing Evil (Lv. 81-84)") - public static NpcStringId BANISHING_EVIL_LV_81_84; + @ClientString(id = 76701, message = "|Lv. 81-84| Banishing Evil") + public static NpcStringId LV_81_84_BANISHING_EVIL; - @ClientString(id = 76702, message = "Banishing Evil (Lv. 81-84) (In Progress)") - public static NpcStringId BANISHING_EVIL_LV_81_84_IN_PROGRESS; + @ClientString(id = 76702, message = "|Lv. 81-84| Banishing Evil (In Progress)") + public static NpcStringId LV_81_84_BANISHING_EVIL_IN_PROGRESS; - @ClientString(id = 76703, message = "Banishing Evil (Lv. 81-84) (Complete)") - public static NpcStringId BANISHING_EVIL_LV_81_84_COMPLETE; + @ClientString(id = 76703, message = "|Lv. 81-84| Banishing Evil (Complete)") + public static NpcStringId LV_81_84_BANISHING_EVIL_COMPLETE; - @ClientString(id = 76704, message = "Banishing Evil (Lv. 81-84)") - public static NpcStringId BANISHING_EVIL_LV_81_84_2; + @ClientString(id = 76704, message = "|Lv. 81-84| Banishing Evil") + public static NpcStringId LV_81_84_BANISHING_EVIL_2; - @ClientString(id = 76801, message = "Terror of Town (Lv. 81-84)") - public static NpcStringId TERROR_OF_TOWN_LV_81_84; + @ClientString(id = 76801, message = "|Lv. 81-84| Terror of Town") + public static NpcStringId LV_81_84_TERROR_OF_TOWN; - @ClientString(id = 76802, message = "Terror of Town (Lv. 81-84) (In Progress)") - public static NpcStringId TERROR_OF_TOWN_LV_81_84_IN_PROGRESS; + @ClientString(id = 76802, message = "|Lv. 81-84| Terror of Town (In Progress)") + public static NpcStringId LV_81_84_TERROR_OF_TOWN_IN_PROGRESS; - @ClientString(id = 76803, message = "Terror of Town (Lv. 81-84) (Complete)") - public static NpcStringId TERROR_OF_TOWN_LV_81_84_COMPLETE; + @ClientString(id = 76803, message = "|Lv. 81-84| Terror of Town (Complete)") + public static NpcStringId LV_81_84_TERROR_OF_TOWN_COMPLETE; - @ClientString(id = 76804, message = "Terror of Town (Lv. 81-84)") - public static NpcStringId TERROR_OF_TOWN_LV_81_84_2; + @ClientString(id = 76804, message = "|Lv. 81-84| Terror of Town") + public static NpcStringId LV_81_84_TERROR_OF_TOWN_2; - @ClientString(id = 76901, message = "The Truth Concealed in Beauty (Lv. 81-84)") - public static NpcStringId THE_TRUTH_CONCEALED_IN_BEAUTY_LV_81_84; + @ClientString(id = 76901, message = "|Lv. 81-84| The Truth Concealed in Beauty") + public static NpcStringId LV_81_84_THE_TRUTH_CONCEALED_IN_BEAUTY; - @ClientString(id = 76902, message = "The Truth Concealed in Beauty (Lv. 81-84) (In Progress)") - public static NpcStringId THE_TRUTH_CONCEALED_IN_BEAUTY_LV_81_84_IN_PROGRESS; + @ClientString(id = 76902, message = "|Lv. 81-84| The Truth Concealed in Beauty (In Progress)") + public static NpcStringId LV_81_84_THE_TRUTH_CONCEALED_IN_BEAUTY_IN_PROGRESS; - @ClientString(id = 76903, message = "The Truth Concealed in Beauty (Lv. 81-84) (Complete)") - public static NpcStringId THE_TRUTH_CONCEALED_IN_BEAUTY_LV_81_84_COMPLETE; + @ClientString(id = 76903, message = "|Lv. 81-84| The Truth Concealed in Beauty (Complete)") + public static NpcStringId LV_81_84_THE_TRUTH_CONCEALED_IN_BEAUTY_COMPLETE; - @ClientString(id = 76904, message = "The Truth Concealed in Beauty (Lv. 81-84)") - public static NpcStringId THE_TRUTH_CONCEALED_IN_BEAUTY_LV_81_84_2; + @ClientString(id = 76904, message = "|Lv. 81-84| The Truth Concealed in Beauty") + public static NpcStringId LV_81_84_THE_TRUTH_CONCEALED_IN_BEAUTY_2; - @ClientString(id = 77001, message = "Maintaining the Field Business (Lv. 81-84)") - public static NpcStringId MAINTAINING_THE_FIELD_BUSINESS_LV_81_84; + @ClientString(id = 77001, message = "|Lv. 81-84| Maintaining the Field Business") + public static NpcStringId LV_81_84_MAINTAINING_THE_FIELD_BUSINESS; - @ClientString(id = 77002, message = "Maintaining the Field Business (Lv. 81-84) (In Progress)") - public static NpcStringId MAINTAINING_THE_FIELD_BUSINESS_LV_81_84_IN_PROGRESS; + @ClientString(id = 77002, message = "|Lv. 81-84| Maintaining the Field Business (In Progress)") + public static NpcStringId LV_81_84_MAINTAINING_THE_FIELD_BUSINESS_IN_PROGRESS; - @ClientString(id = 77003, message = "Maintaining the Field Business (Lv. 81-84) (Complete)") - public static NpcStringId MAINTAINING_THE_FIELD_BUSINESS_LV_81_84_COMPLETE; + @ClientString(id = 77003, message = "|Lv. 81-84| Maintaining the Field Business (Complete)") + public static NpcStringId LV_81_84_MAINTAINING_THE_FIELD_BUSINESS_COMPLETE; - @ClientString(id = 77004, message = "Maintaining the Field Business (Lv. 81-84)") - public static NpcStringId MAINTAINING_THE_FIELD_BUSINESS_LV_81_84_2; + @ClientString(id = 77004, message = "|Lv. 81-84| Maintaining the Field Business") + public static NpcStringId LV_81_84_MAINTAINING_THE_FIELD_BUSINESS_2; - @ClientString(id = 77101, message = "Partaking in the Purification Campaign (Lv. 81-84)") - public static NpcStringId PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_LV_81_84; + @ClientString(id = 77101, message = "|Lv. 81-84| Partaking in the Purification Campaign") + public static NpcStringId LV_81_84_PARTAKING_IN_THE_PURIFICATION_CAMPAIGN; - @ClientString(id = 77102, message = "Partaking in the Purification Campaign (Lv. 81-84) (In Progress)") - public static NpcStringId PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_LV_81_84_IN_PROGRESS; + @ClientString(id = 77102, message = "|Lv. 81-84| Partaking in the Purification Campaign (In Progress)") + public static NpcStringId LV_81_84_PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_IN_PROGRESS; - @ClientString(id = 77103, message = "Partaking in the Purification Campaign (Lv. 81-84) (Complete)") - public static NpcStringId PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_LV_81_84_COMPLETE; + @ClientString(id = 77103, message = "|Lv. 81-84| Partaking in the Purification Campaign (Complete)") + public static NpcStringId LV_81_84_PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_COMPLETE; - @ClientString(id = 77104, message = "Partaking in the Purification Campaign (Lv. 81-84)") - public static NpcStringId PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_LV_81_84_2; + @ClientString(id = 77104, message = "|Lv. 81-84| Partaking in the Purification Campaign") + public static NpcStringId LV_81_84_PARTAKING_IN_THE_PURIFICATION_CAMPAIGN_2; - @ClientString(id = 77201, message = "Purifying Souls (Lv. 99-99)") - public static NpcStringId PURIFYING_SOULS_LV_99_99; + @ClientString(id = 77201, message = "|Lv. 99-99| Purifying Souls") + public static NpcStringId LV_99_99_PURIFYING_SOULS; - @ClientString(id = 77202, message = "Purifying Souls (Lv. 99-99) (In Progress)") - public static NpcStringId PURIFYING_SOULS_LV_99_99_IN_PROGRESS; + @ClientString(id = 77202, message = "|Lv. 99-99| Purifying Souls (In Progress)") + public static NpcStringId LV_99_99_PURIFYING_SOULS_IN_PROGRESS; - @ClientString(id = 77203, message = "Purifying Souls (Lv. 99-99) (Complete)") - public static NpcStringId PURIFYING_SOULS_LV_99_99_COMPLETE; + @ClientString(id = 77203, message = "|Lv. 99-99| Purifying Souls (Complete)") + public static NpcStringId LV_99_99_PURIFYING_SOULS_COMPLETE; - @ClientString(id = 77204, message = "Purifying Souls (Lv. 99-99)") - public static NpcStringId PURIFYING_SOULS_LV_99_99_2; + @ClientString(id = 77204, message = "|Lv. 99-99| Purifying Souls") + public static NpcStringId LV_99_99_PURIFYING_SOULS_2; - @ClientString(id = 77501, message = "Retrieving the Chaos Fragment (Lv. 99-99)") - public static NpcStringId RETRIEVING_THE_CHAOS_FRAGMENT_LV_99_99; + @ClientString(id = 77501, message = "|Lv. 99-99| Retrieving the Chaos Fragment") + public static NpcStringId LV_99_99_RETRIEVING_THE_CHAOS_FRAGMENT; - @ClientString(id = 77502, message = "Retrieving the Chaos Fragment (Lv. 99-99) (In Progress)") - public static NpcStringId RETRIEVING_THE_CHAOS_FRAGMENT_LV_99_99_IN_PROGRESS; + @ClientString(id = 77502, message = "|Lv. 99-99| Retrieving the Chaos Fragment (In Progress)") + public static NpcStringId LV_99_99_RETRIEVING_THE_CHAOS_FRAGMENT_IN_PROGRESS; - @ClientString(id = 77503, message = "Retrieving the Chaos Fragment (Lv. 99-99) (Complete)") - public static NpcStringId RETRIEVING_THE_CHAOS_FRAGMENT_LV_99_99_COMPLETE; + @ClientString(id = 77503, message = "|Lv. 99-99| Retrieving the Chaos Fragment (Complete)") + public static NpcStringId LV_99_99_RETRIEVING_THE_CHAOS_FRAGMENT_COMPLETE; - @ClientString(id = 77504, message = "Retrieving the Chaos Fragment (Lv. 99-99)") - public static NpcStringId RETRIEVING_THE_CHAOS_FRAGMENT_LV_99_99_2; + @ClientString(id = 77504, message = "|Lv. 99-99| Retrieving the Chaos Fragment") + public static NpcStringId LV_99_99_RETRIEVING_THE_CHAOS_FRAGMENT_2; @ClientString(id = 77521, message = "You can obtain Chaos Fragments throughout all of Hellbound.") public static NpcStringId YOU_CAN_OBTAIN_CHAOS_FRAGMENTS_THROUGHOUT_ALL_OF_HELLBOUND; @@ -9610,17 +9634,17 @@ public final class NpcStringId @ClientString(id = 77522, message = "Well done! Your Chaos Fragments will be used to attract Beleth.") public static NpcStringId WELL_DONE_YOUR_CHAOS_FRAGMENTS_WILL_BE_USED_TO_ATTRACT_BELETH; - @ClientString(id = 77601, message = "Slay Dark Lord Ekimus (Lv. 95-99)") - public static NpcStringId SLAY_DARK_LORD_EKIMUS_LV_95_99; + @ClientString(id = 77601, message = "|Lv. 95-99| Slay Dark Lord Ekimus") + public static NpcStringId LV_95_99_SLAY_DARK_LORD_EKIMUS; - @ClientString(id = 77602, message = "Slay Dark Lord Ekimus (Lv. 95-99) (In Progress)") - public static NpcStringId SLAY_DARK_LORD_EKIMUS_LV_95_99_IN_PROGRESS; + @ClientString(id = 77602, message = "|Lv. 95-99| Slay Dark Lord Ekimus (In Progress)") + public static NpcStringId LV_95_99_SLAY_DARK_LORD_EKIMUS_IN_PROGRESS; - @ClientString(id = 77603, message = "Slay Dark Lord Ekimus (Lv. 95-99) (Complete)") - public static NpcStringId SLAY_DARK_LORD_EKIMUS_LV_95_99_COMPLETE; + @ClientString(id = 77603, message = "|Lv. 95-99| Slay Dark Lord Ekimus (Complete)") + public static NpcStringId LV_95_99_SLAY_DARK_LORD_EKIMUS_COMPLETE; - @ClientString(id = 77604, message = "Slay Dark Lord Ekimus (Lv. 95-99)") - public static NpcStringId SLAY_DARK_LORD_EKIMUS_LV_95_99_2; + @ClientString(id = 77604, message = "|Lv. 95-99| Slay Dark Lord Ekimus") + public static NpcStringId LV_95_99_SLAY_DARK_LORD_EKIMUS_2; @ClientString(id = 77611, message = "Break Through the Hall of Suffering") public static NpcStringId BREAK_THROUGH_THE_HALL_OF_SUFFERING_3; @@ -9628,140 +9652,140 @@ public final class NpcStringId @ClientString(id = 77612, message = "Infiltrate the Heart of Infinity") public static NpcStringId INFILTRATE_THE_HEART_OF_INFINITY; - @ClientString(id = 77701, message = "Slay Dark Lord Tiat (Lv. 93-97)") - public static NpcStringId SLAY_DARK_LORD_TIAT_LV_93_97; + @ClientString(id = 77701, message = "|Lv. 93-97| Slay Dark Lord Tiat") + public static NpcStringId LV_93_97_SLAY_DARK_LORD_TIAT; - @ClientString(id = 77702, message = "Slay Dark Lord Tiat (Lv. 93-97) (In Progress)") - public static NpcStringId SLAY_DARK_LORD_TIAT_LV_93_97_IN_PROGRESS; + @ClientString(id = 77702, message = "|Lv. 93-97| Slay Dark Lord Tiat (In Progress)") + public static NpcStringId LV_93_97_SLAY_DARK_LORD_TIAT_IN_PROGRESS; - @ClientString(id = 77703, message = "Slay Dark Lord Tiat (Lv. 93-97) (Complete)") - public static NpcStringId SLAY_DARK_LORD_TIAT_LV_93_97_COMPLETE; + @ClientString(id = 77703, message = "|Lv. 93-97| Slay Dark Lord Tiat (Complete)") + public static NpcStringId LV_93_97_SLAY_DARK_LORD_TIAT_COMPLETE; - @ClientString(id = 77704, message = "Slay Dark Lord Tiat (Lv. 93-97)") - public static NpcStringId SLAY_DARK_LORD_TIAT_LV_93_97_2; + @ClientString(id = 77704, message = "|Lv. 93-97| Slay Dark Lord Tiat") + public static NpcStringId LV_93_97_SLAY_DARK_LORD_TIAT_2; @ClientString(id = 77711, message = "Infiltrate the Seed of Destruction") public static NpcStringId INFILTRATE_THE_SEED_OF_DESTRUCTION; - @ClientString(id = 77801, message = "Operation Roaring Flame (Lv. 99-99)") - public static NpcStringId OPERATION_ROARING_FLAME_LV_99_99; + @ClientString(id = 77801, message = "|Lv. 99-99| Operation Roaring Flame") + public static NpcStringId LV_99_99_OPERATION_ROARING_FLAME; - @ClientString(id = 77802, message = "Operation Roaring Flame (Lv. 99-99) (In Progress)") - public static NpcStringId OPERATION_ROARING_FLAME_LV_99_99_IN_PROGRESS; + @ClientString(id = 77802, message = "|Lv. 99-99| Operation Roaring Flame (In Progress)") + public static NpcStringId LV_99_99_OPERATION_ROARING_FLAME_IN_PROGRESS; - @ClientString(id = 77803, message = "Operation Roaring Flame (Lv. 99-99) (Complete)") - public static NpcStringId OPERATION_ROARING_FLAME_LV_99_99_COMPLETE; + @ClientString(id = 77803, message = "|Lv. 99-99| Operation Roaring Flame (Complete)") + public static NpcStringId LV_99_99_OPERATION_ROARING_FLAME_COMPLETE; - @ClientString(id = 77804, message = "Operation Roaring Flame (Lv. 99-99)") - public static NpcStringId OPERATION_ROARING_FLAME_LV_99_99_2; + @ClientString(id = 77804, message = "|Lv. 99-99| Operation Roaring Flame") + public static NpcStringId LV_99_99_OPERATION_ROARING_FLAME_2; - @ClientString(id = 77901, message = "Utilize the Darkness - Seed of Destruction (Lv. 93-97)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_LV_93_97; + @ClientString(id = 77901, message = "|Lv. 93-97| Utilize the Darkness - Seed of Destruction") + public static NpcStringId LV_93_97_UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION; - @ClientString(id = 77902, message = "Utilize the Darkness - Seed of Destruction (Lv. 93-97) (In Progress)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_LV_93_97_IN_PROGRESS; + @ClientString(id = 77902, message = "|Lv. 93-97| Utilize the Darkness - Seed of Destruction (In Progress)") + public static NpcStringId LV_93_97_UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_IN_PROGRESS; - @ClientString(id = 77903, message = "Utilize the Darkness - Seed of Destruction (Lv. 93-97) (Complete)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_LV_93_97_COMPLETE; + @ClientString(id = 77903, message = "|Lv. 93-97| Utilize the Darkness - Seed of Destruction (Complete)") + public static NpcStringId LV_93_97_UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_COMPLETE; - @ClientString(id = 77904, message = "Utilize the Darkness - Seed of Destruction (Lv. 93-97)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_LV_93_97_2; + @ClientString(id = 77904, message = "|Lv. 93-97| Utilize the Darkness - Seed of Destruction") + public static NpcStringId LV_93_97_UTILIZE_THE_DARKNESS_SEED_OF_DESTRUCTION_2; - @ClientString(id = 78001, message = "Utilize the Darkness - Seed of Infinity (Lv. 95-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_LV_95_99; + @ClientString(id = 78001, message = "|Lv. 95-99| Utilize the Darkness - Seed of Infinity") + public static NpcStringId LV_95_99_UTILIZE_THE_DARKNESS_SEED_OF_INFINITY; - @ClientString(id = 78002, message = "Utilize the Darkness - Seed of Infinity (Lv. 95-99) (In Progress)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_LV_95_99_IN_PROGRESS; + @ClientString(id = 78002, message = "|Lv. 95-99| Utilize the Darkness - Seed of Infinity (In Progress)") + public static NpcStringId LV_95_99_UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_IN_PROGRESS; - @ClientString(id = 78003, message = "Utilize the Darkness - Seed of Infinity (Lv. 95-99) (Complete)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_LV_95_99_COMPLETE; + @ClientString(id = 78003, message = "|Lv. 95-99| Utilize the Darkness - Seed of Infinity (Complete)") + public static NpcStringId LV_95_99_UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_COMPLETE; - @ClientString(id = 78004, message = "Utilize the Darkness - Seed of Infinity (Lv. 95-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_LV_95_99_2; + @ClientString(id = 78004, message = "|Lv. 95-99| Utilize the Darkness - Seed of Infinity") + public static NpcStringId LV_95_99_UTILIZE_THE_DARKNESS_SEED_OF_INFINITY_2; - @ClientString(id = 78101, message = "Utilize the Darkness - Seed of Annihilation (Lv. 85-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_LV_85_99; + @ClientString(id = 78101, message = "|Lv. 85-99| Utilize the Darkness - Seed of Annihilation") + public static NpcStringId LV_85_99_UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION; - @ClientString(id = 78102, message = "Utilize the Darkness - Seed of Annihilation (Lv. 85-99) (In Progress)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_LV_85_99_IN_PROGRESS; + @ClientString(id = 78102, message = "|Lv. 85-99| Utilize the Darkness - Seed of Annihilation (In Progress)") + public static NpcStringId LV_85_99_UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_IN_PROGRESS; - @ClientString(id = 78103, message = "Utilize the Darkness - Seed of Annihilation (Lv. 85-99) (Complete)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_LV_85_99_COMPLETE; + @ClientString(id = 78103, message = "|Lv. 85-99| Utilize the Darkness - Seed of Annihilation (Complete)") + public static NpcStringId LV_85_99_UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_COMPLETE; - @ClientString(id = 78104, message = "Utilize the Darkness - Seed of Annihilation (Lv. 85-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_LV_85_99_2; + @ClientString(id = 78104, message = "|Lv. 85-99| Utilize the Darkness - Seed of Annihilation") + public static NpcStringId LV_85_99_UTILIZE_THE_DARKNESS_SEED_OF_ANNIHILATION_2; - @ClientString(id = 78201, message = "Utilize the Darkness - Seed of Hellfire (Lv. 97-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_LV_97_99; + @ClientString(id = 78201, message = "|Lv. 97-99| Utilize the Darkness - Seed of Hellfire") + public static NpcStringId LV_97_99_UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE; - @ClientString(id = 78202, message = "Utilize the Darkness - Seed of Hellfire (Lv. 97-99) (In Progress)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_LV_97_99_IN_PROGRESS; + @ClientString(id = 78202, message = "|Lv. 97-99| Utilize the Darkness - Seed of Hellfire (In Progress)") + public static NpcStringId LV_97_99_UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_IN_PROGRESS; - @ClientString(id = 78203, message = "Utilize the Darkness - Seed of Hellfire (Lv. 97-99) (Complete)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_LV_97_99_COMPLETE; + @ClientString(id = 78203, message = "|Lv. 97-99| Utilize the Darkness - Seed of Hellfire (Complete)") + public static NpcStringId LV_97_99_UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_COMPLETE; - @ClientString(id = 78204, message = "Utilize the Darkness - Seed of Hellfire (Lv. 97-99)") - public static NpcStringId UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_LV_97_99_2; + @ClientString(id = 78204, message = "|Lv. 97-99| Utilize the Darkness - Seed of Hellfire") + public static NpcStringId LV_97_99_UTILIZE_THE_DARKNESS_SEED_OF_HELLFIRE_2; - @ClientString(id = 78401, message = "The Quiet Killer (Lv. 65-70)") - public static NpcStringId THE_QUIET_KILLER_LV_65_70; + @ClientString(id = 78401, message = "|Lv. 65-70| The Quiet Killer") + public static NpcStringId LV_65_70_THE_QUIET_KILLER; - @ClientString(id = 78402, message = "The Quiet Killer (Lv. 65-70) (In Progress)") - public static NpcStringId THE_QUIET_KILLER_LV_65_70_IN_PROGRESS; + @ClientString(id = 78402, message = "|Lv. 65-70| The Quiet Killer (In Progress)") + public static NpcStringId LV_65_70_THE_QUIET_KILLER_IN_PROGRESS; - @ClientString(id = 78403, message = "The Quiet Killer (Lv. 65-70) (Done)") - public static NpcStringId THE_QUIET_KILLER_LV_65_70_DONE; + @ClientString(id = 78403, message = "|Lv. 65-70| The Quiet Killer (Done)") + public static NpcStringId LV_65_70_THE_QUIET_KILLER_DONE; - @ClientString(id = 78404, message = "The Quiet Killer (Lv. 65-70)") - public static NpcStringId THE_QUIET_KILLER_LV_65_70_2; + @ClientString(id = 78404, message = "|Lv. 65-70| The Quiet Killer") + public static NpcStringId LV_65_70_THE_QUIET_KILLER_2; - @ClientString(id = 78501, message = "A Suspicious Ingredient (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_INGREDIENT_LV_65_70; + @ClientString(id = 78501, message = "|Lv. 65-70| A Suspicious Ingredient") + public static NpcStringId LV_65_70_A_SUSPICIOUS_INGREDIENT; - @ClientString(id = 78502, message = "A Suspicious Ingredient (Lv. 65-70) (In Progress)") - public static NpcStringId A_SUSPICIOUS_INGREDIENT_LV_65_70_IN_PROGRESS; + @ClientString(id = 78502, message = "|Lv. 65-70| A Suspicious Ingredient (In Progress)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_INGREDIENT_IN_PROGRESS; - @ClientString(id = 78503, message = "A Suspicious Ingredient (Lv. 65-70) (Done)") - public static NpcStringId A_SUSPICIOUS_INGREDIENT_LV_65_70_DONE; + @ClientString(id = 78503, message = "|Lv. 65-70| A Suspicious Ingredient (Done)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_INGREDIENT_DONE; - @ClientString(id = 78504, message = "A Suspicious Ingredient (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_INGREDIENT_LV_65_70_2; + @ClientString(id = 78504, message = "|Lv. 65-70| A Suspicious Ingredient") + public static NpcStringId LV_65_70_A_SUSPICIOUS_INGREDIENT_2; - @ClientString(id = 78601, message = "Awaiting the Voice of the Gods (Lv. 70-75)") - public static NpcStringId AWAITING_THE_VOICE_OF_THE_GODS_LV_70_75; + @ClientString(id = 78601, message = "|Lv. 70-75| Awaiting the Voice of the Gods") + public static NpcStringId LV_70_75_AWAITING_THE_VOICE_OF_THE_GODS; - @ClientString(id = 78602, message = "Awaiting the Voice of the Gods (Lv. 70-75) (In Progress)") - public static NpcStringId AWAITING_THE_VOICE_OF_THE_GODS_LV_70_75_IN_PROGRESS; + @ClientString(id = 78602, message = "|Lv. 70-75| Awaiting the Voice of the Gods (In Progress)") + public static NpcStringId LV_70_75_AWAITING_THE_VOICE_OF_THE_GODS_IN_PROGRESS; - @ClientString(id = 78603, message = "Awaiting the Voice of the Gods (Lv. 70-75) (Done)") - public static NpcStringId AWAITING_THE_VOICE_OF_THE_GODS_LV_70_75_DONE; + @ClientString(id = 78603, message = "|Lv. 70-75| Awaiting the Voice of the Gods (Done)") + public static NpcStringId LV_70_75_AWAITING_THE_VOICE_OF_THE_GODS_DONE; - @ClientString(id = 78604, message = "Awaiting the Voice of the Gods (Lv. 70-75)") - public static NpcStringId AWAITING_THE_VOICE_OF_THE_GODS_LV_70_75_2; + @ClientString(id = 78604, message = "|Lv. 70-75| Awaiting the Voice of the Gods") + public static NpcStringId LV_70_75_AWAITING_THE_VOICE_OF_THE_GODS_2; - @ClientString(id = 78701, message = "The Role of a Watcher (Lv. 76-85)") - public static NpcStringId THE_ROLE_OF_A_WATCHER_LV_76_85; + @ClientString(id = 78701, message = "|Lv. 76-85| The Role of a Watcher") + public static NpcStringId LV_76_85_THE_ROLE_OF_A_WATCHER; - @ClientString(id = 78702, message = "The Role of a Watcher (Lv. 76-85) (In Progress)") - public static NpcStringId THE_ROLE_OF_A_WATCHER_LV_76_85_IN_PROGRESS; + @ClientString(id = 78702, message = "|Lv. 76-85| The Role of a Watcher (In Progress)") + public static NpcStringId LV_76_85_THE_ROLE_OF_A_WATCHER_IN_PROGRESS; - @ClientString(id = 78703, message = "The Role of a Watcher (Lv. 76-85) (Done)") - public static NpcStringId THE_ROLE_OF_A_WATCHER_LV_76_85_DONE; + @ClientString(id = 78703, message = "|Lv. 76-85| The Role of a Watcher (Done)") + public static NpcStringId LV_76_85_THE_ROLE_OF_A_WATCHER_DONE; - @ClientString(id = 78704, message = "The Role of a Watcher (Lv. 76-85)") - public static NpcStringId THE_ROLE_OF_A_WATCHER_LV_76_85_2; + @ClientString(id = 78704, message = "|Lv. 76-85| The Role of a Watcher") + public static NpcStringId LV_76_85_THE_ROLE_OF_A_WATCHER_2; - @ClientString(id = 78901, message = "Waiting for Pa'agrio (Lv. 97-99)") - public static NpcStringId WAITING_FOR_PA_AGRIO_LV_97_99; + @ClientString(id = 78901, message = "|Lv. 97-99| Waiting for Pa'agrio") + public static NpcStringId LV_97_99_WAITING_FOR_PA_AGRIO; - @ClientString(id = 78902, message = "Waiting for Pa'agrio (Lv. 97-99) (In Progress)") - public static NpcStringId WAITING_FOR_PA_AGRIO_LV_97_99_IN_PROGRESS; + @ClientString(id = 78902, message = "|Lv. 97-99| Waiting for Pa'agrio (In Progress)") + public static NpcStringId LV_97_99_WAITING_FOR_PA_AGRIO_IN_PROGRESS; - @ClientString(id = 78903, message = "Waiting for Pa'agrio (Lv. 97-99) (Complete)") - public static NpcStringId WAITING_FOR_PA_AGRIO_LV_97_99_COMPLETE; + @ClientString(id = 78903, message = "|Lv. 97-99| Waiting for Pa'agrio (Complete)") + public static NpcStringId LV_97_99_WAITING_FOR_PA_AGRIO_COMPLETE; - @ClientString(id = 78904, message = "Waiting for Pa'agrio (Lv. 97-99)") - public static NpcStringId WAITING_FOR_PA_AGRIO_LV_97_99_2; + @ClientString(id = 78904, message = "|Lv. 97-99| Waiting for Pa'agrio") + public static NpcStringId LV_97_99_WAITING_FOR_PA_AGRIO_2; @ClientString(id = 85001, message = "The Times Call for a New Hero - Aden") public static NpcStringId THE_TIMES_CALL_FOR_A_NEW_HERO_ADEN; @@ -10039,101 +10063,101 @@ public final class NpcStringId @ClientString(id = 85797, message = "Fashion Show Model") public static NpcStringId FASHION_SHOW_MODEL; - @ClientString(id = 90101, message = "How a Lavasaurus is Made (Lv. 76-99)") - public static NpcStringId HOW_A_LAVASAURUS_IS_MADE_LV_76_99; + @ClientString(id = 90101, message = "|Lv. 76-99| How a Lavasaurus is Made") + public static NpcStringId LV_76_99_HOW_A_LAVASAURUS_IS_MADE; - @ClientString(id = 90102, message = "How a Lavasaurus is Made (Lv. 76-99) (In Progress)") - public static NpcStringId HOW_A_LAVASAURUS_IS_MADE_LV_76_99_IN_PROGRESS; + @ClientString(id = 90102, message = "|Lv. 76-99| How a Lavasaurus is Made (In Progress)") + public static NpcStringId LV_76_99_HOW_A_LAVASAURUS_IS_MADE_IN_PROGRESS; - @ClientString(id = 90103, message = "How a Lavasaurus is Made (Lv. 76-99) (Done)") - public static NpcStringId HOW_A_LAVASAURUS_IS_MADE_LV_76_99_DONE; + @ClientString(id = 90103, message = "|Lv. 76-99| How a Lavasaurus is Made (Done)") + public static NpcStringId LV_76_99_HOW_A_LAVASAURUS_IS_MADE_DONE; - @ClientString(id = 90104, message = "How a Lavasaurus is Made (Lv. 76-99)") - public static NpcStringId HOW_A_LAVASAURUS_IS_MADE_LV_76_99_2; + @ClientString(id = 90104, message = "|Lv. 76-99| How a Lavasaurus is Made") + public static NpcStringId LV_76_99_HOW_A_LAVASAURUS_IS_MADE_2; - @ClientString(id = 90201, message = "Reclaim Our Era (Lv. 80-99)") - public static NpcStringId RECLAIM_OUR_ERA_LV_80_99; + @ClientString(id = 90201, message = "|Lv. 80-99| Reclaim Our Era") + public static NpcStringId LV_80_99_RECLAIM_OUR_ERA; - @ClientString(id = 90202, message = "Reclaim Our Era (Lv. 80-99) (In Progress)") - public static NpcStringId RECLAIM_OUR_ERA_LV_80_99_IN_PROGRESS; + @ClientString(id = 90202, message = "|Lv. 80-99| Reclaim Our Era (In Progress)") + public static NpcStringId LV_80_99_RECLAIM_OUR_ERA_IN_PROGRESS; - @ClientString(id = 90203, message = "Reclaim Our Era (Lv. 80-99) (Done)") - public static NpcStringId RECLAIM_OUR_ERA_LV_80_99_DONE; + @ClientString(id = 90203, message = "|Lv. 80-99| Reclaim Our Era (Done)") + public static NpcStringId LV_80_99_RECLAIM_OUR_ERA_DONE; - @ClientString(id = 90204, message = "Reclaim Our Era (Lv. 80-99)") - public static NpcStringId RECLAIM_OUR_ERA_LV_80_99_2; + @ClientString(id = 90204, message = "|Lv. 80-99| Reclaim Our Era") + public static NpcStringId LV_80_99_RECLAIM_OUR_ERA_2; - @ClientString(id = 90301, message = "The Call of Antharas (Lv. 83-99)") - public static NpcStringId THE_CALL_OF_ANTHARAS_LV_83_99; + @ClientString(id = 90301, message = "|Lv. 83-99| The Call of Antharas") + public static NpcStringId LV_83_99_THE_CALL_OF_ANTHARAS; - @ClientString(id = 90302, message = "The Call of Antharas (Lv. 83-99) (In Progress)") - public static NpcStringId THE_CALL_OF_ANTHARAS_LV_83_99_IN_PROGRESS; + @ClientString(id = 90302, message = "|Lv. 83-99| The Call of Antharas (In Progress)") + public static NpcStringId LV_83_99_THE_CALL_OF_ANTHARAS_IN_PROGRESS; - @ClientString(id = 90303, message = "The Call of Antharas (Lv. 83-99) (Done)") - public static NpcStringId THE_CALL_OF_ANTHARAS_LV_83_99_DONE; + @ClientString(id = 90303, message = "|Lv. 83-99| The Call of Antharas (Done)") + public static NpcStringId LV_83_99_THE_CALL_OF_ANTHARAS_DONE; - @ClientString(id = 90304, message = "The Call of Antharas (Lv. 83-99)") - public static NpcStringId THE_CALL_OF_ANTHARAS_LV_83_99_2; + @ClientString(id = 90304, message = "|Lv. 83-99| The Call of Antharas") + public static NpcStringId LV_83_99_THE_CALL_OF_ANTHARAS_2; - @ClientString(id = 90401, message = "Dragon Trophy - Antharas (Lv. 84-99)") - public static NpcStringId DRAGON_TROPHY_ANTHARAS_LV_84_99; + @ClientString(id = 90401, message = "|Lv. 84-99| Dragon Trophy - Antharas") + public static NpcStringId LV_84_99_DRAGON_TROPHY_ANTHARAS; - @ClientString(id = 90402, message = "Dragon Trophy - Antharas (Lv. 84-99) (In Progress)") - public static NpcStringId DRAGON_TROPHY_ANTHARAS_LV_84_99_IN_PROGRESS; + @ClientString(id = 90402, message = "|Lv. 84-99| Dragon Trophy - Antharas (In Progress)") + public static NpcStringId LV_84_99_DRAGON_TROPHY_ANTHARAS_IN_PROGRESS; - @ClientString(id = 90403, message = "Dragon Trophy - Antharas (Lv. 84-99) (Done)") - public static NpcStringId DRAGON_TROPHY_ANTHARAS_LV_84_99_DONE; + @ClientString(id = 90403, message = "|Lv. 84-99| Dragon Trophy - Antharas (Done)") + public static NpcStringId LV_84_99_DRAGON_TROPHY_ANTHARAS_DONE; - @ClientString(id = 90404, message = "Dragon Trophy - Antharas (Lv. 84-99)") - public static NpcStringId DRAGON_TROPHY_ANTHARAS_LV_84_99_2; + @ClientString(id = 90404, message = "|Lv. 84-99| Dragon Trophy - Antharas") + public static NpcStringId LV_84_99_DRAGON_TROPHY_ANTHARAS_2; - @ClientString(id = 90501, message = "Refined Dragon Blood (Lv. 83-99)") - public static NpcStringId REFINED_DRAGON_BLOOD_LV_83_99; + @ClientString(id = 90501, message = "|Lv. 83-99| Refined Dragon Blood") + public static NpcStringId LV_83_99_REFINED_DRAGON_BLOOD; - @ClientString(id = 90502, message = "Refined Dragon Blood (Lv. 83-99) (In Progress)") - public static NpcStringId REFINED_DRAGON_BLOOD_LV_83_99_IN_PROGRESS; + @ClientString(id = 90502, message = "|Lv. 83-99| Refined Dragon Blood (In Progress)") + public static NpcStringId LV_83_99_REFINED_DRAGON_BLOOD_IN_PROGRESS; - @ClientString(id = 90503, message = "Refined Dragon Blood (Lv. 83-99) (Done)") - public static NpcStringId REFINED_DRAGON_BLOOD_LV_83_99_DONE; + @ClientString(id = 90503, message = "|Lv. 83-99| Refined Dragon Blood (Done)") + public static NpcStringId LV_83_99_REFINED_DRAGON_BLOOD_DONE; - @ClientString(id = 90504, message = "Refined Dragon Blood (Lv. 83-99)") - public static NpcStringId REFINED_DRAGON_BLOOD_LV_83_99_2; + @ClientString(id = 90504, message = "|Lv. 83-99| Refined Dragon Blood") + public static NpcStringId LV_83_99_REFINED_DRAGON_BLOOD_2; - @ClientString(id = 90601, message = "The Call of Valakas (Lv. 83-99)") - public static NpcStringId THE_CALL_OF_VALAKAS_LV_83_99; + @ClientString(id = 90601, message = "|Lv. 83-99| The Call of Valakas") + public static NpcStringId LV_83_99_THE_CALL_OF_VALAKAS; - @ClientString(id = 90602, message = "The Call of Valakas (Lv. 83-99) (In Progress)") - public static NpcStringId THE_CALL_OF_VALAKAS_LV_83_99_IN_PROGRESS; + @ClientString(id = 90602, message = "|Lv. 83-99| The Call of Valakas (In Progress)") + public static NpcStringId LV_83_99_THE_CALL_OF_VALAKAS_IN_PROGRESS; - @ClientString(id = 90603, message = "The Call of Valakas (Lv. 83-99) (Done)") - public static NpcStringId THE_CALL_OF_VALAKAS_LV_83_99_DONE; + @ClientString(id = 90603, message = "|Lv. 83-99| The Call of Valakas (Done)") + public static NpcStringId LV_83_99_THE_CALL_OF_VALAKAS_DONE; - @ClientString(id = 90604, message = "The Call of Valakas (Lv. 83-99)") - public static NpcStringId THE_CALL_OF_VALAKAS_LV_83_99_2; + @ClientString(id = 90604, message = "|Lv. 83-99| The Call of Valakas") + public static NpcStringId LV_83_99_THE_CALL_OF_VALAKAS_2; - @ClientString(id = 90701, message = "Dragon Trophy - Valakas (Lv. 84-99)") - public static NpcStringId DRAGON_TROPHY_VALAKAS_LV_84_99; + @ClientString(id = 90701, message = "|Lv. 84-99| Dragon Trophy - Valakas") + public static NpcStringId LV_84_99_DRAGON_TROPHY_VALAKAS; - @ClientString(id = 90702, message = "Dragon Trophy - Valakas (Lv. 84-99) (In Progress)") - public static NpcStringId DRAGON_TROPHY_VALAKAS_LV_84_99_IN_PROGRESS; + @ClientString(id = 90702, message = "|Lv. 84-99| Dragon Trophy - Valakas (In Progress)") + public static NpcStringId LV_84_99_DRAGON_TROPHY_VALAKAS_IN_PROGRESS; - @ClientString(id = 90703, message = "Dragon Trophy - Valakas (Lv. 84-99) (Done)") - public static NpcStringId DRAGON_TROPHY_VALAKAS_LV_84_99_DONE; + @ClientString(id = 90703, message = "|Lv. 84-99| Dragon Trophy - Valakas (Done)") + public static NpcStringId LV_84_99_DRAGON_TROPHY_VALAKAS_DONE; - @ClientString(id = 90704, message = "Dragon Trophy - Valakas (Lv. 84-99)") - public static NpcStringId DRAGON_TROPHY_VALAKAS_LV_84_99_2; + @ClientString(id = 90704, message = "|Lv. 84-99| Dragon Trophy - Valakas") + public static NpcStringId LV_84_99_DRAGON_TROPHY_VALAKAS_2; - @ClientString(id = 91001, message = "Request from the Red Libra Guild (Lv. 1-20) - Basic") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_20_BASIC; + @ClientString(id = 91001, message = "|Lv. 1-20| Request from the Red Libra Guild - Lv. 1") + public static NpcStringId LV_1_20_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1; - @ClientString(id = 91002, message = "Request from the Red Libra Guild (Lv. 1-20) - Basic (In Progress)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_20_BASIC_IN_PROGRESS; + @ClientString(id = 91002, message = "|Lv. 1-20| Request from the Red Libra Guild - Lv. 1 (In Progress)") + public static NpcStringId LV_1_20_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_IN_PROGRESS; - @ClientString(id = 91003, message = "Request from the Red Libra Guild (Lv. 1-20) - Basic (Done)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_20_BASIC_DONE; + @ClientString(id = 91003, message = "|Lv. 1-20| Request from the Red Libra Guild - Lv. 1 (Done)") + public static NpcStringId LV_1_20_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_DONE; - @ClientString(id = 91004, message = "Request from the Red Libra Guild (Lv. 1-20) - Basic") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_20_BASIC_2; + @ClientString(id = 91004, message = "|Lv. 1-20| Request from the Red Libra Guild - Lv. 1") + public static NpcStringId LV_1_20_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_1_2; @ClientString(id = 91005, message = "Kill Woopee") public static NpcStringId KILL_WOOPEE; @@ -10147,17 +10171,17 @@ public final class NpcStringId @ClientString(id = 91012, message = "Outskirts of Talking Island Village") public static NpcStringId OUTSKIRTS_OF_TALKING_ISLAND_VILLAGE; - @ClientString(id = 91101, message = "Request from the Red Libra Guild (Lv. 21-40) - Intermediate") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_21_40_INTERMEDIATE; + @ClientString(id = 91101, message = "|Lv. 21-40| Request from the Red Libra Guild - Lv. 2") + public static NpcStringId LV_21_40_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_2; - @ClientString(id = 91102, message = "Request from the Red Libra Guild (Lv. 21-40) - Intermediate (In Progress)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_21_40_INTERMEDIATE_IN_PROGRESS; + @ClientString(id = 91102, message = "|Lv. 21-40| Request from the Red Libra Guild - Lv. 2 (In Progress)") + public static NpcStringId LV_21_40_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_2_IN_PROGRESS; - @ClientString(id = 91103, message = "Request from the Red Libra Guild (Lv. 21-40) - Intermediate (Done)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_21_40_INTERMEDIATE_DONE; + @ClientString(id = 91103, message = "|Lv. 21-40| Request from the Red Libra Guild - Lv. 2 (Done)") + public static NpcStringId LV_21_40_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_2_DONE; - @ClientString(id = 91104, message = "Request from the Red Libra Guild (Lv. 21-40) - Intermediate") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_21_40_INTERMEDIATE_2; + @ClientString(id = 91104, message = "|Lv. 21-40| Request from the Red Libra Guild - Lv. 2") + public static NpcStringId LV_21_40_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_2_2; @ClientString(id = 91105, message = "Kill Wild Boars") public static NpcStringId KILL_WILD_BOARS; @@ -10168,17 +10192,17 @@ public final class NpcStringId @ClientString(id = 91112, message = "To the east of Talking Island Village") public static NpcStringId TO_THE_EAST_OF_TALKING_ISLAND_VILLAGE; - @ClientString(id = 91201, message = "Request from the Red Libra Guild (Lv. 41-60) - Advanced") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_41_60_ADVANCED; + @ClientString(id = 91201, message = "|Lv. 41-60| Request from the Red Libra Guild - Lv. 3") + public static NpcStringId LV_41_60_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_3; - @ClientString(id = 91202, message = "Request from the Red Libra Guild (Lv. 41-60) - Advanced (In Progress)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_41_60_ADVANCED_IN_PROGRESS; + @ClientString(id = 91202, message = "|Lv. 41-60| Request from the Red Libra Guild - Lv. 3 (In Progress)") + public static NpcStringId LV_41_60_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_3_IN_PROGRESS; - @ClientString(id = 91203, message = "Request from the Red Libra Guild (Lv. 41-60) - Advanced (Done)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_41_60_ADVANCED_DONE; + @ClientString(id = 91203, message = "|Lv. 41-60| Request from the Red Libra Guild - Lv. 3 (Done)") + public static NpcStringId LV_41_60_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_3_DONE; - @ClientString(id = 91204, message = "Request from the Red Libra Guild (Lv. 41-60) - Advanced") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_41_60_ADVANCED_2; + @ClientString(id = 91204, message = "|Lv. 41-60| Request from the Red Libra Guild - Lv. 3") + public static NpcStringId LV_41_60_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_3_2; @ClientString(id = 91205, message = "Kill Black Wild Boars") public static NpcStringId KILL_BLACK_WILD_BOARS; @@ -10189,17 +10213,17 @@ public final class NpcStringId @ClientString(id = 91212, message = "To the east and west of Talking Island Village") public static NpcStringId TO_THE_EAST_AND_WEST_OF_TALKING_ISLAND_VILLAGE; - @ClientString(id = 91301, message = "Request from the Red Libra Guild (Lv. 61 or higher) - Super Advanced") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_61_OR_HIGHER_SUPER_ADVANCED; + @ClientString(id = 91301, message = "|Lv. 61+| Request from the Red Libra Guild - Lv. 4") + public static NpcStringId LV_61_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_4; - @ClientString(id = 91302, message = "Request from the Red Libra Guild (Lv. 61 or higher) - Super Advanced (In Progress)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_61_OR_HIGHER_SUPER_ADVANCED_IN_PROGRESS; + @ClientString(id = 91302, message = "|Lv. 61+| Request from the Red Libra Guild - Lv. 4 (In Progress)") + public static NpcStringId LV_61_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_4_IN_PROGRESS; - @ClientString(id = 91303, message = "Request from the Red Libra Guild (Lv. 61 or higher) - Super Advanced (Done)") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_61_OR_HIGHER_SUPER_ADVANCED_DONE; + @ClientString(id = 91303, message = "|Lv. 61+| Request from the Red Libra Guild - Lv. 4 (Done)") + public static NpcStringId LV_61_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_4_DONE; - @ClientString(id = 91304, message = "Request from the Red Libra Guild (Lv. 61 or higher) - Super Advanced") - public static NpcStringId REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_61_OR_HIGHER_SUPER_ADVANCED_2; + @ClientString(id = 91304, message = "|Lv. 61+| Request from the Red Libra Guild - Lv. 4") + public static NpcStringId LV_61_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_4_2; @ClientString(id = 91305, message = "Kill White Wild Boars") public static NpcStringId KILL_WHITE_WILD_BOARS; @@ -10207,44 +10231,65 @@ public final class NpcStringId @ClientString(id = 91311, message = "61") public static NpcStringId SIXTY_ONE; - @ClientString(id = 91312, message = "To the west of Talking Island Village") - public static NpcStringId TO_THE_WEST_OF_TALKING_ISLAND_VILLAGE; + @ClientString(id = 91312, message = "Near the Obelisk of Victory") + public static NpcStringId NEAR_THE_OBELISK_OF_VICTORY; - @ClientString(id = 93301, message = "(Lv. 40-44) Exploring the West Outskirts of the Dungeon of Abyss") + @ClientString(id = 91401, message = "|Lv. 79+| Request from the Red Libra Guild - Lv. 5") + public static NpcStringId LV_79_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_5; + + @ClientString(id = 91402, message = "|Lv. 79+| Request from the Red Libra Guild - Lv. 5 (In Process)") + public static NpcStringId LV_79_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_5_IN_PROCESS; + + @ClientString(id = 91403, message = "|Lv. 79+| Request from the Red Libra Guild - Lv. 5 (Done)") + public static NpcStringId LV_79_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_5_DONE; + + @ClientString(id = 91404, message = "|Lv. 79+| Request from the Red Libra Guild - Lv. 5") + public static NpcStringId LV_79_REQUEST_FROM_THE_RED_LIBRA_GUILD_LV_5_2; + + @ClientString(id = 91405, message = "Kill Iron Wild Boars") + public static NpcStringId KILL_IRON_WILD_BOARS; + + @ClientString(id = 91411, message = "79") + public static NpcStringId NUMBER_79; + + @ClientString(id = 91412, message = "west and east area near the Talking Island Village") + public static NpcStringId WEST_AND_EAST_AREA_NEAR_THE_TALKING_ISLAND_VILLAGE; + + @ClientString(id = 93301, message = "|Lv. 40-44| Exploring the West Outskirts of the Dungeon of Abyss") public static NpcStringId LV_40_44_EXPLORING_THE_WEST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS; - @ClientString(id = 93302, message = "(Lv. 40-44) Exploring the West Outskirts of the Dungeon of Abyss (In Progress)") + @ClientString(id = 93302, message = "|Lv. 40-44| Exploring the West Outskirts of the Dungeon of Abyss (In Progress)") public static NpcStringId LV_40_44_EXPLORING_THE_WEST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_IN_PROGRESS; - @ClientString(id = 93303, message = "(Lv. 40-44) Exploring the West Outskirts of the Dungeon of Abyss (Done)") + @ClientString(id = 93303, message = "|Lv. 40-44| Exploring the West Outskirts of the Dungeon of Abyss (Done)") public static NpcStringId LV_40_44_EXPLORING_THE_WEST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_DONE; - @ClientString(id = 93304, message = "(Lv. 40-44) Exploring the West Outskirts of the Dungeon of Abyss") + @ClientString(id = 93304, message = "|Lv. 40-44| Exploring the West Outskirts of the Dungeon of Abyss") public static NpcStringId LV_40_44_EXPLORING_THE_WEST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_2; - @ClientString(id = 93501, message = "(Lv. 45-49) Exploring the East Outskirts of the Dungeon of Abyss") + @ClientString(id = 93501, message = "|Lv. 45-49| Exploring the East Outskirts of the Dungeon of Abyss") public static NpcStringId LV_45_49_EXPLORING_THE_EAST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS; - @ClientString(id = 93502, message = "(Lv. 45-49) Exploring the East Outskirts of the Dungeon of Abyss (In Progress)") + @ClientString(id = 93502, message = "|Lv. 45-49| Exploring the East Outskirts of the Dungeon of Abyss (In Progress)") public static NpcStringId LV_45_49_EXPLORING_THE_EAST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_IN_PROGRESS; - @ClientString(id = 93503, message = "(Lv. 45-49) Exploring the East Outskirts of the Dungeon of Abyss (Done)") + @ClientString(id = 93503, message = "|Lv. 45-49| Exploring the East Outskirts of the Dungeon of Abyss (Done)") public static NpcStringId LV_45_49_EXPLORING_THE_EAST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_DONE; - @ClientString(id = 93504, message = "(Lv. 45-49) Exploring the East Outskirts of the Dungeon of Abyss") + @ClientString(id = 93504, message = "|Lv. 45-49| Exploring the East Outskirts of the Dungeon of Abyss") public static NpcStringId LV_45_49_EXPLORING_THE_EAST_OUTSKIRTS_OF_THE_DUNGEON_OF_ABYSS_2; - @ClientString(id = 94301, message = "Filling the Energy of Destruction (Lv. 90-99)") - public static NpcStringId FILLING_THE_ENERGY_OF_DESTRUCTION_LV_90_99; + @ClientString(id = 94301, message = "|Lv. 90-99| Filling the Energy of Destruction") + public static NpcStringId LV_90_99_FILLING_THE_ENERGY_OF_DESTRUCTION; - @ClientString(id = 94302, message = "Filling the Energy of Destruction (Lv. 90-99) (In Progress)") - public static NpcStringId FILLING_THE_ENERGY_OF_DESTRUCTION_LV_90_99_IN_PROGRESS; + @ClientString(id = 94302, message = "|Lv. 90-99| Filling the Energy of Destruction (In Progress)") + public static NpcStringId LV_90_99_FILLING_THE_ENERGY_OF_DESTRUCTION_IN_PROGRESS; - @ClientString(id = 94303, message = "Filling the Energy of Destruction (Lv. 90-99) (Done)") - public static NpcStringId FILLING_THE_ENERGY_OF_DESTRUCTION_LV_90_99_DONE; + @ClientString(id = 94303, message = "|Lv. 90-99| Filling the Energy of Destruction (Done)") + public static NpcStringId LV_90_99_FILLING_THE_ENERGY_OF_DESTRUCTION_DONE; - @ClientString(id = 94304, message = "Filling the Energy of Destruction (Lv. 90-99)") - public static NpcStringId FILLING_THE_ENERGY_OF_DESTRUCTION_LV_90_99_2; + @ClientString(id = 94304, message = "|Lv. 90-99| Filling the Energy of Destruction") + public static NpcStringId LV_90_99_FILLING_THE_ENERGY_OF_DESTRUCTION_2; @ClientString(id = 98701, message = "Ilvenis' Test") public static NpcStringId ILVENIS_TEST; @@ -10993,284 +11038,284 @@ public final class NpcStringId @ClientString(id = 527204, message = "Light Fragment") public static NpcStringId LIGHT_FRAGMENT_2; - @ClientString(id = 527301, message = "Good Day to Fly (Lv. 75-99)") - public static NpcStringId GOOD_DAY_TO_FLY_LV_75_99; + @ClientString(id = 527301, message = "|Lv. 75-99| Good Day to Fly") + public static NpcStringId LV_75_99_GOOD_DAY_TO_FLY; - @ClientString(id = 527302, message = "Good Day to Fly (Lv. 75-99) (In Progress)") - public static NpcStringId GOOD_DAY_TO_FLY_LV_75_99_IN_PROGRESS; + @ClientString(id = 527302, message = "|Lv. 75-99| Good Day to Fly (In Progress)") + public static NpcStringId LV_75_99_GOOD_DAY_TO_FLY_IN_PROGRESS; - @ClientString(id = 527303, message = "Good Day to Fly (Lv. 75-99) (Done)") - public static NpcStringId GOOD_DAY_TO_FLY_LV_75_99_DONE; + @ClientString(id = 527303, message = "|Lv. 75-99| Good Day to Fly (Done)") + public static NpcStringId LV_75_99_GOOD_DAY_TO_FLY_DONE; - @ClientString(id = 527304, message = "Good Day to Fly (Lv. 75-99)") - public static NpcStringId GOOD_DAY_TO_FLY_LV_75_99_2; + @ClientString(id = 527304, message = "|Lv. 75-99| Good Day to Fly") + public static NpcStringId LV_75_99_GOOD_DAY_TO_FLY_2; - @ClientString(id = 527401, message = "Collecting in the Air (Lv. 75-99)") - public static NpcStringId COLLECTING_IN_THE_AIR_LV_75_99; + @ClientString(id = 527401, message = "|Lv. 75-99| Collecting in the Air") + public static NpcStringId LV_75_99_COLLECTING_IN_THE_AIR; - @ClientString(id = 527402, message = "Collecting in the Air (Lv. 75-99) (In Progress)") - public static NpcStringId COLLECTING_IN_THE_AIR_LV_75_99_IN_PROGRESS; + @ClientString(id = 527402, message = "|Lv. 75-99| Collecting in the Air (In Progress)") + public static NpcStringId LV_75_99_COLLECTING_IN_THE_AIR_IN_PROGRESS; - @ClientString(id = 527403, message = "Collecting in the Air (Lv. 75-99) (Done)") - public static NpcStringId COLLECTING_IN_THE_AIR_LV_75_99_DONE; + @ClientString(id = 527403, message = "|Lv. 75-99| Collecting in the Air (Done)") + public static NpcStringId LV_75_99_COLLECTING_IN_THE_AIR_DONE; - @ClientString(id = 527404, message = "Collecting in the Air (Lv. 75-99)") - public static NpcStringId COLLECTING_IN_THE_AIR_LV_75_99_2; + @ClientString(id = 527404, message = "|Lv. 75-99| Collecting in the Air") + public static NpcStringId LV_75_99_COLLECTING_IN_THE_AIR_2; - @ClientString(id = 527501, message = "Containing the Attribute Power (Lv. 76-99)") - public static NpcStringId CONTAINING_THE_ATTRIBUTE_POWER_LV_76_99; + @ClientString(id = 527501, message = "|Lv. 76-99| Containing the Attribute Power") + public static NpcStringId LV_76_99_CONTAINING_THE_ATTRIBUTE_POWER; - @ClientString(id = 527502, message = "Containing the Attribute Power (Lv. 76-99) (In Progress)") - public static NpcStringId CONTAINING_THE_ATTRIBUTE_POWER_LV_76_99_IN_PROGRESS; + @ClientString(id = 527502, message = "|Lv. 76-99| Containing the Attribute Power (In Progress)") + public static NpcStringId LV_76_99_CONTAINING_THE_ATTRIBUTE_POWER_IN_PROGRESS; - @ClientString(id = 527503, message = "Containing the Attribute Power (Lv. 76-99) (Done)") - public static NpcStringId CONTAINING_THE_ATTRIBUTE_POWER_LV_76_99_DONE; + @ClientString(id = 527503, message = "|Lv. 76-99| Containing the Attribute Power (Done)") + public static NpcStringId LV_76_99_CONTAINING_THE_ATTRIBUTE_POWER_DONE; - @ClientString(id = 527504, message = "Containing the Attribute Power (Lv. 76-99)") - public static NpcStringId CONTAINING_THE_ATTRIBUTE_POWER_LV_76_99_2; + @ClientString(id = 527504, message = "|Lv. 76-99| Containing the Attribute Power") + public static NpcStringId LV_76_99_CONTAINING_THE_ATTRIBUTE_POWER_2; - @ClientString(id = 527601, message = "Mutated Kaneus - Gludio (Lv. 18-99)") - public static NpcStringId MUTATED_KANEUS_GLUDIO_LV_18_99; + @ClientString(id = 527601, message = "|Lv. 18-99| Mutated Kaneus - Gludio") + public static NpcStringId LV_18_99_MUTATED_KANEUS_GLUDIO; - @ClientString(id = 527602, message = "Mutated Kaneus - Gludio (Lv. 18-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_GLUDIO_LV_18_99_IN_PROGRESS; + @ClientString(id = 527602, message = "|Lv. 18-99| Mutated Kaneus - Gludio (In Progress)") + public static NpcStringId LV_18_99_MUTATED_KANEUS_GLUDIO_IN_PROGRESS; - @ClientString(id = 527603, message = "Mutated Kaneus - Gludio (Lv. 18-99) (Done)") - public static NpcStringId MUTATED_KANEUS_GLUDIO_LV_18_99_DONE; + @ClientString(id = 527603, message = "|Lv. 18-99| Mutated Kaneus - Gludio (Done)") + public static NpcStringId LV_18_99_MUTATED_KANEUS_GLUDIO_DONE; - @ClientString(id = 527604, message = "Mutated Kaneus - Gludio (Lv. 18-99)") - public static NpcStringId MUTATED_KANEUS_GLUDIO_LV_18_99_2; + @ClientString(id = 527604, message = "|Lv. 18-99| Mutated Kaneus - Gludio") + public static NpcStringId LV_18_99_MUTATED_KANEUS_GLUDIO_2; - @ClientString(id = 527701, message = "Mutated Kaneus - Dion (Lv. 28-99)") - public static NpcStringId MUTATED_KANEUS_DION_LV_28_99; + @ClientString(id = 527701, message = "|Lv. 28-99| Mutated Kaneus - Dion") + public static NpcStringId LV_28_99_MUTATED_KANEUS_DION; - @ClientString(id = 527702, message = "Mutated Kaneus - Dion (Lv. 28-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_DION_LV_28_99_IN_PROGRESS; + @ClientString(id = 527702, message = "|Lv. 28-99| Mutated Kaneus - Dion (In Progress)") + public static NpcStringId LV_28_99_MUTATED_KANEUS_DION_IN_PROGRESS; - @ClientString(id = 527703, message = "Mutated Kaneus - Dion (Lv. 28-99) (Done)") - public static NpcStringId MUTATED_KANEUS_DION_LV_28_99_DONE; + @ClientString(id = 527703, message = "|Lv. 28-99| Mutated Kaneus - Dion (Done)") + public static NpcStringId LV_28_99_MUTATED_KANEUS_DION_DONE; - @ClientString(id = 527704, message = "Mutated Kaneus - Dion (Lv. 28-99)") - public static NpcStringId MUTATED_KANEUS_DION_LV_28_99_2; + @ClientString(id = 527704, message = "|Lv. 28-99| Mutated Kaneus - Dion") + public static NpcStringId LV_28_99_MUTATED_KANEUS_DION_2; - @ClientString(id = 527801, message = "Mutated Kaneus - Heine (Lv. 38-99)") - public static NpcStringId MUTATED_KANEUS_HEINE_LV_38_99; + @ClientString(id = 527801, message = "|Lv. 38-99| Mutated Kaneus - Heine") + public static NpcStringId LV_38_99_MUTATED_KANEUS_HEINE; - @ClientString(id = 527802, message = "Mutated Kaneus - Heine (Lv. 38-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_HEINE_LV_38_99_IN_PROGRESS; + @ClientString(id = 527802, message = "|Lv. 38-99| Mutated Kaneus - Heine (In Progress)") + public static NpcStringId LV_38_99_MUTATED_KANEUS_HEINE_IN_PROGRESS; - @ClientString(id = 527803, message = "Mutated Kaneus - Heine (Lv. 38-99) (Done)") - public static NpcStringId MUTATED_KANEUS_HEINE_LV_38_99_DONE; + @ClientString(id = 527803, message = "|Lv. 38-99| Mutated Kaneus - Heine (Done)") + public static NpcStringId LV_38_99_MUTATED_KANEUS_HEINE_DONE; - @ClientString(id = 527804, message = "Mutated Kaneus - Heine (Lv. 38-99)") - public static NpcStringId MUTATED_KANEUS_HEINE_LV_38_99_2; + @ClientString(id = 527804, message = "|Lv. 38-99| Mutated Kaneus - Heine") + public static NpcStringId LV_38_99_MUTATED_KANEUS_HEINE_2; - @ClientString(id = 527901, message = "Mutated Kaneus - Oren (Lv. 48-99)") - public static NpcStringId MUTATED_KANEUS_OREN_LV_48_99; + @ClientString(id = 527901, message = "|Lv. 48-99| Mutated Kaneus - Oren") + public static NpcStringId LV_48_99_MUTATED_KANEUS_OREN; - @ClientString(id = 527902, message = "Mutated Kaneus - Oren (Lv. 48-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_OREN_LV_48_99_IN_PROGRESS; + @ClientString(id = 527902, message = "|Lv. 48-99| Mutated Kaneus - Oren (In Progress)") + public static NpcStringId LV_48_99_MUTATED_KANEUS_OREN_IN_PROGRESS; - @ClientString(id = 527903, message = "Mutated Kaneus - Oren (Lv. 48-99) (Done)") - public static NpcStringId MUTATED_KANEUS_OREN_LV_48_99_DONE; + @ClientString(id = 527903, message = "|Lv. 48-99| Mutated Kaneus - Oren (Done)") + public static NpcStringId LV_48_99_MUTATED_KANEUS_OREN_DONE; - @ClientString(id = 527904, message = "Mutated Kaneus - Oren (Lv. 48-99)") - public static NpcStringId MUTATED_KANEUS_OREN_LV_48_99_2; + @ClientString(id = 527904, message = "|Lv. 48-99| Mutated Kaneus - Oren") + public static NpcStringId LV_48_99_MUTATED_KANEUS_OREN_2; - @ClientString(id = 528001, message = "Mutated Kaneus - Schuttgart (Lv. 58-99)") - public static NpcStringId MUTATED_KANEUS_SCHUTTGART_LV_58_99; + @ClientString(id = 528001, message = "|Lv. 58-99| Mutated Kaneus - Schuttgart") + public static NpcStringId LV_58_99_MUTATED_KANEUS_SCHUTTGART; - @ClientString(id = 528002, message = "Mutated Kaneus - Schuttgart (Lv. 58-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_SCHUTTGART_LV_58_99_IN_PROGRESS; + @ClientString(id = 528002, message = "|Lv. 58-99| Mutated Kaneus - Schuttgart (In Progress)") + public static NpcStringId LV_58_99_MUTATED_KANEUS_SCHUTTGART_IN_PROGRESS; - @ClientString(id = 528003, message = "Mutated Kaneus - Schuttgart (Lv. 58-99) (Done)") - public static NpcStringId MUTATED_KANEUS_SCHUTTGART_LV_58_99_DONE; + @ClientString(id = 528003, message = "|Lv. 58-99| Mutated Kaneus - Schuttgart (Done)") + public static NpcStringId LV_58_99_MUTATED_KANEUS_SCHUTTGART_DONE; - @ClientString(id = 528004, message = "Mutated Kaneus - Schuttgart (Lv. 58-99)") - public static NpcStringId MUTATED_KANEUS_SCHUTTGART_LV_58_99_2; + @ClientString(id = 528004, message = "|Lv. 58-99| Mutated Kaneus - Schuttgart") + public static NpcStringId LV_58_99_MUTATED_KANEUS_SCHUTTGART_2; - @ClientString(id = 528101, message = "Mutated Kaneus - Rune (Lv. 68-99)") - public static NpcStringId MUTATED_KANEUS_RUNE_LV_68_99; + @ClientString(id = 528101, message = "|Lv. 68-99| Mutated Kaneus - Rune") + public static NpcStringId LV_68_99_MUTATED_KANEUS_RUNE; - @ClientString(id = 528102, message = "Mutated Kaneus - Rune (Lv. 68-99) (In Progress)") - public static NpcStringId MUTATED_KANEUS_RUNE_LV_68_99_IN_PROGRESS; + @ClientString(id = 528102, message = "|Lv. 68-99| Mutated Kaneus - Rune (In Progress)") + public static NpcStringId LV_68_99_MUTATED_KANEUS_RUNE_IN_PROGRESS; - @ClientString(id = 528103, message = "Mutated Kaneus - Rune (Lv. 68-99) (Done)") - public static NpcStringId MUTATED_KANEUS_RUNE_LV_68_99_DONE; + @ClientString(id = 528103, message = "|Lv. 68-99| Mutated Kaneus - Rune (Done)") + public static NpcStringId LV_68_99_MUTATED_KANEUS_RUNE_DONE; - @ClientString(id = 528104, message = "Mutated Kaneus - Rune (Lv. 68-99)") - public static NpcStringId MUTATED_KANEUS_RUNE_LV_68_99_2; + @ClientString(id = 528104, message = "|Lv. 68-99| Mutated Kaneus - Rune") + public static NpcStringId LV_68_99_MUTATED_KANEUS_RUNE_2; - @ClientString(id = 528201, message = "To the Seed of Annihilation (Lv. 85-99)") - public static NpcStringId TO_THE_SEED_OF_ANNIHILATION_LV_85_99; + @ClientString(id = 528201, message = "|Lv. 85-99| To the Seed of Annihilation") + public static NpcStringId LV_85_99_TO_THE_SEED_OF_ANNIHILATION; - @ClientString(id = 528202, message = "To the Seed of Annihilation (Lv. 85-99) (In Progress)") - public static NpcStringId TO_THE_SEED_OF_ANNIHILATION_LV_85_99_IN_PROGRESS; + @ClientString(id = 528202, message = "|Lv. 85-99| To the Seed of Annihilation (In Progress)") + public static NpcStringId LV_85_99_TO_THE_SEED_OF_ANNIHILATION_IN_PROGRESS; - @ClientString(id = 528203, message = "To the Seed of Annihilation (Lv. 85-99) (Done)") - public static NpcStringId TO_THE_SEED_OF_ANNIHILATION_LV_85_99_DONE; + @ClientString(id = 528203, message = "|Lv. 85-99| To the Seed of Annihilation (Done)") + public static NpcStringId LV_85_99_TO_THE_SEED_OF_ANNIHILATION_DONE; - @ClientString(id = 528301, message = "Request of Ice Merchant (Lv. 82-99)") - public static NpcStringId REQUEST_OF_ICE_MERCHANT_LV_82_99; + @ClientString(id = 528301, message = "|Lv. 82-99| Request of Ice Merchant") + public static NpcStringId LV_82_99_REQUEST_OF_ICE_MERCHANT; - @ClientString(id = 528302, message = "Request of Ice Merchant (Lv. 82-99)(In Progress)") - public static NpcStringId REQUEST_OF_ICE_MERCHANT_LV_82_99_IN_PROGRESS; + @ClientString(id = 528302, message = "|Lv. 82-99| Request of Ice Merchant (In Progress)") + public static NpcStringId LV_82_99_REQUEST_OF_ICE_MERCHANT_IN_PROGRESS; - @ClientString(id = 528303, message = "Request of Ice Merchant (Lv. 82-99)(Done)") - public static NpcStringId REQUEST_OF_ICE_MERCHANT_LV_82_99_DONE; + @ClientString(id = 528303, message = "|Lv. 82-99| Request of Ice Merchant (Done)") + public static NpcStringId LV_82_99_REQUEST_OF_ICE_MERCHANT_DONE; - @ClientString(id = 528304, message = "Request of Ice Merchant (Lv. 82-99)") - public static NpcStringId REQUEST_OF_ICE_MERCHANT_LV_82_99_2; + @ClientString(id = 528304, message = "|Lv. 82-99| Request of Ice Merchant") + public static NpcStringId LV_82_99_REQUEST_OF_ICE_MERCHANT_2; - @ClientString(id = 528401, message = "Acquisition of Divine Sword (Lv. 82-99)") - public static NpcStringId ACQUISITION_OF_DIVINE_SWORD_LV_82_99; + @ClientString(id = 528401, message = "|Lv. 82-99| Acquisition of Divine Sword") + public static NpcStringId LV_82_99_ACQUISITION_OF_DIVINE_SWORD; - @ClientString(id = 528402, message = "Acquisition of Divine Sword (Lv. 82-99)(In Progress)") - public static NpcStringId ACQUISITION_OF_DIVINE_SWORD_LV_82_99_IN_PROGRESS; + @ClientString(id = 528402, message = "|Lv. 82-99| Acquisition of Divine Sword (In Progress)") + public static NpcStringId LV_82_99_ACQUISITION_OF_DIVINE_SWORD_IN_PROGRESS; - @ClientString(id = 528403, message = "Acquisition of Divine Sword (Lv. 82-99)(Done)") - public static NpcStringId ACQUISITION_OF_DIVINE_SWORD_LV_82_99_DONE; + @ClientString(id = 528403, message = "|Lv. 82-99| Acquisition of Divine Sword (Done)") + public static NpcStringId LV_82_99_ACQUISITION_OF_DIVINE_SWORD_DONE; - @ClientString(id = 528404, message = "Acquisition of Divine Sword (Lv. 82-99)") - public static NpcStringId ACQUISITION_OF_DIVINE_SWORD_LV_82_99_2; + @ClientString(id = 528404, message = "|Lv. 82-99| Acquisition of Divine Sword") + public static NpcStringId LV_82_99_ACQUISITION_OF_DIVINE_SWORD_2; - @ClientString(id = 528501, message = "Meeting Sirra (Lv. 82-99)") - public static NpcStringId MEETING_SIRRA_LV_82_99; + @ClientString(id = 528501, message = "|Lv. 82-99| Meeting Sirra") + public static NpcStringId LV_82_99_MEETING_SIRRA; - @ClientString(id = 528502, message = "Meeting Sirra (Lv. 82-99)(In Progress)") - public static NpcStringId MEETING_SIRRA_LV_82_99_IN_PROGRESS; + @ClientString(id = 528502, message = "|Lv. 82-99| Meeting Sirra (In Progress)") + public static NpcStringId LV_82_99_MEETING_SIRRA_IN_PROGRESS; - @ClientString(id = 528503, message = "Meeting Sirra (Lv. 82-99)(Done)") - public static NpcStringId MEETING_SIRRA_LV_82_99_DONE; + @ClientString(id = 528503, message = "|Lv. 82-99| Meeting Sirra (Done)") + public static NpcStringId LV_82_99_MEETING_SIRRA_DONE; - @ClientString(id = 528504, message = "Meeting Sirra (Lv. 82-99)") - public static NpcStringId MEETING_SIRRA_LV_82_99_2; + @ClientString(id = 528504, message = "|Lv. 82-99| Meeting Sirra") + public static NpcStringId LV_82_99_MEETING_SIRRA_2; @ClientString(id = 528551, message = "There's nothing you can't say. I can't listen to you anymore!") public static NpcStringId THERE_S_NOTHING_YOU_CAN_T_SAY_I_CAN_T_LISTEN_TO_YOU_ANYMORE; - @ClientString(id = 528601, message = "Reunion with Sirra (Lv. 82-99)") - public static NpcStringId REUNION_WITH_SIRRA_LV_82_99; + @ClientString(id = 528601, message = "|Lv. 82-99| Reunion with Sirra") + public static NpcStringId LV_82_99_REUNION_WITH_SIRRA; - @ClientString(id = 528602, message = "Reunion with Sirra (Lv. 82-99)(In Progress)") - public static NpcStringId REUNION_WITH_SIRRA_LV_82_99_IN_PROGRESS; + @ClientString(id = 528602, message = "|Lv. 82-99| Reunion with Sirra (In Progress)") + public static NpcStringId LV_82_99_REUNION_WITH_SIRRA_IN_PROGRESS; - @ClientString(id = 528603, message = "Reunion with Sirra (Lv. 82-99)(Done)") - public static NpcStringId REUNION_WITH_SIRRA_LV_82_99_DONE; + @ClientString(id = 528603, message = "|Lv. 82-99| Reunion with Sirra (Done)") + public static NpcStringId LV_82_99_REUNION_WITH_SIRRA_DONE; - @ClientString(id = 528604, message = "Reunion with Sirra (Lv. 82-99)") - public static NpcStringId REUNION_WITH_SIRRA_LV_82_99_2; + @ClientString(id = 528604, message = "|Lv. 82-99| Reunion with Sirra") + public static NpcStringId LV_82_99_REUNION_WITH_SIRRA_2; @ClientString(id = 528651, message = "You advanced bravely but got such a tiny result. Hohoho.") public static NpcStringId YOU_ADVANCED_BRAVELY_BUT_GOT_SUCH_A_TINY_RESULT_HOHOHO; - @ClientString(id = 528701, message = "Story of Those Left (Lv. 82-99)") - public static NpcStringId STORY_OF_THOSE_LEFT_LV_82_99; + @ClientString(id = 528701, message = "|Lv. 82-99| Story of Those Left") + public static NpcStringId LV_82_99_STORY_OF_THOSE_LEFT; - @ClientString(id = 528702, message = "Story of Those Left (Lv. 82-99)(In Progress)") - public static NpcStringId STORY_OF_THOSE_LEFT_LV_82_99_IN_PROGRESS; + @ClientString(id = 528702, message = "|Lv. 82-99| Story of Those Left (In Progress)") + public static NpcStringId LV_82_99_STORY_OF_THOSE_LEFT_IN_PROGRESS; - @ClientString(id = 528703, message = "Story of Those Left (Lv. 82-99) (Done)") - public static NpcStringId STORY_OF_THOSE_LEFT_LV_82_99_DONE; + @ClientString(id = 528703, message = "|Lv. 82-99| Story of Those Left (Done)") + public static NpcStringId LV_82_99_STORY_OF_THOSE_LEFT_DONE; - @ClientString(id = 528704, message = "Story of Those Left (Lv. 82-99)") - public static NpcStringId STORY_OF_THOSE_LEFT_LV_82_99_2; + @ClientString(id = 528704, message = "|Lv. 82-99| Story of Those Left") + public static NpcStringId LV_82_99_STORY_OF_THOSE_LEFT_2; - @ClientString(id = 528801, message = "Secret Mission (Lv. 82-99)") - public static NpcStringId SECRET_MISSION_LV_82_99; + @ClientString(id = 528801, message = "|Lv. 82-99| Secret Mission") + public static NpcStringId LV_82_99_SECRET_MISSION; - @ClientString(id = 528802, message = "Secret Mission (Lv. 82-99)(In Progress)") - public static NpcStringId SECRET_MISSION_LV_82_99_IN_PROGRESS; + @ClientString(id = 528802, message = "|Lv. 82-99| Secret Mission (In Progress)") + public static NpcStringId LV_82_99_SECRET_MISSION_IN_PROGRESS; - @ClientString(id = 528803, message = "Secret Mission (Lv. 82-99)(Done)") - public static NpcStringId SECRET_MISSION_LV_82_99_DONE; + @ClientString(id = 528803, message = "|Lv. 82-99| Secret Mission (Done)") + public static NpcStringId LV_82_99_SECRET_MISSION_DONE; - @ClientString(id = 528804, message = "Secret Mission (Lv. 82-99)") - public static NpcStringId SECRET_MISSION_LV_82_99_2; + @ClientString(id = 528804, message = "|Lv. 82-99| Secret Mission") + public static NpcStringId LV_82_99_SECRET_MISSION_2; - @ClientString(id = 528901, message = "Fade to Black (Lv. 82-99)") - public static NpcStringId FADE_TO_BLACK_LV_82_99; + @ClientString(id = 528901, message = "|Lv. 82-99| Fade to Black") + public static NpcStringId LV_82_99_FADE_TO_BLACK; - @ClientString(id = 528902, message = "Fade to Black (Lv. 82-99)(In Progress)") - public static NpcStringId FADE_TO_BLACK_LV_82_99_IN_PROGRESS; + @ClientString(id = 528902, message = "|Lv. 82-99| Fade to Black (In Progress)") + public static NpcStringId LV_82_99_FADE_TO_BLACK_IN_PROGRESS; - @ClientString(id = 528903, message = "Fade to Black (Lv. 82-99) (Done)") - public static NpcStringId FADE_TO_BLACK_LV_82_99_DONE; + @ClientString(id = 528903, message = "|Lv. 82-99| Fade to Black (Done)") + public static NpcStringId LV_82_99_FADE_TO_BLACK_DONE; - @ClientString(id = 528904, message = "Fade to Black (Lv. 82-99)") - public static NpcStringId FADE_TO_BLACK_LV_82_99_2; + @ClientString(id = 528904, message = "|Lv. 82-99| Fade to Black") + public static NpcStringId LV_82_99_FADE_TO_BLACK_2; - @ClientString(id = 529001, message = "Land Dragon Conqueror (Lv. 83-99)") - public static NpcStringId LAND_DRAGON_CONQUEROR_LV_83_99; + @ClientString(id = 529001, message = "|Lv. 83-99| Land Dragon Conqueror") + public static NpcStringId LV_83_99_LAND_DRAGON_CONQUEROR; - @ClientString(id = 529002, message = "Land Dragon Conqueror (Lv. 83-99) (In Progress)") - public static NpcStringId LAND_DRAGON_CONQUEROR_LV_83_99_IN_PROGRESS; + @ClientString(id = 529002, message = "|Lv. 83-99| Land Dragon Conqueror (In Progress)") + public static NpcStringId LV_83_99_LAND_DRAGON_CONQUEROR_IN_PROGRESS; - @ClientString(id = 529003, message = "Land Dragon Conqueror (Lv. 83-99) (Done)") - public static NpcStringId LAND_DRAGON_CONQUEROR_LV_83_99_DONE; + @ClientString(id = 529003, message = "|Lv. 83-99| Land Dragon Conqueror (Done)") + public static NpcStringId LV_83_99_LAND_DRAGON_CONQUEROR_DONE; - @ClientString(id = 529004, message = "Land Dragon Conqueror (Lv. 83-99)") - public static NpcStringId LAND_DRAGON_CONQUEROR_LV_83_99_2; + @ClientString(id = 529004, message = "|Lv. 83-99| Land Dragon Conqueror") + public static NpcStringId LV_83_99_LAND_DRAGON_CONQUEROR_2; - @ClientString(id = 529101, message = "Fire Dragon Destroyer (Lv. 83-99)") - public static NpcStringId FIRE_DRAGON_DESTROYER_LV_83_99; + @ClientString(id = 529101, message = "|Lv. 83-99| Fire Dragon Destroyer") + public static NpcStringId LV_83_99_FIRE_DRAGON_DESTROYER; - @ClientString(id = 529102, message = "Fire Dragon Destroyer (Lv. 83-99) (In Progress)") - public static NpcStringId FIRE_DRAGON_DESTROYER_LV_83_99_IN_PROGRESS; + @ClientString(id = 529102, message = "|Lv. 83-99| Fire Dragon Destroyer (In Progress)") + public static NpcStringId LV_83_99_FIRE_DRAGON_DESTROYER_IN_PROGRESS; - @ClientString(id = 529103, message = "Fire Dragon Destroyer (Lv. 83-99) (Done)") - public static NpcStringId FIRE_DRAGON_DESTROYER_LV_83_99_DONE; + @ClientString(id = 529103, message = "|Lv. 83-99| Fire Dragon Destroyer (Done)") + public static NpcStringId LV_83_99_FIRE_DRAGON_DESTROYER_DONE; - @ClientString(id = 529104, message = "Fire Dragon Destroyer (Lv. 83-99)") - public static NpcStringId FIRE_DRAGON_DESTROYER_LV_83_99_2; + @ClientString(id = 529104, message = "|Lv. 83-99| Fire Dragon Destroyer") + public static NpcStringId LV_83_99_FIRE_DRAGON_DESTROYER_2; - @ClientString(id = 529201, message = "Seven Signs, Mysterious Girl (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_MYSTERIOUS_GIRL_LV_81_99; + @ClientString(id = 529201, message = "|Lv. 81-99| Seven Signs, Mysterious Girl") + public static NpcStringId LV_81_99_SEVEN_SIGNS_MYSTERIOUS_GIRL; - @ClientString(id = 529202, message = "Seven Signs, Mysterious Girl (Lv. 81-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_MYSTERIOUS_GIRL_LV_81_99_IN_PROGRESS; + @ClientString(id = 529202, message = "|Lv. 81-99| Seven Signs, Mysterious Girl (In Progress)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_MYSTERIOUS_GIRL_IN_PROGRESS; - @ClientString(id = 529203, message = "Seven Signs, Mysterious Girl (Lv. 81-99) (Done)") - public static NpcStringId SEVEN_SIGNS_MYSTERIOUS_GIRL_LV_81_99_DONE; + @ClientString(id = 529203, message = "|Lv. 81-99| Seven Signs, Mysterious Girl (Done)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_MYSTERIOUS_GIRL_DONE; - @ClientString(id = 529204, message = "Seven Signs, Mysterious Girl (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_MYSTERIOUS_GIRL_LV_81_99_2; + @ClientString(id = 529204, message = "|Lv. 81-99| Seven Signs, Mysterious Girl") + public static NpcStringId LV_81_99_SEVEN_SIGNS_MYSTERIOUS_GIRL_2; - @ClientString(id = 529301, message = "Seven Signs, Forbidden Book of the Elmoreden Kingdom (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM_LV_81_99; + @ClientString(id = 529301, message = "|Lv. 81-99| Seven Signs, Forbidden Book of the Elmoreden Kingdom") + public static NpcStringId LV_81_99_SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM; - @ClientString(id = 529302, message = "Seven Signs, Forbidden Book of the Elmoreden Kingdom (Lv. 81-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM_LV_81_99_IN_PROGRESS; + @ClientString(id = 529302, message = "|Lv. 81-99| Seven Signs, Forbidden Book of the Elmoreden Kingdom (In Progress)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM_IN_PROGRESS; - @ClientString(id = 529303, message = "Seven Signs, Forbidden Book of the Elmoreden Kingdom (Lv. 81-99) (Done)") - public static NpcStringId SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM_LV_81_99_DONE; + @ClientString(id = 529303, message = "|Lv. 81-99| Seven Signs, Forbidden Book of the Elmoreden Kingdom (Done)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_FORBIDDEN_BOOK_OF_THE_ELMOREDEN_KINGDOM_DONE; - @ClientString(id = 529401, message = "Seven Signs, To the Monastery of Silence (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE_LV_81_99; + @ClientString(id = 529401, message = "|Lv. 81-99| Seven Signs, To the Monastery of Silence") + public static NpcStringId LV_81_99_SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE; - @ClientString(id = 529402, message = "Seven Signs, To the Monastery of Silence (Lv. 81-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE_LV_81_99_IN_PROGRESS; + @ClientString(id = 529402, message = "|Lv. 81-99| Seven Signs, To the Monastery of Silence (In Progress)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE_IN_PROGRESS; - @ClientString(id = 529403, message = "Seven Signs, To the Monastery of Silence (Lv. 81-99) (Done)") - public static NpcStringId SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE_LV_81_99_DONE; + @ClientString(id = 529403, message = "|Lv. 81-99| Seven Signs, To the Monastery of Silence (Done)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_TO_THE_MONASTERY_OF_SILENCE_DONE; - @ClientString(id = 529501, message = "Seven Signs, Solina Tomb (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_SOLINA_TOMB_LV_81_99; + @ClientString(id = 529501, message = "|Lv. 81-99| Seven Signs, Solina Tomb") + public static NpcStringId LV_81_99_SEVEN_SIGNS_SOLINA_TOMB; - @ClientString(id = 529502, message = "Seven Signs, Solina Tomb (Lv. 81-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_SOLINA_TOMB_LV_81_99_IN_PROGRESS; + @ClientString(id = 529502, message = "|Lv. 81-99| Seven Signs, Solina Tomb (In Progress)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_SOLINA_TOMB_IN_PROGRESS; - @ClientString(id = 529503, message = "Seven Signs, Solina Tomb (Lv. 81-99) (Done)") - public static NpcStringId SEVEN_SIGNS_SOLINA_TOMB_LV_81_99_DONE; + @ClientString(id = 529503, message = "|Lv. 81-99| Seven Signs, Solina Tomb (Done)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_SOLINA_TOMB_DONE; - @ClientString(id = 529601, message = "Seven Signs, One Who Seeks the Power of the Seal (Lv. 81-99)") - public static NpcStringId SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_LV_81_99; + @ClientString(id = 529601, message = "|Lv. 81-99| Seven Signs, One Who Seeks the Power of the Seal") + public static NpcStringId LV_81_99_SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL; - @ClientString(id = 529602, message = "Seven Signs, One Who Seeks the Power of the Seal (Lv. 81-99) (In Progress)") - public static NpcStringId SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_LV_81_99_IN_PROGRESS; + @ClientString(id = 529602, message = "|Lv. 81-99| Seven Signs, One Who Seeks the Power of the Seal (In Progress)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_IN_PROGRESS; - @ClientString(id = 529603, message = "Seven Signs, One Who Seeks the Power of the Seal (Lv. 81-99) (Done)") - public static NpcStringId SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_LV_81_99_DONE; + @ClientString(id = 529603, message = "|Lv. 81-99| Seven Signs, One Who Seeks the Power of the Seal (Done)") + public static NpcStringId LV_81_99_SEVEN_SIGNS_ONE_WHO_SEEKS_THE_POWER_OF_THE_SEAL_DONE; @ClientString(id = 529901, message = "How to Stand Up For Yourself") public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF; @@ -11284,260 +11329,260 @@ public final class NpcStringId @ClientString(id = 529904, message = "How to Stand Up For Yourself") public static NpcStringId HOW_TO_STAND_UP_FOR_YOURSELF_2; - @ClientString(id = 530001, message = "Berserk Outlaws (Lv. 50-54)") - public static NpcStringId BERSERK_OUTLAWS_LV_50_54; + @ClientString(id = 530001, message = "|Lv. 50-54| Berserk Outlaws") + public static NpcStringId LV_50_54_BERSERK_OUTLAWS; - @ClientString(id = 530002, message = "Berserk Outlaws (Lv. 50-54) (In Progress)") - public static NpcStringId BERSERK_OUTLAWS_LV_50_54_IN_PROGRESS; + @ClientString(id = 530002, message = "|Lv. 50-54| Berserk Outlaws (In Progress)") + public static NpcStringId LV_50_54_BERSERK_OUTLAWS_IN_PROGRESS; - @ClientString(id = 530003, message = "Berserk Outlaws (Lv. 50-54) (Done)") - public static NpcStringId BERSERK_OUTLAWS_LV_50_54_DONE; + @ClientString(id = 530003, message = "|Lv. 50-54| Berserk Outlaws (Done)") + public static NpcStringId LV_50_54_BERSERK_OUTLAWS_DONE; - @ClientString(id = 530004, message = "Berserk Outlaws (Lv. 50-54)") - public static NpcStringId BERSERK_OUTLAWS_LV_50_54_2; + @ClientString(id = 530004, message = "|Lv. 50-54| Berserk Outlaws") + public static NpcStringId LV_50_54_BERSERK_OUTLAWS_2; - @ClientString(id = 530101, message = "Shadow of Terror: Blackish Red Fog (Lv. 88-99)") - public static NpcStringId SHADOW_OF_TERROR_BLACKISH_RED_FOG_LV_88_99; + @ClientString(id = 530101, message = "|Lv. 88-99| Shadow of Terror: Blackish Red Fog") + public static NpcStringId LV_88_99_SHADOW_OF_TERROR_BLACKISH_RED_FOG; - @ClientString(id = 530102, message = "Shadow of Terror: Blackish Red Fog (Lv. 88-99) (In Progress)") - public static NpcStringId SHADOW_OF_TERROR_BLACKISH_RED_FOG_LV_88_99_IN_PROGRESS; + @ClientString(id = 530102, message = "|Lv. 88-99| Shadow of Terror: Blackish Red Fog (In Progress)") + public static NpcStringId LV_88_99_SHADOW_OF_TERROR_BLACKISH_RED_FOG_IN_PROGRESS; - @ClientString(id = 530103, message = "Shadow of Terror: Blackish Red Fog (Lv. 88-99) (Done)") - public static NpcStringId SHADOW_OF_TERROR_BLACKISH_RED_FOG_LV_88_99_DONE; + @ClientString(id = 530103, message = "|Lv. 88-99| Shadow of Terror: Blackish Red Fog (Done)") + public static NpcStringId LV_88_99_SHADOW_OF_TERROR_BLACKISH_RED_FOG_DONE; - @ClientString(id = 530104, message = "Shadow of Terror: Blackish Red Fog (Lv. 88-99)") - public static NpcStringId SHADOW_OF_TERROR_BLACKISH_RED_FOG_LV_88_99_2; + @ClientString(id = 530104, message = "|Lv. 88-99| Shadow of Terror: Blackish Red Fog") + public static NpcStringId LV_88_99_SHADOW_OF_TERROR_BLACKISH_RED_FOG_2; - @ClientString(id = 530201, message = "Unsettling Shadow and Rumors (Lv. 88-99)") - public static NpcStringId UNSETTLING_SHADOW_AND_RUMORS_LV_88_99; + @ClientString(id = 530201, message = "|Lv. 88-99| Unsettling Shadow and Rumors") + public static NpcStringId LV_88_99_UNSETTLING_SHADOW_AND_RUMORS; - @ClientString(id = 530202, message = "Unsettling Shadow and Rumors (Lv. 88-99) (In Progress)") - public static NpcStringId UNSETTLING_SHADOW_AND_RUMORS_LV_88_99_IN_PROGRESS; + @ClientString(id = 530202, message = "|Lv. 88-99| Unsettling Shadow and Rumors (In Progress)") + public static NpcStringId LV_88_99_UNSETTLING_SHADOW_AND_RUMORS_IN_PROGRESS; - @ClientString(id = 530203, message = "Unsettling Shadow and Rumors (Lv. 88-99) (Done)") - public static NpcStringId UNSETTLING_SHADOW_AND_RUMORS_LV_88_99_DONE; + @ClientString(id = 530203, message = "|Lv. 88-99| Unsettling Shadow and Rumors (Done)") + public static NpcStringId LV_88_99_UNSETTLING_SHADOW_AND_RUMORS_DONE; - @ClientString(id = 530204, message = "Unsettling Shadow and Rumors (Lv. 88-99)") - public static NpcStringId UNSETTLING_SHADOW_AND_RUMORS_LV_88_99_2; + @ClientString(id = 530204, message = "|Lv. 88-99| Unsettling Shadow and Rumors") + public static NpcStringId LV_88_99_UNSETTLING_SHADOW_AND_RUMORS_2; - @ClientString(id = 530301, message = "Verge of Light and Darkness (Lv. 90-99)") - public static NpcStringId VERGE_OF_LIGHT_AND_DARKNESS_LV_90_99; + @ClientString(id = 530301, message = "|Lv. 90-99| Verge of Light and Darkness") + public static NpcStringId LV_90_99_VERGE_OF_LIGHT_AND_DARKNESS; - @ClientString(id = 530302, message = "Verge of Light and Darkness (Lv. 90-99) (In Progress)") - public static NpcStringId VERGE_OF_LIGHT_AND_DARKNESS_LV_90_99_IN_PROGRESS; + @ClientString(id = 530302, message = "|Lv. 90-99| Verge of Light and Darkness (In Progress)") + public static NpcStringId LV_90_99_VERGE_OF_LIGHT_AND_DARKNESS_IN_PROGRESS; - @ClientString(id = 530303, message = "Verge of Light and Darkness (Lv. 90-99) (Done)") - public static NpcStringId VERGE_OF_LIGHT_AND_DARKNESS_LV_90_99_DONE; + @ClientString(id = 530303, message = "|Lv. 90-99| Verge of Light and Darkness (Done)") + public static NpcStringId LV_90_99_VERGE_OF_LIGHT_AND_DARKNESS_DONE; - @ClientString(id = 530304, message = "Verge of Light and Darkness (Lv. 90-99)") - public static NpcStringId VERGE_OF_LIGHT_AND_DARKNESS_LV_90_99_2; + @ClientString(id = 530304, message = "|Lv. 90-99| Verge of Light and Darkness") + public static NpcStringId LV_90_99_VERGE_OF_LIGHT_AND_DARKNESS_2; @ClientString(id = 530400, message = "You can use the old roll of paper to begin the quest.") public static NpcStringId YOU_CAN_USE_THE_OLD_ROLL_OF_PAPER_TO_BEGIN_THE_QUEST; - @ClientString(id = 530401, message = "For the Forgotten Heroes (Lv. 90-99)") - public static NpcStringId FOR_THE_FORGOTTEN_HEROES_LV_90_99; + @ClientString(id = 530401, message = "|Lv. 90-99| For the Forgotten Heroes") + public static NpcStringId LV_90_99_FOR_THE_FORGOTTEN_HEROES; - @ClientString(id = 530402, message = "For the Forgotten Heroes (Lv. 90-99) (In Progress)") - public static NpcStringId FOR_THE_FORGOTTEN_HEROES_LV_90_99_IN_PROGRESS; + @ClientString(id = 530402, message = "|Lv. 90-99| For the Forgotten Heroes (In Progress)") + public static NpcStringId LV_90_99_FOR_THE_FORGOTTEN_HEROES_IN_PROGRESS; - @ClientString(id = 530403, message = "For the Forgotten Heroes (Lv. 90-99) (Completed)") - public static NpcStringId FOR_THE_FORGOTTEN_HEROES_LV_90_99_COMPLETED; + @ClientString(id = 530403, message = "|Lv. 90-99| For the Forgotten Heroes (Completed)") + public static NpcStringId LV_90_99_FOR_THE_FORGOTTEN_HEROES_COMPLETED; - @ClientString(id = 530404, message = "For the Forgotten Heroes (Lv. 90-99)") - public static NpcStringId FOR_THE_FORGOTTEN_HEROES_LV_90_99_2; + @ClientString(id = 530404, message = "|Lv. 90-99| For the Forgotten Heroes") + public static NpcStringId LV_90_99_FOR_THE_FORGOTTEN_HEROES_2; - @ClientString(id = 530501, message = "Unstoppable Void Efforts (Lv. 88-99)") - public static NpcStringId UNSTOPPABLE_VOID_EFFORTS_LV_88_99; + @ClientString(id = 530501, message = "|Lv. 88-99| Unstoppable Void Efforts") + public static NpcStringId LV_88_99_UNSTOPPABLE_VOID_EFFORTS; - @ClientString(id = 530502, message = "Unstoppable Void Efforts (Lv. 88-99) (In Progress)") - public static NpcStringId UNSTOPPABLE_VOID_EFFORTS_LV_88_99_IN_PROGRESS; + @ClientString(id = 530502, message = "|Lv. 88-99| Unstoppable Void Efforts (In Progress)") + public static NpcStringId LV_88_99_UNSTOPPABLE_VOID_EFFORTS_IN_PROGRESS; - @ClientString(id = 530503, message = "Unstoppable Void Efforts (Lv. 88-99) (Done)") - public static NpcStringId UNSTOPPABLE_VOID_EFFORTS_LV_88_99_DONE; + @ClientString(id = 530503, message = "|Lv. 88-99| Unstoppable Void Efforts (Done)") + public static NpcStringId LV_88_99_UNSTOPPABLE_VOID_EFFORTS_DONE; - @ClientString(id = 530504, message = "Unstoppable Void Efforts (Lv. 88-99)") - public static NpcStringId UNSTOPPABLE_VOID_EFFORTS_LV_88_99_2; + @ClientString(id = 530504, message = "|Lv. 88-99| Unstoppable Void Efforts") + public static NpcStringId LV_88_99_UNSTOPPABLE_VOID_EFFORTS_2; - @ClientString(id = 530601, message = "The Corrupt Leader (Lv. 90-99)") - public static NpcStringId THE_CORRUPT_LEADER_LV_90_99; + @ClientString(id = 530601, message = "|Lv. 90-99| The Corrupt Leader") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER; - @ClientString(id = 530602, message = "The Corrupt Leader (Lv. 90-99) (In Progress)") - public static NpcStringId THE_CORRUPT_LEADER_LV_90_99_IN_PROGRESS; + @ClientString(id = 530602, message = "|Lv. 90-99| The Corrupt Leader (In Progress)") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_IN_PROGRESS; - @ClientString(id = 530603, message = "The Corrupt Leader (Lv. 90-99) (Done)") - public static NpcStringId THE_CORRUPT_LEADER_LV_90_99_DONE; + @ClientString(id = 530603, message = "|Lv. 90-99| The Corrupt Leader (Done)") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_DONE; - @ClientString(id = 530604, message = "The Corrupt Leader (Lv. 90-99)") - public static NpcStringId THE_CORRUPT_LEADER_LV_90_99_2; + @ClientString(id = 530604, message = "|Lv. 90-99| The Corrupt Leader") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_2; - @ClientString(id = 530701, message = "The Corrupt Leader, His Truth (Lv. 90-99)") - public static NpcStringId THE_CORRUPT_LEADER_HIS_TRUTH_LV_90_99; + @ClientString(id = 530701, message = "|Lv. 90-99| The Corrupt Leader, His Truth") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_HIS_TRUTH; - @ClientString(id = 530702, message = "The Corrupt Leader, His Truth (Lv. 90-99) (In Progress)") - public static NpcStringId THE_CORRUPT_LEADER_HIS_TRUTH_LV_90_99_IN_PROGRESS; + @ClientString(id = 530702, message = "|Lv. 90-99| The Corrupt Leader, His Truth (In Progress)") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_HIS_TRUTH_IN_PROGRESS; - @ClientString(id = 530703, message = "The Corrupt Leader, His Truth (Lv. 90-99) (Done)") - public static NpcStringId THE_CORRUPT_LEADER_HIS_TRUTH_LV_90_99_DONE; + @ClientString(id = 530703, message = "|Lv. 90-99| The Corrupt Leader, His Truth (Done)") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_HIS_TRUTH_DONE; - @ClientString(id = 530704, message = "The Corrupt Leader, His Truth (Lv. 90-99)") - public static NpcStringId THE_CORRUPT_LEADER_HIS_TRUTH_LV_90_99_2; + @ClientString(id = 530704, message = "|Lv. 90-99| The Corrupt Leader, His Truth") + public static NpcStringId LV_90_99_THE_CORRUPT_LEADER_HIS_TRUTH_2; - @ClientString(id = 530801, message = "To Not Be Forgotten (Lv. 55-59)") - public static NpcStringId TO_NOT_BE_FORGOTTEN_LV_55_59; + @ClientString(id = 530801, message = "|Lv. 55-59| To Not Be Forgotten") + public static NpcStringId LV_55_59_TO_NOT_BE_FORGOTTEN; - @ClientString(id = 530802, message = "To Not Be Forgotten (Lv. 55-59) (In Progress)") - public static NpcStringId TO_NOT_BE_FORGOTTEN_LV_55_59_IN_PROGRESS; + @ClientString(id = 530802, message = "|Lv. 55-59| To Not Be Forgotten (In Progress)") + public static NpcStringId LV_55_59_TO_NOT_BE_FORGOTTEN_IN_PROGRESS; - @ClientString(id = 530803, message = "To Not Be Forgotten (Lv. 55-59) (Done)") - public static NpcStringId TO_NOT_BE_FORGOTTEN_LV_55_59_DONE; + @ClientString(id = 530803, message = "|Lv. 55-59| To Not Be Forgotten (Done)") + public static NpcStringId LV_55_59_TO_NOT_BE_FORGOTTEN_DONE; - @ClientString(id = 530804, message = "To Not Be Forgotten (Lv. 55-59)") - public static NpcStringId TO_NOT_BE_FORGOTTEN_LV_55_59_2; + @ClientString(id = 530804, message = "|Lv. 55-59| To Not Be Forgotten") + public static NpcStringId LV_55_59_TO_NOT_BE_FORGOTTEN_2; - @ClientString(id = 530901, message = "Mysterious Letter (Lv. 65-69)") - public static NpcStringId MYSTERIOUS_LETTER_LV_65_69; + @ClientString(id = 530901, message = "|Lv. 65-69| Mysterious Letter") + public static NpcStringId LV_65_69_MYSTERIOUS_LETTER; - @ClientString(id = 530902, message = "Mysterious Letter (Lv. 65-69) (In Progress)") - public static NpcStringId MYSTERIOUS_LETTER_LV_65_69_IN_PROGRESS; + @ClientString(id = 530902, message = "|Lv. 65-69| Mysterious Letter (In Progress)") + public static NpcStringId LV_65_69_MYSTERIOUS_LETTER_IN_PROGRESS; - @ClientString(id = 530903, message = "Mysterious Letter (Lv. 65-69) (Done)") - public static NpcStringId MYSTERIOUS_LETTER_LV_65_69_DONE; + @ClientString(id = 530903, message = "|Lv. 65-69| Mysterious Letter (Done)") + public static NpcStringId LV_65_69_MYSTERIOUS_LETTER_DONE; - @ClientString(id = 530904, message = "Mysterious Letter (Lv. 65-69)") - public static NpcStringId MYSTERIOUS_LETTER_LV_65_69_2; + @ClientString(id = 530904, message = "|Lv. 65-69| Mysterious Letter") + public static NpcStringId LV_65_69_MYSTERIOUS_LETTER_2; - @ClientString(id = 531001, message = "Twisted Creation Tree (Lv. 90-99)") - public static NpcStringId TWISTED_CREATION_TREE_LV_90_99; + @ClientString(id = 531001, message = "|Lv. 90-99| Twisted Creation Tree") + public static NpcStringId LV_90_99_TWISTED_CREATION_TREE; - @ClientString(id = 531002, message = "Twisted Creation Tree (Lv. 90-99) (In Progress)") - public static NpcStringId TWISTED_CREATION_TREE_LV_90_99_IN_PROGRESS; + @ClientString(id = 531002, message = "|Lv. 90-99| Twisted Creation Tree (In Progress)") + public static NpcStringId LV_90_99_TWISTED_CREATION_TREE_IN_PROGRESS; - @ClientString(id = 531003, message = "Twisted Creation Tree (Lv. 90-99) (Done)") - public static NpcStringId TWISTED_CREATION_TREE_LV_90_99_DONE; + @ClientString(id = 531003, message = "|Lv. 90-99| Twisted Creation Tree (Done)") + public static NpcStringId LV_90_99_TWISTED_CREATION_TREE_DONE; - @ClientString(id = 531004, message = "Twisted Creation Tree (Lv. 90-99)") - public static NpcStringId TWISTED_CREATION_TREE_LV_90_99_2; + @ClientString(id = 531004, message = "|Lv. 90-99| Twisted Creation Tree") + public static NpcStringId LV_90_99_TWISTED_CREATION_TREE_2; - @ClientString(id = 531101, message = "Day of Rest Is Over (Lv. 90-99)") - public static NpcStringId DAY_OF_REST_IS_OVER_LV_90_99; + @ClientString(id = 531101, message = "|Lv. 90-99| Day of Rest Is Over") + public static NpcStringId LV_90_99_DAY_OF_REST_IS_OVER; - @ClientString(id = 531102, message = "Day of Rest Is Over (Lv. 90-99) (In Progress)") - public static NpcStringId DAY_OF_REST_IS_OVER_LV_90_99_IN_PROGRESS; + @ClientString(id = 531102, message = "|Lv. 90-99| Day of Rest Is Over (In Progress)") + public static NpcStringId LV_90_99_DAY_OF_REST_IS_OVER_IN_PROGRESS; - @ClientString(id = 531103, message = "Day of Rest Is Over (Lv. 90-99) (Done)") - public static NpcStringId DAY_OF_REST_IS_OVER_LV_90_99_DONE; + @ClientString(id = 531103, message = "|Lv. 90-99| Day of Rest Is Over (Done)") + public static NpcStringId LV_90_99_DAY_OF_REST_IS_OVER_DONE; - @ClientString(id = 531104, message = "Day of Rest Is Over (Lv. 90-99)") - public static NpcStringId DAY_OF_REST_IS_OVER_LV_90_99_2; + @ClientString(id = 531104, message = "|Lv. 90-99| Day of Rest Is Over") + public static NpcStringId LV_90_99_DAY_OF_REST_IS_OVER_2; - @ClientString(id = 531201, message = "Abandoned Creation of Gods (Lv. 90-99)") - public static NpcStringId ABANDONED_CREATION_OF_GODS_LV_90_99; + @ClientString(id = 531201, message = "|Lv. 90-99| Abandoned Creation of Gods") + public static NpcStringId LV_90_99_ABANDONED_CREATION_OF_GODS; - @ClientString(id = 531202, message = "Abandoned Creation of Gods (Lv. 90-99) (In Progress)") - public static NpcStringId ABANDONED_CREATION_OF_GODS_LV_90_99_IN_PROGRESS; + @ClientString(id = 531202, message = "|Lv. 90-99| Abandoned Creation of Gods (In Progress)") + public static NpcStringId LV_90_99_ABANDONED_CREATION_OF_GODS_IN_PROGRESS; - @ClientString(id = 531203, message = "Abandoned Creation of Gods (Lv. 90-99) (Done)") - public static NpcStringId ABANDONED_CREATION_OF_GODS_LV_90_99_DONE; + @ClientString(id = 531203, message = "|Lv. 90-99| Abandoned Creation of Gods (Done)") + public static NpcStringId LV_90_99_ABANDONED_CREATION_OF_GODS_DONE; - @ClientString(id = 531204, message = "Abandoned Creation of Gods (Lv. 90-99)") - public static NpcStringId ABANDONED_CREATION_OF_GODS_LV_90_99_2; + @ClientString(id = 531204, message = "|Lv. 90-99| Abandoned Creation of Gods") + public static NpcStringId LV_90_99_ABANDONED_CREATION_OF_GODS_2; - @ClientString(id = 531501, message = "To the Prison of Darkness (Lv. 90-99)") - public static NpcStringId TO_THE_PRISON_OF_DARKNESS_LV_90_99; + @ClientString(id = 531501, message = "|Lv. 90-99| To the Prison of Darkness") + public static NpcStringId LV_90_99_TO_THE_PRISON_OF_DARKNESS; - @ClientString(id = 531502, message = "To the Prison of Darkness (Lv. 90-99) (In Progress)") - public static NpcStringId TO_THE_PRISON_OF_DARKNESS_LV_90_99_IN_PROGRESS; + @ClientString(id = 531502, message = "|Lv. 90-99| To the Prison of Darkness (In Progress)") + public static NpcStringId LV_90_99_TO_THE_PRISON_OF_DARKNESS_IN_PROGRESS; - @ClientString(id = 531503, message = "To the Prison of Darkness (Lv. 90-99) (Done)") - public static NpcStringId TO_THE_PRISON_OF_DARKNESS_LV_90_99_DONE; + @ClientString(id = 531503, message = "|Lv. 90-99| To the Prison of Darkness (Done)") + public static NpcStringId LV_90_99_TO_THE_PRISON_OF_DARKNESS_DONE; - @ClientString(id = 531504, message = "To the Prison of Darkness (Lv. 90-99)") - public static NpcStringId TO_THE_PRISON_OF_DARKNESS_LV_90_99_2; + @ClientString(id = 531504, message = "|Lv. 90-99| To the Prison of Darkness") + public static NpcStringId LV_90_99_TO_THE_PRISON_OF_DARKNESS_2; - @ClientString(id = 531601, message = "Undecaying Memory of the Past (Lv. 90-99)") - public static NpcStringId UNDECAYING_MEMORY_OF_THE_PAST_LV_90_99; + @ClientString(id = 531601, message = "|Lv. 90-99| Undecaying Memory of the Past") + public static NpcStringId LV_90_99_UNDECAYING_MEMORY_OF_THE_PAST; - @ClientString(id = 531602, message = "Undecaying Memory of the Past (Lv. 90-99) (In Progress)") - public static NpcStringId UNDECAYING_MEMORY_OF_THE_PAST_LV_90_99_IN_PROGRESS; + @ClientString(id = 531602, message = "|Lv. 90-99| Undecaying Memory of the Past (In Progress)") + public static NpcStringId LV_90_99_UNDECAYING_MEMORY_OF_THE_PAST_IN_PROGRESS; - @ClientString(id = 531603, message = "Undecaying Memory of the Past (Lv. 90-99) (Done)") - public static NpcStringId UNDECAYING_MEMORY_OF_THE_PAST_LV_90_99_DONE; + @ClientString(id = 531603, message = "|Lv. 90-99| Undecaying Memory of the Past (Done)") + public static NpcStringId LV_90_99_UNDECAYING_MEMORY_OF_THE_PAST_DONE; - @ClientString(id = 531604, message = "Undecaying Memory of the Past (Lv. 90-99)") - public static NpcStringId UNDECAYING_MEMORY_OF_THE_PAST_LV_90_99_2; + @ClientString(id = 531604, message = "|Lv. 90-99| Undecaying Memory of the Past") + public static NpcStringId LV_90_99_UNDECAYING_MEMORY_OF_THE_PAST_2; - @ClientString(id = 531701, message = "Witch of Orbis (Lv. 95-99)") - public static NpcStringId WITCH_OF_ORBIS_LV_95_99; + @ClientString(id = 531701, message = "|Lv. 95-99| Witch of Orbis") + public static NpcStringId LV_95_99_WITCH_OF_ORBIS; - @ClientString(id = 531702, message = "Witch of Orbis (Lv. 95-99) (In Progress)") - public static NpcStringId WITCH_OF_ORBIS_LV_95_99_IN_PROGRESS; + @ClientString(id = 531702, message = "|Lv. 95-99| Witch of Orbis (In Progress)") + public static NpcStringId LV_95_99_WITCH_OF_ORBIS_IN_PROGRESS; - @ClientString(id = 531703, message = "Witch of Orbis (Lv. 95-99) (Done)") - public static NpcStringId WITCH_OF_ORBIS_LV_95_99_DONE; + @ClientString(id = 531703, message = "|Lv. 95-99| Witch of Orbis (Done)") + public static NpcStringId LV_95_99_WITCH_OF_ORBIS_DONE; - @ClientString(id = 531704, message = "Witch of Orbis (Lv. 95-99)") - public static NpcStringId WITCH_OF_ORBIS_LV_95_99_2; + @ClientString(id = 531704, message = "|Lv. 95-99| Witch of Orbis") + public static NpcStringId LV_95_99_WITCH_OF_ORBIS_2; - @ClientString(id = 531801, message = "Decaying Darkness (Lv. 95-99)") - public static NpcStringId DECAYING_DARKNESS_LV_95_99; + @ClientString(id = 531801, message = "|Lv. 95-99| Decaying Darkness") + public static NpcStringId LV_95_99_DECAYING_DARKNESS; - @ClientString(id = 531802, message = "Decaying Darkness (Lv. 95-99) (In progress)") - public static NpcStringId DECAYING_DARKNESS_LV_95_99_IN_PROGRESS; + @ClientString(id = 531802, message = "|Lv. 95-99| Decaying Darkness (In progress)") + public static NpcStringId LV_95_99_DECAYING_DARKNESS_IN_PROGRESS; - @ClientString(id = 531803, message = "Decaying Darkness (Lv. 95-99) (Done)") - public static NpcStringId DECAYING_DARKNESS_LV_95_99_DONE; + @ClientString(id = 531803, message = "|Lv. 95-99| Decaying Darkness (Done)") + public static NpcStringId LV_95_99_DECAYING_DARKNESS_DONE; - @ClientString(id = 531804, message = "Decaying Darkness (Lv. 95-99)") - public static NpcStringId DECAYING_DARKNESS_LV_95_99_2; + @ClientString(id = 531804, message = "|Lv. 95-99| Decaying Darkness") + public static NpcStringId LV_95_99_DECAYING_DARKNESS_2; - @ClientString(id = 532001, message = "Let's Go to the Central Square (Lv. 1-20)") - public static NpcStringId LET_S_GO_TO_THE_CENTRAL_SQUARE_LV_1_20; + @ClientString(id = 532001, message = "|Lv. 1-20| Let's Go to the Central Square") + public static NpcStringId LV_1_20_LET_S_GO_TO_THE_CENTRAL_SQUARE; - @ClientString(id = 532002, message = "Let's Go to the Central Square (Lv. 1-20) (In Progress)") - public static NpcStringId LET_S_GO_TO_THE_CENTRAL_SQUARE_LV_1_20_IN_PROGRESS; + @ClientString(id = 532002, message = "|Lv. 1-20| Let's Go to the Central Square (In Progress)") + public static NpcStringId LV_1_20_LET_S_GO_TO_THE_CENTRAL_SQUARE_IN_PROGRESS; - @ClientString(id = 532003, message = "Let's Go to the Central Square (Lv. 1-20) (Done)") - public static NpcStringId LET_S_GO_TO_THE_CENTRAL_SQUARE_LV_1_20_DONE; + @ClientString(id = 532003, message = "|Lv. 1-20| Let's Go to the Central Square (Done)") + public static NpcStringId LV_1_20_LET_S_GO_TO_THE_CENTRAL_SQUARE_DONE; - @ClientString(id = 532004, message = "Let's Go to the Central Square (Lv. 1-20)") - public static NpcStringId LET_S_GO_TO_THE_CENTRAL_SQUARE_LV_1_20_2; + @ClientString(id = 532004, message = "|Lv. 1-20| Let's Go to the Central Square") + public static NpcStringId LV_1_20_LET_S_GO_TO_THE_CENTRAL_SQUARE_2; - @ClientString(id = 532101, message = "Qualifications of the Seeker (Lv. 1-20)") - public static NpcStringId QUALIFICATIONS_OF_THE_SEEKER_LV_1_20; + @ClientString(id = 532101, message = "|Lv. 1-20| Qualifications of the Seeker") + public static NpcStringId LV_1_20_QUALIFICATIONS_OF_THE_SEEKER; - @ClientString(id = 532102, message = "Qualifications of the Seeker (Lv. 1-20) (In Progress)") - public static NpcStringId QUALIFICATIONS_OF_THE_SEEKER_LV_1_20_IN_PROGRESS; + @ClientString(id = 532102, message = "|Lv. 1-20| Qualifications of the Seeker (In Progress)") + public static NpcStringId LV_1_20_QUALIFICATIONS_OF_THE_SEEKER_IN_PROGRESS; - @ClientString(id = 532103, message = "Qualifications of the Seeker (Lv. 1-20) (Done)") - public static NpcStringId QUALIFICATIONS_OF_THE_SEEKER_LV_1_20_DONE; + @ClientString(id = 532103, message = "|Lv. 1-20| Qualifications of the Seeker (Done)") + public static NpcStringId LV_1_20_QUALIFICATIONS_OF_THE_SEEKER_DONE; - @ClientString(id = 532104, message = "Qualifications of the Seeker (Lv. 1-20)") - public static NpcStringId QUALIFICATIONS_OF_THE_SEEKER_LV_1_20_2; + @ClientString(id = 532104, message = "|Lv. 1-20| Qualifications of the Seeker") + public static NpcStringId LV_1_20_QUALIFICATIONS_OF_THE_SEEKER_2; - @ClientString(id = 532201, message = "Searching for the Mysterious Power (Lv. 1-20)") - public static NpcStringId SEARCHING_FOR_THE_MYSTERIOUS_POWER_LV_1_20; + @ClientString(id = 532201, message = "|Lv. 1-20| Searching for the Mysterious Power") + public static NpcStringId LV_1_20_SEARCHING_FOR_THE_MYSTERIOUS_POWER; - @ClientString(id = 532202, message = "Searching for the Mysterious Power (Lv. 1-20) (In Progress)") - public static NpcStringId SEARCHING_FOR_THE_MYSTERIOUS_POWER_LV_1_20_IN_PROGRESS; + @ClientString(id = 532202, message = "|Lv. 1-20| Searching for the Mysterious Power (In Progress)") + public static NpcStringId LV_1_20_SEARCHING_FOR_THE_MYSTERIOUS_POWER_IN_PROGRESS; - @ClientString(id = 532203, message = "Searching for the Mysterious Power (Lv. 1-20) (Done)") - public static NpcStringId SEARCHING_FOR_THE_MYSTERIOUS_POWER_LV_1_20_DONE; + @ClientString(id = 532203, message = "|Lv. 1-20| Searching for the Mysterious Power (Done)") + public static NpcStringId LV_1_20_SEARCHING_FOR_THE_MYSTERIOUS_POWER_DONE; - @ClientString(id = 532204, message = "Searching for the Mysterious Power (Lv. 1-20)") - public static NpcStringId SEARCHING_FOR_THE_MYSTERIOUS_POWER_LV_1_20_2; + @ClientString(id = 532204, message = "|Lv. 1-20| Searching for the Mysterious Power") + public static NpcStringId LV_1_20_SEARCHING_FOR_THE_MYSTERIOUS_POWER_2; - @ClientString(id = 532301, message = "Train Like It's Real (Lv. 1-20)") - public static NpcStringId TRAIN_LIKE_IT_S_REAL_LV_1_20; + @ClientString(id = 532301, message = "|Lv. 1-20| Train Like It's Real") + public static NpcStringId LV_1_20_TRAIN_LIKE_IT_S_REAL; - @ClientString(id = 532302, message = "Train Like It's Real (Lv. 1-20) (In Progress)") - public static NpcStringId TRAIN_LIKE_IT_S_REAL_LV_1_20_IN_PROGRESS; + @ClientString(id = 532302, message = "|Lv. 1-20| Train Like It's Real (In Progress)") + public static NpcStringId LV_1_20_TRAIN_LIKE_IT_S_REAL_IN_PROGRESS; - @ClientString(id = 532303, message = "Train Like It's Real (Lv. 1-20) (Complete)") - public static NpcStringId TRAIN_LIKE_IT_S_REAL_LV_1_20_COMPLETE; + @ClientString(id = 532303, message = "|Lv. 1-20| Train Like It's Real (Complete)") + public static NpcStringId LV_1_20_TRAIN_LIKE_IT_S_REAL_COMPLETE; - @ClientString(id = 532304, message = "Train Like It's Real (Lv. 1-20)") - public static NpcStringId TRAIN_LIKE_IT_S_REAL_LV_1_20_2; + @ClientString(id = 532304, message = "|Lv. 1-20| Train Like It's Real") + public static NpcStringId LV_1_20_TRAIN_LIKE_IT_S_REAL_2; @ClientString(id = 532311, message = "Eliminate the Training Golem") public static NpcStringId ELIMINATE_THE_TRAINING_GOLEM; @@ -11554,53 +11599,53 @@ public final class NpcStringId @ClientString(id = 532333, message = "Return to Shannon at Talking Island Village's basic training field.") public static NpcStringId RETURN_TO_SHANNON_AT_TALKING_ISLAND_VILLAGE_S_BASIC_TRAINING_FIELD; - @ClientString(id = 532401, message = "Finding Magister Gallint (Lv. 1-20)") - public static NpcStringId FINDING_MAGISTER_GALLINT_LV_1_20; + @ClientString(id = 532401, message = "|Lv. 1-20| Finding Magister Gallint") + public static NpcStringId LV_1_20_FINDING_MAGISTER_GALLINT; - @ClientString(id = 532402, message = "Finding Magister Gallint (Lv. 1-20) (In Progress)") - public static NpcStringId FINDING_MAGISTER_GALLINT_LV_1_20_IN_PROGRESS; + @ClientString(id = 532402, message = "|Lv. 1-20| Finding Magister Gallint (In Progress)") + public static NpcStringId LV_1_20_FINDING_MAGISTER_GALLINT_IN_PROGRESS; - @ClientString(id = 532403, message = "Finding Magister Gallint (Lv. 1-20) (Done)") - public static NpcStringId FINDING_MAGISTER_GALLINT_LV_1_20_DONE; + @ClientString(id = 532403, message = "|Lv. 1-20| Finding Magister Gallint (Done)") + public static NpcStringId LV_1_20_FINDING_MAGISTER_GALLINT_DONE; - @ClientString(id = 532404, message = "Finding Magister Gallint (Lv. 1-20)") - public static NpcStringId FINDING_MAGISTER_GALLINT_LV_1_20_2; + @ClientString(id = 532404, message = "|Lv. 1-20| Finding Magister Gallint") + public static NpcStringId LV_1_20_FINDING_MAGISTER_GALLINT_2; - @ClientString(id = 532501, message = "Searching for New Power (Lv. 1-20)") - public static NpcStringId SEARCHING_FOR_NEW_POWER_LV_1_20; + @ClientString(id = 532501, message = "|Lv. 1-20| Searching for New Power") + public static NpcStringId LV_1_20_SEARCHING_FOR_NEW_POWER; - @ClientString(id = 532502, message = "Searching for New Power (Lv. 1-20) (In Progress)") - public static NpcStringId SEARCHING_FOR_NEW_POWER_LV_1_20_IN_PROGRESS; + @ClientString(id = 532502, message = "|Lv. 1-20| Searching for New Power (In Progress)") + public static NpcStringId LV_1_20_SEARCHING_FOR_NEW_POWER_IN_PROGRESS; - @ClientString(id = 532503, message = "Searching for New Power (Lv. 1-20) (Done)") - public static NpcStringId SEARCHING_FOR_NEW_POWER_LV_1_20_DONE; + @ClientString(id = 532503, message = "|Lv. 1-20| Searching for New Power (Done)") + public static NpcStringId LV_1_20_SEARCHING_FOR_NEW_POWER_DONE; - @ClientString(id = 532504, message = "Searching for New Power (Lv. 1-20)") - public static NpcStringId SEARCHING_FOR_NEW_POWER_LV_1_20_2; + @ClientString(id = 532504, message = "|Lv. 1-20| Searching for New Power") + public static NpcStringId LV_1_20_SEARCHING_FOR_NEW_POWER_2; - @ClientString(id = 532601, message = "Respect Your Elders! (Lv. 1-20)") - public static NpcStringId RESPECT_YOUR_ELDERS_LV_1_20; + @ClientString(id = 532601, message = "|Lv. 1-20| Respect Your Elders!") + public static NpcStringId LV_1_20_RESPECT_YOUR_ELDERS; - @ClientString(id = 532602, message = "Respect Your Elders! (Lv. 1-20) (In Progress)") - public static NpcStringId RESPECT_YOUR_ELDERS_LV_1_20_IN_PROGRESS; + @ClientString(id = 532602, message = "|Lv. 1-20| Respect Your Elders! (In Progress)") + public static NpcStringId LV_1_20_RESPECT_YOUR_ELDERS_IN_PROGRESS; - @ClientString(id = 532603, message = "Respect Your Elders! (Lv. 1-20) (Done)") - public static NpcStringId RESPECT_YOUR_ELDERS_LV_1_20_DONE; + @ClientString(id = 532603, message = "|Lv. 1-20| Respect Your Elders! (Done)") + public static NpcStringId LV_1_20_RESPECT_YOUR_ELDERS_DONE; - @ClientString(id = 532604, message = "Respect Your Elders! (Lv. 1-20)") - public static NpcStringId RESPECT_YOUR_ELDERS_LV_1_20_2; + @ClientString(id = 532604, message = "|Lv. 1-20| Respect Your Elders!") + public static NpcStringId LV_1_20_RESPECT_YOUR_ELDERS_2; - @ClientString(id = 532701, message = "Intruder Who Wants the Book of Giants (Lv. 1-20)") - public static NpcStringId INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_LV_1_20; + @ClientString(id = 532701, message = "|Lv. 1-20| Intruder Who Wants the Book of Giants") + public static NpcStringId LV_1_20_INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS; - @ClientString(id = 532702, message = "Intruder Who Wants the Book of Giants (Lv. 1-20) (In Progress)") - public static NpcStringId INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_LV_1_20_IN_PROGRESS; + @ClientString(id = 532702, message = "|Lv. 1-20| Intruder Who Wants the Book of Giants (In Progress)") + public static NpcStringId LV_1_20_INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_IN_PROGRESS; - @ClientString(id = 532703, message = "Intruder Who Wants the Book of Giants (Lv. 1-20) (Done)") - public static NpcStringId INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_LV_1_20_DONE; + @ClientString(id = 532703, message = "|Lv. 1-20| Intruder Who Wants the Book of Giants (Done)") + public static NpcStringId LV_1_20_INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_DONE; - @ClientString(id = 532704, message = "Intruder Who Wants the Book of Giants (Lv. 1-20)") - public static NpcStringId INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_LV_1_20_2; + @ClientString(id = 532704, message = "|Lv. 1-20| Intruder Who Wants the Book of Giants") + public static NpcStringId LV_1_20_INTRUDER_WHO_WANTS_THE_BOOK_OF_GIANTS_2; @ClientString(id = 532731, message = "Among the 4 bookshelves, find the one containing a volume called 'The War of Gods and Giants'.") public static NpcStringId AMONG_THE_4_BOOKSHELVES_FIND_THE_ONE_CONTAINING_A_VOLUME_CALLED_THE_WAR_OF_GODS_AND_GIANTS; @@ -11608,152 +11653,152 @@ public final class NpcStringId @ClientString(id = 532732, message = "Talk to Toyron to return to the museum lobby.") public static NpcStringId TALK_TO_TOYRON_TO_RETURN_TO_THE_MUSEUM_LOBBY; - @ClientString(id = 532801, message = "Request to Seal the Evil Fragment (Lv. 1-20)") - public static NpcStringId REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_LV_1_20; + @ClientString(id = 532801, message = "|Lv. 1-20| Request to Seal the Evil Fragment") + public static NpcStringId LV_1_20_REQUEST_TO_SEAL_THE_EVIL_FRAGMENT; - @ClientString(id = 532802, message = "Request to Seal the Evil Fragment (Lv. 1-20) (In Progress)") - public static NpcStringId REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_LV_1_20_IN_PROGRESS; + @ClientString(id = 532802, message = "|Lv. 1-20| Request to Seal the Evil Fragment (In Progress)") + public static NpcStringId LV_1_20_REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_IN_PROGRESS; - @ClientString(id = 532803, message = "Request to Seal the Evil Fragment (Lv. 1-20) (Done)") - public static NpcStringId REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_LV_1_20_DONE; + @ClientString(id = 532803, message = "|Lv. 1-20| Request to Seal the Evil Fragment (Done)") + public static NpcStringId LV_1_20_REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_DONE; - @ClientString(id = 532804, message = "Request to Seal the Evil Fragment (Lv. 1-20)") - public static NpcStringId REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_LV_1_20_2; + @ClientString(id = 532804, message = "|Lv. 1-20| Request to Seal the Evil Fragment") + public static NpcStringId LV_1_20_REQUEST_TO_SEAL_THE_EVIL_FRAGMENT_2; - @ClientString(id = 532901, message = "Backup Seekers (Lv. 1-20)") - public static NpcStringId BACKUP_SEEKERS_LV_1_20; + @ClientString(id = 532901, message = "|Lv. 1-20| Backup Seekers") + public static NpcStringId LV_1_20_BACKUP_SEEKERS; - @ClientString(id = 532902, message = "Backup Seekers (Lv. 1-20) (In Progress)") - public static NpcStringId BACKUP_SEEKERS_LV_1_20_IN_PROGRESS; + @ClientString(id = 532902, message = "|Lv. 1-20| Backup Seekers (In Progress)") + public static NpcStringId LV_1_20_BACKUP_SEEKERS_IN_PROGRESS; - @ClientString(id = 532903, message = "Backup Seekers (Lv. 1-20) (Done)") - public static NpcStringId BACKUP_SEEKERS_LV_1_20_DONE; + @ClientString(id = 532903, message = "|Lv. 1-20| Backup Seekers (Done)") + public static NpcStringId LV_1_20_BACKUP_SEEKERS_DONE; - @ClientString(id = 532904, message = "Backup Seekers (Lv. 1-20)") - public static NpcStringId BACKUP_SEEKERS_LV_1_20_2; + @ClientString(id = 532904, message = "|Lv. 1-20| Backup Seekers") + public static NpcStringId LV_1_20_BACKUP_SEEKERS_2; - @ClientString(id = 533001, message = "To the Ruins of Ye Sagira (Lv. 8-20)") - public static NpcStringId TO_THE_RUINS_OF_YE_SAGIRA_LV_8_20; + @ClientString(id = 533001, message = "|Lv. 8-20| To the Ruins of Ye Sagira") + public static NpcStringId LV_8_20_TO_THE_RUINS_OF_YE_SAGIRA; - @ClientString(id = 533002, message = "To the Ruins of Ye Sagira (Lv. 8-20) (In Progress)") - public static NpcStringId TO_THE_RUINS_OF_YE_SAGIRA_LV_8_20_IN_PROGRESS; + @ClientString(id = 533002, message = "|Lv. 8-20| To the Ruins of Ye Sagira (In Progress)") + public static NpcStringId LV_8_20_TO_THE_RUINS_OF_YE_SAGIRA_IN_PROGRESS; - @ClientString(id = 533003, message = "To the Ruins of Ye Sagira (Lv. 8-20) (Done)") - public static NpcStringId TO_THE_RUINS_OF_YE_SAGIRA_LV_8_20_DONE; + @ClientString(id = 533003, message = "|Lv. 8-20| To the Ruins of Ye Sagira (Done)") + public static NpcStringId LV_8_20_TO_THE_RUINS_OF_YE_SAGIRA_DONE; - @ClientString(id = 533004, message = "To the Ruins of Ye Sagira (Lv. 8-20)") - public static NpcStringId TO_THE_RUINS_OF_YE_SAGIRA_LV_8_20_2; + @ClientString(id = 533004, message = "|Lv. 8-20| To the Ruins of Ye Sagira") + public static NpcStringId LV_8_20_TO_THE_RUINS_OF_YE_SAGIRA_2; - @ClientString(id = 533101, message = "Start of Fate (Lv. 18-99)") - public static NpcStringId START_OF_FATE_LV_18_99; + @ClientString(id = 533101, message = "|Lv. 18-99| Start of Fate") + public static NpcStringId LV_18_99_START_OF_FATE; - @ClientString(id = 533102, message = "Start of Fate (Lv. 18-99) (In Progress)") - public static NpcStringId START_OF_FATE_LV_18_99_IN_PROGRESS; + @ClientString(id = 533102, message = "|Lv. 18-99| Start of Fate (In Progress)") + public static NpcStringId LV_18_99_START_OF_FATE_IN_PROGRESS; - @ClientString(id = 533103, message = "Start of Fate (Lv. 18-99) (Done)") - public static NpcStringId START_OF_FATE_LV_18_99_DONE; + @ClientString(id = 533103, message = "|Lv. 18-99| Start of Fate (Done)") + public static NpcStringId LV_18_99_START_OF_FATE_DONE; - @ClientString(id = 533104, message = "Start of Fate (Lv. 18-99)") - public static NpcStringId START_OF_FATE_LV_18_99_2; + @ClientString(id = 533104, message = "|Lv. 18-99| Start of Fate") + public static NpcStringId LV_18_99_START_OF_FATE_2; @ClientString(id = 533131, message = "Go to the entrance of the Ruins of Ye Sagira through Gatekeeper Milia in Talking Island Village.") public static NpcStringId GO_TO_THE_ENTRANCE_OF_THE_RUINS_OF_YE_SAGIRA_THROUGH_GATEKEEPER_MILIA_IN_TALKING_ISLAND_VILLAGE; - @ClientString(id = 533201, message = "Tough Road (Lv. 20-40)") - public static NpcStringId TOUGH_ROAD_LV_20_40; + @ClientString(id = 533201, message = "|Lv. 20-40| Tough Road") + public static NpcStringId LV_20_40_TOUGH_ROAD; - @ClientString(id = 533202, message = "Tough Road (Lv. 20-40) (In Progress)") - public static NpcStringId TOUGH_ROAD_LV_20_40_IN_PROGRESS; + @ClientString(id = 533202, message = "|Lv. 20-40| Tough Road (In Progress)") + public static NpcStringId LV_20_40_TOUGH_ROAD_IN_PROGRESS; - @ClientString(id = 533203, message = "Tough Road (Lv. 20-40) (Done)") - public static NpcStringId TOUGH_ROAD_LV_20_40_DONE; + @ClientString(id = 533203, message = "|Lv. 20-40| Tough Road (Done)") + public static NpcStringId LV_20_40_TOUGH_ROAD_DONE; - @ClientString(id = 533204, message = "Tough Road (Lv. 20-40)") - public static NpcStringId TOUGH_ROAD_LV_20_40_2; + @ClientString(id = 533204, message = "|Lv. 20-40| Tough Road") + public static NpcStringId LV_20_40_TOUGH_ROAD_2; - @ClientString(id = 533301, message = "Disappeared Sakum (Lv. 18-40)") - public static NpcStringId DISAPPEARED_SAKUM_LV_18_40; + @ClientString(id = 533301, message = "|Lv. 18-40| Disappeared Sakum") + public static NpcStringId LV_18_40_DISAPPEARED_SAKUM; - @ClientString(id = 533302, message = "Disappeared Sakum (Lv. 18-40) (In Progress)") - public static NpcStringId DISAPPEARED_SAKUM_LV_18_40_IN_PROGRESS; + @ClientString(id = 533302, message = "|Lv. 18-40| Disappeared Sakum (In Progress)") + public static NpcStringId LV_18_40_DISAPPEARED_SAKUM_IN_PROGRESS; - @ClientString(id = 533303, message = "Disappeared Sakum (Lv. 18-40) (Done)") - public static NpcStringId DISAPPEARED_SAKUM_LV_18_40_DONE; + @ClientString(id = 533303, message = "|Lv. 18-40| Disappeared Sakum (Done)") + public static NpcStringId LV_18_40_DISAPPEARED_SAKUM_DONE; - @ClientString(id = 533304, message = "Disappeared Sakum (Lv. 18-40)") - public static NpcStringId DISAPPEARED_SAKUM_LV_18_40_2; + @ClientString(id = 533304, message = "|Lv. 18-40| Disappeared Sakum") + public static NpcStringId LV_18_40_DISAPPEARED_SAKUM_2; - @ClientString(id = 533401, message = "Reporting the Status of the Windmill Hill (Lv. 22-40)") - public static NpcStringId REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_LV_22_40; + @ClientString(id = 533401, message = "|Lv. 22-40| Reporting the Status of the Windmill Hill") + public static NpcStringId LV_22_40_REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL; - @ClientString(id = 533402, message = "Reporting the Status of the Windmill Hill (Lv. 22-40) (In Progress)") - public static NpcStringId REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_LV_22_40_IN_PROGRESS; + @ClientString(id = 533402, message = "|Lv. 22-40| Reporting the Status of the Windmill Hill (In Progress)") + public static NpcStringId LV_22_40_REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_IN_PROGRESS; - @ClientString(id = 533403, message = "Reporting the Status of the Windmill Hill (Lv. 22-40) (Done)") - public static NpcStringId REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_LV_22_40_DONE; + @ClientString(id = 533403, message = "|Lv. 22-40| Reporting the Status of the Windmill Hill (Done)") + public static NpcStringId LV_22_40_REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_DONE; - @ClientString(id = 533404, message = "Reporting the Status of the Windmill Hill (Lv. 22-40)") - public static NpcStringId REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_LV_22_40_2; + @ClientString(id = 533404, message = "|Lv. 22-40| Reporting the Status of the Windmill Hill") + public static NpcStringId LV_22_40_REPORTING_THE_STATUS_OF_THE_WINDMILL_HILL_2; - @ClientString(id = 533501, message = "Request to Find Sakum (Lv. 23-40)") - public static NpcStringId REQUEST_TO_FIND_SAKUM_LV_23_40; + @ClientString(id = 533501, message = "|Lv. 23-40| Request to Find Sakum") + public static NpcStringId LV_23_40_REQUEST_TO_FIND_SAKUM; - @ClientString(id = 533502, message = "Request to Find Sakum (Lv. 23-40) (In Progress)") - public static NpcStringId REQUEST_TO_FIND_SAKUM_LV_23_40_IN_PROGRESS; + @ClientString(id = 533502, message = "|Lv. 23-40| Request to Find Sakum (In Progress)") + public static NpcStringId LV_23_40_REQUEST_TO_FIND_SAKUM_IN_PROGRESS; - @ClientString(id = 533503, message = "Request to Find Sakum (Lv. 23-40) (Done)") - public static NpcStringId REQUEST_TO_FIND_SAKUM_LV_23_40_DONE; + @ClientString(id = 533503, message = "|Lv. 23-40| Request to Find Sakum (Done)") + public static NpcStringId LV_23_40_REQUEST_TO_FIND_SAKUM_DONE; - @ClientString(id = 533504, message = "Request to Find Sakum (Lv. 23-40)") - public static NpcStringId REQUEST_TO_FIND_SAKUM_LV_23_40_2; + @ClientString(id = 533504, message = "|Lv. 23-40| Request to Find Sakum") + public static NpcStringId LV_23_40_REQUEST_TO_FIND_SAKUM_2; - @ClientString(id = 533601, message = "Divided Sakum, Kanilov (Lv. 27-40)") - public static NpcStringId DIVIDED_SAKUM_KANILOV_LV_27_40; + @ClientString(id = 533601, message = "|Lv. 27-40| Divided Sakum, Kanilov") + public static NpcStringId LV_27_40_DIVIDED_SAKUM_KANILOV; - @ClientString(id = 533602, message = "Divided Sakum, Kanilov (Lv. 27-40) (In Progress)") - public static NpcStringId DIVIDED_SAKUM_KANILOV_LV_27_40_IN_PROGRESS; + @ClientString(id = 533602, message = "|Lv. 27-40| Divided Sakum, Kanilov (In Progress)") + public static NpcStringId LV_27_40_DIVIDED_SAKUM_KANILOV_IN_PROGRESS; - @ClientString(id = 533603, message = "Divided Sakum, Kanilov (Lv. 27-40) (Done)") - public static NpcStringId DIVIDED_SAKUM_KANILOV_LV_27_40_DONE; + @ClientString(id = 533603, message = "|Lv. 27-40| Divided Sakum, Kanilov (Done)") + public static NpcStringId LV_27_40_DIVIDED_SAKUM_KANILOV_DONE; - @ClientString(id = 533604, message = "Divided Sakum, Kanilov (Lv. 27-40)") - public static NpcStringId DIVIDED_SAKUM_KANILOV_LV_27_40_2; + @ClientString(id = 533604, message = "|Lv. 27-40| Divided Sakum, Kanilov") + public static NpcStringId LV_27_40_DIVIDED_SAKUM_KANILOV_2; - @ClientString(id = 533701, message = "Sakum's Influence (Lv. 28-40)") - public static NpcStringId SAKUM_S_INFLUENCE_LV_28_40; + @ClientString(id = 533701, message = "|Lv. 28-40| Sakum's Influence") + public static NpcStringId LV_28_40_SAKUM_S_INFLUENCE; - @ClientString(id = 533702, message = "Sakum's Influence (Lv. 28-40) (In Progress)") - public static NpcStringId SAKUM_S_INFLUENCE_LV_28_40_IN_PROGRESS; + @ClientString(id = 533702, message = "|Lv. 28-40| Sakum's Influence (In Progress)") + public static NpcStringId LV_28_40_SAKUM_S_INFLUENCE_IN_PROGRESS; - @ClientString(id = 533703, message = "Sakum's Influence (Lv. 28-40) (Done)") - public static NpcStringId SAKUM_S_INFLUENCE_LV_28_40_DONE; + @ClientString(id = 533703, message = "|Lv. 28-40| Sakum's Influence (Done)") + public static NpcStringId LV_28_40_SAKUM_S_INFLUENCE_DONE; - @ClientString(id = 533704, message = "Sakum's Influence (Lv. 28-40)") - public static NpcStringId SAKUM_S_INFLUENCE_LV_28_40_2; + @ClientString(id = 533704, message = "|Lv. 28-40| Sakum's Influence") + public static NpcStringId LV_28_40_SAKUM_S_INFLUENCE_2; - @ClientString(id = 533801, message = "Seize Your Destiny (Lv. 85-99)") - public static NpcStringId SEIZE_YOUR_DESTINY_LV_85_99; + @ClientString(id = 533801, message = "|Lv. 85-99| Seize Your Destiny") + public static NpcStringId LV_85_99_SEIZE_YOUR_DESTINY; - @ClientString(id = 533802, message = "Seize Your Destiny (Lv. 85-99) (In Progress)") - public static NpcStringId SEIZE_YOUR_DESTINY_LV_85_99_IN_PROGRESS; + @ClientString(id = 533802, message = "|Lv. 85-99| Seize Your Destiny (In Progress)") + public static NpcStringId LV_85_99_SEIZE_YOUR_DESTINY_IN_PROGRESS; - @ClientString(id = 533803, message = "Seize Your Destiny (Lv. 85-99) (Done)") - public static NpcStringId SEIZE_YOUR_DESTINY_LV_85_99_DONE; + @ClientString(id = 533803, message = "|Lv. 85-99| Seize Your Destiny (Done)") + public static NpcStringId LV_85_99_SEIZE_YOUR_DESTINY_DONE; - @ClientString(id = 533804, message = "Seize Your Destiny (Lv. 85-99)") - public static NpcStringId SEIZE_YOUR_DESTINY_LV_85_99_2; + @ClientString(id = 533804, message = "|Lv. 85-99| Seize Your Destiny") + public static NpcStringId LV_85_99_SEIZE_YOUR_DESTINY_2; - @ClientString(id = 533901, message = "Fighting the Forgotten (Lv. 85-99)") - public static NpcStringId FIGHTING_THE_FORGOTTEN_LV_85_99; + @ClientString(id = 533901, message = "|Lv. 85-99| Fighting the Forgotten") + public static NpcStringId LV_85_99_FIGHTING_THE_FORGOTTEN; - @ClientString(id = 533902, message = "Fighting the Forgotten (Lv. 85-99) (In Progress)") - public static NpcStringId FIGHTING_THE_FORGOTTEN_LV_85_99_IN_PROGRESS; + @ClientString(id = 533902, message = "|Lv. 85-99| Fighting the Forgotten (In Progress)") + public static NpcStringId LV_85_99_FIGHTING_THE_FORGOTTEN_IN_PROGRESS; - @ClientString(id = 533903, message = "Fighting the Forgotten (Lv. 85-99) (Complete)") - public static NpcStringId FIGHTING_THE_FORGOTTEN_LV_85_99_COMPLETE; + @ClientString(id = 533903, message = "|Lv. 85-99| Fighting the Forgotten (Complete)") + public static NpcStringId LV_85_99_FIGHTING_THE_FORGOTTEN_COMPLETE; - @ClientString(id = 533904, message = "Fighting the Forgotten (Lv. 85-99)") - public static NpcStringId FIGHTING_THE_FORGOTTEN_LV_85_99_2; + @ClientString(id = 533904, message = "|Lv. 85-99| Fighting the Forgotten") + public static NpcStringId LV_85_99_FIGHTING_THE_FORGOTTEN_2; @ClientString(id = 533911, message = "Conversation with Hadel") public static NpcStringId CONVERSATION_WITH_HADEL; @@ -11773,77 +11818,77 @@ public final class NpcStringId @ClientString(id = 534004, message = "Revived Power of the Giant") public static NpcStringId REVIVED_POWER_OF_THE_GIANT_2; - @ClientString(id = 534101, message = "Day of Fate - Human Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_HUMAN_FATE_LV_76_99; + @ClientString(id = 534101, message = "|Lv. 76-99| Day of Fate - Human Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_HUMAN_FATE; - @ClientString(id = 534102, message = "Day of Fate - Human Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_HUMAN_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534102, message = "|Lv. 76-99| Day of Fate - Human Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_HUMAN_FATE_IN_PROGRESS; - @ClientString(id = 534103, message = "Day of Fate - Human Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_HUMAN_FATE_LV_76_99_DONE; + @ClientString(id = 534103, message = "|Lv. 76-99| Day of Fate - Human Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_HUMAN_FATE_DONE; - @ClientString(id = 534104, message = "Day of Fate - Human Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_HUMAN_FATE_LV_76_99_2; + @ClientString(id = 534104, message = "|Lv. 76-99| Day of Fate - Human Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_HUMAN_FATE_2; - @ClientString(id = 534201, message = "Day of Fate - Elven Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_ELVEN_FATE_LV_76_99; + @ClientString(id = 534201, message = "|Lv. 76-99| Day of Fate - Elven Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_ELVEN_FATE; - @ClientString(id = 534202, message = "Day of Fate - Elven Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_ELVEN_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534202, message = "|Lv. 76-99| Day of Fate - Elven Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_ELVEN_FATE_IN_PROGRESS; - @ClientString(id = 534203, message = "Day of Fate - Elven Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_ELVEN_FATE_LV_76_99_DONE; + @ClientString(id = 534203, message = "|Lv. 76-99| Day of Fate - Elven Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_ELVEN_FATE_DONE; - @ClientString(id = 534204, message = "Day of Fate - Elven Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_ELVEN_FATE_LV_76_99_2; + @ClientString(id = 534204, message = "|Lv. 76-99| Day of Fate - Elven Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_ELVEN_FATE_2; - @ClientString(id = 534301, message = "Day of Fate - Dark Elven Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_DARK_ELVEN_FATE_LV_76_99; + @ClientString(id = 534301, message = "|Lv. 76-99| Day of Fate - Dark Elven Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_DARK_ELVEN_FATE; - @ClientString(id = 534302, message = "Day of Fate - Dark Elven Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_DARK_ELVEN_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534302, message = "|Lv. 76-99| Day of Fate - Dark Elven Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_DARK_ELVEN_FATE_IN_PROGRESS; - @ClientString(id = 534303, message = "Day of Fate - Dark Elven Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_DARK_ELVEN_FATE_LV_76_99_DONE; + @ClientString(id = 534303, message = "|Lv. 76-99| Day of Fate - Dark Elven Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_DARK_ELVEN_FATE_DONE; - @ClientString(id = 534304, message = "Day of Fate - Dark Elven Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_DARK_ELVEN_FATE_LV_76_99_2; + @ClientString(id = 534304, message = "|Lv. 76-99| Day of Fate - Dark Elven Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_DARK_ELVEN_FATE_2; - @ClientString(id = 534401, message = "Day of Fate - Orc's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_ORC_S_FATE_LV_76_99; + @ClientString(id = 534401, message = "|Lv. 76-99| Day of Fate - Orc's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_ORC_S_FATE; - @ClientString(id = 534402, message = "Day of Fate - Orc's Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_ORC_S_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534402, message = "|Lv. 76-99| Day of Fate - Orc's Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_ORC_S_FATE_IN_PROGRESS; - @ClientString(id = 534403, message = "Day of Fate - Orc's Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_ORC_S_FATE_LV_76_99_DONE; + @ClientString(id = 534403, message = "|Lv. 76-99| Day of Fate - Orc's Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_ORC_S_FATE_DONE; - @ClientString(id = 534404, message = "Day of Fate - Orc's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_ORC_S_FATE_LV_76_99_2; + @ClientString(id = 534404, message = "|Lv. 76-99| Day of Fate - Orc's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_ORC_S_FATE_2; - @ClientString(id = 534501, message = "Day of Fate - Dwarf's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_DWARF_S_FATE_LV_76_99; + @ClientString(id = 534501, message = "|Lv. 76-99| Day of Fate - Dwarf's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_DWARF_S_FATE; - @ClientString(id = 534502, message = "Day of Fate - Dwarf's Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_DWARF_S_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534502, message = "|Lv. 76-99| Day of Fate - Dwarf's Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_DWARF_S_FATE_IN_PROGRESS; - @ClientString(id = 534503, message = "Day of Fate - Dwarf's Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_DWARF_S_FATE_LV_76_99_DONE; + @ClientString(id = 534503, message = "|Lv. 76-99| Day of Fate - Dwarf's Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_DWARF_S_FATE_DONE; - @ClientString(id = 534504, message = "Day of Fate - Dwarf's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_DWARF_S_FATE_LV_76_99_2; + @ClientString(id = 534504, message = "|Lv. 76-99| Day of Fate - Dwarf's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_DWARF_S_FATE_2; - @ClientString(id = 534601, message = "Day of Fate - Kamael's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_KAMAEL_S_FATE_LV_76_99; + @ClientString(id = 534601, message = "|Lv. 76-99| Day of Fate - Kamael's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_KAMAEL_S_FATE; - @ClientString(id = 534602, message = "Day of Fate - Kamael's Fate (Lv. 76-99) (In Progress)") - public static NpcStringId DAY_OF_FATE_KAMAEL_S_FATE_LV_76_99_IN_PROGRESS; + @ClientString(id = 534602, message = "|Lv. 76-99| Day of Fate - Kamael's Fate (In Progress)") + public static NpcStringId LV_76_99_DAY_OF_FATE_KAMAEL_S_FATE_IN_PROGRESS; - @ClientString(id = 534603, message = "Day of Fate - Kamael's Fate (Lv. 76-99) (Done)") - public static NpcStringId DAY_OF_FATE_KAMAEL_S_FATE_LV_76_99_DONE; + @ClientString(id = 534603, message = "|Lv. 76-99| Day of Fate - Kamael's Fate (Done)") + public static NpcStringId LV_76_99_DAY_OF_FATE_KAMAEL_S_FATE_DONE; - @ClientString(id = 534604, message = "Day of Fate - Kamael's Fate (Lv. 76-99)") - public static NpcStringId DAY_OF_FATE_KAMAEL_S_FATE_LV_76_99_2; + @ClientString(id = 534604, message = "|Lv. 76-99| Day of Fate - Kamael's Fate") + public static NpcStringId LV_76_99_DAY_OF_FATE_KAMAEL_S_FATE_2; @ClientString(id = 534701, message = "Seven Sign, Destruction Came about like that") public static NpcStringId SEVEN_SIGN_DESTRUCTION_CAME_ABOUT_LIKE_THAT; @@ -11893,113 +11938,113 @@ public final class NpcStringId @ClientString(id = 535004, message = "Mother of Monstrosities") public static NpcStringId MOTHER_OF_MONSTROSITIES_2; - @ClientString(id = 535101, message = "Owner of Hall (Lv. 95-99)") - public static NpcStringId OWNER_OF_HALL_LV_95_99; + @ClientString(id = 535101, message = "|Lv. 95-99| Owner of Hall") + public static NpcStringId LV_95_99_OWNER_OF_HALL; - @ClientString(id = 535102, message = "Owner of Hall (Lv. 95-99) (In Progress)") - public static NpcStringId OWNER_OF_HALL_LV_95_99_IN_PROGRESS; + @ClientString(id = 535102, message = "|Lv. 95-99| Owner of Hall (In Progress)") + public static NpcStringId LV_95_99_OWNER_OF_HALL_IN_PROGRESS; - @ClientString(id = 535103, message = "Owner of Hall (Lv. 95-99) (Done)") - public static NpcStringId OWNER_OF_HALL_LV_95_99_DONE; + @ClientString(id = 535103, message = "|Lv. 95-99| Owner of Hall (Done)") + public static NpcStringId LV_95_99_OWNER_OF_HALL_DONE; - @ClientString(id = 535104, message = "Owner of Hall (Lv. 95-99)") - public static NpcStringId OWNER_OF_HALL_LV_95_99_2; + @ClientString(id = 535104, message = "|Lv. 95-99| Owner of Hall") + public static NpcStringId LV_95_99_OWNER_OF_HALL_2; - @ClientString(id = 535201, message = "Legacy of Cruma Tower (Lv. 38-99)") - public static NpcStringId LEGACY_OF_CRUMA_TOWER_LV_38_99; + @ClientString(id = 535201, message = "|Lv. 38-99| Legacy of Cruma Tower") + public static NpcStringId LV_38_99_LEGACY_OF_CRUMA_TOWER; - @ClientString(id = 535202, message = "Legacy of Cruma Tower (Lv. 38-99) (In Progress)") - public static NpcStringId LEGACY_OF_CRUMA_TOWER_LV_38_99_IN_PROGRESS; + @ClientString(id = 535202, message = "|Lv. 38-99| Legacy of Cruma Tower (In Progress)") + public static NpcStringId LV_38_99_LEGACY_OF_CRUMA_TOWER_IN_PROGRESS; - @ClientString(id = 535203, message = "Legacy of Cruma Tower (Lv. 38-99) (Done)") - public static NpcStringId LEGACY_OF_CRUMA_TOWER_LV_38_99_DONE; + @ClientString(id = 535203, message = "|Lv. 38-99| Legacy of Cruma Tower (Done)") + public static NpcStringId LV_38_99_LEGACY_OF_CRUMA_TOWER_DONE; - @ClientString(id = 535204, message = "Legacy of Cruma Tower (Lv. 38-99)") - public static NpcStringId LEGACY_OF_CRUMA_TOWER_LV_38_99_2; + @ClientString(id = 535204, message = "|Lv. 38-99| Legacy of Cruma Tower") + public static NpcStringId LV_38_99_LEGACY_OF_CRUMA_TOWER_2; - @ClientString(id = 535301, message = "Certification of Value (Lv. 48-99)") - public static NpcStringId CERTIFICATION_OF_VALUE_LV_48_99; + @ClientString(id = 535301, message = "|Lv. 48-99| Certification of Value") + public static NpcStringId LV_48_99_CERTIFICATION_OF_VALUE; - @ClientString(id = 535302, message = "Certification of Value (Lv. 48-99) (In Progress)") - public static NpcStringId CERTIFICATION_OF_VALUE_LV_48_99_IN_PROGRESS; + @ClientString(id = 535302, message = "|Lv. 48-99| Certification of Value (In Progress)") + public static NpcStringId LV_48_99_CERTIFICATION_OF_VALUE_IN_PROGRESS; - @ClientString(id = 535303, message = "Certification of Value (Lv. 48-99) (Done)") - public static NpcStringId CERTIFICATION_OF_VALUE_LV_48_99_DONE; + @ClientString(id = 535303, message = "|Lv. 48-99| Certification of Value (Done)") + public static NpcStringId LV_48_99_CERTIFICATION_OF_VALUE_DONE; - @ClientString(id = 535304, message = "Certification of Value (Lv. 48-99)") - public static NpcStringId CERTIFICATION_OF_VALUE_LV_48_99_2; + @ClientString(id = 535304, message = "|Lv. 48-99| Certification of Value") + public static NpcStringId LV_48_99_CERTIFICATION_OF_VALUE_2; - @ClientString(id = 535401, message = "Resurrected Owner of Hall (Lv. 95-99)") - public static NpcStringId RESURRECTED_OWNER_OF_HALL_LV_95_99; + @ClientString(id = 535401, message = "|Lv. 95-99| Resurrected Owner of Hall") + public static NpcStringId LV_95_99_RESURRECTED_OWNER_OF_HALL; - @ClientString(id = 535402, message = "Resurrected Owner of Hall (Lv. 95-99) (In Progress)") - public static NpcStringId RESURRECTED_OWNER_OF_HALL_LV_95_99_IN_PROGRESS; + @ClientString(id = 535402, message = "|Lv. 95-99| Resurrected Owner of Hall (In Progress)") + public static NpcStringId LV_95_99_RESURRECTED_OWNER_OF_HALL_IN_PROGRESS; - @ClientString(id = 535403, message = "Resurrected Owner of Hall (Lv. 95-99) (Done)") - public static NpcStringId RESURRECTED_OWNER_OF_HALL_LV_95_99_DONE; + @ClientString(id = 535403, message = "|Lv. 95-99| Resurrected Owner of Hall (Done)") + public static NpcStringId LV_95_99_RESURRECTED_OWNER_OF_HALL_DONE; - @ClientString(id = 535404, message = "Resurrected Owner of Hall (Lv. 95-99)") - public static NpcStringId RESURRECTED_OWNER_OF_HALL_LV_95_99_2; + @ClientString(id = 535404, message = "|Lv. 95-99| Resurrected Owner of Hall") + public static NpcStringId LV_95_99_RESURRECTED_OWNER_OF_HALL_2; - @ClientString(id = 535701, message = "Altar of Blood that Awakens Destruction (Lv. 95-99)") - public static NpcStringId ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_LV_95_99; + @ClientString(id = 535701, message = "|Lv. 95-99| Altar of Blood that Awakens Destruction") + public static NpcStringId LV_95_99_ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION; - @ClientString(id = 535702, message = "Altar of Blood that Awakens Destruction (Lv. 95-99) (In Progress)") - public static NpcStringId ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_LV_95_99_IN_PROGRESS; + @ClientString(id = 535702, message = "|Lv. 95-99| Altar of Blood that Awakens Destruction (In Progress)") + public static NpcStringId LV_95_99_ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_IN_PROGRESS; - @ClientString(id = 535703, message = "Altar of Blood that Awakens Destruction (Lv. 95-99) (Done)") - public static NpcStringId ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_LV_95_99_DONE; + @ClientString(id = 535703, message = "|Lv. 95-99| Altar of Blood that Awakens Destruction (Done)") + public static NpcStringId LV_95_99_ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_DONE; - @ClientString(id = 535704, message = "Altar of Blood that Awakens Destruction (Lv. 95-99)") - public static NpcStringId ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_LV_95_99_2; + @ClientString(id = 535704, message = "|Lv. 95-99| Altar of Blood that Awakens Destruction") + public static NpcStringId LV_95_99_ALTAR_OF_BLOOD_THAT_AWAKENS_DESTRUCTION_2; - @ClientString(id = 535801, message = "Divided Sakum, Poslof (Lv. 33-40)") - public static NpcStringId DIVIDED_SAKUM_POSLOF_LV_33_40; + @ClientString(id = 535801, message = "|Lv. 33-40| Divided Sakum, Poslof") + public static NpcStringId LV_33_40_DIVIDED_SAKUM_POSLOF; - @ClientString(id = 535802, message = "Divided Sakum, Poslof (Lv. 33-40) (In Progress)") - public static NpcStringId DIVIDED_SAKUM_POSLOF_LV_33_40_IN_PROGRESS; + @ClientString(id = 535802, message = "|Lv. 33-40| Divided Sakum, Poslof (In Progress)") + public static NpcStringId LV_33_40_DIVIDED_SAKUM_POSLOF_IN_PROGRESS; - @ClientString(id = 535803, message = "Divided Sakum, Poslof (Lv. 33-40) (In Progress)") - public static NpcStringId DIVIDED_SAKUM_POSLOF_LV_33_40_IN_PROGRESS_2; + @ClientString(id = 535803, message = "|Lv. 33-40| Divided Sakum, Poslof (Done)") + public static NpcStringId LV_33_40_DIVIDED_SAKUM_POSLOF_DONE; - @ClientString(id = 535804, message = "Divided Sakum, Poslof (Lv. 33-40)") - public static NpcStringId DIVIDED_SAKUM_POSLOF_LV_33_40_2; + @ClientString(id = 535804, message = "|Lv. 33-40| Divided Sakum, Poslof") + public static NpcStringId LV_33_40_DIVIDED_SAKUM_POSLOF_2; - @ClientString(id = 535901, message = "Traces of Evil (Lv. 34-40)") - public static NpcStringId TRACES_OF_EVIL_LV_34_40; + @ClientString(id = 535901, message = "|Lv. 34-40| Traces of Evil") + public static NpcStringId LV_34_40_TRACES_OF_EVIL; - @ClientString(id = 535902, message = "Traces of Evil (Lv. 34-40) (In Progress)") - public static NpcStringId TRACES_OF_EVIL_LV_34_40_IN_PROGRESS; + @ClientString(id = 535902, message = "|Lv. 34-40| Traces of Evil (In Progress)") + public static NpcStringId LV_34_40_TRACES_OF_EVIL_IN_PROGRESS; - @ClientString(id = 535903, message = "Traces of Evil (Lv. 34-40) (Done)") - public static NpcStringId TRACES_OF_EVIL_LV_34_40_DONE; + @ClientString(id = 535903, message = "|Lv. 34-40| Traces of Evil (Done)") + public static NpcStringId LV_34_40_TRACES_OF_EVIL_DONE; - @ClientString(id = 535904, message = "Traces of Evil (Lv. 34-40)") - public static NpcStringId TRACES_OF_EVIL_LV_34_40_2; + @ClientString(id = 535904, message = "|Lv. 34-40| Traces of Evil") + public static NpcStringId LV_34_40_TRACES_OF_EVIL_2; - @ClientString(id = 536001, message = "Certification of Fate (Lv. 38-99)") - public static NpcStringId CERTIFICATION_OF_FATE_LV_38_99; + @ClientString(id = 536001, message = "|Lv. 38-99| Certification of Fate") + public static NpcStringId LV_38_99_CERTIFICATION_OF_FATE; - @ClientString(id = 536002, message = "Certification of Fate (Lv. 38-99) (In Progress)") - public static NpcStringId CERTIFICATION_OF_FATE_LV_38_99_IN_PROGRESS; + @ClientString(id = 536002, message = "|Lv. 38-99| Certification of Fate (In Progress)") + public static NpcStringId LV_38_99_CERTIFICATION_OF_FATE_IN_PROGRESS; - @ClientString(id = 536003, message = "Certification of Fate (Lv. 38-99) (Done)") - public static NpcStringId CERTIFICATION_OF_FATE_LV_38_99_DONE; + @ClientString(id = 536003, message = "|Lv. 38-99| Certification of Fate (Done)") + public static NpcStringId LV_38_99_CERTIFICATION_OF_FATE_DONE; - @ClientString(id = 536004, message = "Certification of Fate (Lv. 38-99)") - public static NpcStringId CERTIFICATION_OF_FATE_LV_38_99_2; + @ClientString(id = 536004, message = "|Lv. 38-99| Certification of Fate") + public static NpcStringId LV_38_99_CERTIFICATION_OF_FATE_2; - @ClientString(id = 536101, message = "Roles of the Seeker (Lv. 10-20)") - public static NpcStringId ROLES_OF_THE_SEEKER_LV_10_20; + @ClientString(id = 536101, message = "|Lv. 10-20| Roles of the Seeker") + public static NpcStringId LV_10_20_ROLES_OF_THE_SEEKER; - @ClientString(id = 536102, message = "Roles of the Seeker (Lv. 10-20) (In Progress)") - public static NpcStringId ROLES_OF_THE_SEEKER_LV_10_20_IN_PROGRESS; + @ClientString(id = 536102, message = "|Lv. 10-20| Roles of the Seeker (In Progress)") + public static NpcStringId LV_10_20_ROLES_OF_THE_SEEKER_IN_PROGRESS; - @ClientString(id = 536103, message = "Roles of the Seeker (Lv. 10-20) (Done)") - public static NpcStringId ROLES_OF_THE_SEEKER_LV_10_20_DONE; + @ClientString(id = 536103, message = "|Lv. 10-20| Roles of the Seeker (Done)") + public static NpcStringId LV_10_20_ROLES_OF_THE_SEEKER_DONE; - @ClientString(id = 536104, message = "Roles of the Seeker (Lv. 10-20)") - public static NpcStringId ROLES_OF_THE_SEEKER_LV_10_20_2; + @ClientString(id = 536104, message = "|Lv. 10-20| Roles of the Seeker") + public static NpcStringId LV_10_20_ROLES_OF_THE_SEEKER_2; @ClientString(id = 536131, message = "Enter the Ruins of Ye Sagira through the Ye Sagira Teleport Device.") public static NpcStringId ENTER_THE_RUINS_OF_YE_SAGIRA_THROUGH_THE_YE_SAGIRA_TELEPORT_DEVICE; @@ -12007,125 +12052,125 @@ public final class NpcStringId @ClientString(id = 536132, message = "Use the Ye Sagira Teleport Device to go to Exploration Area 1.") public static NpcStringId USE_THE_YE_SAGIRA_TELEPORT_DEVICE_TO_GO_TO_EXPLORATION_AREA_1; - @ClientString(id = 536201, message = "Certification of the Seeker (Lv. 10-20)") - public static NpcStringId CERTIFICATION_OF_THE_SEEKER_LV_10_20; + @ClientString(id = 536201, message = "|Lv. 10-20| Certification of the Seeker") + public static NpcStringId LV_10_20_CERTIFICATION_OF_THE_SEEKER; - @ClientString(id = 536202, message = "Certification of the Seeker (Lv. 10-20) (In Progress)") - public static NpcStringId CERTIFICATION_OF_THE_SEEKER_LV_10_20_IN_PROGRESS; + @ClientString(id = 536202, message = "|Lv. 10-20| Certification of the Seeker (In Progress)") + public static NpcStringId LV_10_20_CERTIFICATION_OF_THE_SEEKER_IN_PROGRESS; - @ClientString(id = 536203, message = "Certification of the Seeker (Lv. 10-20) (Done)") - public static NpcStringId CERTIFICATION_OF_THE_SEEKER_LV_10_20_DONE; + @ClientString(id = 536203, message = "|Lv. 10-20| Certification of the Seeker (Done)") + public static NpcStringId LV_10_20_CERTIFICATION_OF_THE_SEEKER_DONE; - @ClientString(id = 536204, message = "Certification of the Seeker (Lv. 10-20)") - public static NpcStringId CERTIFICATION_OF_THE_SEEKER_LV_10_20_2; + @ClientString(id = 536204, message = "|Lv. 10-20| Certification of the Seeker") + public static NpcStringId LV_10_20_CERTIFICATION_OF_THE_SEEKER_2; @ClientString(id = 536233, message = "Use the Ye Sagira Teleport Device to go to Exploration Area 2.") public static NpcStringId USE_THE_YE_SAGIRA_TELEPORT_DEVICE_TO_GO_TO_EXPLORATION_AREA_2; - @ClientString(id = 536301, message = "Request of the Seeker (Lv. 12-20)") - public static NpcStringId REQUEST_OF_THE_SEEKER_LV_12_20; + @ClientString(id = 536301, message = "|Lv. 12-20| Request of the Seeker") + public static NpcStringId LV_12_20_REQUEST_OF_THE_SEEKER; - @ClientString(id = 536302, message = "Request of the Seeker (Lv. 12-20) (In Progress)") - public static NpcStringId REQUEST_OF_THE_SEEKER_LV_12_20_IN_PROGRESS; + @ClientString(id = 536302, message = "|Lv. 12-20| Request of the Seeker (In Progress)") + public static NpcStringId LV_12_20_REQUEST_OF_THE_SEEKER_IN_PROGRESS; - @ClientString(id = 536303, message = "Request of the Seeker (Lv. 12-20) (Done)") - public static NpcStringId REQUEST_OF_THE_SEEKER_LV_12_20_DONE; + @ClientString(id = 536303, message = "|Lv. 12-20| Request of the Seeker (Done)") + public static NpcStringId LV_12_20_REQUEST_OF_THE_SEEKER_DONE; - @ClientString(id = 536304, message = "Request of the Seeker (Lv. 12-20)") - public static NpcStringId REQUEST_OF_THE_SEEKER_LV_12_20_2; + @ClientString(id = 536304, message = "|Lv. 12-20| Request of the Seeker") + public static NpcStringId LV_12_20_REQUEST_OF_THE_SEEKER_2; @ClientString(id = 536341, message = "Use the Ye Sagira Teleport Device to go to Exploration Area 3.") public static NpcStringId USE_THE_YE_SAGIRA_TELEPORT_DEVICE_TO_GO_TO_EXPLORATION_AREA_3; - @ClientString(id = 536401, message = "Obligations of the Seeker (Lv. 14-25)") - public static NpcStringId OBLIGATIONS_OF_THE_SEEKER_LV_14_25; + @ClientString(id = 536401, message = "|Lv. 14-25| Obligations of the Seeker (Lv. 14-25)") + public static NpcStringId LV_14_25_OBLIGATIONS_OF_THE_SEEKER_LV_14_25; - @ClientString(id = 536402, message = "Obligations of the Seeker (Lv. 14-25) (In Progress)") - public static NpcStringId OBLIGATIONS_OF_THE_SEEKER_LV_14_25_IN_PROGRESS; + @ClientString(id = 536402, message = "|Lv. 14-25| Obligations of the Seeker (Lv. 14-25) (In Progress)") + public static NpcStringId LV_14_25_OBLIGATIONS_OF_THE_SEEKER_LV_14_25_IN_PROGRESS; - @ClientString(id = 536403, message = "Obligations of the Seeker (Lv. 14-25) (Done)") - public static NpcStringId OBLIGATIONS_OF_THE_SEEKER_LV_14_25_DONE; + @ClientString(id = 536403, message = "|Lv. 14-25| Obligations of the Seeker (Lv. 14-25) (Done)") + public static NpcStringId LV_14_25_OBLIGATIONS_OF_THE_SEEKER_LV_14_25_DONE; - @ClientString(id = 536404, message = "Obligations of the Seeker (Lv. 14-25)") - public static NpcStringId OBLIGATIONS_OF_THE_SEEKER_LV_14_25_2; + @ClientString(id = 536404, message = "|Lv. 14-25| Obligations of the Seeker (Lv. 14-25)") + public static NpcStringId LV_14_25_OBLIGATIONS_OF_THE_SEEKER_LV_14_25_2; @ClientString(id = 536442, message = "Use the Ye Sagira Teleport Device to go to Exploration Area 4.") public static NpcStringId USE_THE_YE_SAGIRA_TELEPORT_DEVICE_TO_GO_TO_EXPLORATION_AREA_4; - @ClientString(id = 536501, message = "Seeker Escort (Lv. 16-25)") - public static NpcStringId SEEKER_ESCORT_LV_16_25; + @ClientString(id = 536501, message = "|Lv. 16-25| Seeker Escort") + public static NpcStringId LV_16_25_SEEKER_ESCORT; - @ClientString(id = 536502, message = "Seeker Escort (Lv. 16-25) (In Progress)") - public static NpcStringId SEEKER_ESCORT_LV_16_25_IN_PROGRESS; + @ClientString(id = 536502, message = "|Lv. 16-25| Seeker Escort (In Progress)") + public static NpcStringId LV_16_25_SEEKER_ESCORT_IN_PROGRESS; - @ClientString(id = 536503, message = "Seeker Escort (Lv. 16-25) (Done)") - public static NpcStringId SEEKER_ESCORT_LV_16_25_DONE; + @ClientString(id = 536503, message = "|Lv. 16-25| Seeker Escort (Done)") + public static NpcStringId LV_16_25_SEEKER_ESCORT_DONE; - @ClientString(id = 536504, message = "Seeker Escort (Lv. 16-25)") - public static NpcStringId SEEKER_ESCORT_LV_16_25_2; + @ClientString(id = 536504, message = "|Lv. 16-25| Seeker Escort") + public static NpcStringId LV_16_25_SEEKER_ESCORT_2; - @ClientString(id = 536601, message = "Ruins Status Update (Lv. 16-25)") - public static NpcStringId RUINS_STATUS_UPDATE_LV_16_25; + @ClientString(id = 536601, message = "|Lv. 16-25| Ruins Status Update") + public static NpcStringId LV_16_25_RUINS_STATUS_UPDATE; - @ClientString(id = 536602, message = "Ruins Status Update (Lv. 16-25) (In Progress)") - public static NpcStringId RUINS_STATUS_UPDATE_LV_16_25_IN_PROGRESS; + @ClientString(id = 536602, message = "|Lv. 16-25| Ruins Status Update (In Progress)") + public static NpcStringId LV_16_25_RUINS_STATUS_UPDATE_IN_PROGRESS; - @ClientString(id = 536603, message = "Ruins Status Update (Lv. 16-25) (Done)") - public static NpcStringId RUINS_STATUS_UPDATE_LV_16_25_DONE; + @ClientString(id = 536603, message = "|Lv. 16-25| Ruins Status Update (Done)") + public static NpcStringId LV_16_25_RUINS_STATUS_UPDATE_DONE; - @ClientString(id = 536604, message = "Ruins Status Update (Lv. 16-25)") - public static NpcStringId RUINS_STATUS_UPDATE_LV_16_25_2; + @ClientString(id = 536604, message = "|Lv. 16-25| Ruins Status Update") + public static NpcStringId LV_16_25_RUINS_STATUS_UPDATE_2; @ClientString(id = 536631, message = "Use the escape scroll in your inventory to go to the Administrative Office in Talking Island.") public static NpcStringId USE_THE_ESCAPE_SCROLL_IN_YOUR_INVENTORY_TO_GO_TO_THE_ADMINISTRATIVE_OFFICE_IN_TALKING_ISLAND; - @ClientString(id = 536701, message = "Start of Fate (Lv. 18-99)") - public static NpcStringId START_OF_FATE_LV_18_99_3; + @ClientString(id = 536701, message = "|Lv. 18-99| Start of Fate") + public static NpcStringId LV_18_99_START_OF_FATE_3; - @ClientString(id = 536702, message = "Start of Fate (Lv. 18-99) (In Progress)") - public static NpcStringId START_OF_FATE_LV_18_99_IN_PROGRESS_2; + @ClientString(id = 536702, message = "|Lv. 18-99| Start of Fate (In Progress)") + public static NpcStringId LV_18_99_START_OF_FATE_IN_PROGRESS_2; - @ClientString(id = 536703, message = "Start of Fate (Lv. 18-99) (Done)") - public static NpcStringId START_OF_FATE_LV_18_99_DONE_2; + @ClientString(id = 536703, message = "|Lv. 18-99| Start of Fate (Done)") + public static NpcStringId LV_18_99_START_OF_FATE_DONE_2; - @ClientString(id = 536704, message = "Start of Fate (Lv. 18-99)") - public static NpcStringId START_OF_FATE_LV_18_99_4; + @ClientString(id = 536704, message = "|Lv. 18-99| Start of Fate") + public static NpcStringId LV_18_99_START_OF_FATE_4; - @ClientString(id = 536801, message = "Monster Uprising (Lv. 34-40)") - public static NpcStringId MONSTER_UPRISING_LV_34_40; + @ClientString(id = 536801, message = "|Lv. 34-40| Monster Uprising") + public static NpcStringId LV_34_40_MONSTER_UPRISING; - @ClientString(id = 536802, message = "Monster Uprising (Lv. 34-40) (In Progress)") - public static NpcStringId MONSTER_UPRISING_LV_34_40_IN_PROGRESS; + @ClientString(id = 536802, message = "|Lv. 34-40| Monster Uprising (In Progress)") + public static NpcStringId LV_34_40_MONSTER_UPRISING_IN_PROGRESS; - @ClientString(id = 536803, message = "Monster Uprising (Lv. 34-40) (Done)") - public static NpcStringId MONSTER_UPRISING_LV_34_40_DONE; + @ClientString(id = 536803, message = "|Lv. 34-40| Monster Uprising (Done)") + public static NpcStringId LV_34_40_MONSTER_UPRISING_DONE; - @ClientString(id = 536804, message = "Monster Uprising (Lv. 34-40)") - public static NpcStringId MONSTER_UPRISING_LV_34_40_2; + @ClientString(id = 536804, message = "|Lv. 34-40| Monster Uprising") + public static NpcStringId LV_34_40_MONSTER_UPRISING_2; - @ClientString(id = 536901, message = "Noblesse, Soul Testing (Lv. 75-99)") - public static NpcStringId NOBLESSE_SOUL_TESTING_LV_75_99; + @ClientString(id = 536901, message = "|Lv. 75-99| Noblesse, Soul Testing") + public static NpcStringId LV_75_99_NOBLESSE_SOUL_TESTING; - @ClientString(id = 536902, message = "Noblesse, Soul Testing (Lv. 75-99) (In Progress)") - public static NpcStringId NOBLESSE_SOUL_TESTING_LV_75_99_IN_PROGRESS; + @ClientString(id = 536902, message = "|Lv. 75-99| Noblesse, Soul Testing (In Progress)") + public static NpcStringId LV_75_99_NOBLESSE_SOUL_TESTING_IN_PROGRESS; - @ClientString(id = 536903, message = "Noblesse, Soul Testing (Lv. 75-99) (Done)") - public static NpcStringId NOBLESSE_SOUL_TESTING_LV_75_99_DONE; + @ClientString(id = 536903, message = "|Lv. 75-99| Noblesse, Soul Testing (Done)") + public static NpcStringId LV_75_99_NOBLESSE_SOUL_TESTING_DONE; - @ClientString(id = 536904, message = "Noblesse, Soul Testing (Lv. 75-99)") - public static NpcStringId NOBLESSE_SOUL_TESTING_LV_75_99_2; + @ClientString(id = 536904, message = "|Lv. 75-99| Noblesse, Soul Testing") + public static NpcStringId LV_75_99_NOBLESSE_SOUL_TESTING_2; - @ClientString(id = 537001, message = "Menacing Times (Lv. 76-81)") - public static NpcStringId MENACING_TIMES_LV_76_81; + @ClientString(id = 537001, message = "|Lv. 76-81| Menacing Times") + public static NpcStringId LV_76_81_MENACING_TIMES; - @ClientString(id = 537002, message = "Menacing Times (Lv. 76-81) (In Progress)") - public static NpcStringId MENACING_TIMES_LV_76_81_IN_PROGRESS; + @ClientString(id = 537002, message = "|Lv. 76-81| Menacing Times (In Progress)") + public static NpcStringId LV_76_81_MENACING_TIMES_IN_PROGRESS; - @ClientString(id = 537003, message = "Menacing Times (Lv. 76-81) (Done)") - public static NpcStringId MENACING_TIMES_LV_76_81_DONE; + @ClientString(id = 537003, message = "|Lv. 76-81| Menacing Times (Done)") + public static NpcStringId LV_76_81_MENACING_TIMES_DONE; - @ClientString(id = 537004, message = "Menacing Times (Lv. 76-81)") - public static NpcStringId MENACING_TIMES_LV_76_81_2; + @ClientString(id = 537004, message = "|Lv. 76-81| Menacing Times") + public static NpcStringId LV_76_81_MENACING_TIMES_2; @ClientString(id = 537050, message = "May the blessing of Einhasad be with you...") public static NpcStringId MAY_THE_BLESSING_OF_EINHASAD_BE_WITH_YOU; @@ -12148,17 +12193,17 @@ public final class NpcStringId @ClientString(id = 537056, message = "This isn't over. Do not go too far away.") public static NpcStringId THIS_ISN_T_OVER_DO_NOT_GO_TOO_FAR_AWAY; - @ClientString(id = 537101, message = "Grasp Thy Power (Lv. 76-81)") - public static NpcStringId GRASP_THY_POWER_LV_76_81; + @ClientString(id = 537101, message = "|Lv. 76-81| Grasp Thy Power") + public static NpcStringId LV_76_81_GRASP_THY_POWER; - @ClientString(id = 537102, message = "Grasp Thy Power (Lv. 76-81) (In Progress)") - public static NpcStringId GRASP_THY_POWER_LV_76_81_IN_PROGRESS; + @ClientString(id = 537102, message = "|Lv. 76-81| Grasp Thy Power (In Progress)") + public static NpcStringId LV_76_81_GRASP_THY_POWER_IN_PROGRESS; - @ClientString(id = 537103, message = "Grasp Thy Power (Lv. 76-81) (Done)") - public static NpcStringId GRASP_THY_POWER_LV_76_81_DONE; + @ClientString(id = 537103, message = "|Lv. 76-81| Grasp Thy Power (Done)") + public static NpcStringId LV_76_81_GRASP_THY_POWER_DONE; - @ClientString(id = 537104, message = "Grasp Thy Power (Lv. 76-81)") - public static NpcStringId GRASP_THY_POWER_LV_76_81_2; + @ClientString(id = 537104, message = "|Lv. 76-81| Grasp Thy Power") + public static NpcStringId LV_76_81_GRASP_THY_POWER_2; @ClientString(id = 537150, message = "A mysterious power from the Bloody Succubus fills you with strength.") public static NpcStringId A_MYSTERIOUS_POWER_FROM_THE_BLOODY_SUCCUBUS_FILLS_YOU_WITH_STRENGTH; @@ -12178,17 +12223,17 @@ public final class NpcStringId @ClientString(id = 537156, message = "Take a break, then speak with me again.") public static NpcStringId TAKE_A_BREAK_THEN_SPEAK_WITH_ME_AGAIN; - @ClientString(id = 537201, message = "Purgatory Volvere (Lv. 76-81)") - public static NpcStringId PURGATORY_VOLVERE_LV_76_81; + @ClientString(id = 537201, message = "|Lv. 76-81| Purgatory Volvere") + public static NpcStringId LV_76_81_PURGATORY_VOLVERE; - @ClientString(id = 537202, message = "Purgatory Volvere (Lv. 76-81) (In Progress)") - public static NpcStringId PURGATORY_VOLVERE_LV_76_81_IN_PROGRESS; + @ClientString(id = 537202, message = "|Lv. 76-81| Purgatory Volvere (In Progress)") + public static NpcStringId LV_76_81_PURGATORY_VOLVERE_IN_PROGRESS; - @ClientString(id = 537203, message = "Purgatory Volvere (Lv. 76-81) (Done)") - public static NpcStringId PURGATORY_VOLVERE_LV_76_81_DONE; + @ClientString(id = 537203, message = "|Lv. 76-81| Purgatory Volvere (Done)") + public static NpcStringId LV_76_81_PURGATORY_VOLVERE_DONE; - @ClientString(id = 537204, message = "Purgatory Volvere (Lv. 76-81)") - public static NpcStringId PURGATORY_VOLVERE_LV_76_81_2; + @ClientString(id = 537204, message = "|Lv. 76-81| Purgatory Volvere") + public static NpcStringId LV_76_81_PURGATORY_VOLVERE_2; @ClientString(id = 537250, message = "Please defeat the monster called the Bloody Succubus.") public static NpcStringId PLEASE_DEFEAT_THE_MONSTER_CALLED_THE_BLOODY_SUCCUBUS; @@ -12196,17 +12241,17 @@ public final class NpcStringId @ClientString(id = 537251, message = "If what you say is true, this must be very serious.") public static NpcStringId IF_WHAT_YOU_SAY_IS_TRUE_THIS_MUST_BE_VERY_SERIOUS; - @ClientString(id = 537401, message = "That Place Succubus (Lv. 80-99)") - public static NpcStringId THAT_PLACE_SUCCUBUS_LV_80_99; + @ClientString(id = 537401, message = "|Lv. 80-99| That Place Succubus") + public static NpcStringId LV_80_99_THAT_PLACE_SUCCUBUS; - @ClientString(id = 537402, message = "That Place Succubus (Lv. 80-99) (In Progress)") - public static NpcStringId THAT_PLACE_SUCCUBUS_LV_80_99_IN_PROGRESS; + @ClientString(id = 537402, message = "|Lv. 80-99| That Place Succubus (In Progress)") + public static NpcStringId LV_80_99_THAT_PLACE_SUCCUBUS_IN_PROGRESS; - @ClientString(id = 537403, message = "That Place Succubus (Lv. 80-99) (Done)") - public static NpcStringId THAT_PLACE_SUCCUBUS_LV_80_99_DONE; + @ClientString(id = 537403, message = "|Lv. 80-99| That Place Succubus (Done)") + public static NpcStringId LV_80_99_THAT_PLACE_SUCCUBUS_DONE; - @ClientString(id = 537404, message = "That Place Succubus (Lv. 80-99)") - public static NpcStringId THAT_PLACE_SUCCUBUS_LV_80_99_2; + @ClientString(id = 537404, message = "|Lv. 80-99| That Place Succubus") + public static NpcStringId LV_80_99_THAT_PLACE_SUCCUBUS_2; @ClientString(id = 537450, message = "Then, I will look forward to your actions.") public static NpcStringId THEN_I_WILL_LOOK_FORWARD_TO_YOUR_ACTIONS; @@ -12214,17 +12259,17 @@ public final class NpcStringId @ClientString(id = 537451, message = "Thank you. With your help, we were able to survive a great crisis.") public static NpcStringId THANK_YOU_WITH_YOUR_HELP_WE_WERE_ABLE_TO_SURVIVE_A_GREAT_CRISIS; - @ClientString(id = 537501, message = "Succubus Disciples (Lv. 80-99)") - public static NpcStringId SUCCUBUS_DISCIPLES_LV_80_99; + @ClientString(id = 537501, message = "|Lv. 80-99| Succubus Disciples") + public static NpcStringId LV_80_99_SUCCUBUS_DISCIPLES; - @ClientString(id = 537502, message = "Succubus Disciples (Lv. 80-99) (In Progress)") - public static NpcStringId SUCCUBUS_DISCIPLES_LV_80_99_IN_PROGRESS; + @ClientString(id = 537502, message = "|Lv. 80-99| Succubus Disciples (In Progress)") + public static NpcStringId LV_80_99_SUCCUBUS_DISCIPLES_IN_PROGRESS; - @ClientString(id = 537503, message = "Succubus Disciples (Lv. 80-99) (Done)") - public static NpcStringId SUCCUBUS_DISCIPLES_LV_80_99_DONE; + @ClientString(id = 537503, message = "|Lv. 80-99| Succubus Disciples (Done)") + public static NpcStringId LV_80_99_SUCCUBUS_DISCIPLES_DONE; - @ClientString(id = 537504, message = "Succubus Disciples (Lv. 80-99)") - public static NpcStringId SUCCUBUS_DISCIPLES_LV_80_99_2; + @ClientString(id = 537504, message = "|Lv. 80-99| Succubus Disciples") + public static NpcStringId LV_80_99_SUCCUBUS_DISCIPLES_2; @ClientString(id = 537550, message = "I shall await your safe return.") public static NpcStringId I_SHALL_AWAIT_YOUR_SAFE_RETURN; @@ -12235,14 +12280,14 @@ public final class NpcStringId @ClientString(id = 537601, message = "Bloody Good Time") public static NpcStringId BLOODY_GOOD_TIME; - @ClientString(id = 537602, message = "Bloody Good Time (Lv. 80-99) (In Progress)") - public static NpcStringId BLOODY_GOOD_TIME_LV_80_99_IN_PROGRESS; + @ClientString(id = 537602, message = "|Lv. 80-99| Bloody Good Time (In Progress)") + public static NpcStringId LV_80_99_BLOODY_GOOD_TIME_IN_PROGRESS; - @ClientString(id = 537603, message = "Bloody Good Time (Lv. 80-99) (Done)") - public static NpcStringId BLOODY_GOOD_TIME_LV_80_99_DONE; + @ClientString(id = 537603, message = "|Lv. 80-99| Bloody Good Time (Done)") + public static NpcStringId LV_80_99_BLOODY_GOOD_TIME_DONE; - @ClientString(id = 537604, message = "Bloody Good Time (Lv. 80-99)") - public static NpcStringId BLOODY_GOOD_TIME_LV_80_99; + @ClientString(id = 537604, message = "|Lv. 80-99| Bloody Good Time") + public static NpcStringId LV_80_99_BLOODY_GOOD_TIME; @ClientString(id = 537650, message = "Go and speak with Vice Hierarch Casca.") public static NpcStringId GO_AND_SPEAK_WITH_VICE_HIERARCH_CASCA; @@ -12250,17 +12295,17 @@ public final class NpcStringId @ClientString(id = 537651, message = "Well done! I was right to entrust this to you.") public static NpcStringId WELL_DONE_I_WAS_RIGHT_TO_ENTRUST_THIS_TO_YOU; - @ClientString(id = 537701, message = "The Invaded Execution Grounds (Lv. 95-99)") - public static NpcStringId THE_INVADED_EXECUTION_GROUNDS_LV_95_99; + @ClientString(id = 537701, message = "|Lv. 95-99| The Invaded Execution Grounds") + public static NpcStringId LV_95_99_THE_INVADED_EXECUTION_GROUNDS; - @ClientString(id = 537702, message = "The Invaded Execution Grounds (Lv. 95-99) (In Progress)") - public static NpcStringId THE_INVADED_EXECUTION_GROUNDS_LV_95_99_IN_PROGRESS; + @ClientString(id = 537702, message = "|Lv. 95-99| The Invaded Execution Grounds (In Progress)") + public static NpcStringId LV_95_99_THE_INVADED_EXECUTION_GROUNDS_IN_PROGRESS; - @ClientString(id = 537703, message = "The Invaded Execution Grounds (Lv. 95-99) (Done)") - public static NpcStringId THE_INVADED_EXECUTION_GROUNDS_LV_95_99_DONE; + @ClientString(id = 537703, message = "|Lv. 95-99| The Invaded Execution Grounds (Done)") + public static NpcStringId LV_95_99_THE_INVADED_EXECUTION_GROUNDS_DONE; - @ClientString(id = 537704, message = "The Invaded Execution Grounds (Lv. 95-99)") - public static NpcStringId THE_INVADED_EXECUTION_GROUNDS_LV_95_99_2; + @ClientString(id = 537704, message = "|Lv. 95-99| The Invaded Execution Grounds") + public static NpcStringId LV_95_99_THE_INVADED_EXECUTION_GROUNDS_2; @ClientString(id = 537751, message = "Central Fortress Area Patrol") public static NpcStringId CENTRAL_FORTRESS_AREA_PATROL; @@ -12280,17 +12325,17 @@ public final class NpcStringId @ClientString(id = 537756, message = "The mission is not yet complete.") public static NpcStringId THE_MISSION_IS_NOT_YET_COMPLETE_2; - @ClientString(id = 537801, message = "Weeding Work (Lv. 95-99)") - public static NpcStringId WEEDING_WORK_LV_95_99; + @ClientString(id = 537801, message = "|Lv. 95-99| Weeding Work") + public static NpcStringId LV_95_99_WEEDING_WORK; - @ClientString(id = 537802, message = "Weeding Work (Lv. 95-99) (In Progress)") - public static NpcStringId WEEDING_WORK_LV_95_99_IN_PROGRESS; + @ClientString(id = 537802, message = "|Lv. 95-99| Weeding Work (In Progress)") + public static NpcStringId LV_95_99_WEEDING_WORK_IN_PROGRESS; - @ClientString(id = 537803, message = "Weeding Work (Lv. 95-99) (Done)") - public static NpcStringId WEEDING_WORK_LV_95_99_DONE; + @ClientString(id = 537803, message = "|Lv. 95-99| Weeding Work (Done)") + public static NpcStringId LV_95_99_WEEDING_WORK_DONE; - @ClientString(id = 537804, message = "Weeding Work (Lv. 95-99)") - public static NpcStringId WEEDING_WORK_LV_95_99_2; + @ClientString(id = 537804, message = "|Lv. 95-99| Weeding Work") + public static NpcStringId LV_95_99_WEEDING_WORK_2; @ClientString(id = 537851, message = "Please help us discover the cause of this chaos.") public static NpcStringId PLEASE_HELP_US_DISCOVER_THE_CAUSE_OF_THIS_CHAOS; @@ -12298,17 +12343,17 @@ public final class NpcStringId @ClientString(id = 537852, message = "Thank you. It will certainly help the research.") public static NpcStringId THANK_YOU_IT_WILL_CERTAINLY_HELP_THE_RESEARCH; - @ClientString(id = 537901, message = "An Uninvited Guest (Lv. 95-99)") - public static NpcStringId AN_UNINVITED_GUEST_LV_95_99; + @ClientString(id = 537901, message = "|Lv. 95-99| An Uninvited Guest") + public static NpcStringId LV_95_99_AN_UNINVITED_GUEST; - @ClientString(id = 537902, message = "An Uninvited Guest (Lv. 95-99) (In Progress)") - public static NpcStringId AN_UNINVITED_GUEST_LV_95_99_IN_PROGRESS; + @ClientString(id = 537902, message = "|Lv. 95-99| An Uninvited Guest (In Progress)") + public static NpcStringId LV_95_99_AN_UNINVITED_GUEST_IN_PROGRESS; - @ClientString(id = 537903, message = "An Uninvited Guest (Lv. 95-99) (Done)") - public static NpcStringId AN_UNINVITED_GUEST_LV_95_99_DONE; + @ClientString(id = 537903, message = "|Lv. 95-99| An Uninvited Guest (Done)") + public static NpcStringId LV_95_99_AN_UNINVITED_GUEST_DONE; - @ClientString(id = 537904, message = "An Uninvited Guest (Lv. 95-99)") - public static NpcStringId AN_UNINVITED_GUEST_LV_95_99_2; + @ClientString(id = 537904, message = "|Lv. 95-99| An Uninvited Guest") + public static NpcStringId LV_95_99_AN_UNINVITED_GUEST_2; @ClientString(id = 537921, message = "Summon Scaldisect of Hellfire") public static NpcStringId SUMMON_SCALDISECT_OF_HELLFIRE; @@ -12322,17 +12367,17 @@ public final class NpcStringId @ClientString(id = 537954, message = "Well done! Watchman Endrigo of the Guillotine Fortress will give you a new mission, so be sure to speak with him!") public static NpcStringId WELL_DONE_WATCHMAN_ENDRIGO_OF_THE_GUILLOTINE_FORTRESS_WILL_GIVE_YOU_A_NEW_MISSION_SO_BE_SURE_TO_SPEAK_WITH_HIM; - @ClientString(id = 538001, message = "The Executioner's Execution (Lv. 95-99)") - public static NpcStringId THE_EXECUTIONER_S_EXECUTION_LV_95_99; + @ClientString(id = 538001, message = "|Lv. 95-99| The Executioner's Execution") + public static NpcStringId LV_95_99_THE_EXECUTIONER_S_EXECUTION; - @ClientString(id = 538002, message = "The Executioner's Execution (Lv. 95-99) (In Progress)") - public static NpcStringId THE_EXECUTIONER_S_EXECUTION_LV_95_99_IN_PROGRESS; + @ClientString(id = 538002, message = "|Lv. 95-99| The Executioner's Execution (In Progress)") + public static NpcStringId LV_95_99_THE_EXECUTIONER_S_EXECUTION_IN_PROGRESS; - @ClientString(id = 538003, message = "The Executioner's Execution (Lv. 95-99) (Done)") - public static NpcStringId THE_EXECUTIONER_S_EXECUTION_LV_95_99_DONE; + @ClientString(id = 538003, message = "|Lv. 95-99| The Executioner's Execution (Done)") + public static NpcStringId LV_95_99_THE_EXECUTIONER_S_EXECUTION_DONE; - @ClientString(id = 538004, message = "The Executioner's Execution (Lv. 95-99)") - public static NpcStringId THE_EXECUTIONER_S_EXECUTION_LV_95_99_2; + @ClientString(id = 538004, message = "|Lv. 95-99| The Executioner's Execution") + public static NpcStringId LV_95_99_THE_EXECUTIONER_S_EXECUTION_2; @ClientString(id = 538051, message = "It is time to put this to an end. Are you ready?") public static NpcStringId IT_IS_TIME_TO_PUT_THIS_TO_AN_END_ARE_YOU_READY; @@ -12343,17 +12388,17 @@ public final class NpcStringId @ClientString(id = 538053, message = "To defeat the Guillotine of Death... How amazing.") public static NpcStringId TO_DEFEAT_THE_GUILLOTINE_OF_DEATH_HOW_AMAZING; - @ClientString(id = 538101, message = "To the Seed of Hellfire (Lv. 97-99)") - public static NpcStringId TO_THE_SEED_OF_HELLFIRE_LV_97_99; + @ClientString(id = 538101, message = "|Lv. 97-99| To the Seed of Hellfire") + public static NpcStringId LV_97_99_TO_THE_SEED_OF_HELLFIRE; - @ClientString(id = 538102, message = "To the Seed of Hellfire (Lv. 97-99) (In Progress)") - public static NpcStringId TO_THE_SEED_OF_HELLFIRE_LV_97_99_IN_PROGRESS; + @ClientString(id = 538102, message = "|Lv. 97-99| To the Seed of Hellfire (In Progress)") + public static NpcStringId LV_97_99_TO_THE_SEED_OF_HELLFIRE_IN_PROGRESS; - @ClientString(id = 538103, message = "To the Seed of Hellfire (Lv. 97-99) (Done)") - public static NpcStringId TO_THE_SEED_OF_HELLFIRE_LV_97_99_DONE; + @ClientString(id = 538103, message = "|Lv. 97-99| To the Seed of Hellfire (Done)") + public static NpcStringId LV_97_99_TO_THE_SEED_OF_HELLFIRE_DONE; - @ClientString(id = 538104, message = "To the Seed of Hellfire (Lv. 97-99)") - public static NpcStringId TO_THE_SEED_OF_HELLFIRE_LV_97_99_2; + @ClientString(id = 538104, message = "|Lv. 97-99| To the Seed of Hellfire") + public static NpcStringId LV_97_99_TO_THE_SEED_OF_HELLFIRE_2; @ClientString(id = 538150, message = "Hurry and go find Commander Kbaldir.") public static NpcStringId HURRY_AND_GO_FIND_COMMANDER_KBALDIR; @@ -12364,17 +12409,17 @@ public final class NpcStringId @ClientString(id = 538152, message = "I will look forward to your activity.") public static NpcStringId I_WILL_LOOK_FORWARD_TO_YOUR_ACTIVITY; - @ClientString(id = 538201, message = "Day of Liberation (Lv. 97-99)") - public static NpcStringId DAY_OF_LIBERATION_LV_97_99; + @ClientString(id = 538201, message = "|Lv. 97-99| Day of Liberation") + public static NpcStringId LV_97_99_DAY_OF_LIBERATION; - @ClientString(id = 538202, message = "Day of Liberation (Lv. 97-99) (In Progress)") - public static NpcStringId DAY_OF_LIBERATION_LV_97_99_IN_PROGRESS; + @ClientString(id = 538202, message = "|Lv. 97-99| Day of Liberation (In Progress)") + public static NpcStringId LV_97_99_DAY_OF_LIBERATION_IN_PROGRESS; - @ClientString(id = 538203, message = "Day of Liberation (Lv. 97-99) (Done)") - public static NpcStringId DAY_OF_LIBERATION_LV_97_99_DONE; + @ClientString(id = 538203, message = "|Lv. 97-99| Day of Liberation (Done)") + public static NpcStringId LV_97_99_DAY_OF_LIBERATION_DONE; - @ClientString(id = 538204, message = "Day of Liberation (Lv. 97-99)") - public static NpcStringId DAY_OF_LIBERATION_LV_97_99_2; + @ClientString(id = 538204, message = "|Lv. 97-99| Day of Liberation") + public static NpcStringId LV_97_99_DAY_OF_LIBERATION_2; @ClientString(id = 538250, message = "Now! Drive out that Tauti and his followers!") public static NpcStringId NOW_DRIVE_OUT_THAT_TAUTI_AND_HIS_FOLLOWERS; @@ -12382,17 +12427,17 @@ public final class NpcStringId @ClientString(id = 538251, message = "We are free! Feel the joy of victory?") public static NpcStringId WE_ARE_FREE_FEEL_THE_JOY_OF_VICTORY; - @ClientString(id = 538301, message = "Fergason's Offer (Lv. 97-99)") - public static NpcStringId FERGASON_S_OFFER_LV_97_99; + @ClientString(id = 538301, message = "|Lv. 97-99| Fergason's Offer") + public static NpcStringId LV_97_99_FERGASON_S_OFFER; - @ClientString(id = 538302, message = "Fergason's Offer (Lv. 97-99) (In Progress)") - public static NpcStringId FERGASON_S_OFFER_LV_97_99_IN_PROGRESS; + @ClientString(id = 538302, message = "|Lv. 97-99| Fergason's Offer (In Progress)") + public static NpcStringId LV_97_99_FERGASON_S_OFFER_IN_PROGRESS; - @ClientString(id = 538303, message = "Fergason's Offer (Lv. 97-99) (Done)") - public static NpcStringId FERGASON_S_OFFER_LV_97_99_DONE; + @ClientString(id = 538303, message = "|Lv. 97-99| Fergason's Offer (Done)") + public static NpcStringId LV_97_99_FERGASON_S_OFFER_DONE; - @ClientString(id = 538304, message = "Fergason's Offer (Lv. 97-99)") - public static NpcStringId FERGASON_S_OFFER_LV_97_99_2; + @ClientString(id = 538304, message = "|Lv. 97-99| Fergason's Offer") + public static NpcStringId LV_97_99_FERGASON_S_OFFER_2; @ClientString(id = 538350, message = "Fergason. He is a good Dwarf. Go ahead and meet him.") public static NpcStringId FERGASON_HE_IS_A_GOOD_DWARF_GO_AHEAD_AND_MEET_HIM; @@ -12403,17 +12448,17 @@ public final class NpcStringId @ClientString(id = 538352, message = "Hoho. You look pretty useful.") public static NpcStringId HOHO_YOU_LOOK_PRETTY_USEFUL; - @ClientString(id = 538401, message = "An Audience With Tauti (Lv. 97-99)") - public static NpcStringId AN_AUDIENCE_WITH_TAUTI_LV_97_99; + @ClientString(id = 538401, message = "|Lv. 97-99| An Audience With Tauti") + public static NpcStringId LV_97_99_AN_AUDIENCE_WITH_TAUTI; - @ClientString(id = 538402, message = "An Audience With Tauti (Lv. 97-99) (In Progress)") - public static NpcStringId AN_AUDIENCE_WITH_TAUTI_LV_97_99_IN_PROGRESS; + @ClientString(id = 538402, message = "|Lv. 97-99| An Audience With Tauti (In Progress)") + public static NpcStringId LV_97_99_AN_AUDIENCE_WITH_TAUTI_IN_PROGRESS; - @ClientString(id = 538403, message = "An Audience With Tauti (Lv. 97-99) (Done)") - public static NpcStringId AN_AUDIENCE_WITH_TAUTI_LV_97_99_DONE; + @ClientString(id = 538403, message = "|Lv. 97-99| An Audience With Tauti (Done)") + public static NpcStringId LV_97_99_AN_AUDIENCE_WITH_TAUTI_DONE; - @ClientString(id = 538404, message = "An Audience With Tauti (Lv. 97-99)") - public static NpcStringId AN_AUDIENCE_WITH_TAUTI_LV_97_99_2; + @ClientString(id = 538404, message = "|Lv. 97-99| An Audience With Tauti") + public static NpcStringId LV_97_99_AN_AUDIENCE_WITH_TAUTI_2; @ClientString(id = 538450, message = "Then, I will entrust this to you. Hohoho.") public static NpcStringId THEN_I_WILL_ENTRUST_THIS_TO_YOU_HOHOHO; @@ -12424,80 +12469,80 @@ public final class NpcStringId @ClientString(id = 538452, message = "Hahaha! Now, my dream can finally come true!") public static NpcStringId HAHAHA_NOW_MY_DREAM_CAN_FINALLY_COME_TRUE; - @ClientString(id = 538501, message = "Red Thread of Fate (Lv. 85-99)") - public static NpcStringId RED_THREAD_OF_FATE_LV_85_99; + @ClientString(id = 538501, message = "|Lv. 85-99| Red Thread of Fate") + public static NpcStringId LV_85_99_RED_THREAD_OF_FATE; - @ClientString(id = 538502, message = "Red Thread of Fate (Lv. 85-99) (In Progress)") - public static NpcStringId RED_THREAD_OF_FATE_LV_85_99_IN_PROGRESS; + @ClientString(id = 538502, message = "|Lv. 85-99| Red Thread of Fate (In Progress)") + public static NpcStringId LV_85_99_RED_THREAD_OF_FATE_IN_PROGRESS; - @ClientString(id = 538503, message = "Red Thread of Fate (Lv. 85-99) (Complete)") - public static NpcStringId RED_THREAD_OF_FATE_LV_85_99_COMPLETE; + @ClientString(id = 538503, message = "|Lv. 85-99| Red Thread of Fate (Complete)") + public static NpcStringId LV_85_99_RED_THREAD_OF_FATE_COMPLETE; - @ClientString(id = 538504, message = "Red Thread of Fate (Lv. 85-99)") - public static NpcStringId RED_THREAD_OF_FATE_LV_85_99_2; + @ClientString(id = 538504, message = "|Lv. 85-99| Red Thread of Fate") + public static NpcStringId LV_85_99_RED_THREAD_OF_FATE_2; - @ClientString(id = 538601, message = "Mysterious Journey (Lv. 93-99)") - public static NpcStringId MYSTERIOUS_JOURNEY_LV_93_99; + @ClientString(id = 538601, message = "|Lv. 93-99| Mysterious Journey") + public static NpcStringId LV_93_99_MYSTERIOUS_JOURNEY; - @ClientString(id = 538602, message = "Mysterious Journey (Lv. 93-99) (In Progress)") - public static NpcStringId MYSTERIOUS_JOURNEY_LV_93_99_IN_PROGRESS; + @ClientString(id = 538602, message = "|Lv. 93-99| Mysterious Journey (In Progress)") + public static NpcStringId LV_93_99_MYSTERIOUS_JOURNEY_IN_PROGRESS; - @ClientString(id = 538603, message = "Mysterious Journey (Lv. 93-99) (Complete)") - public static NpcStringId MYSTERIOUS_JOURNEY_LV_93_99_COMPLETE; + @ClientString(id = 538603, message = "|Lv. 93-99| Mysterious Journey (Complete)") + public static NpcStringId LV_93_99_MYSTERIOUS_JOURNEY_COMPLETE; - @ClientString(id = 538604, message = "Mysterious Journey (Lv. 93-99)") - public static NpcStringId MYSTERIOUS_JOURNEY_LV_93_99_2; + @ClientString(id = 538604, message = "|Lv. 93-99| Mysterious Journey") + public static NpcStringId LV_93_99_MYSTERIOUS_JOURNEY_2; - @ClientString(id = 538701, message = "Soulless One (Lv. 93-99)") - public static NpcStringId SOULLESS_ONE_LV_93_99; + @ClientString(id = 538701, message = "|Lv. 93-99| Soulless One") + public static NpcStringId LV_93_99_SOULLESS_ONE; - @ClientString(id = 538702, message = "Soulless One (Lv. 93-99) (In Progress)") - public static NpcStringId SOULLESS_ONE_LV_93_99_IN_PROGRESS; + @ClientString(id = 538702, message = "|Lv. 93-99| Soulless One (In Progress)") + public static NpcStringId LV_93_99_SOULLESS_ONE_IN_PROGRESS; - @ClientString(id = 538703, message = "Soulless One (Lv. 93-99) (Complete)") - public static NpcStringId SOULLESS_ONE_LV_93_99_COMPLETE; + @ClientString(id = 538703, message = "|Lv. 93-99| Soulless One (Complete)") + public static NpcStringId LV_93_99_SOULLESS_ONE_COMPLETE; - @ClientString(id = 538704, message = "Soulless One (Lv. 93-99)") - public static NpcStringId SOULLESS_ONE_LV_93_99_2; + @ClientString(id = 538704, message = "|Lv. 93-99| Soulless One") + public static NpcStringId LV_93_99_SOULLESS_ONE_2; - @ClientString(id = 538801, message = "Conspiracy Behind Doors (Lv. 97-99)") - public static NpcStringId CONSPIRACY_BEHIND_DOORS_LV_97_99; + @ClientString(id = 538801, message = "|Lv. 97-99| Conspiracy Behind Doors") + public static NpcStringId LV_97_99_CONSPIRACY_BEHIND_DOORS; - @ClientString(id = 538802, message = "Conspiracy Behind Doors (Lv. 97-99) (In Progress)") - public static NpcStringId CONSPIRACY_BEHIND_DOORS_LV_97_99_IN_PROGRESS; + @ClientString(id = 538802, message = "|Lv. 97-99| Conspiracy Behind Doors (In Progress)") + public static NpcStringId LV_97_99_CONSPIRACY_BEHIND_DOORS_IN_PROGRESS; - @ClientString(id = 538803, message = "Conspiracy Behind Doors (Lv. 97-99) (Complete)") - public static NpcStringId CONSPIRACY_BEHIND_DOORS_LV_97_99_COMPLETE; + @ClientString(id = 538803, message = "|Lv. 97-99| Conspiracy Behind Doors (Complete)") + public static NpcStringId LV_97_99_CONSPIRACY_BEHIND_DOORS_COMPLETE; - @ClientString(id = 538804, message = "Conspiracy Behind Doors (Lv. 97-99)") - public static NpcStringId CONSPIRACY_BEHIND_DOORS_LV_97_99_2; + @ClientString(id = 538804, message = "|Lv. 97-99| Conspiracy Behind Doors") + public static NpcStringId LV_97_99_CONSPIRACY_BEHIND_DOORS_2; - @ClientString(id = 538901, message = "The Voice of Authority (Lv. 97-99)") - public static NpcStringId THE_VOICE_OF_AUTHORITY_LV_97_99; + @ClientString(id = 538901, message = "|Lv. 97-99| The Voice of Authority") + public static NpcStringId LV_97_99_THE_VOICE_OF_AUTHORITY; - @ClientString(id = 538902, message = "The Voice of Authority (Lv. 97-99) (In Progress)") - public static NpcStringId THE_VOICE_OF_AUTHORITY_LV_97_99_IN_PROGRESS; + @ClientString(id = 538902, message = "|Lv. 97-99| The Voice of Authority (In Progress)") + public static NpcStringId LV_97_99_THE_VOICE_OF_AUTHORITY_IN_PROGRESS; - @ClientString(id = 538903, message = "The Voice of Authority (Lv. 97-99) (Complete)") - public static NpcStringId THE_VOICE_OF_AUTHORITY_LV_97_99_COMPLETE; + @ClientString(id = 538903, message = "|Lv. 97-99| The Voice of Authority (Complete)") + public static NpcStringId LV_97_99_THE_VOICE_OF_AUTHORITY_COMPLETE; - @ClientString(id = 538904, message = "The Voice of Authority (Lv. 97-99)") - public static NpcStringId THE_VOICE_OF_AUTHORITY_LV_97_99_2; + @ClientString(id = 538904, message = "|Lv. 97-99| The Voice of Authority") + public static NpcStringId LV_97_99_THE_VOICE_OF_AUTHORITY_2; @ClientString(id = 538951, message = "Eliminate the Pagans in the Anteroom") public static NpcStringId ELIMINATE_THE_PAGANS_IN_THE_ANTEROOM; - @ClientString(id = 539001, message = "Kekropus' Letter (Lv. 40-45)") - public static NpcStringId KEKROPUS_LETTER_LV_40_45; + @ClientString(id = 539001, message = "|Lv. 40-45| Kekropus' Letter") + public static NpcStringId LV_40_45_KEKROPUS_LETTER; - @ClientString(id = 539002, message = "Kekropus' Letter (Lv. 40-45) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_LV_40_45_IN_PROGRESS; + @ClientString(id = 539002, message = "|Lv. 40-45| Kekropus' Letter (In Progress)") + public static NpcStringId LV_40_45_KEKROPUS_LETTER_IN_PROGRESS; - @ClientString(id = 539003, message = "Kekropus' Letter (Lv. 40-45) (Complete)") - public static NpcStringId KEKROPUS_LETTER_LV_40_45_COMPLETE; + @ClientString(id = 539003, message = "|Lv. 40-45| Kekropus' Letter (Done)") + public static NpcStringId LV_40_45_KEKROPUS_LETTER_DONE; - @ClientString(id = 539004, message = "Kekropus' Letter (Lv. 40-45)") - public static NpcStringId KEKROPUS_LETTER_LV_40_45_2; + @ClientString(id = 539004, message = "|Lv. 40-45| Kekropus' Letter") + public static NpcStringId LV_40_45_KEKROPUS_LETTER_2; @ClientString(id = 539031, message = "Talk to Bathis") public static NpcStringId TALK_TO_BATHIS; @@ -12514,41 +12559,41 @@ public final class NpcStringId @ClientString(id = 539051, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; - @ClientString(id = 539101, message = "A Suspicious Helper (Lv. 40-46)") - public static NpcStringId A_SUSPICIOUS_HELPER_LV_40_46; + @ClientString(id = 539101, message = "|Lv. 40-46| A Suspicious Helper") + public static NpcStringId LV_40_46_A_SUSPICIOUS_HELPER; - @ClientString(id = 539102, message = "A Suspicious Helper (Lv. 40-46) (In Progress)") - public static NpcStringId A_SUSPICIOUS_HELPER_LV_40_46_IN_PROGRESS; + @ClientString(id = 539102, message = "|Lv. 40-46| A Suspicious Helper (In Progress)") + public static NpcStringId LV_40_46_A_SUSPICIOUS_HELPER_IN_PROGRESS; - @ClientString(id = 539103, message = "A Suspicious Helper (Lv. 40-46) (Complete)") - public static NpcStringId A_SUSPICIOUS_HELPER_LV_40_46_COMPLETE; + @ClientString(id = 539103, message = "|Lv. 40-46| A Suspicious Helper (Complete)") + public static NpcStringId LV_40_46_A_SUSPICIOUS_HELPER_COMPLETE; - @ClientString(id = 539104, message = "A Suspicious Helper (Lv. 40-46)") - public static NpcStringId A_SUSPICIOUS_HELPER_LV_40_46_2; + @ClientString(id = 539104, message = "|Lv. 40-46| A Suspicious Helper") + public static NpcStringId LV_40_46_A_SUSPICIOUS_HELPER_2; - @ClientString(id = 539201, message = "Failure and its Consequences (Lv. 40-46)") - public static NpcStringId FAILURE_AND_ITS_CONSEQUENCES_LV_40_46; + @ClientString(id = 539201, message = "|Lv. 40-46| Failure and its Consequences") + public static NpcStringId LV_40_46_FAILURE_AND_ITS_CONSEQUENCES; - @ClientString(id = 539202, message = "Failure and its Consequences (Lv. 40-46) (In Progress)") - public static NpcStringId FAILURE_AND_ITS_CONSEQUENCES_LV_40_46_IN_PROGRESS; + @ClientString(id = 539202, message = "|Lv. 40-46| Failure and its Consequences (In Progress)") + public static NpcStringId LV_40_46_FAILURE_AND_ITS_CONSEQUENCES_IN_PROGRESS; - @ClientString(id = 539203, message = "Failure and its Consequences (Lv. 40-46) (Complete)") - public static NpcStringId FAILURE_AND_ITS_CONSEQUENCES_LV_40_46_COMPLETE; + @ClientString(id = 539203, message = "|Lv. 40-46| Failure and its Consequences (Complete)") + public static NpcStringId LV_40_46_FAILURE_AND_ITS_CONSEQUENCES_COMPLETE; - @ClientString(id = 539204, message = "Failure and its Consequences (Lv. 40-46)") - public static NpcStringId FAILURE_AND_ITS_CONSEQUENCES_LV_40_46_2; + @ClientString(id = 539204, message = "|Lv. 40-46| Failure and its Consequences") + public static NpcStringId LV_40_46_FAILURE_AND_ITS_CONSEQUENCES_2; - @ClientString(id = 539301, message = "Kekropus' Letter: A Clue Completed (Lv. 46-51)") - public static NpcStringId KEKROPUS_LETTER_A_CLUE_COMPLETED_LV_46_51; + @ClientString(id = 539301, message = "|Lv. 46-51| Kekropus' Letter: A Clue Completed") + public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED; - @ClientString(id = 539302, message = "Kekropus' Letter: A Clue Completed (Lv. 46-51) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_A_CLUE_COMPLETED_LV_46_51_IN_PROGRESS; + @ClientString(id = 539302, message = "|Lv. 46-51| Kekropus' Letter: A Clue Completed (In Progress)") + public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_IN_PROGRESS; - @ClientString(id = 539303, message = "Kekropus' Letter: A Clue Completed (Lv. 46-51) (Complete)") - public static NpcStringId KEKROPUS_LETTER_A_CLUE_COMPLETED_LV_46_51_COMPLETE; + @ClientString(id = 539303, message = "|Lv. 46-51| Kekropus' Letter: A Clue Completed (Complete)") + public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_COMPLETE; - @ClientString(id = 539304, message = "Kekropus' Letter: A Clue Completed (Lv. 46-51)") - public static NpcStringId KEKROPUS_LETTER_A_CLUE_COMPLETED_LV_46_51_2; + @ClientString(id = 539304, message = "|Lv. 46-51| Kekropus' Letter: A Clue Completed") + public static NpcStringId LV_46_51_KEKROPUS_LETTER_A_CLUE_COMPLETED_2; @ClientString(id = 539331, message = "Talk to Flutter") public static NpcStringId TALK_TO_FLUTTER; @@ -12562,44 +12607,44 @@ public final class NpcStringId @ClientString(id = 539354, message = "Use Vaccine on Golem Generator") public static NpcStringId USE_VACCINE_ON_GOLEM_GENERATOR; - @ClientString(id = 539401, message = "Mutual Benefit (Lv. 46-52)") - public static NpcStringId MUTUAL_BENEFIT_LV_46_52; + @ClientString(id = 539401, message = "|Lv. 46-52| Mutual Benefit") + public static NpcStringId LV_46_52_MUTUAL_BENEFIT; - @ClientString(id = 539402, message = "Mutual Benefit (Lv. 46-52) (In Progress)") - public static NpcStringId MUTUAL_BENEFIT_LV_46_52_IN_PROGRESS; + @ClientString(id = 539402, message = "|Lv. 46-52| Mutual Benefit (In Progress)") + public static NpcStringId LV_46_52_MUTUAL_BENEFIT_IN_PROGRESS; - @ClientString(id = 539403, message = "Mutual Benefit (Lv. 46-52) (Complete)") - public static NpcStringId MUTUAL_BENEFIT_LV_46_52_COMPLETE; + @ClientString(id = 539403, message = "|Lv. 46-52| Mutual Benefit (Complete)") + public static NpcStringId LV_46_52_MUTUAL_BENEFIT_COMPLETE; - @ClientString(id = 539404, message = "Mutual Benefit (Lv. 46-52)") - public static NpcStringId MUTUAL_BENEFIT_LV_46_52_2; + @ClientString(id = 539404, message = "|Lv. 46-52| Mutual Benefit") + public static NpcStringId LV_46_52_MUTUAL_BENEFIT_2; - @ClientString(id = 539501, message = "Not a Traitor (Lv. 46-52)") - public static NpcStringId NOT_A_TRAITOR_LV_46_52; + @ClientString(id = 539501, message = "|Lv. 46-52| Not a Traitor") + public static NpcStringId LV_46_52_NOT_A_TRAITOR; - @ClientString(id = 539502, message = "Not a Traitor (Lv. 46-52) (In Progress)") - public static NpcStringId NOT_A_TRAITOR_LV_46_52_IN_PROGRESS; + @ClientString(id = 539502, message = "|Lv. 46-52| Not a Traitor (In Progress)") + public static NpcStringId LV_46_52_NOT_A_TRAITOR_IN_PROGRESS; - @ClientString(id = 539503, message = "Not a Traitor (Lv. 46-52) (Complete)") - public static NpcStringId NOT_A_TRAITOR_LV_46_52_COMPLETE; + @ClientString(id = 539503, message = "|Lv. 46-52| Not a Traitor (Complete)") + public static NpcStringId LV_46_52_NOT_A_TRAITOR_COMPLETE; - @ClientString(id = 539504, message = "Not a Traitor (Lv. 46-52)") - public static NpcStringId NOT_A_TRAITOR_LV_46_52_2; + @ClientString(id = 539504, message = "|Lv. 46-52| Not a Traitor") + public static NpcStringId LV_46_52_NOT_A_TRAITOR_2; @ClientString(id = 539511, message = "Eliminate the Oel Mahum Monsters") public static NpcStringId ELIMINATE_THE_OEL_MAHUM_MONSTERS; - @ClientString(id = 539701, message = "Kekropus' Letter: A Suspicious Badge (Lv. 52-57)") - public static NpcStringId KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_LV_52_57; + @ClientString(id = 539701, message = "|Lv. 52-57| Kekropus' Letter: A Suspicious Badge") + public static NpcStringId LV_52_57_KEKROPUS_LETTER_A_SUSPICIOUS_BADGE; - @ClientString(id = 539702, message = "Kekropus' Letter: A Suspicious Badge (Lv. 52-57) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_LV_52_57_IN_PROGRESS; + @ClientString(id = 539702, message = "|Lv. 52-57| Kekropus' Letter: A Suspicious Badge (In Progress)") + public static NpcStringId LV_52_57_KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_IN_PROGRESS; - @ClientString(id = 539703, message = "Kekropus' Letter: A Suspicious Badge (Lv. 52-57) (Complete)") - public static NpcStringId KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_LV_52_57_COMPLETE; + @ClientString(id = 539703, message = "|Lv. 52-57| Kekropus' Letter: A Suspicious Badge (Complete)") + public static NpcStringId LV_52_57_KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_COMPLETE; - @ClientString(id = 539704, message = "Kekropus' Letter: A Suspicious Badge (Lv. 52-57)") - public static NpcStringId KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_LV_52_57_2; + @ClientString(id = 539704, message = "|Lv. 52-57| Kekropus' Letter: A Suspicious Badge") + public static NpcStringId LV_52_57_KEKROPUS_LETTER_A_SUSPICIOUS_BADGE_2; @ClientString(id = 539731, message = "Talk to Mouen") public static NpcStringId TALK_TO_MOUEN; @@ -12610,41 +12655,41 @@ public final class NpcStringId @ClientString(id = 539751, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_3; - @ClientString(id = 539801, message = "A Suspicious Badge (Lv. 52-58)") - public static NpcStringId A_SUSPICIOUS_BADGE_LV_52_58; + @ClientString(id = 539801, message = "|Lv. 52-58| A Suspicious Badge") + public static NpcStringId LV_52_58_A_SUSPICIOUS_BADGE; - @ClientString(id = 539802, message = "A Suspicious Badge (Lv. 52-58) (In Progress)") - public static NpcStringId A_SUSPICIOUS_BADGE_LV_52_58_IN_PROGRESS; + @ClientString(id = 539802, message = "|Lv. 52-58| A Suspicious Badge (In Progress)") + public static NpcStringId LV_52_58_A_SUSPICIOUS_BADGE_IN_PROGRESS; - @ClientString(id = 539803, message = "A Suspicious Badge (Lv. 52-58) (Complete)") - public static NpcStringId A_SUSPICIOUS_BADGE_LV_52_58_COMPLETE; + @ClientString(id = 539803, message = "|Lv. 52-58| A Suspicious Badge (Complete)") + public static NpcStringId LV_52_58_A_SUSPICIOUS_BADGE_COMPLETE; - @ClientString(id = 539804, message = "A Suspicious Badge (Lv. 52-58)") - public static NpcStringId A_SUSPICIOUS_BADGE_LV_52_58_2; + @ClientString(id = 539804, message = "|Lv. 52-58| A Suspicious Badge") + public static NpcStringId LV_52_58_A_SUSPICIOUS_BADGE_2; - @ClientString(id = 539901, message = "The Alphabet of the Giants (Lv. 52-58)") - public static NpcStringId THE_ALPHABET_OF_THE_GIANTS_LV_52_58; + @ClientString(id = 539901, message = "|Lv. 52-58| The Alphabet of the Giants") + public static NpcStringId LV_52_58_THE_ALPHABET_OF_THE_GIANTS; - @ClientString(id = 539902, message = "The Alphabet of the Giants (Lv. 52-58) (In Progress)") - public static NpcStringId THE_ALPHABET_OF_THE_GIANTS_LV_52_58_IN_PROGRESS; + @ClientString(id = 539902, message = "|Lv. 52-58| The Alphabet of the Giants (In Progress)") + public static NpcStringId LV_52_58_THE_ALPHABET_OF_THE_GIANTS_IN_PROGRESS; - @ClientString(id = 539903, message = "The Alphabet of the Giants (Lv. 52-58) (Complete)") - public static NpcStringId THE_ALPHABET_OF_THE_GIANTS_LV_52_58_COMPLETE; + @ClientString(id = 539903, message = "|Lv. 52-58| The Alphabet of the Giants (Complete)") + public static NpcStringId LV_52_58_THE_ALPHABET_OF_THE_GIANTS_COMPLETE; - @ClientString(id = 539904, message = "The Alphabet of the Giants (Lv. 52-58)") - public static NpcStringId THE_ALPHABET_OF_THE_GIANTS_LV_52_58_2; + @ClientString(id = 539904, message = "|Lv. 52-58| The Alphabet of the Giants") + public static NpcStringId LV_52_58_THE_ALPHABET_OF_THE_GIANTS_2; - @ClientString(id = 540101, message = "Kekropus' Letter: Decoding the Badge (Lv. 58-60)") - public static NpcStringId KEKROPUS_LETTER_DECODING_THE_BADGE_LV_58_60; + @ClientString(id = 540101, message = "|Lv. 58-60| Kekropus' Letter: Decoding the Badge") + public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE; - @ClientString(id = 540102, message = "Kekropus' Letter: Decoding the Badge (Lv. 58-60) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_DECODING_THE_BADGE_LV_58_60_IN_PROGRESS; + @ClientString(id = 540102, message = "|Lv. 58-60| Kekropus' Letter: Decoding the Badge (In Progress)") + public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_IN_PROGRESS; - @ClientString(id = 540103, message = "Kekropus' Letter: Decoding the Badge (Lv. 58-60) (Complete)") - public static NpcStringId KEKROPUS_LETTER_DECODING_THE_BADGE_LV_58_60_COMPLETE; + @ClientString(id = 540103, message = "|Lv. 58-60| Kekropus' Letter: Decoding the Badge (Complete)") + public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_COMPLETE; - @ClientString(id = 540104, message = "Kekropus' Letter: Decoding the Badge (Lv. 58-60)") - public static NpcStringId KEKROPUS_LETTER_DECODING_THE_BADGE_LV_58_60_2; + @ClientString(id = 540104, message = "|Lv. 58-60| Kekropus' Letter: Decoding the Badge") + public static NpcStringId LV_58_60_KEKROPUS_LETTER_DECODING_THE_BADGE_2; @ClientString(id = 540131, message = "Talk to Paterson") public static NpcStringId TALK_TO_PATERSON; @@ -12655,32 +12700,32 @@ public final class NpcStringId @ClientString(id = 540151, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_4; - @ClientString(id = 540201, message = "Nowhere to Turn (Lv. 58-61)") - public static NpcStringId NOWHERE_TO_TURN_LV_58_61; + @ClientString(id = 540201, message = "|Lv. 58-61| Nowhere to Turn") + public static NpcStringId LV_58_61_NOWHERE_TO_TURN; - @ClientString(id = 540202, message = "Nowhere to Turn (Lv. 58-61) (In Progress)") - public static NpcStringId NOWHERE_TO_TURN_LV_58_61_IN_PROGRESS; + @ClientString(id = 540202, message = "|Lv. 58-61| Nowhere to Turn (In Progress)") + public static NpcStringId LV_58_61_NOWHERE_TO_TURN_IN_PROGRESS; - @ClientString(id = 540203, message = "Nowhere to Turn (Lv. 58-61) (Complete)") - public static NpcStringId NOWHERE_TO_TURN_LV_58_61_COMPLETE; + @ClientString(id = 540203, message = "|Lv. 58-61| Nowhere to Turn (Complete)") + public static NpcStringId LV_58_61_NOWHERE_TO_TURN_COMPLETE; - @ClientString(id = 540204, message = "Nowhere to Turn (Lv. 58-61)") - public static NpcStringId NOWHERE_TO_TURN_LV_58_61_2; + @ClientString(id = 540204, message = "|Lv. 58-61| Nowhere to Turn") + public static NpcStringId LV_58_61_NOWHERE_TO_TURN_2; @ClientString(id = 540211, message = "Eliminate Monsters in the Forsaken Plains") public static NpcStringId ELIMINATE_MONSTERS_IN_THE_FORSAKEN_PLAINS; - @ClientString(id = 540301, message = "The Guardian Giant (Lv. 58-61)") - public static NpcStringId THE_GUARDIAN_GIANT_LV_58_61; + @ClientString(id = 540301, message = "|Lv. 58-61| The Guardian Giant") + public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT; - @ClientString(id = 540302, message = "The Guardian Giant (Lv. 58-61) (In Progress)") - public static NpcStringId THE_GUARDIAN_GIANT_LV_58_61_IN_PROGRESS; + @ClientString(id = 540302, message = "|Lv. 58-61| The Guardian Giant (In Progress)") + public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_IN_PROGRESS; - @ClientString(id = 540303, message = "The Guardian Giant (Lv. 58-61) (Complete)") - public static NpcStringId THE_GUARDIAN_GIANT_LV_58_61_COMPLETE; + @ClientString(id = 540303, message = "|Lv. 58-61| The Guardian Giant (Complete)") + public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_COMPLETE; - @ClientString(id = 540304, message = "The Guardian Giant (Lv. 58-61)") - public static NpcStringId THE_GUARDIAN_GIANT_LV_58_61_2; + @ClientString(id = 540304, message = "|Lv. 58-61| The Guardian Giant") + public static NpcStringId LV_58_61_THE_GUARDIAN_GIANT_2; @ClientString(id = 540351, message = "Who is it…that threatens us…? You, with the power of the gods… why do you covet our powers?") public static NpcStringId WHO_IS_IT_THAT_THREATENS_US_YOU_WITH_THE_POWER_OF_THE_GODS_WHY_DO_YOU_COVET_OUR_POWERS; @@ -12688,17 +12733,17 @@ public final class NpcStringId @ClientString(id = 540352, message = "You…with the power of the gods…cease your masquerading as our masters. Or else…") public static NpcStringId YOU_WITH_THE_POWER_OF_THE_GODS_CEASE_YOUR_MASQUERADING_AS_OUR_MASTERS_OR_ELSE; - @ClientString(id = 540401, message = "Kekropus' Letter: A Hidden Meaning (Lv. 61-64)") - public static NpcStringId KEKROPUS_LETTER_A_HIDDEN_MEANING_LV_61_64; + @ClientString(id = 540401, message = "|Lv. 61-64| Kekropus' Letter: A Hidden Meaning") + public static NpcStringId LV_61_64_KEKROPUS_LETTER_A_HIDDEN_MEANING; - @ClientString(id = 540402, message = "Kekropus' Letter: A Hidden Meaning (Lv. 61-64) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_A_HIDDEN_MEANING_LV_61_64_IN_PROGRESS; + @ClientString(id = 540402, message = "|Lv. 61-64| Kekropus' Letter: A Hidden Meaning (In Progress)") + public static NpcStringId LV_61_64_KEKROPUS_LETTER_A_HIDDEN_MEANING_IN_PROGRESS; - @ClientString(id = 540403, message = "Kekropus' Letter: A Hidden Meaning (Lv. 61-64) (Complete)") - public static NpcStringId KEKROPUS_LETTER_A_HIDDEN_MEANING_LV_61_64_COMPLETE; + @ClientString(id = 540403, message = "|Lv. 61-64| Kekropus' Letter: A Hidden Meaning (Complete)") + public static NpcStringId LV_61_64_KEKROPUS_LETTER_A_HIDDEN_MEANING_COMPLETE; - @ClientString(id = 540404, message = "Kekropus' Letter: A Hidden Meaning (Lv. 61-64)") - public static NpcStringId KEKROPUS_LETTER_A_HIDDEN_MEANING_LV_61_64_2; + @ClientString(id = 540404, message = "|Lv. 61-64| Kekropus' Letter: A Hidden Meaning") + public static NpcStringId LV_61_64_KEKROPUS_LETTER_A_HIDDEN_MEANING_2; @ClientString(id = 540431, message = "Talk to Paterson") public static NpcStringId TALK_TO_PATERSON_2; @@ -12709,29 +12754,29 @@ public final class NpcStringId @ClientString(id = 540451, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_5; - @ClientString(id = 540501, message = "Kartia's Seed (Lv. 61-65)") - public static NpcStringId KARTIA_S_SEED_LV_61_65; + @ClientString(id = 540501, message = "|Lv. 61-65| Kartia's Seed") + public static NpcStringId LV_61_65_KARTIA_S_SEED; - @ClientString(id = 540502, message = "Kartia's Seed (Lv. 61-65) (In Progress)") - public static NpcStringId KARTIA_S_SEED_LV_61_65_IN_PROGRESS; + @ClientString(id = 540502, message = "|Lv. 61-65| Kartia's Seed (In Progress)") + public static NpcStringId LV_61_65_KARTIA_S_SEED_IN_PROGRESS; - @ClientString(id = 540503, message = "Kartia's Seed (Lv. 61-65) (Complete)") - public static NpcStringId KARTIA_S_SEED_LV_61_65_COMPLETE; + @ClientString(id = 540503, message = "|Lv. 61-65| Kartia's Seed (Complete)") + public static NpcStringId LV_61_65_KARTIA_S_SEED_COMPLETE; - @ClientString(id = 540504, message = "Kartia's Seed (Lv. 61-65)") - public static NpcStringId KARTIA_S_SEED_LV_61_65_2; + @ClientString(id = 540504, message = "|Lv. 61-65| Kartia's Seed") + public static NpcStringId LV_61_65_KARTIA_S_SEED_2; - @ClientString(id = 540601, message = "Before Darkness Bears Fruit (Lv. 61-65)") - public static NpcStringId BEFORE_DARKNESS_BEARS_FRUIT_LV_61_65; + @ClientString(id = 540601, message = "|Lv. 61-65| Before Darkness Bears Fruit") + public static NpcStringId LV_61_65_BEFORE_DARKNESS_BEARS_FRUIT; - @ClientString(id = 540602, message = "Before Darkness Bears Fruit (Lv. 61-65) (In Progress)") - public static NpcStringId BEFORE_DARKNESS_BEARS_FRUIT_LV_61_65_IN_PROGRESS; + @ClientString(id = 540602, message = "|Lv. 61-65| Before Darkness Bears Fruit (In Progress)") + public static NpcStringId LV_61_65_BEFORE_DARKNESS_BEARS_FRUIT_IN_PROGRESS; - @ClientString(id = 540603, message = "Before Darkness Bears Fruit (Lv. 61-65) (Complete)") - public static NpcStringId BEFORE_DARKNESS_BEARS_FRUIT_LV_61_65_COMPLETE; + @ClientString(id = 540603, message = "|Lv. 61-65| Before Darkness Bears Fruit (Complete)") + public static NpcStringId LV_61_65_BEFORE_DARKNESS_BEARS_FRUIT_COMPLETE; - @ClientString(id = 540604, message = "Before Darkness Bears Fruit (Lv. 61-65)") - public static NpcStringId BEFORE_DARKNESS_BEARS_FRUIT_LV_61_65_2; + @ClientString(id = 540604, message = "|Lv. 61-65| Before Darkness Bears Fruit") + public static NpcStringId LV_61_65_BEFORE_DARKNESS_BEARS_FRUIT_2; @ClientString(id = 540651, message = "There is only death for intruders!") public static NpcStringId THERE_IS_ONLY_DEATH_FOR_INTRUDERS; @@ -12748,17 +12793,17 @@ public final class NpcStringId @ClientString(id = 540655, message = "Hah! You believe that is enough to stand in the path of darkness?") public static NpcStringId HAH_YOU_BELIEVE_THAT_IS_ENOUGH_TO_STAND_IN_THE_PATH_OF_DARKNESS; - @ClientString(id = 540801, message = "Kekropus' Letter: The Swamp of Screams (Lv. 65-69)") - public static NpcStringId KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_LV_65_69; + @ClientString(id = 540801, message = "|Lv. 65-69| Kekropus' Letter: The Swamp of Screams") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS; - @ClientString(id = 540802, message = "Kekropus' Letter: The Swamp of Screams (Lv. 65-69) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_LV_65_69_IN_PROGRESS; + @ClientString(id = 540802, message = "|Lv. 65-69| Kekropus' Letter: The Swamp of Screams (In Progress)") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_IN_PROGRESS; - @ClientString(id = 540803, message = "Kekropus' Letter: The Swamp of Screams (Lv. 65-69) (Complete)") - public static NpcStringId KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_LV_65_69_COMPLETE; + @ClientString(id = 540803, message = "|Lv. 65-69| Kekropus' Letter: The Swamp of Screams (Complete)") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_COMPLETE; - @ClientString(id = 540804, message = "Kekropus' Letter: The Swamp of Screams (Lv. 65-69)") - public static NpcStringId KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_LV_65_69_2; + @ClientString(id = 540804, message = "|Lv. 65-69| Kekropus' Letter: The Swamp of Screams") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_SWAMP_OF_SCREAMS_2; @ClientString(id = 540831, message = "Talk to Mathias") public static NpcStringId TALK_TO_MATHIAS; @@ -12769,41 +12814,41 @@ public final class NpcStringId @ClientString(id = 540851, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_6; - @ClientString(id = 540901, message = "A Suspicious Vagabond in the Swamp (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_LV_65_70; + @ClientString(id = 540901, message = "|Lv. 65-70| A Suspicious Vagabond in the Swamp") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP; - @ClientString(id = 540902, message = "A Suspicious Vagabond in the Swamp (Lv. 65-70) (In Progress)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_LV_65_70_IN_PROGRESS; + @ClientString(id = 540902, message = "|Lv. 65-70| A Suspicious Vagabond in the Swamp (In Progress)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_IN_PROGRESS; - @ClientString(id = 540903, message = "A Suspicious Vagabond in the Swamp (Lv. 65-70) (Complete)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_LV_65_70_COMPLETE; + @ClientString(id = 540903, message = "|Lv. 65-70| A Suspicious Vagabond in the Swamp (Complete)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_COMPLETE; - @ClientString(id = 540904, message = "A Suspicious Vagabond in the Swamp (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_LV_65_70_2; + @ClientString(id = 540904, message = "|Lv. 65-70| A Suspicious Vagabond in the Swamp") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_SWAMP_2; - @ClientString(id = 541001, message = "Embryo in the Swamp of Screams (Lv. 65-70)") - public static NpcStringId EMBRYO_IN_THE_SWAMP_OF_SCREAMS_LV_65_70; + @ClientString(id = 541001, message = "|Lv. 65-70| Embryo in the Swamp of Screams") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_SWAMP_OF_SCREAMS; - @ClientString(id = 541002, message = "Embryo in the Swamp of Screams (Lv. 65-70) (In Progress)") - public static NpcStringId EMBRYO_IN_THE_SWAMP_OF_SCREAMS_LV_65_70_IN_PROGRESS; + @ClientString(id = 541002, message = "|Lv. 65-70| Embryo in the Swamp of Screams (In Progress)") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_SWAMP_OF_SCREAMS_IN_PROGRESS; - @ClientString(id = 541003, message = "Embryo in the Swamp of Screams (Lv. 65-70) (Complete)") - public static NpcStringId EMBRYO_IN_THE_SWAMP_OF_SCREAMS_LV_65_70_COMPLETE; + @ClientString(id = 541003, message = "|Lv. 65-70| Embryo in the Swamp of Screams (Complete)") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_SWAMP_OF_SCREAMS_COMPLETE; - @ClientString(id = 541004, message = "Embryo in the Swamp of Screams (Lv. 65-70)") - public static NpcStringId EMBRYO_IN_THE_SWAMP_OF_SCREAMS_LV_65_70_2; + @ClientString(id = 541004, message = "|Lv. 65-70| Embryo in the Swamp of Screams") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_SWAMP_OF_SCREAMS_2; - @ClientString(id = 541101, message = "Kekropus' Letter: The Forest of the Dead (Lv. 65-69)") - public static NpcStringId KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_LV_65_69; + @ClientString(id = 541101, message = "|Lv. 65-69| Kekropus' Letter: The Forest of the Dead") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD; - @ClientString(id = 541102, message = "Kekropus' Letter: The Forest of the Dead (Lv. 65-69) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_LV_65_69_IN_PROGRESS; + @ClientString(id = 541102, message = "|Lv. 65-69| Kekropus' Letter: The Forest of the Dead (In Progress)") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_IN_PROGRESS; - @ClientString(id = 541103, message = "Kekropus' Letter: The Forest of the Dead (Lv. 65-69) (Complete)") - public static NpcStringId KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_LV_65_69_COMPLETE; + @ClientString(id = 541103, message = "|Lv. 65-69| Kekropus' Letter: The Forest of the Dead (Complete)") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_COMPLETE; - @ClientString(id = 541104, message = "Kekropus' Letter: The Forest of the Dead (Lv. 65-69)") - public static NpcStringId KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_LV_65_69_2; + @ClientString(id = 541104, message = "|Lv. 65-69| Kekropus' Letter: The Forest of the Dead") + public static NpcStringId LV_65_69_KEKROPUS_LETTER_THE_FOREST_OF_THE_DEAD_2; @ClientString(id = 541131, message = "Talk to Mathias") public static NpcStringId TALK_TO_MATHIAS_2; @@ -12814,41 +12859,41 @@ public final class NpcStringId @ClientString(id = 541151, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_7; - @ClientString(id = 541201, message = "A Suspicious Vagabond in the Forest (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_LV_65_70; + @ClientString(id = 541201, message = "|Lv. 65-70| A Suspicious Vagabond in the Forest") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_FOREST; - @ClientString(id = 541202, message = "A Suspicious Vagabond in the Forest (Lv. 65-70) (In Progress)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_LV_65_70_IN_PROGRESS; + @ClientString(id = 541202, message = "|Lv. 65-70| A Suspicious Vagabond in the Forest (In Progress)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_IN_PROGRESS; - @ClientString(id = 541203, message = "A Suspicious Vagabond in the Forest (Lv. 65-70) (Complete)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_LV_65_70_COMPLETE; + @ClientString(id = 541203, message = "|Lv. 65-70| A Suspicious Vagabond in the Forest (Complete)") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_COMPLETE; - @ClientString(id = 541204, message = "A Suspicious Vagabond in the Forest (Lv. 65-70)") - public static NpcStringId A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_LV_65_70_2; + @ClientString(id = 541204, message = "|Lv. 65-70| A Suspicious Vagabond in the Forest") + public static NpcStringId LV_65_70_A_SUSPICIOUS_VAGABOND_IN_THE_FOREST_2; - @ClientString(id = 541301, message = "Embryo in the Forest of the Dead (Lv. 65-70)") - public static NpcStringId EMBRYO_IN_THE_FOREST_OF_THE_DEAD_LV_65_70; + @ClientString(id = 541301, message = "|Lv. 65-70| Embryo in the Forest of the Dead") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_FOREST_OF_THE_DEAD; - @ClientString(id = 541302, message = "Embryo in the Forest of the Dead (Lv. 65-70) (In Progress)") - public static NpcStringId EMBRYO_IN_THE_FOREST_OF_THE_DEAD_LV_65_70_IN_PROGRESS; + @ClientString(id = 541302, message = "|Lv. 65-70| Embryo in the Forest of the Dead (In Progress)") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_FOREST_OF_THE_DEAD_IN_PROGRESS; - @ClientString(id = 541303, message = "Embryo in the Forest of the Dead (Lv. 65-70) (Complete)") - public static NpcStringId EMBRYO_IN_THE_FOREST_OF_THE_DEAD_LV_65_70_COMPLETE; + @ClientString(id = 541303, message = "|Lv. 65-70| Embryo in the Forest of the Dead (Complete)") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_FOREST_OF_THE_DEAD_COMPLETE; - @ClientString(id = 541304, message = "Embryo in the Forest of the Dead (Lv. 65-70)") - public static NpcStringId EMBRYO_IN_THE_FOREST_OF_THE_DEAD_LV_65_70_2; + @ClientString(id = 541304, message = "|Lv. 65-70| Embryo in the Forest of the Dead") + public static NpcStringId LV_65_70_EMBRYO_IN_THE_FOREST_OF_THE_DEAD_2; - @ClientString(id = 541401, message = "Kekropus' Letter: With Courage (Lv. 70-75)") - public static NpcStringId KEKROPUS_LETTER_WITH_COURAGE_LV_70_75; + @ClientString(id = 541401, message = "|Lv. 70-75| Kekropus' Letter: With Courage") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_COURAGE; - @ClientString(id = 541402, message = "Kekropus' Letter: With Courage (Lv. 70-75) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_WITH_COURAGE_LV_70_75_IN_PROGRESS; + @ClientString(id = 541402, message = "|Lv. 70-75| Kekropus' Letter: With Courage (In Progress)") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_COURAGE_IN_PROGRESS; - @ClientString(id = 541403, message = "Kekropus' Letter: With Courage (Lv. 70-75) (Complete)") - public static NpcStringId KEKROPUS_LETTER_WITH_COURAGE_LV_70_75_COMPLETE; + @ClientString(id = 541403, message = "|Lv. 70-75| Kekropus' Letter: With Courage (Complete)") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_COURAGE_COMPLETE; - @ClientString(id = 541404, message = "Kekropus' Letter: With Courage (Lv. 70-75)") - public static NpcStringId KEKROPUS_LETTER_WITH_COURAGE_LV_70_75_2; + @ClientString(id = 541404, message = "|Lv. 70-75| Kekropus' Letter: With Courage") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_COURAGE_2; @ClientString(id = 541431, message = "Talk to Andrei") public static NpcStringId TALK_TO_ANDREI; @@ -12859,17 +12904,17 @@ public final class NpcStringId @ClientString(id = 541451, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_8; - @ClientString(id = 541501, message = "Kekropus' Letter: With Wisdom (Lv. 70-75)") - public static NpcStringId KEKROPUS_LETTER_WITH_WISDOM_LV_70_75; + @ClientString(id = 541501, message = "|Lv. 70-75| Kekropus' Letter: With Wisdom") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_WISDOM; - @ClientString(id = 541502, message = "Kekropus' Letter: With Wisdom (Lv. 70-75) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_WITH_WISDOM_LV_70_75_IN_PROGRESS; + @ClientString(id = 541502, message = "|Lv. 70-75| Kekropus' Letter: With Wisdom (In Progress)") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_WISDOM_IN_PROGRESS; - @ClientString(id = 541503, message = "Kekropus' Letter: With Wisdom (Lv. 70-75) (Complete)") - public static NpcStringId KEKROPUS_LETTER_WITH_WISDOM_LV_70_75_COMPLETE; + @ClientString(id = 541503, message = "|Lv. 70-75| Kekropus' Letter: With Wisdom (Complete)") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_WISDOM_COMPLETE; - @ClientString(id = 541504, message = "Kekropus' Letter: With Wisdom (Lv. 70-75)") - public static NpcStringId KEKROPUS_LETTER_WITH_WISDOM_LV_70_75_2; + @ClientString(id = 541504, message = "|Lv. 70-75| Kekropus' Letter: With Wisdom") + public static NpcStringId LV_70_75_KEKROPUS_LETTER_WITH_WISDOM_2; @ClientString(id = 541531, message = "Talk to Andrei") public static NpcStringId TALK_TO_ANDREI_2; @@ -12880,41 +12925,41 @@ public final class NpcStringId @ClientString(id = 541551, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_9; - @ClientString(id = 541601, message = "In Search of the Eye of Argos (Lv. 70-75)") - public static NpcStringId IN_SEARCH_OF_THE_EYE_OF_ARGOS_LV_70_75; + @ClientString(id = 541601, message = "|Lv. 70-75| In Search of the Eye of Argos") + public static NpcStringId LV_70_75_IN_SEARCH_OF_THE_EYE_OF_ARGOS; - @ClientString(id = 541602, message = "In Search of the Eye of Argos (Lv. 70-75) (In Progress)") - public static NpcStringId IN_SEARCH_OF_THE_EYE_OF_ARGOS_LV_70_75_IN_PROGRESS; + @ClientString(id = 541602, message = "|Lv. 70-75| In Search of the Eye of Argos (In Progress)") + public static NpcStringId LV_70_75_IN_SEARCH_OF_THE_EYE_OF_ARGOS_IN_PROGRESS; - @ClientString(id = 541603, message = "In Search of the Eye of Argos (Lv. 70-75) (Complete)") - public static NpcStringId IN_SEARCH_OF_THE_EYE_OF_ARGOS_LV_70_75_COMPLETE; + @ClientString(id = 541603, message = "|Lv. 70-75| In Search of the Eye of Argos (Complete)") + public static NpcStringId LV_70_75_IN_SEARCH_OF_THE_EYE_OF_ARGOS_COMPLETE; - @ClientString(id = 541604, message = "In Search of the Eye of Argos (Lv. 70-75)") - public static NpcStringId IN_SEARCH_OF_THE_EYE_OF_ARGOS_LV_70_75_2; + @ClientString(id = 541604, message = "|Lv. 70-75| In Search of the Eye of Argos") + public static NpcStringId LV_70_75_IN_SEARCH_OF_THE_EYE_OF_ARGOS_2; - @ClientString(id = 541701, message = "Daimon the White-eyed (Lv. 70-75)") - public static NpcStringId DAIMON_THE_WHITE_EYED_LV_70_75; + @ClientString(id = 541701, message = "|Lv. 70-75| Daimon the White-eyed") + public static NpcStringId LV_70_75_DAIMON_THE_WHITE_EYED; - @ClientString(id = 541702, message = "Daimon the White-eyed (Lv. 70-75) (In Progress)") - public static NpcStringId DAIMON_THE_WHITE_EYED_LV_70_75_IN_PROGRESS; + @ClientString(id = 541702, message = "|Lv. 70-75| Daimon the White-eyed (In Progress)") + public static NpcStringId LV_70_75_DAIMON_THE_WHITE_EYED_IN_PROGRESS; - @ClientString(id = 541703, message = "Daimon the White-eyed (Lv. 70-75) (Complete)") - public static NpcStringId DAIMON_THE_WHITE_EYED_LV_70_75_COMPLETE; + @ClientString(id = 541703, message = "|Lv. 70-75| Daimon the White-eyed (Complete)") + public static NpcStringId LV_70_75_DAIMON_THE_WHITE_EYED_COMPLETE; - @ClientString(id = 541704, message = "Daimon the White-eyed (Lv. 70-75)") - public static NpcStringId DAIMON_THE_WHITE_EYED_LV_70_75_2; + @ClientString(id = 541704, message = "|Lv. 70-75| Daimon the White-eyed") + public static NpcStringId LV_70_75_DAIMON_THE_WHITE_EYED_2; - @ClientString(id = 541901, message = "Kekropus' Letter: Kampf's Whereabouts (Lv. 76-80)") - public static NpcStringId KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_LV_76_80; + @ClientString(id = 541901, message = "|Lv. 76-80| Kekropus' Letter: Kampf's Whereabouts") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS; - @ClientString(id = 541902, message = "Kekropus' Letter: Kampf's Whereabouts (Lv. 76-80) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_LV_76_80_IN_PROGRESS; + @ClientString(id = 541902, message = "|Lv. 76-80| Kekropus' Letter: Kampf's Whereabouts (In Progress)") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_IN_PROGRESS; - @ClientString(id = 541903, message = "Kekropus' Letter: Kampf's Whereabouts (Lv. 76-80) (Complete)") - public static NpcStringId KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_LV_76_80_COMPLETE; + @ClientString(id = 541903, message = "|Lv. 76-80| Kekropus' Letter: Kampf's Whereabouts (Complete)") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_COMPLETE; - @ClientString(id = 541904, message = "Kekropus' Letter: Kampf's Whereabouts (Lv. 76-80)") - public static NpcStringId KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_LV_76_80_2; + @ClientString(id = 541904, message = "|Lv. 76-80| Kekropus' Letter: Kampf's Whereabouts") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_KAMPF_S_WHEREABOUTS_2; @ClientString(id = 541931, message = "Talk to Andrei") public static NpcStringId TALK_TO_ANDREI_3; @@ -12925,53 +12970,53 @@ public final class NpcStringId @ClientString(id = 541951, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_10; - @ClientString(id = 542001, message = "The Varka Silenos Supporters (Lv. 76-80)") - public static NpcStringId THE_VARKA_SILENOS_SUPPORTERS_LV_76_80; + @ClientString(id = 542001, message = "|Lv. 76-80| The Varka Silenos Supporters") + public static NpcStringId LV_76_80_THE_VARKA_SILENOS_SUPPORTERS; - @ClientString(id = 542002, message = "The Varka Silenos Supporters (Lv. 76-80) (In Progress)") - public static NpcStringId THE_VARKA_SILENOS_SUPPORTERS_LV_76_80_IN_PROGRESS; + @ClientString(id = 542002, message = "|Lv. 76-80| The Varka Silenos Supporters (In Progress)") + public static NpcStringId LV_76_80_THE_VARKA_SILENOS_SUPPORTERS_IN_PROGRESS; - @ClientString(id = 542003, message = "The Varka Silenos Supporters (Lv. 76-80) (Complete)") - public static NpcStringId THE_VARKA_SILENOS_SUPPORTERS_LV_76_80_COMPLETE; + @ClientString(id = 542003, message = "|Lv. 76-80| The Varka Silenos Supporters (Complete)") + public static NpcStringId LV_76_80_THE_VARKA_SILENOS_SUPPORTERS_COMPLETE; - @ClientString(id = 542004, message = "The Varka Silenos Supporters (Lv. 76-80)") - public static NpcStringId THE_VARKA_SILENOS_SUPPORTERS_LV_76_80_2; + @ClientString(id = 542004, message = "|Lv. 76-80| The Varka Silenos Supporters") + public static NpcStringId LV_76_80_THE_VARKA_SILENOS_SUPPORTERS_2; - @ClientString(id = 542101, message = "Assassination of the Varka Silenos Commander (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_LV_76_80; + @ClientString(id = 542101, message = "|Lv. 76-80| Assassination of the Varka Silenos Commander") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER; - @ClientString(id = 542102, message = "Assassination of the Varka Silenos Commander (Lv. 76-80) (In Progress)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_LV_76_80_IN_PROGRESS; + @ClientString(id = 542102, message = "|Lv. 76-80| Assassination of the Varka Silenos Commander (In Progress)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_IN_PROGRESS; - @ClientString(id = 542103, message = "Assassination of the Varka Silenos Commander (Lv. 76-80) (Complete)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_LV_76_80_COMPLETE; + @ClientString(id = 542103, message = "|Lv. 76-80| Assassination of the Varka Silenos Commander (Complete)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_COMPLETE; - @ClientString(id = 542104, message = "Assassination of the Varka Silenos Commander (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_LV_76_80_2; + @ClientString(id = 542104, message = "|Lv. 76-80| Assassination of the Varka Silenos Commander") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_COMMANDER_2; - @ClientString(id = 542201, message = "Assassination of the Varka Silenos Chief (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_LV_76_80; + @ClientString(id = 542201, message = "|Lv. 76-80| Assassination of the Varka Silenos Chief") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF; - @ClientString(id = 542202, message = "Assassination of the Varka Silenos Chief (Lv. 76-80) (In Progress)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_LV_76_80_IN_PROGRESS; + @ClientString(id = 542202, message = "|Lv. 76-80| Assassination of the Varka Silenos Chief (In Progress)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_IN_PROGRESS; - @ClientString(id = 542203, message = "Assassination of the Varka Silenos Chief (Lv. 76-80) (Complete)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_LV_76_80_COMPLETE; + @ClientString(id = 542203, message = "|Lv. 76-80| Assassination of the Varka Silenos Chief (Complete)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_COMPLETE; - @ClientString(id = 542204, message = "Assassination of the Varka Silenos Chief (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_LV_76_80_2; + @ClientString(id = 542204, message = "|Lv. 76-80| Assassination of the Varka Silenos Chief") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_VARKA_SILENOS_CHIEF_2; - @ClientString(id = 542401, message = "Kekropus' Letter: Belos' Whereabouts (Lv. 76-80)") - public static NpcStringId KEKROPUS_LETTER_BELOS_WHEREABOUTS_LV_76_80; + @ClientString(id = 542401, message = "|Lv. 76-80| Kekropus' Letter: Belos' Whereabouts") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_BELOS_WHEREABOUTS; - @ClientString(id = 542402, message = "Kekropus' Letter: Belos' Whereabouts (Lv. 76-80) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_BELOS_WHEREABOUTS_LV_76_80_IN_PROGRESS; + @ClientString(id = 542402, message = "|Lv. 76-80| Kekropus' Letter: Belos' Whereabouts (In Progress)") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_BELOS_WHEREABOUTS_IN_PROGRESS; - @ClientString(id = 542403, message = "Kekropus' Letter: Belos' Whereabouts (Lv. 76-80) (Complete)") - public static NpcStringId KEKROPUS_LETTER_BELOS_WHEREABOUTS_LV_76_80_COMPLETE; + @ClientString(id = 542403, message = "|Lv. 76-80| Kekropus' Letter: Belos' Whereabouts (Complete)") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_BELOS_WHEREABOUTS_COMPLETE; - @ClientString(id = 542404, message = "Kekropus' Letter: Belos' Whereabouts (Lv. 76-80)") - public static NpcStringId KEKROPUS_LETTER_BELOS_WHEREABOUTS_LV_76_80_2; + @ClientString(id = 542404, message = "|Lv. 76-80| Kekropus' Letter: Belos' Whereabouts") + public static NpcStringId LV_76_80_KEKROPUS_LETTER_BELOS_WHEREABOUTS_2; @ClientString(id = 542431, message = "Talk to Andrei") public static NpcStringId TALK_TO_ANDREI_4; @@ -12982,53 +13027,53 @@ public final class NpcStringId @ClientString(id = 542451, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_11; - @ClientString(id = 542501, message = "The Ketra Orc Supporters (Lv. 76-80)") - public static NpcStringId THE_KETRA_ORC_SUPPORTERS_LV_76_80; + @ClientString(id = 542501, message = "|Lv. 76-80| The Ketra Orc Supporters") + public static NpcStringId LV_76_80_THE_KETRA_ORC_SUPPORTERS; - @ClientString(id = 542502, message = "The Ketra Orc Supporters (Lv. 76-80) (In Progress)") - public static NpcStringId THE_KETRA_ORC_SUPPORTERS_LV_76_80_IN_PROGRESS; + @ClientString(id = 542502, message = "|Lv. 76-80| The Ketra Orc Supporters (In Progress)") + public static NpcStringId LV_76_80_THE_KETRA_ORC_SUPPORTERS_IN_PROGRESS; - @ClientString(id = 542503, message = "The Ketra Orc Supporters (Lv. 76-80) (Complete)") - public static NpcStringId THE_KETRA_ORC_SUPPORTERS_LV_76_80_COMPLETE; + @ClientString(id = 542503, message = "|Lv. 76-80| The Ketra Orc Supporters (Complete)") + public static NpcStringId LV_76_80_THE_KETRA_ORC_SUPPORTERS_COMPLETE; - @ClientString(id = 542504, message = "The Ketra Orc Supporters (Lv. 76-80)") - public static NpcStringId THE_KETRA_ORC_SUPPORTERS_LV_76_80_2; + @ClientString(id = 542504, message = "|Lv. 76-80| The Ketra Orc Supporters") + public static NpcStringId LV_76_80_THE_KETRA_ORC_SUPPORTERS_2; - @ClientString(id = 542601, message = "Assassination of the Ketra Orc Commander (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_LV_76_80; + @ClientString(id = 542601, message = "|Lv. 76-80| Assassination of the Ketra Orc Commander") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER; - @ClientString(id = 542602, message = "Assassination of the Ketra Orc Commander (Lv. 76-80) (In Progress)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_LV_76_80_IN_PROGRESS; + @ClientString(id = 542602, message = "|Lv. 76-80| Assassination of the Ketra Orc Commander (In Progress)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_IN_PROGRESS; - @ClientString(id = 542603, message = "Assassination of the Ketra Orc Commander (Lv. 76-80) (Complete)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_LV_76_80_COMPLETE; + @ClientString(id = 542603, message = "|Lv. 76-80| Assassination of the Ketra Orc Commander (Complete)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_COMPLETE; - @ClientString(id = 542604, message = "Assassination of the Ketra Orc Commander (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_LV_76_80_2; + @ClientString(id = 542604, message = "|Lv. 76-80| Assassination of the Ketra Orc Commander") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_COMMANDER_2; - @ClientString(id = 542701, message = "Assassination of the Ketra Orc Chief (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_LV_76_80; + @ClientString(id = 542701, message = "|Lv. 76-80| Assassination of the Ketra Orc Chief") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_CHIEF; - @ClientString(id = 542702, message = "Assassination of the Ketra Orc Chief (Lv. 76-80) (In Progress)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_LV_76_80_IN_PROGRESS; + @ClientString(id = 542702, message = "|Lv. 76-80| Assassination of the Ketra Orc Chief (In Progress)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_IN_PROGRESS; - @ClientString(id = 542703, message = "Assassination of the Ketra Orc Chief (Lv. 76-80) (Complete)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_LV_76_80_COMPLETE; + @ClientString(id = 542703, message = "|Lv. 76-80| Assassination of the Ketra Orc Chief (Complete)") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_COMPLETE; - @ClientString(id = 542704, message = "Assassination of the Ketra Orc Chief (Lv. 76-80)") - public static NpcStringId ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_LV_76_80_2; + @ClientString(id = 542704, message = "|Lv. 76-80| Assassination of the Ketra Orc Chief") + public static NpcStringId LV_76_80_ASSASSINATION_OF_THE_KETRA_ORC_CHIEF_2; - @ClientString(id = 543001, message = "Kekropus' Letter: Tracking the Evil (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_TRACKING_THE_EVIL_LV_81_84; + @ClientString(id = 543001, message = "|Lv. 81-84| Kekropus' Letter: Tracking the Evil") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_TRACKING_THE_EVIL; - @ClientString(id = 543002, message = "Kekropus' Letter: Tracking the Evil (Lv. 81-84) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_TRACKING_THE_EVIL_LV_81_84_IN_PROGRESS; + @ClientString(id = 543002, message = "|Lv. 81-84| Kekropus' Letter: Tracking the Evil (In Progress)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_TRACKING_THE_EVIL_IN_PROGRESS; - @ClientString(id = 543003, message = "Kekropus' Letter: Tracking the Evil (Lv. 81-84) (Complete)") - public static NpcStringId KEKROPUS_LETTER_TRACKING_THE_EVIL_LV_81_84_COMPLETE; + @ClientString(id = 543003, message = "|Lv. 81-84| Kekropus' Letter: Tracking the Evil (Complete)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_TRACKING_THE_EVIL_COMPLETE; - @ClientString(id = 543004, message = "Kekropus' Letter: Tracking the Evil (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_TRACKING_THE_EVIL_LV_81_84_2; + @ClientString(id = 543004, message = "|Lv. 81-84| Kekropus' Letter: Tracking the Evil") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_TRACKING_THE_EVIL_2; @ClientString(id = 543031, message = "Talk to Vishotsky") public static NpcStringId TALK_TO_VISHOTSKY; @@ -13039,41 +13084,41 @@ public final class NpcStringId @ClientString(id = 543051, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_12; - @ClientString(id = 543101, message = "The Seal of Punishment: Den of Evil (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_LV_81_84; + @ClientString(id = 543101, message = "|Lv. 81-84| The Seal of Punishment: Den of Evil") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL; - @ClientString(id = 543102, message = "The Seal of Punishment: Den of Evil (Lv. 81-84) (In Progress)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_LV_81_84_IN_PROGRESS; + @ClientString(id = 543102, message = "|Lv. 81-84| The Seal of Punishment: Den of Evil (In Progress)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_IN_PROGRESS; - @ClientString(id = 543103, message = "The Seal of Punishment: Den of Evil (Lv. 81-84) (Complete)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_LV_81_84_COMPLETE; + @ClientString(id = 543103, message = "|Lv. 81-84| The Seal of Punishment: Den of Evil (Complete)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_COMPLETE; - @ClientString(id = 543104, message = "The Seal of Punishment: Den of Evil (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_LV_81_84_2; + @ClientString(id = 543104, message = "|Lv. 81-84| The Seal of Punishment: Den of Evil") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_DEN_OF_EVIL_2; - @ClientString(id = 543201, message = "Chasing Varangka (Lv. 81-84)") - public static NpcStringId CHASING_VARANGKA_LV_81_84; + @ClientString(id = 543201, message = "|Lv. 81-84| Chasing Varangka") + public static NpcStringId LV_81_84_CHASING_VARANGKA; - @ClientString(id = 543202, message = "Chasing Varangka (Lv. 81-84) (In Progress)") - public static NpcStringId CHASING_VARANGKA_LV_81_84_IN_PROGRESS; + @ClientString(id = 543202, message = "|Lv. 81-84| Chasing Varangka (In Progress)") + public static NpcStringId LV_81_84_CHASING_VARANGKA_IN_PROGRESS; - @ClientString(id = 543203, message = "Chasing Varangka (Lv. 81-84) (Complete)") - public static NpcStringId CHASING_VARANGKA_LV_81_84_COMPLETE; + @ClientString(id = 543203, message = "|Lv. 81-84| Chasing Varangka (Complete)") + public static NpcStringId LV_81_84_CHASING_VARANGKA_COMPLETE; - @ClientString(id = 543204, message = "Chasing Varangka (Lv. 81-84)") - public static NpcStringId CHASING_VARANGKA_LV_81_84_2; + @ClientString(id = 543204, message = "|Lv. 81-84| Chasing Varangka") + public static NpcStringId LV_81_84_CHASING_VARANGKA_2; - @ClientString(id = 543301, message = "Kekropus' Letter: Regarding a Seal (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_REGARDING_A_SEAL_LV_81_84; + @ClientString(id = 543301, message = "|Lv. 81-84| Kekropus' Letter: Regarding a Seal") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_REGARDING_A_SEAL; - @ClientString(id = 543302, message = "Kekropus' Letter: Regarding a Seal (Lv. 81-84) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_REGARDING_A_SEAL_LV_81_84_IN_PROGRESS; + @ClientString(id = 543302, message = "|Lv. 81-84| Kekropus' Letter: Regarding a Seal (In Progress)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_REGARDING_A_SEAL_IN_PROGRESS; - @ClientString(id = 543303, message = "Kekropus' Letter: Regarding a Seal (Lv. 81-84) (Complete)") - public static NpcStringId KEKROPUS_LETTER_REGARDING_A_SEAL_LV_81_84_COMPLETE; + @ClientString(id = 543303, message = "|Lv. 81-84| Kekropus' Letter: Regarding a Seal (Complete)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_REGARDING_A_SEAL_COMPLETE; - @ClientString(id = 543304, message = "Kekropus' Letter: Regarding a Seal (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_REGARDING_A_SEAL_LV_81_84_2; + @ClientString(id = 543304, message = "|Lv. 81-84| Kekropus' Letter: Regarding a Seal") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_REGARDING_A_SEAL_2; @ClientString(id = 543331, message = "Talk to Mouen") public static NpcStringId TALK_TO_MOUEN_2; @@ -13084,41 +13129,41 @@ public final class NpcStringId @ClientString(id = 543351, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_13; - @ClientString(id = 543401, message = "The Seal of Punishment: Sel Mahum Training Grounds (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_LV_81_84; + @ClientString(id = 543401, message = "|Lv. 81-84| The Seal of Punishment: Sel Mahum Training Grounds") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS; - @ClientString(id = 543402, message = "The Seal of Punishment: Sel Mahum Training Grounds (Lv. 81-84) (In Progress)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_LV_81_84_IN_PROGRESS; + @ClientString(id = 543402, message = "|Lv. 81-84| The Seal of Punishment: Sel Mahum Training Grounds (In Progress)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_IN_PROGRESS; - @ClientString(id = 543403, message = "The Seal of Punishment: Sel Mahum Training Grounds (Lv. 81-84) (Complete)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_LV_81_84_COMPLETE; + @ClientString(id = 543403, message = "|Lv. 81-84| The Seal of Punishment: Sel Mahum Training Grounds (Complete)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_COMPLETE; - @ClientString(id = 543404, message = "The Seal of Punishment: Sel Mahum Training Grounds (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_LV_81_84_2; + @ClientString(id = 543404, message = "|Lv. 81-84| The Seal of Punishment: Sel Mahum Training Grounds") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_SEL_MAHUM_TRAINING_GROUNDS_2; - @ClientString(id = 543501, message = "Chasing Keltron (Lv. 81-84)") - public static NpcStringId CHASING_KELTRON_LV_81_84; + @ClientString(id = 543501, message = "|Lv. 81-84| Chasing Keltron") + public static NpcStringId LV_81_84_CHASING_KELTRON; - @ClientString(id = 543502, message = "Chasing Keltron (Lv. 81-84) (In Progress)") - public static NpcStringId CHASING_KELTRON_LV_81_84_IN_PROGRESS; + @ClientString(id = 543502, message = "|Lv. 81-84| Chasing Keltron (In Progress)") + public static NpcStringId LV_81_84_CHASING_KELTRON_IN_PROGRESS; - @ClientString(id = 543503, message = "Chasing Keltron (Lv. 81-84) (Complete)") - public static NpcStringId CHASING_KELTRON_LV_81_84_COMPLETE; + @ClientString(id = 543503, message = "|Lv. 81-84| Chasing Keltron (Complete)") + public static NpcStringId LV_81_84_CHASING_KELTRON_COMPLETE; - @ClientString(id = 543504, message = "Chasing Keltron (Lv. 81-84)") - public static NpcStringId CHASING_KELTRON_LV_81_84_2; + @ClientString(id = 543504, message = "|Lv. 81-84| Chasing Keltron") + public static NpcStringId LV_81_84_CHASING_KELTRON_2; - @ClientString(id = 543601, message = "Kekropus' Letter: The Seal of Punishment (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_LV_81_84; + @ClientString(id = 543601, message = "|Lv. 81-84| Kekropus' Letter: The Seal of Punishment") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT; - @ClientString(id = 543602, message = "Kekropus' Letter: The Seal of Punishment (Lv. 81-84) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_LV_81_84_IN_PROGRESS; + @ClientString(id = 543602, message = "|Lv. 81-84| Kekropus' Letter: The Seal of Punishment (In Progress)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_IN_PROGRESS; - @ClientString(id = 543603, message = "Kekropus' Letter: The Seal of Punishment (Lv. 81-84) (Complete)") - public static NpcStringId KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_LV_81_84_COMPLETE; + @ClientString(id = 543603, message = "|Lv. 81-84| Kekropus' Letter: The Seal of Punishment (Complete)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_COMPLETE; - @ClientString(id = 543604, message = "Kekropus' Letter: The Seal of Punishment (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_LV_81_84_2; + @ClientString(id = 543604, message = "|Lv. 81-84| Kekropus' Letter: The Seal of Punishment") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_SEAL_OF_PUNISHMENT_2; @ClientString(id = 543631, message = "Talk to Mouen") public static NpcStringId TALK_TO_MOUEN_3; @@ -13129,41 +13174,41 @@ public final class NpcStringId @ClientString(id = 543651, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_14; - @ClientString(id = 543701, message = "The Seal of Punishment: Plains of the Lizardmen (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_LV_81_84; + @ClientString(id = 543701, message = "|Lv. 81-84| The Seal of Punishment: Plains of the Lizardmen") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN; - @ClientString(id = 543702, message = "The Seal of Punishment: Plains of the Lizardmen (Lv. 81-84) (In Progress)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_LV_81_84_IN_PROGRESS; + @ClientString(id = 543702, message = "|Lv. 81-84| The Seal of Punishment: Plains of the Lizardmen (In Progress)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_IN_PROGRESS; - @ClientString(id = 543703, message = "The Seal of Punishment: Plains of the Lizardmen (Lv. 81-84) (Complete)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_LV_81_84_COMPLETE; + @ClientString(id = 543703, message = "|Lv. 81-84| The Seal of Punishment: Plains of the Lizardmen (Complete)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_COMPLETE; - @ClientString(id = 543704, message = "The Seal of Punishment: Plains of the Lizardmen (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_LV_81_84_2; + @ClientString(id = 543704, message = "|Lv. 81-84| The Seal of Punishment: Plains of the Lizardmen") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_PLAINS_OF_THE_LIZARDMEN_2; - @ClientString(id = 543801, message = "Chasing Loygen (Lv. 81-84)") - public static NpcStringId CHASING_LOYGEN_LV_81_84; + @ClientString(id = 543801, message = "|Lv. 81-84| Chasing Loygen") + public static NpcStringId LV_81_84_CHASING_LOYGEN; - @ClientString(id = 543802, message = "Chasing Loygen (Lv. 81-84) (In Progress)") - public static NpcStringId CHASING_LOYGEN_LV_81_84_IN_PROGRESS; + @ClientString(id = 543802, message = "|Lv. 81-84| Chasing Loygen (In Progress)") + public static NpcStringId LV_81_84_CHASING_LOYGEN_IN_PROGRESS; - @ClientString(id = 543803, message = "Chasing Loygen (Lv. 81-84) (Complete)") - public static NpcStringId CHASING_LOYGEN_LV_81_84_COMPLETE; + @ClientString(id = 543803, message = "|Lv. 81-84| Chasing Loygen (Complete)") + public static NpcStringId LV_81_84_CHASING_LOYGEN_COMPLETE; - @ClientString(id = 543804, message = "Chasing Loygen (Lv. 81-84)") - public static NpcStringId CHASING_LOYGEN_LV_81_84_2; + @ClientString(id = 543804, message = "|Lv. 81-84| Chasing Loygen") + public static NpcStringId LV_81_84_CHASING_LOYGEN_2; - @ClientString(id = 543901, message = "Kekropus' Letter: The Origins of a Rumor (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_LV_81_84; + @ClientString(id = 543901, message = "|Lv. 81-84| Kekropus' Letter: The Origins of a Rumor") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR; - @ClientString(id = 543902, message = "Kekropus' Letter: The Origins of a Rumor (Lv. 81-84) (In Progress)") - public static NpcStringId KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_LV_81_84_IN_PROGRESS; + @ClientString(id = 543902, message = "|Lv. 81-84| Kekropus' Letter: The Origins of a Rumor (In Progress)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_IN_PROGRESS; - @ClientString(id = 543903, message = "Kekropus' Letter: The Origins of a Rumor (Lv. 81-84) (Complete)") - public static NpcStringId KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_LV_81_84_COMPLETE; + @ClientString(id = 543903, message = "|Lv. 81-84| Kekropus' Letter: The Origins of a Rumor (Complete)") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_COMPLETE; - @ClientString(id = 543904, message = "Kekropus' Letter: The Origins of a Rumor (Lv. 81-84)") - public static NpcStringId KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_LV_81_84_2; + @ClientString(id = 543904, message = "|Lv. 81-84| Kekropus' Letter: The Origins of a Rumor") + public static NpcStringId LV_81_84_KEKROPUS_LETTER_THE_ORIGINS_OF_A_RUMOR_2; @ClientString(id = 543931, message = "Talk to Gosta") public static NpcStringId TALK_TO_GOSTA_2; @@ -13177,32 +13222,32 @@ public final class NpcStringId @ClientString(id = 543951, message = "Kekropus' Letter has arrived.\\nClick the question-mark icon to read.") public static NpcStringId KEKROPUS_LETTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_15; - @ClientString(id = 544001, message = "The Seal of Punishment: The Fields (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_THE_FIELDS_LV_81_84; + @ClientString(id = 544001, message = "|Lv. 81-84| The Seal of Punishment: The Fields") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_THE_FIELDS; - @ClientString(id = 544002, message = "The Seal of Punishment: The Fields (Lv. 81-84) (In Progress)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_THE_FIELDS_LV_81_84_IN_PROGRESS; + @ClientString(id = 544002, message = "|Lv. 81-84| The Seal of Punishment: The Fields (In Progress)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_THE_FIELDS_IN_PROGRESS; - @ClientString(id = 544003, message = "The Seal of Punishment: The Fields (Lv. 81-84) (Complete)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_THE_FIELDS_LV_81_84_COMPLETE; + @ClientString(id = 544003, message = "|Lv. 81-84| The Seal of Punishment: The Fields (Complete)") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_THE_FIELDS_COMPLETE; - @ClientString(id = 544004, message = "The Seal of Punishment: The Fields (Lv. 81-84)") - public static NpcStringId THE_SEAL_OF_PUNISHMENT_THE_FIELDS_LV_81_84_2; + @ClientString(id = 544004, message = "|Lv. 81-84| The Seal of Punishment: The Fields") + public static NpcStringId LV_81_84_THE_SEAL_OF_PUNISHMENT_THE_FIELDS_2; @ClientString(id = 544051, message = "Eliminating the Mucrokians") public static NpcStringId ELIMINATING_THE_MUCROKIANS; - @ClientString(id = 544101, message = "Chasing Meccadan (Lv. 81-84)") - public static NpcStringId CHASING_MECCADAN_LV_81_84; + @ClientString(id = 544101, message = "|Lv. 81-84| Chasing Meccadan") + public static NpcStringId LV_81_84_CHASING_MECCADAN; - @ClientString(id = 544102, message = "Chasing Meccadan (Lv. 81-84) (In Progress)") - public static NpcStringId CHASING_MECCADAN_LV_81_84_IN_PROGRESS; + @ClientString(id = 544102, message = "|Lv. 81-84| Chasing Meccadan (In Progress)") + public static NpcStringId LV_81_84_CHASING_MECCADAN_IN_PROGRESS; - @ClientString(id = 544103, message = "Chasing Meccadan (Lv. 81-84) (Complete)") - public static NpcStringId CHASING_MECCADAN_LV_81_84_COMPLETE; + @ClientString(id = 544103, message = "|Lv. 81-84| Chasing Meccadan (Complete)") + public static NpcStringId LV_81_84_CHASING_MECCADAN_COMPLETE; - @ClientString(id = 544104, message = "Chasing Meccadan (Lv. 81-84)") - public static NpcStringId CHASING_MECCADAN_LV_81_84_2; + @ClientString(id = 544104, message = "|Lv. 81-84| Chasing Meccadan") + public static NpcStringId LV_81_84_CHASING_MECCADAN_2; @ClientString(id = 544151, message = "Coveting the power of the Seal, huh? Such courage should be rewarded with…death!") public static NpcStringId COVETING_THE_POWER_OF_THE_SEAL_HUH_SUCH_COURAGE_SHOULD_BE_REWARDED_WITH_DEATH; @@ -13210,53 +13255,53 @@ public final class NpcStringId @ClientString(id = 544152, message = "Fools…you have…also…been used…by... Shilen…argh…even if I die, the Seal of Punishment will…arghhh…") public static NpcStringId FOOLS_YOU_HAVE_ALSO_BEEN_USED_BY_SHILEN_ARGH_EVEN_IF_I_DIE_THE_SEAL_OF_PUNISHMENT_WILL_ARGHHH; - @ClientString(id = 544201, message = "The Annihilated Plains - 1 (Lv. 99-99)") - public static NpcStringId THE_ANNIHILATED_PLAINS_1_LV_99_99; + @ClientString(id = 544201, message = "|Lv. 99-99| The Annihilated Plains - 1") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_1; - @ClientString(id = 544202, message = "The Annihilated Plains - 1 (Lv. 99-99) (In Progress)") - public static NpcStringId THE_ANNIHILATED_PLAINS_1_LV_99_99_IN_PROGRESS; + @ClientString(id = 544202, message = "|Lv. 99-99| The Annihilated Plains - 1 (In Progress)") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_1_IN_PROGRESS; - @ClientString(id = 544203, message = "The Annihilated Plains - 1 (Lv. 99-99) (Complete)") - public static NpcStringId THE_ANNIHILATED_PLAINS_1_LV_99_99_COMPLETE; + @ClientString(id = 544203, message = "|Lv. 99-99| The Annihilated Plains - 1 (Complete)") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_1_COMPLETE; - @ClientString(id = 544204, message = "The Annihilated Plains - 1 (Lv. 99-99)") - public static NpcStringId THE_ANNIHILATED_PLAINS_1_LV_99_99_2; + @ClientString(id = 544204, message = "|Lv. 99-99| The Annihilated Plains - 1") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_1_2; - @ClientString(id = 544301, message = "The Annihilated Plains - 2 (Lv. 99-99)") - public static NpcStringId THE_ANNIHILATED_PLAINS_2_LV_99_99; + @ClientString(id = 544301, message = "|Lv. 99-99| The Annihilated Plains - 2") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_2; - @ClientString(id = 544302, message = "The Annihilated Plains - 2 (Lv. 99-99) (In Progress)") - public static NpcStringId THE_ANNIHILATED_PLAINS_2_LV_99_99_IN_PROGRESS; + @ClientString(id = 544302, message = "|Lv. 99-99| The Annihilated Plains - 2 (In Progress)") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_2_IN_PROGRESS; - @ClientString(id = 544303, message = "The Annihilated Plains - 2 (Lv. 99-99) (Complete)") - public static NpcStringId THE_ANNIHILATED_PLAINS_2_LV_99_99_COMPLETE; + @ClientString(id = 544303, message = "|Lv. 99-99| The Annihilated Plains - 2 (Complete)") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_2_COMPLETE; - @ClientString(id = 544304, message = "The Annihilated Plains - 2 (Lv. 99-99)") - public static NpcStringId THE_ANNIHILATED_PLAINS_2_LV_99_99_2; + @ClientString(id = 544304, message = "|Lv. 99-99| The Annihilated Plains - 2") + public static NpcStringId LV_99_99_THE_ANNIHILATED_PLAINS_2_2; - @ClientString(id = 544401, message = "The Origin of Monsters (Lv. 99-99)") - public static NpcStringId THE_ORIGIN_OF_MONSTERS_LV_99_99; + @ClientString(id = 544401, message = "|Lv. 99-99| The Origin of Monsters") + public static NpcStringId LV_99_99_THE_ORIGIN_OF_MONSTERS; - @ClientString(id = 544402, message = "The Origin of Monsters (Lv. 99-99) (In Progress)") - public static NpcStringId THE_ORIGIN_OF_MONSTERS_LV_99_99_IN_PROGRESS; + @ClientString(id = 544402, message = "|Lv. 99-99| The Origin of Monsters (In Progress)") + public static NpcStringId LV_99_99_THE_ORIGIN_OF_MONSTERS_IN_PROGRESS; - @ClientString(id = 544403, message = "The Origin of Monsters (Lv. 99-99) (Complete)") - public static NpcStringId THE_ORIGIN_OF_MONSTERS_LV_99_99_COMPLETE; + @ClientString(id = 544403, message = "|Lv. 99-99| The Origin of Monsters (Complete)") + public static NpcStringId LV_99_99_THE_ORIGIN_OF_MONSTERS_COMPLETE; - @ClientString(id = 544404, message = "The Origin of Monsters (Lv. 99-99)") - public static NpcStringId THE_ORIGIN_OF_MONSTERS_LV_99_99_2; + @ClientString(id = 544404, message = "|Lv. 99-99| The Origin of Monsters") + public static NpcStringId LV_99_99_THE_ORIGIN_OF_MONSTERS_2; - @ClientString(id = 544501, message = "An Impending Threat (Lv. 99-99)") - public static NpcStringId AN_IMPENDING_THREAT_LV_99_99; + @ClientString(id = 544501, message = "|Lv. 99-99| An Impending Threat") + public static NpcStringId LV_99_99_AN_IMPENDING_THREAT; - @ClientString(id = 544502, message = "An Impending Threat (Lv. 99-99) (In Progress)") - public static NpcStringId AN_IMPENDING_THREAT_LV_99_99_IN_PROGRESS; + @ClientString(id = 544502, message = "|Lv. 99-99| An Impending Threat (In Progress)") + public static NpcStringId LV_99_99_AN_IMPENDING_THREAT_IN_PROGRESS; - @ClientString(id = 544503, message = "An Impending Threat (Lv. 99-99) (Complete)") - public static NpcStringId AN_IMPENDING_THREAT_LV_99_99_COMPLETE; + @ClientString(id = 544503, message = "|Lv. 99-99| An Impending Threat (Complete)") + public static NpcStringId LV_99_99_AN_IMPENDING_THREAT_COMPLETE; - @ClientString(id = 544504, message = "An Impending Threat (Lv. 99-99)") - public static NpcStringId AN_IMPENDING_THREAT_LV_99_99_2; + @ClientString(id = 544504, message = "|Lv. 99-99| An Impending Threat") + public static NpcStringId LV_99_99_AN_IMPENDING_THREAT_2; @ClientString(id = 544511, message = "Go to Tuska") public static NpcStringId GO_TO_TUSKA; @@ -13264,80 +13309,80 @@ public final class NpcStringId @ClientString(id = 544512, message = "Go to Bruener") public static NpcStringId GO_TO_BRUENER; - @ClientString(id = 544601, message = "Hit and Run (Lv. 99-99)") - public static NpcStringId HIT_AND_RUN_LV_99_99; + @ClientString(id = 544601, message = "|Lv. 99-99| Hit and Run") + public static NpcStringId LV_99_99_HIT_AND_RUN; - @ClientString(id = 544602, message = "Hit and Run (Lv. 99-99) (In Progress)") - public static NpcStringId HIT_AND_RUN_LV_99_99_IN_PROGRESS; + @ClientString(id = 544602, message = "|Lv. 99-99| Hit and Run (In Progress)") + public static NpcStringId LV_99_99_HIT_AND_RUN_IN_PROGRESS; - @ClientString(id = 544603, message = "Hit and Run (Lv. 99-99) (Complete)") - public static NpcStringId HIT_AND_RUN_LV_99_99_COMPLETE; + @ClientString(id = 544603, message = "|Lv. 99-99| Hit and Run (Complete)") + public static NpcStringId LV_99_99_HIT_AND_RUN_COMPLETE; - @ClientString(id = 544604, message = "Hit and Run (Lv. 99-99)") - public static NpcStringId HIT_AND_RUN_LV_99_99_2; + @ClientString(id = 544604, message = "|Lv. 99-99| Hit and Run") + public static NpcStringId LV_99_99_HIT_AND_RUN_2; - @ClientString(id = 544701, message = "Timing is Everything (Lv. 99-99)") - public static NpcStringId TIMING_IS_EVERYTHING_LV_99_99; + @ClientString(id = 544701, message = "|Lv. 99-99| Timing is Everything") + public static NpcStringId LV_99_99_TIMING_IS_EVERYTHING; - @ClientString(id = 544702, message = "Timing is Everything (Lv. 99-99) (In Progress)") - public static NpcStringId TIMING_IS_EVERYTHING_LV_99_99_IN_PROGRESS; + @ClientString(id = 544702, message = "|Lv. 99-99| Timing is Everything (In Progress)") + public static NpcStringId LV_99_99_TIMING_IS_EVERYTHING_IN_PROGRESS; - @ClientString(id = 544703, message = "Timing is Everything (Lv. 99-99) (Complete)") - public static NpcStringId TIMING_IS_EVERYTHING_LV_99_99_COMPLETE; + @ClientString(id = 544703, message = "|Lv. 99-99| Timing is Everything (Complete)") + public static NpcStringId LV_99_99_TIMING_IS_EVERYTHING_COMPLETE; - @ClientString(id = 544704, message = "Timing is Everything (Lv. 99-99)") - public static NpcStringId TIMING_IS_EVERYTHING_LV_99_99_2; + @ClientString(id = 544704, message = "|Lv. 99-99| Timing is Everything") + public static NpcStringId LV_99_99_TIMING_IS_EVERYTHING_2; @ClientString(id = 544711, message = "Use Nerva's Temporary Prison Key") public static NpcStringId USE_NERVA_S_TEMPORARY_PRISON_KEY; - @ClientString(id = 545001, message = "A Dark Ambition (Lv. 99-99)") - public static NpcStringId A_DARK_AMBITION_LV_99_99; + @ClientString(id = 545001, message = "|Lv. 99-99| A Dark Ambition") + public static NpcStringId LV_99_99_A_DARK_AMBITION; - @ClientString(id = 545002, message = "A Dark Ambition (Lv. 99-99) (In Progress)") - public static NpcStringId A_DARK_AMBITION_LV_99_99_IN_PROGRESS; + @ClientString(id = 545002, message = "|Lv. 99-99| A Dark Ambition (In Progress)") + public static NpcStringId LV_99_99_A_DARK_AMBITION_IN_PROGRESS; - @ClientString(id = 545003, message = "A Dark Ambition (Lv. 99-99) (Complete)") - public static NpcStringId A_DARK_AMBITION_LV_99_99_COMPLETE; + @ClientString(id = 545003, message = "|Lv. 99-99| A Dark Ambition (Complete)") + public static NpcStringId LV_99_99_A_DARK_AMBITION_COMPLETE; - @ClientString(id = 545004, message = "A Dark Ambition (Lv. 99-99)") - public static NpcStringId A_DARK_AMBITION_LV_99_99_2; + @ClientString(id = 545004, message = "|Lv. 99-99| A Dark Ambition") + public static NpcStringId LV_99_99_A_DARK_AMBITION_2; - @ClientString(id = 545201, message = "Is it Edible? (Lv. 81-99)") - public static NpcStringId IS_IT_EDIBLE_LV_81_99; + @ClientString(id = 545201, message = "|Lv. 81-99| Is it Edible?") + public static NpcStringId LV_81_99_IS_IT_EDIBLE; - @ClientString(id = 545202, message = "Is it Edible? (Lv. 81-99) (In Progress)") - public static NpcStringId IS_IT_EDIBLE_LV_81_99_IN_PROGRESS; + @ClientString(id = 545202, message = "|Lv. 81-99| Is it Edible? (In Progress)") + public static NpcStringId LV_81_99_IS_IT_EDIBLE_IN_PROGRESS; - @ClientString(id = 545203, message = "Is it Edible? (Lv. 81-99) (Complete)") - public static NpcStringId IS_IT_EDIBLE_LV_81_99_COMPLETE; + @ClientString(id = 545203, message = "|Lv. 81-99| Is it Edible? (Complete)") + public static NpcStringId LV_81_99_IS_IT_EDIBLE_COMPLETE; - @ClientString(id = 545204, message = "Is it Edible? (Lv. 81-99)") - public static NpcStringId IS_IT_EDIBLE_LV_81_99_2; + @ClientString(id = 545204, message = "|Lv. 81-99| Is it Edible?") + public static NpcStringId LV_81_99_IS_IT_EDIBLE_2; - @ClientString(id = 545301, message = "Stopping the Wind Dragon (Lv. 95-99)") - public static NpcStringId STOPPING_THE_WIND_DRAGON_LV_95_99; + @ClientString(id = 545301, message = "|Lv. 95-99| Stopping the Wind Dragon") + public static NpcStringId LV_95_99_STOPPING_THE_WIND_DRAGON; - @ClientString(id = 545302, message = "Stopping the Wind Dragon (Lv. 95-99) (In Progress)") - public static NpcStringId STOPPING_THE_WIND_DRAGON_LV_95_99_IN_PROGRESS; + @ClientString(id = 545302, message = "|Lv. 95-99| Stopping the Wind Dragon (In Progress)") + public static NpcStringId LV_95_99_STOPPING_THE_WIND_DRAGON_IN_PROGRESS; - @ClientString(id = 545303, message = "Stopping the Wind Dragon (Lv. 95-99) (Complete)") - public static NpcStringId STOPPING_THE_WIND_DRAGON_LV_95_99_COMPLETE; + @ClientString(id = 545303, message = "|Lv. 95-99| Stopping the Wind Dragon (Complete)") + public static NpcStringId LV_95_99_STOPPING_THE_WIND_DRAGON_COMPLETE; - @ClientString(id = 545304, message = "Stopping the Wind Dragon (Lv. 95-99)") - public static NpcStringId STOPPING_THE_WIND_DRAGON_LV_95_99_2; + @ClientString(id = 545304, message = "|Lv. 95-99| Stopping the Wind Dragon") + public static NpcStringId LV_95_99_STOPPING_THE_WIND_DRAGON_2; - @ClientString(id = 545501, message = "Elikia's Letter (Lv. 99-99)") - public static NpcStringId ELIKIA_S_LETTER_LV_99_99; + @ClientString(id = 545501, message = "|Lv. 99-99| Elikia's Letter") + public static NpcStringId LV_99_99_ELIKIA_S_LETTER; - @ClientString(id = 545502, message = "Elikia's Letter (Lv. 99-99) (In Progress)") - public static NpcStringId ELIKIA_S_LETTER_LV_99_99_IN_PROGRESS; + @ClientString(id = 545502, message = "|Lv. 99-99| Elikia's Letter (In Progress)") + public static NpcStringId LV_99_99_ELIKIA_S_LETTER_IN_PROGRESS; - @ClientString(id = 545503, message = "Elikia's Letter (Lv. 99-99) (Complete)") - public static NpcStringId ELIKIA_S_LETTER_LV_99_99_COMPLETE; + @ClientString(id = 545503, message = "|Lv. 99-99| Elikia's Letter (Complete)") + public static NpcStringId LV_99_99_ELIKIA_S_LETTER_COMPLETE; - @ClientString(id = 545504, message = "Elikia's Letter (Lv. 99-99)") - public static NpcStringId ELIKIA_S_LETTER_LV_99_99_2; + @ClientString(id = 545504, message = "|Lv. 99-99| Elikia's Letter") + public static NpcStringId LV_99_99_ELIKIA_S_LETTER_2; @ClientString(id = 545521, message = "You must activate the Warp Gate behind me in order to teleport to Hellbound.") public static NpcStringId YOU_MUST_ACTIVATE_THE_WARP_GATE_BEHIND_ME_IN_ORDER_TO_TELEPORT_TO_HELLBOUND; @@ -13345,17 +13390,17 @@ public final class NpcStringId @ClientString(id = 545522, message = "Have you made preparations for the mission? There isn't much time.") public static NpcStringId HAVE_YOU_MADE_PREPARATIONS_FOR_THE_MISSION_THERE_ISN_T_MUCH_TIME; - @ClientString(id = 545601, message = "Operation: Rescue (Lv. 99-99)") - public static NpcStringId OPERATION_RESCUE_LV_99_99; + @ClientString(id = 545601, message = "|Lv. 99-99| Operation: Rescue") + public static NpcStringId LV_99_99_OPERATION_RESCUE; - @ClientString(id = 545602, message = "Operation: Rescue (Lv. 99-99) (In Progress)") - public static NpcStringId OPERATION_RESCUE_LV_99_99_IN_PROGRESS; + @ClientString(id = 545602, message = "|Lv. 99-99| Operation: Rescue (In Progress)") + public static NpcStringId LV_99_99_OPERATION_RESCUE_IN_PROGRESS; - @ClientString(id = 545603, message = "Operation: Rescue (Lv. 99-99) (Complete)") - public static NpcStringId OPERATION_RESCUE_LV_99_99_COMPLETE; + @ClientString(id = 545603, message = "|Lv. 99-99| Operation: Rescue (Complete)") + public static NpcStringId LV_99_99_OPERATION_RESCUE_COMPLETE; - @ClientString(id = 545604, message = "Operation: Rescue (Lv. 99-99)") - public static NpcStringId OPERATION_RESCUE_LV_99_99_2; + @ClientString(id = 545604, message = "|Lv. 99-99| Operation: Rescue") + public static NpcStringId LV_99_99_OPERATION_RESCUE_2; @ClientString(id = 545611, message = "Free the Captives") public static NpcStringId FREE_THE_CAPTIVES; @@ -13366,17 +13411,17 @@ public final class NpcStringId @ClientString(id = 545622, message = "You should be proud of what you have done!") public static NpcStringId YOU_SHOULD_BE_PROUD_OF_WHAT_YOU_HAVE_DONE; - @ClientString(id = 545701, message = "Kefensis' Hallucination (Lv. 99-99)") - public static NpcStringId KEFENSIS_HALLUCINATION_LV_99_99; + @ClientString(id = 545701, message = "|Lv. 99-99| Kefensis' Hallucination") + public static NpcStringId LV_99_99_KEFENSIS_HALLUCINATION; - @ClientString(id = 545702, message = "Kefensis' Hallucination (Lv. 99-99) (In Progress)") - public static NpcStringId KEFENSIS_HALLUCINATION_LV_99_99_IN_PROGRESS; + @ClientString(id = 545702, message = "|Lv. 99-99| Kefensis' Hallucination (In Progress)") + public static NpcStringId LV_99_99_KEFENSIS_HALLUCINATION_IN_PROGRESS; - @ClientString(id = 545703, message = "Kefensis' Hallucination (Lv. 99-99) (Complete)") - public static NpcStringId KEFENSIS_HALLUCINATION_LV_99_99_COMPLETE; + @ClientString(id = 545703, message = "|Lv. 99-99| Kefensis' Hallucination (Complete)") + public static NpcStringId LV_99_99_KEFENSIS_HALLUCINATION_COMPLETE; - @ClientString(id = 545704, message = "Kefensis' Hallucination (Lv. 99-99)") - public static NpcStringId KEFENSIS_HALLUCINATION_LV_99_99_2; + @ClientString(id = 545704, message = "|Lv. 99-99| Kefensis' Hallucination") + public static NpcStringId LV_99_99_KEFENSIS_HALLUCINATION_2; @ClientString(id = 545711, message = "Test of the Desert Thirst") public static NpcStringId TEST_OF_THE_DESERT_THIRST; @@ -13393,17 +13438,17 @@ public final class NpcStringId @ClientString(id = 545722, message = "An illusion? This place is truly worthy of being called the Mirage Hills.") public static NpcStringId AN_ILLUSION_THIS_PLACE_IS_TRULY_WORTHY_OF_BEING_CALLED_THE_MIRAGE_HILLS; - @ClientString(id = 545801, message = "To the Desert Quarry (Lv. 99-99)") - public static NpcStringId TO_THE_DESERT_QUARRY_LV_99_99; + @ClientString(id = 545801, message = "|Lv. 99-99| To the Desert Quarry") + public static NpcStringId LV_99_99_TO_THE_DESERT_QUARRY; - @ClientString(id = 545802, message = "To the Desert Quarry (Lv. 99-99) (In Progress)") - public static NpcStringId TO_THE_DESERT_QUARRY_LV_99_99_IN_PROGRESS; + @ClientString(id = 545802, message = "|Lv. 99-99| To the Desert Quarry (In Progress)") + public static NpcStringId LV_99_99_TO_THE_DESERT_QUARRY_IN_PROGRESS; - @ClientString(id = 545803, message = "To the Desert Quarry (Lv. 99-99) (Complete)") - public static NpcStringId TO_THE_DESERT_QUARRY_LV_99_99_COMPLETE; + @ClientString(id = 545803, message = "|Lv. 99-99| To the Desert Quarry (Complete)") + public static NpcStringId LV_99_99_TO_THE_DESERT_QUARRY_COMPLETE; - @ClientString(id = 545804, message = "To the Desert Quarry (Lv. 99-99)") - public static NpcStringId TO_THE_DESERT_QUARRY_LV_99_99_2; + @ClientString(id = 545804, message = "|Lv. 99-99| To the Desert Quarry") + public static NpcStringId LV_99_99_TO_THE_DESERT_QUARRY_2; @ClientString(id = 545811, message = "Defeat the Evolved Monster") public static NpcStringId DEFEAT_THE_EVOLVED_MONSTER; @@ -13414,44 +13459,44 @@ public final class NpcStringId @ClientString(id = 545822, message = "Should I get started?") public static NpcStringId SHOULD_I_GET_STARTED; - @ClientString(id = 545901, message = "A Sick Ambition (Lv. 99-99)") - public static NpcStringId A_SICK_AMBITION_LV_99_99; + @ClientString(id = 545901, message = "|Lv. 99-99| A Sick Ambition") + public static NpcStringId LV_99_99_A_SICK_AMBITION; - @ClientString(id = 545902, message = "A Sick Ambition (Lv. 99-99) (In Progress)") - public static NpcStringId A_SICK_AMBITION_LV_99_99_IN_PROGRESS; + @ClientString(id = 545902, message = "|Lv. 99-99| A Sick Ambition (In Progress)") + public static NpcStringId LV_99_99_A_SICK_AMBITION_IN_PROGRESS; - @ClientString(id = 545903, message = "A Sick Ambition (Lv. 99-99) (Complete)") - public static NpcStringId A_SICK_AMBITION_LV_99_99_COMPLETE; + @ClientString(id = 545903, message = "|Lv. 99-99| A Sick Ambition (Complete)") + public static NpcStringId LV_99_99_A_SICK_AMBITION_COMPLETE; - @ClientString(id = 545904, message = "A Sick Ambition (Lv. 99-99)") - public static NpcStringId A_SICK_AMBITION_LV_99_99_2; + @ClientString(id = 545904, message = "|Lv. 99-99| A Sick Ambition") + public static NpcStringId LV_99_99_A_SICK_AMBITION_2; @ClientString(id = 545921, message = "Please defeat Beleth. We must save Hellbound.") public static NpcStringId PLEASE_DEFEAT_BELETH_WE_MUST_SAVE_HELLBOUND; - @ClientString(id = 546001, message = "Return of the Alligator Hunter (Lv. 40-46)") - public static NpcStringId RETURN_OF_THE_ALLIGATOR_HUNTER_LV_40_46; + @ClientString(id = 546001, message = "|Lv. 40-46| Return of the Alligator Hunter") + public static NpcStringId LV_40_46_RETURN_OF_THE_ALLIGATOR_HUNTER; - @ClientString(id = 546002, message = "Return of the Alligator Hunter (Lv. 40-46) (In Progress)") - public static NpcStringId RETURN_OF_THE_ALLIGATOR_HUNTER_LV_40_46_IN_PROGRESS; + @ClientString(id = 546002, message = "|Lv. 40-46| Return of the Alligator Hunter (In Progress)") + public static NpcStringId LV_40_46_RETURN_OF_THE_ALLIGATOR_HUNTER_IN_PROGRESS; - @ClientString(id = 546003, message = "Return of the Alligator Hunter (Lv. 40-46) (Complete)") - public static NpcStringId RETURN_OF_THE_ALLIGATOR_HUNTER_LV_40_46_COMPLETE; + @ClientString(id = 546003, message = "|Lv. 40-46| Return of the Alligator Hunter (Complete)") + public static NpcStringId LV_40_46_RETURN_OF_THE_ALLIGATOR_HUNTER_COMPLETE; - @ClientString(id = 546004, message = "Return of the Alligator Hunter (Lv. 40-46)") - public static NpcStringId RETURN_OF_THE_ALLIGATOR_HUNTER_LV_40_46_2; + @ClientString(id = 546004, message = "|Lv. 40-46| Return of the Alligator Hunter") + public static NpcStringId LV_40_46_RETURN_OF_THE_ALLIGATOR_HUNTER_2; - @ClientString(id = 546101, message = "Tapping the Power Within (Lv. 99-99)") - public static NpcStringId TAPPING_THE_POWER_WITHIN_LV_99_99; + @ClientString(id = 546101, message = "|Lv. 99-99| Tapping the Power Within") + public static NpcStringId LV_99_99_TAPPING_THE_POWER_WITHIN; - @ClientString(id = 546102, message = "Tapping the Power Within (Lv. 99-99) (In Progress)") - public static NpcStringId TAPPING_THE_POWER_WITHIN_LV_99_99_IN_PROGRESS; + @ClientString(id = 546102, message = "|Lv. 99-99| Tapping the Power Within (In Progress)") + public static NpcStringId LV_99_99_TAPPING_THE_POWER_WITHIN_IN_PROGRESS; - @ClientString(id = 546103, message = "Tapping the Power Within (Lv. 99-99) (Complete)") - public static NpcStringId TAPPING_THE_POWER_WITHIN_LV_99_99_COMPLETE; + @ClientString(id = 546103, message = "|Lv. 99-99| Tapping the Power Within (Complete)") + public static NpcStringId LV_99_99_TAPPING_THE_POWER_WITHIN_COMPLETE; - @ClientString(id = 546104, message = "Tapping the Power Within (Lv. 99-99)") - public static NpcStringId TAPPING_THE_POWER_WITHIN_LV_99_99_2; + @ClientString(id = 546104, message = "|Lv. 99-99| Tapping the Power Within") + public static NpcStringId LV_99_99_TAPPING_THE_POWER_WITHIN_2; @ClientString(id = 546121, message = "Does your fate not weigh upon you?") public static NpcStringId DOES_YOUR_FATE_NOT_WEIGH_UPON_YOU; @@ -13465,53 +13510,53 @@ public final class NpcStringId @ClientString(id = 546151, message = "The letter from Lionel Hunter has arrived.\\nClick the question mark icon to read the letter's contents.") public static NpcStringId THE_LETTER_FROM_LIONEL_HUNTER_HAS_ARRIVED_NCLICK_THE_QUESTION_MARK_ICON_TO_READ_THE_LETTER_S_CONTENTS; - @ClientString(id = 546201, message = "Temper a Rusting Blade (Lv. 46-52)") - public static NpcStringId TEMPER_A_RUSTING_BLADE_LV_46_52; + @ClientString(id = 546201, message = "|Lv. 46-52| Temper a Rusting Blade") + public static NpcStringId LV_46_52_TEMPER_A_RUSTING_BLADE; - @ClientString(id = 546202, message = "Temper a Rusting Blade (Lv. 46-52) (In Progress)") - public static NpcStringId TEMPER_A_RUSTING_BLADE_LV_46_52_IN_PROGRESS; + @ClientString(id = 546202, message = "|Lv. 46-52| Temper a Rusting Blade (In Progress)") + public static NpcStringId LV_46_52_TEMPER_A_RUSTING_BLADE_IN_PROGRESS; - @ClientString(id = 546203, message = "Temper a Rusting Blade (Lv. 46-52) (Complete)") - public static NpcStringId TEMPER_A_RUSTING_BLADE_LV_46_52_COMPLETE; + @ClientString(id = 546203, message = "|Lv. 46-52| Temper a Rusting Blade (Complete)") + public static NpcStringId LV_46_52_TEMPER_A_RUSTING_BLADE_COMPLETE; - @ClientString(id = 546204, message = "Temper a Rusting Blade (Lv. 46-52)") - public static NpcStringId TEMPER_A_RUSTING_BLADE_LV_46_52_2; + @ClientString(id = 546204, message = "|Lv. 46-52| Temper a Rusting Blade") + public static NpcStringId LV_46_52_TEMPER_A_RUSTING_BLADE_2; - @ClientString(id = 546301, message = "The Soul of a Sword (Lv. 52-58)") - public static NpcStringId THE_SOUL_OF_A_SWORD_LV_52_58; + @ClientString(id = 546301, message = "|Lv. 52-58| The Soul of a Sword") + public static NpcStringId LV_52_58_THE_SOUL_OF_A_SWORD; - @ClientString(id = 546302, message = "The Soul of a Sword (Lv. 52-58) (In Progress)") - public static NpcStringId THE_SOUL_OF_A_SWORD_LV_52_58_IN_PROGRESS; + @ClientString(id = 546302, message = "|Lv. 52-58| The Soul of a Sword (In Progress)") + public static NpcStringId LV_52_58_THE_SOUL_OF_A_SWORD_IN_PROGRESS; - @ClientString(id = 546303, message = "The Soul of a Sword (Lv. 52-58) (Complete)") - public static NpcStringId THE_SOUL_OF_A_SWORD_LV_52_58_COMPLETE; + @ClientString(id = 546303, message = "|Lv. 52-58| The Soul of a Sword (Complete)") + public static NpcStringId LV_52_58_THE_SOUL_OF_A_SWORD_COMPLETE; - @ClientString(id = 546304, message = "The Soul of a Sword (Lv. 52-58)") - public static NpcStringId THE_SOUL_OF_A_SWORD_LV_52_58_2; + @ClientString(id = 546304, message = "|Lv. 52-58| The Soul of a Sword") + public static NpcStringId LV_52_58_THE_SOUL_OF_A_SWORD_2; - @ClientString(id = 546401, message = "Be Prepared for Anything (Lv. 58-65)") - public static NpcStringId BE_PREPARED_FOR_ANYTHING_LV_58_65; + @ClientString(id = 546401, message = "|Lv. 58-65| Be Prepared for Anything") + public static NpcStringId LV_58_65_BE_PREPARED_FOR_ANYTHING; - @ClientString(id = 546402, message = "Be Prepared for Anything (Lv. 58-65) (In Progress)") - public static NpcStringId BE_PREPARED_FOR_ANYTHING_LV_58_65_IN_PROGRESS; + @ClientString(id = 546402, message = "|Lv. 58-65| Be Prepared for Anything (In Progress)") + public static NpcStringId LV_58_65_BE_PREPARED_FOR_ANYTHING_IN_PROGRESS; - @ClientString(id = 546403, message = "Be Prepared for Anything (Lv. 58-65) (Complete)") - public static NpcStringId BE_PREPARED_FOR_ANYTHING_LV_58_65_COMPLETE; + @ClientString(id = 546403, message = "|Lv. 58-65| Be Prepared for Anything (Complete)") + public static NpcStringId LV_58_65_BE_PREPARED_FOR_ANYTHING_COMPLETE; - @ClientString(id = 546404, message = "Be Prepared for Anything (Lv. 58-65)") - public static NpcStringId BE_PREPARED_FOR_ANYTHING_LV_58_65_2; + @ClientString(id = 546404, message = "|Lv. 58-65| Be Prepared for Anything") + public static NpcStringId LV_58_65_BE_PREPARED_FOR_ANYTHING_2; - @ClientString(id = 547201, message = "Winds of Fate: Encroaching Shadows (Lv. 85-99)") - public static NpcStringId WINDS_OF_FATE_ENCROACHING_SHADOWS_LV_85_99; + @ClientString(id = 547201, message = "|Lv. 85-99| Winds of Fate: Encroaching Shadows") + public static NpcStringId LV_85_99_WINDS_OF_FATE_ENCROACHING_SHADOWS; - @ClientString(id = 547202, message = "Winds of Fate: Encroaching Shadows (Lv. 85-99) (In Progress)") - public static NpcStringId WINDS_OF_FATE_ENCROACHING_SHADOWS_LV_85_99_IN_PROGRESS; + @ClientString(id = 547202, message = "|Lv. 85-99| Winds of Fate: Encroaching Shadows (In Progress)") + public static NpcStringId LV_85_99_WINDS_OF_FATE_ENCROACHING_SHADOWS_IN_PROGRESS; - @ClientString(id = 547203, message = "Winds of Fate: Encroaching Shadows (Lv. 85-99) (Done)") - public static NpcStringId WINDS_OF_FATE_ENCROACHING_SHADOWS_LV_85_99_DONE; + @ClientString(id = 547203, message = "|Lv. 85-99| Winds of Fate: Encroaching Shadows (Done)") + public static NpcStringId LV_85_99_WINDS_OF_FATE_ENCROACHING_SHADOWS_DONE; - @ClientString(id = 547204, message = "Winds of Fate: Encroaching Shadows (Lv. 85-99)") - public static NpcStringId WINDS_OF_FATE_ENCROACHING_SHADOWS_LV_85_99_2; + @ClientString(id = 547204, message = "|Lv. 85-99| Winds of Fate: Encroaching Shadows") + public static NpcStringId LV_85_99_WINDS_OF_FATE_ENCROACHING_SHADOWS_2; @ClientString(id = 547211, message = "Talk to Zephyra") public static NpcStringId TALK_TO_ZEPHYRA; @@ -13558,194 +13603,194 @@ public final class NpcStringId @ClientString(id = 547225, message = "Talk to Raina") public static NpcStringId TALK_TO_RAINA; - @ClientString(id = 550101, message = "Embroidered on a Cloak, Part 1: Zaken's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL; + @ClientString(id = 550101, message = "|Lv. 78-99| Embroidered on a Cloak, Part 1: Zaken's Soul") + public static NpcStringId LV_78_99_EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL; - @ClientString(id = 550102, message = "Embroidered on a Cloak, Part 1: Zaken's Soul (In Progress)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_IN_PROGRESS; + @ClientString(id = 550102, message = "|Lv. 78-99| Embroidered on a Cloak, Part 1: Zaken's Soul (In Progress)") + public static NpcStringId LV_78_99_EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_IN_PROGRESS; - @ClientString(id = 550103, message = "Embroidered on a Cloak, Part 1: Zaken's Soul (Done)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_DONE; + @ClientString(id = 550103, message = "|Lv. 78-99| Embroidered on a Cloak, Part 1: Zaken's Soul (Done)") + public static NpcStringId LV_78_99_EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_DONE; - @ClientString(id = 550104, message = "Embroidered on a Cloak, Part 1: Zaken's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_2; + @ClientString(id = 550104, message = "|Lv. 78-99| Embroidered on a Cloak, Part 1: Zaken's Soul") + public static NpcStringId LV_78_99_EMBROIDERED_ON_A_CLOAK_PART_1_ZAKEN_S_SOUL_2; - @ClientString(id = 550201, message = "Embroidered on a Cloak, Part 2: Freya's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL; + @ClientString(id = 550201, message = "|Lv. 82-99| Embroidered on a Cloak, Part 2: Freya's Soul") + public static NpcStringId LV_82_99_EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL; - @ClientString(id = 550202, message = "Embroidered on a Cloak, Part 2: Freya's Soul (In Progress)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_IN_PROGRESS; + @ClientString(id = 550202, message = "|Lv. 82-99| Embroidered on a Cloak, Part 2: Freya's Soul (In Progress)") + public static NpcStringId LV_82_99_EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_IN_PROGRESS; - @ClientString(id = 550203, message = "Embroidered on a Cloak, Part 2: Freya's Soul (Done)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_DONE; + @ClientString(id = 550203, message = "|Lv. 82-99| Embroidered on a Cloak, Part 2: Freya's Soul (Done)") + public static NpcStringId LV_82_99_EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_DONE; - @ClientString(id = 550204, message = "Embroidered on a Cloak, Part 2: Freya's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_2; + @ClientString(id = 550204, message = "|Lv. 82-99| Embroidered on a Cloak, Part 2: Freya's Soul") + public static NpcStringId LV_82_99_EMBROIDERED_ON_A_CLOAK_PART_2_FREYA_S_SOUL_2; - @ClientString(id = 550301, message = "Embroidered on a Cloak, Part 3: Frintezza's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL; + @ClientString(id = 550301, message = "|Lv. 80-99| Embroidered on a Cloak, Part 3: Frintezza's Soul") + public static NpcStringId LV_80_99_EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL; - @ClientString(id = 550302, message = "Embroidered on a Cloak, Part 3: Frintezza's Soul (In Progress)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_IN_PROGRESS; + @ClientString(id = 550302, message = "|Lv. 80-99| Embroidered on a Cloak, Part 3: Frintezza's Soul (In Progress)") + public static NpcStringId LV_80_99_EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_IN_PROGRESS; - @ClientString(id = 550303, message = "Embroidered on a Cloak, Part 3: Frintezza's Soul (Done)") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_DONE; + @ClientString(id = 550303, message = "|Lv. 80-99| Embroidered on a Cloak, Part 3: Frintezza's Soul (Done)") + public static NpcStringId LV_80_99_EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_DONE; - @ClientString(id = 550304, message = "Embroidered on a Cloak, Part 3: Frintezza's Soul") - public static NpcStringId EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_2; + @ClientString(id = 550304, message = "|Lv. 80-99| Embroidered on a Cloak, Part 3: Frintezza's Soul") + public static NpcStringId LV_80_99_EMBROIDERED_ON_A_CLOAK_PART_3_FRINTEZZA_S_SOUL_2; - @ClientString(id = 550401, message = "Jewel of Antharas (Lv. 84-99)") - public static NpcStringId JEWEL_OF_ANTHARAS_LV_84_99; + @ClientString(id = 550401, message = "|Lv. 84-99| Jewel of Antharas") + public static NpcStringId LV_84_99_JEWEL_OF_ANTHARAS; - @ClientString(id = 550402, message = "Jewel of Antharas (Lv. 84-99) (In Progress)") - public static NpcStringId JEWEL_OF_ANTHARAS_LV_84_99_IN_PROGRESS; + @ClientString(id = 550402, message = "|Lv. 84-99| Jewel of Antharas (In Progress)") + public static NpcStringId LV_84_99_JEWEL_OF_ANTHARAS_IN_PROGRESS; - @ClientString(id = 550403, message = "Jewel of Antharas (Lv. 84-99) (Done)") - public static NpcStringId JEWEL_OF_ANTHARAS_LV_84_99_DONE; + @ClientString(id = 550403, message = "|Lv. 84-99| Jewel of Antharas (Done)") + public static NpcStringId LV_84_99_JEWEL_OF_ANTHARAS_DONE; - @ClientString(id = 550404, message = "Jewel of Antharas (Lv. 84-99)") - public static NpcStringId JEWEL_OF_ANTHARAS_LV_84_99_2; + @ClientString(id = 550404, message = "|Lv. 84-99| Jewel of Antharas") + public static NpcStringId LV_84_99_JEWEL_OF_ANTHARAS_2; - @ClientString(id = 550501, message = "Jewel of Valakas (Lv. 84-99)") - public static NpcStringId JEWEL_OF_VALAKAS_LV_84_99; + @ClientString(id = 550501, message = "|Lv. 84-99| Jewel of Valakas") + public static NpcStringId LV_84_99_JEWEL_OF_VALAKAS; - @ClientString(id = 550502, message = "Jewel of Valakas (Lv. 84-99) (In Progress)") - public static NpcStringId JEWEL_OF_VALAKAS_LV_84_99_IN_PROGRESS; + @ClientString(id = 550502, message = "|Lv. 84-99| Jewel of Valakas (In Progress)") + public static NpcStringId LV_84_99_JEWEL_OF_VALAKAS_IN_PROGRESS; - @ClientString(id = 550503, message = "Jewel of Valakas (Lv. 84-99) (Done)") - public static NpcStringId JEWEL_OF_VALAKAS_LV_84_99_DONE; + @ClientString(id = 550503, message = "|Lv. 84-99| Jewel of Valakas (Done)") + public static NpcStringId LV_84_99_JEWEL_OF_VALAKAS_DONE; - @ClientString(id = 550504, message = "Jewel of Valakas (Lv. 84-99)") - public static NpcStringId JEWEL_OF_VALAKAS_LV_84_99_2; + @ClientString(id = 550504, message = "|Lv. 84-99| Jewel of Valakas") + public static NpcStringId LV_84_99_JEWEL_OF_VALAKAS_2; - @ClientString(id = 550601, message = "|Level 25 or higher| Diana's Request") - public static NpcStringId LEVEL_25_OR_HIGHER_DIANA_S_REQUEST; + @ClientString(id = 550601, message = "|Lv. 25+| Diana's Request") + public static NpcStringId LV_25_DIANA_S_REQUEST; - @ClientString(id = 550602, message = "|Level 25 or higher| Diana's Request (In Progress)") - public static NpcStringId LEVEL_25_OR_HIGHER_DIANA_S_REQUEST_IN_PROGRESS; + @ClientString(id = 550602, message = "|Lv. 25+| Diana's Request (In Progress)") + public static NpcStringId LV_25_DIANA_S_REQUEST_IN_PROGRESS; - @ClientString(id = 550603, message = "|Level 25 or higher| Diana's Request (Complete)") - public static NpcStringId LEVEL_25_OR_HIGHER_DIANA_S_REQUEST_COMPLETE; + @ClientString(id = 550603, message = "|Lv. 25+| Diana's Request (Complete)") + public static NpcStringId LV_25_DIANA_S_REQUEST_COMPLETE; - @ClientString(id = 550604, message = "|Level 25 or higher| Diana's Request") - public static NpcStringId LEVEL_25_OR_HIGHER_DIANA_S_REQUEST_2; + @ClientString(id = 550604, message = "|Lv. 25+| Diana's Request") + public static NpcStringId LV_25_DIANA_S_REQUEST_2; @ClientString(id = 550611, message = "Talk to Diana") public static NpcStringId TALK_TO_DIANA; - @ClientString(id = 570101, message = "The Road to Destruction (Lv. 93-99)") - public static NpcStringId THE_ROAD_TO_DESTRUCTION_LV_93_99; + @ClientString(id = 570101, message = "|Lv. 93-99| The Road to Destruction") + public static NpcStringId LV_93_99_THE_ROAD_TO_DESTRUCTION; - @ClientString(id = 570102, message = "The Road to Destruction (Lv. 93-99) (In Progress)") - public static NpcStringId THE_ROAD_TO_DESTRUCTION_LV_93_99_IN_PROGRESS; + @ClientString(id = 570102, message = "|Lv. 93-99| The Road to Destruction (In Progress)") + public static NpcStringId LV_93_99_THE_ROAD_TO_DESTRUCTION_IN_PROGRESS; - @ClientString(id = 570103, message = "The Road to Destruction (Lv. 93-99) (Complete)") - public static NpcStringId THE_ROAD_TO_DESTRUCTION_LV_93_99_COMPLETE; + @ClientString(id = 570103, message = "|Lv. 93-99| The Road to Destruction (Complete)") + public static NpcStringId LV_93_99_THE_ROAD_TO_DESTRUCTION_COMPLETE; - @ClientString(id = 570104, message = "The Road to Destruction (Lv. 93-99)") - public static NpcStringId THE_ROAD_TO_DESTRUCTION_LV_93_99_2; + @ClientString(id = 570104, message = "|Lv. 93-99| The Road to Destruction") + public static NpcStringId LV_93_99_THE_ROAD_TO_DESTRUCTION_2; - @ClientString(id = 570201, message = "The Road to Infinity (Lv. 95-99)") - public static NpcStringId THE_ROAD_TO_INFINITY_LV_95_99; + @ClientString(id = 570201, message = "|Lv. 95-99| The Road to Infinity") + public static NpcStringId LV_95_99_THE_ROAD_TO_INFINITY; - @ClientString(id = 570202, message = "The Road to Infinity (Lv. 95-99) (In Progress)") - public static NpcStringId THE_ROAD_TO_INFINITY_LV_95_99_IN_PROGRESS; + @ClientString(id = 570202, message = "|Lv. 95-99| The Road to Infinity (In Progress)") + public static NpcStringId LV_95_99_THE_ROAD_TO_INFINITY_IN_PROGRESS; - @ClientString(id = 570203, message = "The Road to Infinity (Lv. 95-99) (Complete)") - public static NpcStringId THE_ROAD_TO_INFINITY_LV_95_99_COMPLETE; + @ClientString(id = 570203, message = "|Lv. 95-99| The Road to Infinity (Complete)") + public static NpcStringId LV_95_99_THE_ROAD_TO_INFINITY_COMPLETE; - @ClientString(id = 570204, message = "The Road to Infinity (Lv. 95-99)") - public static NpcStringId THE_ROAD_TO_INFINITY_LV_95_99_2; + @ClientString(id = 570204, message = "|Lv. 95-99| The Road to Infinity") + public static NpcStringId LV_95_99_THE_ROAD_TO_INFINITY_2; - @ClientString(id = 570301, message = "Bottle of Istina's Soul (Lv. 97-99)") - public static NpcStringId BOTTLE_OF_ISTINA_S_SOUL_LV_97_99; + @ClientString(id = 570301, message = "|Lv. 97-99| Bottle of Istina's Soul") + public static NpcStringId LV_97_99_BOTTLE_OF_ISTINA_S_SOUL; - @ClientString(id = 570302, message = "Bottle of Istina's Soul (Lv. 97-99) (In Progress)") - public static NpcStringId BOTTLE_OF_ISTINA_S_SOUL_LV_97_99_IN_PROGRESS; + @ClientString(id = 570302, message = "|Lv. 97-99| Bottle of Istina's Soul (In Progress)") + public static NpcStringId LV_97_99_BOTTLE_OF_ISTINA_S_SOUL_IN_PROGRESS; - @ClientString(id = 570303, message = "Bottle of Istina's Soul (Lv. 97-99) (Complete)") - public static NpcStringId BOTTLE_OF_ISTINA_S_SOUL_LV_97_99_COMPLETE; + @ClientString(id = 570303, message = "|Lv. 97-99| Bottle of Istina's Soul (Complete)") + public static NpcStringId LV_97_99_BOTTLE_OF_ISTINA_S_SOUL_COMPLETE; - @ClientString(id = 570304, message = "Bottle of Istina's Soul (Lv. 97-99)") - public static NpcStringId BOTTLE_OF_ISTINA_S_SOUL_LV_97_99_2; + @ClientString(id = 570304, message = "|Lv. 97-99| Bottle of Istina's Soul") + public static NpcStringId LV_97_99_BOTTLE_OF_ISTINA_S_SOUL_2; - @ClientString(id = 570401, message = "Bottle of Octavis's Soul (Lv. 95-99)") - public static NpcStringId BOTTLE_OF_OCTAVIS_S_SOUL_LV_95_99; + @ClientString(id = 570401, message = "|Lv. 95-99| Bottle of Octavis's Soul") + public static NpcStringId LV_95_99_BOTTLE_OF_OCTAVIS_S_SOUL; - @ClientString(id = 570402, message = "Bottle of Octavis's Soul (Lv. 95-99) (In Progress)") - public static NpcStringId BOTTLE_OF_OCTAVIS_S_SOUL_LV_95_99_IN_PROGRESS; + @ClientString(id = 570402, message = "|Lv. 95-99| Bottle of Octavis's Soul (In Progress)") + public static NpcStringId LV_95_99_BOTTLE_OF_OCTAVIS_S_SOUL_IN_PROGRESS; - @ClientString(id = 570403, message = "Bottle of Octavis's Soul (Lv. 95-99) (Complete)") - public static NpcStringId BOTTLE_OF_OCTAVIS_S_SOUL_LV_95_99_COMPLETE; + @ClientString(id = 570403, message = "|Lv. 95-99| Bottle of Octavis's Soul (Complete)") + public static NpcStringId LV_95_99_BOTTLE_OF_OCTAVIS_S_SOUL_COMPLETE; - @ClientString(id = 570404, message = "Bottle of Octavis's Soul (Lv. 95-99)") - public static NpcStringId BOTTLE_OF_OCTAVIS_S_SOUL_LV_95_99_2; + @ClientString(id = 570404, message = "|Lv. 95-99| Bottle of Octavis's Soul") + public static NpcStringId LV_95_99_BOTTLE_OF_OCTAVIS_S_SOUL_2; - @ClientString(id = 570501, message = "Bottle of Tauti's Soul (Lv. 97-99)") - public static NpcStringId BOTTLE_OF_TAUTI_S_SOUL_LV_97_99; + @ClientString(id = 570501, message = "|Lv. 97-99| Bottle of Tauti's Soul") + public static NpcStringId LV_97_99_BOTTLE_OF_TAUTI_S_SOUL; - @ClientString(id = 570502, message = "Bottle of Tauti's Soul (Lv. 97-99) (In Progress)") - public static NpcStringId BOTTLE_OF_TAUTI_S_SOUL_LV_97_99_IN_PROGRESS; + @ClientString(id = 570502, message = "|Lv. 97-99| Bottle of Tauti's Soul (In Progress)") + public static NpcStringId LV_97_99_BOTTLE_OF_TAUTI_S_SOUL_IN_PROGRESS; - @ClientString(id = 570503, message = "Bottle of Tauti's Soul (Lv. 97-99) (Complete)") - public static NpcStringId BOTTLE_OF_TAUTI_S_SOUL_LV_97_99_COMPLETE; + @ClientString(id = 570503, message = "|Lv. 97-99| Bottle of Tauti's Soul (Complete)") + public static NpcStringId LV_97_99_BOTTLE_OF_TAUTI_S_SOUL_COMPLETE; - @ClientString(id = 570504, message = "Bottle of Tauti's Soul (Lv. 97-99)") - public static NpcStringId BOTTLE_OF_TAUTI_S_SOUL_LV_97_99_2; + @ClientString(id = 570504, message = "|Lv. 97-99| Bottle of Tauti's Soul") + public static NpcStringId LV_97_99_BOTTLE_OF_TAUTI_S_SOUL_2; - @ClientString(id = 570701, message = "Flames of Sorrow (Lv. 46-51)") - public static NpcStringId FLAMES_OF_SORROW_LV_46_51; + @ClientString(id = 570701, message = "|Lv. 46-51| Flames of Sorrow") + public static NpcStringId LV_46_51_FLAMES_OF_SORROW; - @ClientString(id = 570702, message = "Flames of Sorrow (Lv. 46-51) (In Progress)") - public static NpcStringId FLAMES_OF_SORROW_LV_46_51_IN_PROGRESS; + @ClientString(id = 570702, message = "|Lv. 46-51| Flames of Sorrow (In Progress)") + public static NpcStringId LV_46_51_FLAMES_OF_SORROW_IN_PROGRESS; - @ClientString(id = 570703, message = "Flames of Sorrow (Lv. 46-51) (Done)") - public static NpcStringId FLAMES_OF_SORROW_LV_46_51_DONE; + @ClientString(id = 570703, message = "|Lv. 46-51| Flames of Sorrow (Done)") + public static NpcStringId LV_46_51_FLAMES_OF_SORROW_DONE; - @ClientString(id = 570704, message = "Flames of Sorrow (Lv. 46-51)") - public static NpcStringId FLAMES_OF_SORROW_LV_46_51_2; + @ClientString(id = 570704, message = "|Lv. 46-51| Flames of Sorrow") + public static NpcStringId LV_46_51_FLAMES_OF_SORROW_2; - @ClientString(id = 570801, message = "Strengthen the Barrier (Lv. 52-57)") - public static NpcStringId STRENGTHEN_THE_BARRIER_LV_52_57; + @ClientString(id = 570801, message = "|Lv. 52-57| Strengthen the Barrier") + public static NpcStringId LV_52_57_STRENGTHEN_THE_BARRIER; - @ClientString(id = 570802, message = "Strengthen the Barrier (Lv. 52-57) (In Progress)") - public static NpcStringId STRENGTHEN_THE_BARRIER_LV_52_57_IN_PROGRESS; + @ClientString(id = 570802, message = "|Lv. 52-57| Strengthen the Barrier (In Progress)") + public static NpcStringId LV_52_57_STRENGTHEN_THE_BARRIER_IN_PROGRESS; - @ClientString(id = 570803, message = "Strengthen the Barrier (Lv. 52-57) (Done)") - public static NpcStringId STRENGTHEN_THE_BARRIER_LV_52_57_DONE; + @ClientString(id = 570803, message = "|Lv. 52-57| Strengthen the Barrier (Done)") + public static NpcStringId LV_52_57_STRENGTHEN_THE_BARRIER_DONE; - @ClientString(id = 570804, message = "Strengthen the Barrier (Lv. 52-57)") - public static NpcStringId STRENGTHEN_THE_BARRIER_LV_52_57_2; + @ClientString(id = 570804, message = "|Lv. 52-57| Strengthen the Barrier") + public static NpcStringId LV_52_57_STRENGTHEN_THE_BARRIER_2; @ClientString(id = 570811, message = "Activate the Barrier Enforcer") public static NpcStringId ACTIVATE_THE_BARRIER_ENFORCER; - @ClientString(id = 570901, message = "The Stolen Seed (Lv. 58-61)") - public static NpcStringId THE_STOLEN_SEED_LV_58_61; + @ClientString(id = 570901, message = "|Lv. 58-61| The Stolen Seed") + public static NpcStringId LV_58_61_THE_STOLEN_SEED; - @ClientString(id = 570902, message = "The Stolen Seed (Lv. 58-61) (In Progress)") - public static NpcStringId THE_STOLEN_SEED_LV_58_61_IN_PROGRESS; + @ClientString(id = 570902, message = "|Lv. 58-61| The Stolen Seed (In Progress)") + public static NpcStringId LV_58_61_THE_STOLEN_SEED_IN_PROGRESS; - @ClientString(id = 570903, message = "The Stolen Seed (Lv. 58-61) (Complete)") - public static NpcStringId THE_STOLEN_SEED_LV_58_61_COMPLETE; + @ClientString(id = 570903, message = "|Lv. 58-61| The Stolen Seed (Complete)") + public static NpcStringId LV_58_61_THE_STOLEN_SEED_COMPLETE; - @ClientString(id = 570904, message = "The Stolen Seed (Lv. 58-61)") - public static NpcStringId THE_STOLEN_SEED_LV_58_61_2; + @ClientString(id = 570904, message = "|Lv. 58-61| The Stolen Seed") + public static NpcStringId LV_58_61_THE_STOLEN_SEED_2; @ClientString(id = 570911, message = "Activate the Magic Circle Control Device") public static NpcStringId ACTIVATE_THE_MAGIC_CIRCLE_CONTROL_DEVICE; - @ClientString(id = 571001, message = "Life Energy Repository (Lv. 61-65)") - public static NpcStringId LIFE_ENERGY_REPOSITORY_LV_61_65; + @ClientString(id = 571001, message = "|Lv. 61-65| Life Energy Repository") + public static NpcStringId LV_61_65_LIFE_ENERGY_REPOSITORY; - @ClientString(id = 571002, message = "Life Energy Repository (Lv. 61-65) (In Progress)") - public static NpcStringId LIFE_ENERGY_REPOSITORY_LV_61_65_IN_PROGRESS; + @ClientString(id = 571002, message = "|Lv. 61-65| Life Energy Repository (In Progress)") + public static NpcStringId LV_61_65_LIFE_ENERGY_REPOSITORY_IN_PROGRESS; - @ClientString(id = 571003, message = "Life Energy Repository (Lv. 61-65) (Complete)") - public static NpcStringId LIFE_ENERGY_REPOSITORY_LV_61_65_COMPLETE; + @ClientString(id = 571003, message = "|Lv. 61-65| Life Energy Repository (Complete)") + public static NpcStringId LV_61_65_LIFE_ENERGY_REPOSITORY_COMPLETE; - @ClientString(id = 571004, message = "Life Energy Repository (Lv. 61-65)") - public static NpcStringId LIFE_ENERGY_REPOSITORY_LV_61_65_2; + @ClientString(id = 571004, message = "|Lv. 61-65| Life Energy Repository") + public static NpcStringId LV_61_65_LIFE_ENERGY_REPOSITORY_2; @ClientString(id = 571011, message = "Find the Life Energy Repository") public static NpcStringId FIND_THE_LIFE_ENERGY_REPOSITORY; @@ -13753,32 +13798,32 @@ public final class NpcStringId @ClientString(id = 571200, message = "A minstrel has sent an invitation.\\nClick the question-mark icon to read.") public static NpcStringId A_MINSTREL_HAS_SENT_AN_INVITATION_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; - @ClientString(id = 571201, message = "The Minstrel's Song, Part 1 (Lv. 85-87)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_1_LV_85_87; + @ClientString(id = 571201, message = "|Lv. 85-87| The Minstrel's Song, Part 1") + public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1; - @ClientString(id = 571202, message = "The Minstrel's Song, Part 1 (Lv. 85-87) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_1_LV_85_87_IN_PROGRESS; + @ClientString(id = 571202, message = "|Lv. 85-87| The Minstrel's Song, Part 1 (In Progress)") + public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_IN_PROGRESS; - @ClientString(id = 571203, message = "The Minstrel's Song, Part 1 (Lv. 85-87) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_1_LV_85_87_DONE; + @ClientString(id = 571203, message = "|Lv. 85-87| The Minstrel's Song, Part 1 (Done)") + public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_DONE; - @ClientString(id = 571204, message = "The Minstrel's Song, Part 1 (Lv. 85-87)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_1_LV_85_87_2; + @ClientString(id = 571204, message = "|Lv. 85-87| The Minstrel's Song, Part 1") + public static NpcStringId LV_85_87_THE_MINSTREL_S_SONG_PART_1_2; @ClientString(id = 571211, message = "Talk to Liberatto") public static NpcStringId TALK_TO_LIBERATTO; - @ClientString(id = 571301, message = "The Hero's Journey: Bloody Swampland (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_LV_85_99; + @ClientString(id = 571301, message = "|Lv. 85-99| The Hero's Journey: Bloody Swampland") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND; - @ClientString(id = 571302, message = "The Hero's Journey: Bloody Swampland (Lv. 85-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_LV_85_99_IN_PROGRESS; + @ClientString(id = 571302, message = "|Lv. 85-99| The Hero's Journey: Bloody Swampland (In Progress)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_IN_PROGRESS; - @ClientString(id = 571303, message = "The Hero's Journey: Bloody Swampland (Lv. 85-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_LV_85_99_DONE; + @ClientString(id = 571303, message = "|Lv. 85-99| The Hero's Journey: Bloody Swampland (Done)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_DONE; - @ClientString(id = 571304, message = "The Hero's Journey: Bloody Swampland (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_LV_85_99_2; + @ClientString(id = 571304, message = "|Lv. 85-99| The Hero's Journey: Bloody Swampland") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_BLOODY_SWAMPLAND_2; @ClientString(id = 571311, message = "Talk to Liberatto") public static NpcStringId TALK_TO_LIBERATTO_2; @@ -13789,17 +13834,17 @@ public final class NpcStringId @ClientString(id = 571313, message = "Talk to Vollodos") public static NpcStringId TALK_TO_VOLLODOS_2; - @ClientString(id = 571401, message = "The Hero's Journey: Seed of Annihilation (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_LV_85_99; + @ClientString(id = 571401, message = "|Lv. 85-99| The Hero's Journey: Seed of Annihilation") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION; - @ClientString(id = 571402, message = "The Hero's Journey: Seed of Annihilation (Lv. 85-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_LV_85_99_IN_PROGRESS; + @ClientString(id = 571402, message = "|Lv. 85-99| The Hero's Journey: Seed of Annihilation (In Progress)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_IN_PROGRESS; - @ClientString(id = 571403, message = "The Hero's Journey: Seed of Annihilation (Lv. 85-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_LV_85_99_DONE; + @ClientString(id = 571403, message = "|Lv. 85-99| The Hero's Journey: Seed of Annihilation (Done)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_DONE; - @ClientString(id = 571404, message = "The Hero's Journey: Seed of Annihilation (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_LV_85_99_2; + @ClientString(id = 571404, message = "|Lv. 85-99| The Hero's Journey: Seed of Annihilation") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_SEED_OF_ANNIHILATION_2; @ClientString(id = 571411, message = "Talk to Liberatto") public static NpcStringId TALK_TO_LIBERATTO_3; @@ -13810,17 +13855,17 @@ public final class NpcStringId @ClientString(id = 571413, message = "Talk to Klemis") public static NpcStringId TALK_TO_KLEMIS_2; - @ClientString(id = 571501, message = "The Hero's Journey: Harnak Underground Ruins (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_LV_85_99; + @ClientString(id = 571501, message = "|Lv. 85-99| The Hero's Journey: Harnak Underground Ruins") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS; - @ClientString(id = 571502, message = "The Hero's Journey: Harnak Underground Ruins (Lv. 85-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_LV_85_99_IN_PROGRESS; + @ClientString(id = 571502, message = "|Lv. 85-99| The Hero's Journey: Harnak Underground Ruins (In Progress)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_IN_PROGRESS; - @ClientString(id = 571503, message = "The Hero's Journey: Harnak Underground Ruins (Lv. 85-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_LV_85_99_DONE; + @ClientString(id = 571503, message = "|Lv. 85-99| The Hero's Journey: Harnak Underground Ruins (Done)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_DONE; - @ClientString(id = 571504, message = "The Hero's Journey: Harnak Underground Ruins (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_LV_85_99_2; + @ClientString(id = 571504, message = "|Lv. 85-99| The Hero's Journey: Harnak Underground Ruins") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_HARNAK_UNDERGROUND_RUINS_2; @ClientString(id = 571511, message = "Talk to Liberatto") public static NpcStringId TALK_TO_LIBERATTO_4; @@ -13831,17 +13876,17 @@ public final class NpcStringId @ClientString(id = 571513, message = "Talk to Hadel") public static NpcStringId TALK_TO_HADEL_2; - @ClientString(id = 571601, message = "The Hero's Journey: Kartia's Labyrinth (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_LV_85_99; + @ClientString(id = 571601, message = "|Lv. 85-99| The Hero's Journey: Kartia's Labyrinth") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH; - @ClientString(id = 571602, message = "The Hero's Journey: Kartia's Labyrinth (Lv. 85-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_LV_85_99_IN_PROGRESS; + @ClientString(id = 571602, message = "|Lv. 85-99| The Hero's Journey: Kartia's Labyrinth (In Progress)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_IN_PROGRESS; - @ClientString(id = 571603, message = "The Hero's Journey: Kartia's Labyrinth (Lv. 85-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_LV_85_99_DONE; + @ClientString(id = 571603, message = "|Lv. 85-99| The Hero's Journey: Kartia's Labyrinth (Done)") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_DONE; - @ClientString(id = 571604, message = "The Hero's Journey: Kartia's Labyrinth (Lv. 85-99)") - public static NpcStringId THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_LV_85_99_2; + @ClientString(id = 571604, message = "|Lv. 85-99| The Hero's Journey: Kartia's Labyrinth") + public static NpcStringId LV_85_99_THE_HERO_S_JOURNEY_KARTIA_S_LABYRINTH_2; @ClientString(id = 571611, message = "Talk to Liberatto") public static NpcStringId TALK_TO_LIBERATTO_5; @@ -13852,32 +13897,32 @@ public final class NpcStringId @ClientString(id = 571613, message = "Talk to Kartia Researcher") public static NpcStringId TALK_TO_KARTIA_RESEARCHER_2; - @ClientString(id = 571701, message = "The Minstrel's Song, Part 2 (Lv. 88-89)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_2_LV_88_89; + @ClientString(id = 571701, message = "|Lv. 88-89| The Minstrel's Song, Part 2") + public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2; - @ClientString(id = 571702, message = "The Minstrel's Song, Part 2 (Lv. 88-89) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_2_LV_88_89_IN_PROGRESS; + @ClientString(id = 571702, message = "|Lv. 88-89| The Minstrel's Song, Part 2 (In Progress)") + public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_IN_PROGRESS; - @ClientString(id = 571703, message = "The Minstrel's Song, Part 2 (Lv. 88-89) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_2_LV_88_89_DONE; + @ClientString(id = 571703, message = "|Lv. 88-89| The Minstrel's Song, Part 2 (Done)") + public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_DONE; - @ClientString(id = 571704, message = "The Minstrel's Song, Part 2 (Lv. 88-89)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_2_LV_88_89_2; + @ClientString(id = 571704, message = "|Lv. 88-89| The Minstrel's Song, Part 2") + public static NpcStringId LV_88_89_THE_MINSTREL_S_SONG_PART_2_2; @ClientString(id = 571711, message = "Talk to Miso") public static NpcStringId TALK_TO_MISO; - @ClientString(id = 571801, message = "The Hero's Journey: Fairy Settlement (Lv. 88-99)") - public static NpcStringId THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_LV_88_99; + @ClientString(id = 571801, message = "|Lv. 88-99| The Hero's Journey: Fairy Settlement") + public static NpcStringId LV_88_99_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT; - @ClientString(id = 571802, message = "The Hero's Journey: Fairy Settlement (Lv. 88-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_LV_88_99_IN_PROGRESS; + @ClientString(id = 571802, message = "|Lv. 88-99| The Hero's Journey: Fairy Settlement (In Progress)") + public static NpcStringId LV_88_99_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_IN_PROGRESS; - @ClientString(id = 571803, message = "The Hero's Journey: Fairy Settlement (Lv. 88-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_LV_88_99_DONE; + @ClientString(id = 571803, message = "|Lv. 88-99| The Hero's Journey: Fairy Settlement (Done)") + public static NpcStringId LV_88_99_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_DONE; - @ClientString(id = 571804, message = "The Hero's Journey: Fairy Settlement (Lv. 88-99)") - public static NpcStringId THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_LV_88_99_2; + @ClientString(id = 571804, message = "|Lv. 88-99| The Hero's Journey: Fairy Settlement") + public static NpcStringId LV_88_99_THE_HERO_S_JOURNEY_FAIRY_SETTLEMENT_2; @ClientString(id = 571811, message = "Talk to Miso") public static NpcStringId TALK_TO_MISO_2; @@ -13888,32 +13933,32 @@ public final class NpcStringId @ClientString(id = 571813, message = "Talk to Fairy Refugee") public static NpcStringId TALK_TO_FAIRY_REFUGEE_2; - @ClientString(id = 572001, message = "The Minstrel's Song, Part 3 (Lv. 90-91)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_3_LV_90_91; + @ClientString(id = 572001, message = "|Lv. 90-91| The Minstrel's Song, Part 3") + public static NpcStringId LV_90_91_THE_MINSTREL_S_SONG_PART_3; - @ClientString(id = 572002, message = "The Minstrel's Song, Part 3 (Lv. 90-91) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_3_LV_90_91_IN_PROGRESS; + @ClientString(id = 572002, message = "|Lv. 90-91| The Minstrel's Song, Part 3 (In Progress)") + public static NpcStringId LV_90_91_THE_MINSTREL_S_SONG_PART_3_IN_PROGRESS; - @ClientString(id = 572003, message = "The Minstrel's Song, Part 3 (Lv. 90-91) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_3_LV_90_91_DONE; + @ClientString(id = 572003, message = "|Lv. 90-91| The Minstrel's Song, Part 3 (Done)") + public static NpcStringId LV_90_91_THE_MINSTREL_S_SONG_PART_3_DONE; - @ClientString(id = 572004, message = "The Minstrel's Song, Part 3 (Lv. 90-91)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_3_LV_90_91_2; + @ClientString(id = 572004, message = "|Lv. 90-91| The Minstrel's Song, Part 3") + public static NpcStringId LV_90_91_THE_MINSTREL_S_SONG_PART_3_2; @ClientString(id = 572011, message = "Talk to Miso") public static NpcStringId TALK_TO_MISO_3; - @ClientString(id = 572101, message = "The Hero's Journey: Prison of Darkness (Lv. 90-99)") - public static NpcStringId THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_LV_90_99; + @ClientString(id = 572101, message = "|Lv. 90-99| The Hero's Journey: Prison of Darkness") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS; - @ClientString(id = 572102, message = "The Hero's Journey: Prison of Darkness (Lv. 90-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_LV_90_99_IN_PROGRESS; + @ClientString(id = 572102, message = "|Lv. 90-99| The Hero's Journey: Prison of Darkness (In Progress)") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_IN_PROGRESS; - @ClientString(id = 572103, message = "The Hero's Journey: Prison of Darkness (Lv. 90-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_LV_90_99_DONE; + @ClientString(id = 572103, message = "|Lv. 90-99| The Hero's Journey: Prison of Darkness (Done)") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_DONE; - @ClientString(id = 572104, message = "The Hero's Journey: Prison of Darkness (Lv. 90-99)") - public static NpcStringId THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_LV_90_99_2; + @ClientString(id = 572104, message = "|Lv. 90-99| The Hero's Journey: Prison of Darkness") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_PRISON_OF_DARKNESS_2; @ClientString(id = 572111, message = "Talk to Miso") public static NpcStringId TALK_TO_MISO_4; @@ -13924,17 +13969,17 @@ public final class NpcStringId @ClientString(id = 572113, message = "Talk to Opera") public static NpcStringId TALK_TO_OPERA_2; - @ClientString(id = 572201, message = "The Hero's Journey: Fortuna (Lv. 90-99)") - public static NpcStringId THE_HERO_S_JOURNEY_FORTUNA_LV_90_99; + @ClientString(id = 572201, message = "|Lv. 90-99| The Hero's Journey: Fortuna") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_FORTUNA; - @ClientString(id = 572202, message = "The Hero's Journey: Fortuna (Lv. 90-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_FORTUNA_LV_90_99_IN_PROGRESS; + @ClientString(id = 572202, message = "|Lv. 90-99| The Hero's Journey: Fortuna (In Progress)") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_FORTUNA_IN_PROGRESS; - @ClientString(id = 572203, message = "The Hero's Journey: Fortuna (Lv. 90-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_FORTUNA_LV_90_99_DONE; + @ClientString(id = 572203, message = "|Lv. 90-99| The Hero's Journey: Fortuna (Done)") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_FORTUNA_DONE; - @ClientString(id = 572204, message = "The Hero's Journey: Fortuna (Lv. 90-99)") - public static NpcStringId THE_HERO_S_JOURNEY_FORTUNA_LV_90_99_2; + @ClientString(id = 572204, message = "|Lv. 90-99| The Hero's Journey: Fortuna") + public static NpcStringId LV_90_99_THE_HERO_S_JOURNEY_FORTUNA_2; @ClientString(id = 572211, message = "Talk to Miso") public static NpcStringId TALK_TO_MISO_5; @@ -13945,32 +13990,32 @@ public final class NpcStringId @ClientString(id = 572213, message = "Talk to Izael") public static NpcStringId TALK_TO_IZAEL_2; - @ClientString(id = 572301, message = "The Minstrel's Song, Part 4 (Lv. 92-94)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_4_LV_92_94; + @ClientString(id = 572301, message = "|Lv. 92-94| The Minstrel's Song, Part 4") + public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4; - @ClientString(id = 572302, message = "The Minstrel's Song, Part 4 (Lv. 92-94) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_4_LV_92_94_IN_PROGRESS; + @ClientString(id = 572302, message = "|Lv. 92-94| The Minstrel's Song, Part 4 (In Progress)") + public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4_IN_PROGRESS; - @ClientString(id = 572303, message = "The Minstrel's Song, Part 4 (Lv. 92-94) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_4_LV_92_94_DONE; + @ClientString(id = 572303, message = "|Lv. 92-94| The Minstrel's Song, Part 4 (Done)") + public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4_DONE; - @ClientString(id = 572304, message = "The Minstrel's Song, Part 4 (Lv. 92-94)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_4_LV_92_94_2; + @ClientString(id = 572304, message = "|Lv. 92-94| The Minstrel's Song, Part 4") + public static NpcStringId LV_92_94_THE_MINSTREL_S_SONG_PART_4_2; @ClientString(id = 572311, message = "Talk to Marmie") public static NpcStringId TALK_TO_MARMIE; - @ClientString(id = 572401, message = "The Hero's Journey: Isle of Souls (Lv. 92-99)") - public static NpcStringId THE_HERO_S_JOURNEY_ISLE_OF_SOULS_LV_92_99; + @ClientString(id = 572401, message = "|Lv. 92-99| The Hero's Journey: Isle of Souls") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_ISLE_OF_SOULS; - @ClientString(id = 572402, message = "The Hero's Journey: Isle of Souls (Lv. 92-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_ISLE_OF_SOULS_LV_92_99_IN_PROGRESS; + @ClientString(id = 572402, message = "|Lv. 92-99| The Hero's Journey: Isle of Souls (In Progress)") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_ISLE_OF_SOULS_IN_PROGRESS; - @ClientString(id = 572403, message = "The Hero's Journey: Isle of Souls (Lv. 92-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_ISLE_OF_SOULS_LV_92_99_DONE; + @ClientString(id = 572403, message = "|Lv. 92-99| The Hero's Journey: Isle of Souls (Done)") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_ISLE_OF_SOULS_DONE; - @ClientString(id = 572404, message = "The Hero's Journey: Isle of Souls (Lv. 92-99)") - public static NpcStringId THE_HERO_S_JOURNEY_ISLE_OF_SOULS_LV_92_99_2; + @ClientString(id = 572404, message = "|Lv. 92-99| The Hero's Journey: Isle of Souls") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_ISLE_OF_SOULS_2; @ClientString(id = 572411, message = "Talk to Marmie") public static NpcStringId TALK_TO_MARMIE_2; @@ -13981,17 +14026,17 @@ public final class NpcStringId @ClientString(id = 572413, message = "Talk to Tauresia") public static NpcStringId TALK_TO_TAURESIA_2; - @ClientString(id = 572501, message = "The Hero's Journey: Nornil's Cave (Lv. 92-99)") - public static NpcStringId THE_HERO_S_JOURNEY_NORNIL_S_CAVE_LV_92_99; + @ClientString(id = 572501, message = "|Lv. 92-99| The Hero's Journey: Nornil's Cave") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_NORNIL_S_CAVE; - @ClientString(id = 572502, message = "The Hero's Journey: Nornil's Cave (Lv. 92-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_NORNIL_S_CAVE_LV_92_99_IN_PROGRESS; + @ClientString(id = 572502, message = "|Lv. 92-99| The Hero's Journey: Nornil's Cave (In Progress)") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_NORNIL_S_CAVE_IN_PROGRESS; - @ClientString(id = 572503, message = "The Hero's Journey: Nornil's Cave (Lv. 92-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_NORNIL_S_CAVE_LV_92_99_DONE; + @ClientString(id = 572503, message = "|Lv. 92-99| The Hero's Journey: Nornil's Cave (Done)") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_NORNIL_S_CAVE_DONE; - @ClientString(id = 572504, message = "The Hero's Journey: Nornil's Cave (Lv. 92-99)") - public static NpcStringId THE_HERO_S_JOURNEY_NORNIL_S_CAVE_LV_92_99_2; + @ClientString(id = 572504, message = "|Lv. 92-99| The Hero's Journey: Nornil's Cave") + public static NpcStringId LV_92_99_THE_HERO_S_JOURNEY_NORNIL_S_CAVE_2; @ClientString(id = 572511, message = "Talk to Marmie") public static NpcStringId TALK_TO_MARMIE_3; @@ -14002,32 +14047,32 @@ public final class NpcStringId @ClientString(id = 572513, message = "Talk to Verna") public static NpcStringId TALK_TO_VERNA_2; - @ClientString(id = 572601, message = "The Minstrel's Song, Part 5 (Lv. 95-96)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_5_LV_95_96; + @ClientString(id = 572601, message = "|Lv. 95-96| The Minstrel's Song, Part 5") + public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5; - @ClientString(id = 572602, message = "The Minstrel's Song, Part 5 (Lv. 95-96) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_5_LV_95_96_IN_PROGRESS; + @ClientString(id = 572602, message = "|Lv. 95-96| The Minstrel's Song, Part 5 (In Progress)") + public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_IN_PROGRESS; - @ClientString(id = 572603, message = "The Minstrel's Song, Part 5 (Lv. 95-96) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_5_LV_95_96_DONE; + @ClientString(id = 572603, message = "|Lv. 95-96| The Minstrel's Song, Part 5 (Done)") + public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_DONE; - @ClientString(id = 572604, message = "The Minstrel's Song, Part 5 (Lv. 95-96)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_5_LV_95_96_2; + @ClientString(id = 572604, message = "|Lv. 95-96| The Minstrel's Song, Part 5") + public static NpcStringId LV_95_96_THE_MINSTREL_S_SONG_PART_5_2; @ClientString(id = 572611, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR; - @ClientString(id = 572701, message = "The Hero's Journey: Seal of Shilen (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_LV_95_99; + @ClientString(id = 572701, message = "|Lv. 95-99| The Hero's Journey: Seal of Shilen") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_SEAL_OF_SHILEN; - @ClientString(id = 572702, message = "The Hero's Journey: Seal of Shilen (Lv. 95-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_LV_95_99_IN_PROGRESS; + @ClientString(id = 572702, message = "|Lv. 95-99| The Hero's Journey: Seal of Shilen (In Progress)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_IN_PROGRESS; - @ClientString(id = 572703, message = "The Hero's Journey: Seal of Shilen (Lv. 95-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_LV_95_99_DONE; + @ClientString(id = 572703, message = "|Lv. 95-99| The Hero's Journey: Seal of Shilen (Done)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_DONE; - @ClientString(id = 572704, message = "The Hero's Journey: Seal of Shilen (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_LV_95_99_2; + @ClientString(id = 572704, message = "|Lv. 95-99| The Hero's Journey: Seal of Shilen") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_SEAL_OF_SHILEN_2; @ClientString(id = 572711, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_2; @@ -14038,17 +14083,17 @@ public final class NpcStringId @ClientString(id = 572713, message = "Talk to Aden Vanguard Member") public static NpcStringId TALK_TO_ADEN_VANGUARD_MEMBER_2; - @ClientString(id = 572801, message = "The Hero's Journey: Cemetary (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_CEMETARY_LV_95_99; + @ClientString(id = 572801, message = "|Lv. 95-99| The Hero's Journey: Cemetary") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_CEMETARY; - @ClientString(id = 572802, message = "The Hero's Journey: Cemetary (Lv. 95-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_CEMETARY_LV_95_99_IN_PROGRESS; + @ClientString(id = 572802, message = "|Lv. 95-99| The Hero's Journey: Cemetary (In Progress)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_CEMETARY_IN_PROGRESS; - @ClientString(id = 572803, message = "The Hero's Journey: Cemetary (Lv. 95-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_CEMETARY_LV_95_99_DONE; + @ClientString(id = 572803, message = "|Lv. 95-99| The Hero's Journey: Cemetary (Done)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_CEMETARY_DONE; - @ClientString(id = 572804, message = "The Hero's Journey: Cemetary (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_CEMETARY_LV_95_99_2; + @ClientString(id = 572804, message = "|Lv. 95-99| The Hero's Journey: Cemetary") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_CEMETARY_2; @ClientString(id = 572811, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_3; @@ -14059,17 +14104,17 @@ public final class NpcStringId @ClientString(id = 572813, message = "Talk to Aden Vanguard Member") public static NpcStringId TALK_TO_ADEN_VANGUARD_MEMBER_4; - @ClientString(id = 572901, message = "The Hero's Journey: Guillotine Fortress (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_LV_95_99; + @ClientString(id = 572901, message = "|Lv. 95-99| The Hero's Journey: Guillotine Fortress") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS; - @ClientString(id = 572902, message = "The Hero's Journey: Guillotine Fortress (Lv. 95-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_LV_95_99_IN_PROGRESS; + @ClientString(id = 572902, message = "|Lv. 95-99| The Hero's Journey: Guillotine Fortress (In Progress)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_IN_PROGRESS; - @ClientString(id = 572903, message = "The Hero's Journey: Guillotine Fortress (Lv. 95-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_LV_95_99_DONE; + @ClientString(id = 572903, message = "|Lv. 95-99| The Hero's Journey: Guillotine Fortress (Done)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_DONE; - @ClientString(id = 572904, message = "The Hero's Journey: Guillotine Fortress (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_LV_95_99_2; + @ClientString(id = 572904, message = "|Lv. 95-99| The Hero's Journey: Guillotine Fortress") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_GUILLOTINE_FORTRESS_2; @ClientString(id = 572911, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_4; @@ -14080,17 +14125,17 @@ public final class NpcStringId @ClientString(id = 572913, message = "Talk to Mortania") public static NpcStringId TALK_TO_MORTANIA_2; - @ClientString(id = 573001, message = "The Hero's Journey: Orbis Temple (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_ORBIS_TEMPLE_LV_95_99; + @ClientString(id = 573001, message = "|Lv. 95-99| The Hero's Journey: Orbis Temple") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_ORBIS_TEMPLE; - @ClientString(id = 573002, message = "The Hero's Journey: Orbis Temple (Lv. 95-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_ORBIS_TEMPLE_LV_95_99_IN_PROGRESS; + @ClientString(id = 573002, message = "|Lv. 95-99| The Hero's Journey: Orbis Temple (In Progress)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_ORBIS_TEMPLE_IN_PROGRESS; - @ClientString(id = 573003, message = "The Hero's Journey: Orbis Temple (Lv. 95-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_ORBIS_TEMPLE_LV_95_99_DONE; + @ClientString(id = 573003, message = "|Lv. 95-99| The Hero's Journey: Orbis Temple (Done)") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_ORBIS_TEMPLE_DONE; - @ClientString(id = 573004, message = "The Hero's Journey: Orbis Temple (Lv. 95-99)") - public static NpcStringId THE_HERO_S_JOURNEY_ORBIS_TEMPLE_LV_95_99_2; + @ClientString(id = 573004, message = "|Lv. 95-99| The Hero's Journey: Orbis Temple") + public static NpcStringId LV_95_99_THE_HERO_S_JOURNEY_ORBIS_TEMPLE_2; @ClientString(id = 573011, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_5; @@ -14101,47 +14146,47 @@ public final class NpcStringId @ClientString(id = 573013, message = "Talk to Severin") public static NpcStringId TALK_TO_SEVERIN_2; - @ClientString(id = 573101, message = "The Minstrel's Song, Part 6 (Lv. 97-99)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_6_LV_97_99; + @ClientString(id = 573101, message = "|Lv. 97-99| The Minstrel's Song, Part 6") + public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6; - @ClientString(id = 573102, message = "The Minstrel's Song, Part 6 (Lv. 97-99) (In Progress)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_6_LV_97_99_IN_PROGRESS; + @ClientString(id = 573102, message = "|Lv. 97-99| The Minstrel's Song, Part 6 (In Progress)") + public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_IN_PROGRESS; - @ClientString(id = 573103, message = "The Minstrel's Song, Part 6 (Lv. 97-99) (Done)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_6_LV_97_99_DONE; + @ClientString(id = 573103, message = "|Lv. 97-99| The Minstrel's Song, Part 6 (Done)") + public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_DONE; - @ClientString(id = 573104, message = "The Minstrel's Song, Part 6 (Lv. 97-99)") - public static NpcStringId THE_MINSTREL_S_SONG_PART_6_LV_97_99_2; + @ClientString(id = 573104, message = "|Lv. 97-99| The Minstrel's Song, Part 6") + public static NpcStringId LV_97_99_THE_MINSTREL_S_SONG_PART_6_2; @ClientString(id = 573111, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_6; - @ClientString(id = 573201, message = "A Foreign Land (Lv. 1-20)") - public static NpcStringId A_FOREIGN_LAND_LV_1_20; + @ClientString(id = 573201, message = "|Lv. 1-20| A Foreign Land") + public static NpcStringId LV_1_20_A_FOREIGN_LAND; - @ClientString(id = 573202, message = "A Foreign Land (Lv. 1-20) (In Progress)") - public static NpcStringId A_FOREIGN_LAND_LV_1_20_IN_PROGRESS; + @ClientString(id = 573202, message = "|Lv. 1-20| A Foreign Land (In Progress)") + public static NpcStringId LV_1_20_A_FOREIGN_LAND_IN_PROGRESS; - @ClientString(id = 573203, message = "A Foreign Land (Lv. 1-20) (Done)") - public static NpcStringId A_FOREIGN_LAND_LV_1_20_DONE; + @ClientString(id = 573203, message = "|Lv. 1-20| A Foreign Land (Done)") + public static NpcStringId LV_1_20_A_FOREIGN_LAND_DONE; - @ClientString(id = 573204, message = "A Foreign Land (Lv. 1-20)") - public static NpcStringId A_FOREIGN_LAND_LV_1_20_2; + @ClientString(id = 573204, message = "|Lv. 1-20| A Foreign Land") + public static NpcStringId LV_1_20_A_FOREIGN_LAND_2; @ClientString(id = 573205, message = "Talk to Gereth") public static NpcStringId TALK_TO_GERETH; - @ClientString(id = 573301, message = "The Test for Survival (Lv. 1-20)") - public static NpcStringId THE_TEST_FOR_SURVIVAL_LV_1_20; + @ClientString(id = 573301, message = "|Lv. 1-20| The Test for Survival") + public static NpcStringId LV_1_20_THE_TEST_FOR_SURVIVAL; - @ClientString(id = 573302, message = "The Test for Survival (Lv. 1-20) (In Progress)") - public static NpcStringId THE_TEST_FOR_SURVIVAL_LV_1_20_IN_PROGRESS; + @ClientString(id = 573302, message = "|Lv. 1-20| The Test for Survival (In Progress)") + public static NpcStringId LV_1_20_THE_TEST_FOR_SURVIVAL_IN_PROGRESS; - @ClientString(id = 573303, message = "The Test for Survival (Lv. 1-20) (Done)") - public static NpcStringId THE_TEST_FOR_SURVIVAL_LV_1_20_DONE; + @ClientString(id = 573303, message = "|Lv. 1-20| The Test for Survival (Done)") + public static NpcStringId LV_1_20_THE_TEST_FOR_SURVIVAL_DONE; - @ClientString(id = 573304, message = "The Test for Survival (Lv. 1-20)") - public static NpcStringId THE_TEST_FOR_SURVIVAL_LV_1_20_2; + @ClientString(id = 573304, message = "|Lv. 1-20| The Test for Survival") + public static NpcStringId LV_1_20_THE_TEST_FOR_SURVIVAL_2; @ClientString(id = 573305, message = "Talk to Katalin") public static NpcStringId TALK_TO_KATALIN; @@ -14152,131 +14197,131 @@ public final class NpcStringId @ClientString(id = 573307, message = "Talk to Dia") public static NpcStringId TALK_TO_DIA; - @ClientString(id = 573401, message = "Do or Die (Lv. 1-20)") - public static NpcStringId DO_OR_DIE_LV_1_20; + @ClientString(id = 573401, message = "|Lv. 1-20| Do or Die") + public static NpcStringId LV_1_20_DO_OR_DIE; - @ClientString(id = 573402, message = "Do or Die (Lv. 1-20) (In Progress)") - public static NpcStringId DO_OR_DIE_LV_1_20_IN_PROGRESS; + @ClientString(id = 573402, message = "|Lv. 1-20| Do or Die (In Progress)") + public static NpcStringId LV_1_20_DO_OR_DIE_IN_PROGRESS; - @ClientString(id = 573403, message = "Do or Die (Lv. 1-20) (Done)") - public static NpcStringId DO_OR_DIE_LV_1_20_DONE; + @ClientString(id = 573403, message = "|Lv. 1-20| Do or Die (Done)") + public static NpcStringId LV_1_20_DO_OR_DIE_DONE; - @ClientString(id = 573404, message = "Do or Die (Lv. 1-20)") - public static NpcStringId DO_OR_DIE_LV_1_20_2; + @ClientString(id = 573404, message = "|Lv. 1-20| Do or Die") + public static NpcStringId LV_1_20_DO_OR_DIE_2; @ClientString(id = 573405, message = "Talk to Adventurer's Guide") public static NpcStringId TALK_TO_ADVENTURER_S_GUIDE; - @ClientString(id = 573501, message = "A Special Power (Lv. 4-20)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20; + @ClientString(id = 573501, message = "|Lv. 4-20| A Special Power") + public static NpcStringId LV_4_20_A_SPECIAL_POWER; - @ClientString(id = 573502, message = "A Special Power (Lv. 4-20) (In Progress)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_IN_PROGRESS; + @ClientString(id = 573502, message = "|Lv. 4-20| A Special Power (In Progress)") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_IN_PROGRESS; - @ClientString(id = 573503, message = "A Special Power (Lv. 4-20) (Done)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_DONE; + @ClientString(id = 573503, message = "|Lv. 4-20| A Special Power (Done)") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_DONE; - @ClientString(id = 573504, message = "A Special Power (Lv. 4-20)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_2; + @ClientString(id = 573504, message = "|Lv. 4-20| A Special Power") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_2; - @ClientString(id = 573601, message = "A Special Power (Lv. 4-20)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_3; + @ClientString(id = 573601, message = "|Lv. 4-20| A Special Power") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_3; - @ClientString(id = 573602, message = "A Special Power (Lv. 4-20) (In Progress)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_IN_PROGRESS_2; + @ClientString(id = 573602, message = "|Lv. 4-20| A Special Power (In Progress)") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_IN_PROGRESS_2; - @ClientString(id = 573603, message = "A Special Power (Lv. 4-20) (Done)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_DONE_2; + @ClientString(id = 573603, message = "|Lv. 4-20| A Special Power (Done)") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_DONE_2; - @ClientString(id = 573604, message = "A Special Power (Lv. 4-20)") - public static NpcStringId A_SPECIAL_POWER_LV_4_20_4; + @ClientString(id = 573604, message = "|Lv. 4-20| A Special Power") + public static NpcStringId LV_4_20_A_SPECIAL_POWER_4; - @ClientString(id = 573701, message = "Grakon's Warehouse (Lv. 5-20)") - public static NpcStringId GRAKON_S_WAREHOUSE_LV_5_20; + @ClientString(id = 573701, message = "|Lv. 5-20| Grakon's Warehouse") + public static NpcStringId LV_5_20_GRAKON_S_WAREHOUSE; - @ClientString(id = 573702, message = "Grakon's Warehouse (Lv. 5-20) (In Progress)") - public static NpcStringId GRAKON_S_WAREHOUSE_LV_5_20_IN_PROGRESS; + @ClientString(id = 573702, message = "|Lv. 5-20| Grakon's Warehouse (In Progress)") + public static NpcStringId LV_5_20_GRAKON_S_WAREHOUSE_IN_PROGRESS; - @ClientString(id = 573703, message = "Grakon's Warehouse (Lv. 5-20) (Done)") - public static NpcStringId GRAKON_S_WAREHOUSE_LV_5_20_DONE; + @ClientString(id = 573703, message = "|Lv. 5-20| Grakon's Warehouse (Done)") + public static NpcStringId LV_5_20_GRAKON_S_WAREHOUSE_DONE; - @ClientString(id = 573704, message = "Grakon's Warehouse (Lv. 5-20)") - public static NpcStringId GRAKON_S_WAREHOUSE_LV_5_20_2; + @ClientString(id = 573704, message = "|Lv. 5-20| Grakon's Warehouse") + public static NpcStringId LV_5_20_GRAKON_S_WAREHOUSE_2; @ClientString(id = 573705, message = "Talk to Grakon") public static NpcStringId TALK_TO_GRAKON; - @ClientString(id = 573801, message = "An Inner Beauty (Lv. 5-20)") - public static NpcStringId AN_INNER_BEAUTY_LV_5_20; + @ClientString(id = 573801, message = "|Lv. 5-20| An Inner Beauty") + public static NpcStringId LV_5_20_AN_INNER_BEAUTY; - @ClientString(id = 573802, message = "An Inner Beauty (Lv. 5-20) (In Progress)") - public static NpcStringId AN_INNER_BEAUTY_LV_5_20_IN_PROGRESS; + @ClientString(id = 573802, message = "|Lv. 5-20| An Inner Beauty (In Progress)") + public static NpcStringId LV_5_20_AN_INNER_BEAUTY_IN_PROGRESS; - @ClientString(id = 573803, message = "An Inner Beauty (Lv. 5-20) (Done)") - public static NpcStringId AN_INNER_BEAUTY_LV_5_20_DONE; + @ClientString(id = 573803, message = "|Lv. 5-20| An Inner Beauty (Done)") + public static NpcStringId LV_5_20_AN_INNER_BEAUTY_DONE; - @ClientString(id = 573804, message = "An Inner Beauty (Lv. 5-20)") - public static NpcStringId AN_INNER_BEAUTY_LV_5_20_2; + @ClientString(id = 573804, message = "|Lv. 5-20| An Inner Beauty") + public static NpcStringId LV_5_20_AN_INNER_BEAUTY_2; @ClientString(id = 573805, message = "Talk to Evna") public static NpcStringId TALK_TO_EVNA; - @ClientString(id = 573901, message = "Supply and Demand (Lv. 6-20)") - public static NpcStringId SUPPLY_AND_DEMAND_LV_6_20; + @ClientString(id = 573901, message = "|Lv. 6-20| Supply and Demand") + public static NpcStringId LV_6_20_SUPPLY_AND_DEMAND; - @ClientString(id = 573902, message = "Supply and Demand (Lv. 6-20) (In Progress)") - public static NpcStringId SUPPLY_AND_DEMAND_LV_6_20_IN_PROGRESS; + @ClientString(id = 573902, message = "|Lv. 6-20| Supply and Demand (In Progress)") + public static NpcStringId LV_6_20_SUPPLY_AND_DEMAND_IN_PROGRESS; - @ClientString(id = 573903, message = "Supply and Demand (Lv. 6-20) (Done)") - public static NpcStringId SUPPLY_AND_DEMAND_LV_6_20_DONE; + @ClientString(id = 573903, message = "|Lv. 6-20| Supply and Demand (Done)") + public static NpcStringId LV_6_20_SUPPLY_AND_DEMAND_DONE; - @ClientString(id = 573904, message = "Supply and Demand (Lv. 6-20)") - public static NpcStringId SUPPLY_AND_DEMAND_LV_6_20_2; + @ClientString(id = 573904, message = "|Lv. 6-20| Supply and Demand") + public static NpcStringId LV_6_20_SUPPLY_AND_DEMAND_2; @ClientString(id = 573905, message = "Talk to Sivanthe") public static NpcStringId TALK_TO_SIVANTHE; - @ClientString(id = 574001, message = "Never Forget (Lv. 8-20)") - public static NpcStringId NEVER_FORGET_LV_8_20; + @ClientString(id = 574001, message = "|Lv. 8-20| Never Forget") + public static NpcStringId LV_8_20_NEVER_FORGET; - @ClientString(id = 574002, message = "Never Forget (Lv. 8-20) (In Progress)") - public static NpcStringId NEVER_FORGET_LV_8_20_IN_PROGRESS; + @ClientString(id = 574002, message = "|Lv. 8-20| Never Forget (In Progress)") + public static NpcStringId LV_8_20_NEVER_FORGET_IN_PROGRESS; - @ClientString(id = 574003, message = "Never Forget (Lv. 8-20) (Done)") - public static NpcStringId NEVER_FORGET_LV_8_20_DONE; + @ClientString(id = 574003, message = "|Lv. 8-20| Never Forget (Done)") + public static NpcStringId LV_8_20_NEVER_FORGET_DONE; - @ClientString(id = 574004, message = "Never Forget (Lv. 8-20)") - public static NpcStringId NEVER_FORGET_LV_8_20_2; + @ClientString(id = 574004, message = "|Lv. 8-20| Never Forget") + public static NpcStringId LV_8_20_NEVER_FORGET_2; @ClientString(id = 574005, message = "Go to the Remembrance Tower") public static NpcStringId GO_TO_THE_REMEMBRANCE_TOWER; - @ClientString(id = 574101, message = "A Draught for the Cold (Lv. 10-20)") - public static NpcStringId A_DRAUGHT_FOR_THE_COLD_LV_10_20; + @ClientString(id = 574101, message = "|Lv. 10-20| A Draught for the Cold") + public static NpcStringId LV_10_20_A_DRAUGHT_FOR_THE_COLD; - @ClientString(id = 574102, message = "A Draught for the Cold (Lv. 10-20) (In Progress)") - public static NpcStringId A_DRAUGHT_FOR_THE_COLD_LV_10_20_IN_PROGRESS; + @ClientString(id = 574102, message = "|Lv. 10-20| A Draught for the Cold (In Progress)") + public static NpcStringId LV_10_20_A_DRAUGHT_FOR_THE_COLD_IN_PROGRESS; - @ClientString(id = 574103, message = "A Draught for the Cold (Lv. 10-20) (Done)") - public static NpcStringId A_DRAUGHT_FOR_THE_COLD_LV_10_20_DONE; + @ClientString(id = 574103, message = "|Lv. 10-20| A Draught for the Cold (Done)") + public static NpcStringId LV_10_20_A_DRAUGHT_FOR_THE_COLD_DONE; - @ClientString(id = 574104, message = "A Draught for the Cold (Lv. 10-20)") - public static NpcStringId A_DRAUGHT_FOR_THE_COLD_LV_10_20_2; + @ClientString(id = 574104, message = "|Lv. 10-20| A Draught for the Cold") + public static NpcStringId LV_10_20_A_DRAUGHT_FOR_THE_COLD_2; @ClientString(id = 574105, message = "Talk to Leira") public static NpcStringId TALK_TO_LEIRA; - @ClientString(id = 574201, message = "A Furry Friend (Lv. 11-20)") - public static NpcStringId A_FURRY_FRIEND_LV_11_20; + @ClientString(id = 574201, message = "|Lv. 11-20| A Furry Friend") + public static NpcStringId LV_11_20_A_FURRY_FRIEND; - @ClientString(id = 574202, message = "A Furry Friend (Lv. 11-20) (In Progress)") - public static NpcStringId A_FURRY_FRIEND_LV_11_20_IN_PROGRESS; + @ClientString(id = 574202, message = "|Lv. 11-20| A Furry Friend (In Progress)") + public static NpcStringId LV_11_20_A_FURRY_FRIEND_IN_PROGRESS; - @ClientString(id = 574203, message = "A Furry Friend (Lv. 11-20) (Done)") - public static NpcStringId A_FURRY_FRIEND_LV_11_20_DONE; + @ClientString(id = 574203, message = "|Lv. 11-20| A Furry Friend (Done)") + public static NpcStringId LV_11_20_A_FURRY_FRIEND_DONE; - @ClientString(id = 574204, message = "A Furry Friend (Lv. 11-20)") - public static NpcStringId A_FURRY_FRIEND_LV_11_20_2; + @ClientString(id = 574204, message = "|Lv. 11-20| A Furry Friend") + public static NpcStringId LV_11_20_A_FURRY_FRIEND_2; @ClientString(id = 574205, message = "You are far from Ricky.") public static NpcStringId YOU_ARE_FAR_FROM_RICKY; @@ -14290,59 +14335,59 @@ public final class NpcStringId @ClientString(id = 574209, message = "Bring Back Ricky") public static NpcStringId BRING_BACK_RICKY; - @ClientString(id = 574301, message = "Strange Fungus (Lv. 13-20)") - public static NpcStringId STRANGE_FUNGUS_LV_13_20; + @ClientString(id = 574301, message = "|Lv. 13-20| Strange Fungus") + public static NpcStringId LV_13_20_STRANGE_FUNGUS; - @ClientString(id = 574302, message = "Strange Fungus (Lv. 13-20) (In Progress)") - public static NpcStringId STRANGE_FUNGUS_LV_13_20_IN_PROGRESS; + @ClientString(id = 574302, message = "|Lv. 13-20| Strange Fungus (In Progress)") + public static NpcStringId LV_13_20_STRANGE_FUNGUS_IN_PROGRESS; - @ClientString(id = 574303, message = "Strange Fungus (Lv. 13-20) (Done)") - public static NpcStringId STRANGE_FUNGUS_LV_13_20_DONE; + @ClientString(id = 574303, message = "|Lv. 13-20| Strange Fungus (Done)") + public static NpcStringId LV_13_20_STRANGE_FUNGUS_DONE; - @ClientString(id = 574304, message = "Strange Fungus (Lv. 13-20)") - public static NpcStringId STRANGE_FUNGUS_LV_13_20_2; + @ClientString(id = 574304, message = "|Lv. 13-20| Strange Fungus") + public static NpcStringId LV_13_20_STRANGE_FUNGUS_2; @ClientString(id = 574305, message = "Talk to Milone") public static NpcStringId TALK_TO_MILONE; - @ClientString(id = 574401, message = "Stronger Than Steel (Lv. 15-20)") - public static NpcStringId STRONGER_THAN_STEEL_LV_15_20; + @ClientString(id = 574401, message = "|Lv. 15-20| Stronger Than Steel") + public static NpcStringId LV_15_20_STRONGER_THAN_STEEL; - @ClientString(id = 574402, message = "Stronger Than Steel (Lv. 15-20) (In Progress)") - public static NpcStringId STRONGER_THAN_STEEL_LV_15_20_IN_PROGRESS; + @ClientString(id = 574402, message = "|Lv. 15-20| Stronger Than Steel (In Progress)") + public static NpcStringId LV_15_20_STRONGER_THAN_STEEL_IN_PROGRESS; - @ClientString(id = 574403, message = "Stronger Than Steel (Lv. 15-20) (Done)") - public static NpcStringId STRONGER_THAN_STEEL_LV_15_20_DONE; + @ClientString(id = 574403, message = "|Lv. 15-20| Stronger Than Steel (Done)") + public static NpcStringId LV_15_20_STRONGER_THAN_STEEL_DONE; - @ClientString(id = 574404, message = "Stronger Than Steel (Lv. 15-20)") - public static NpcStringId STRONGER_THAN_STEEL_LV_15_20_2; + @ClientString(id = 574404, message = "|Lv. 15-20| Stronger Than Steel") + public static NpcStringId LV_15_20_STRONGER_THAN_STEEL_2; @ClientString(id = 574405, message = "Talk to Dolkin") public static NpcStringId TALK_TO_DOLKIN; - @ClientString(id = 574501, message = "The Secret Ingredient (Lv. 17-25)") - public static NpcStringId THE_SECRET_INGREDIENT_LV_17_25; + @ClientString(id = 574501, message = "|Lv. 17-25| The Secret Ingredient") + public static NpcStringId LV_17_25_THE_SECRET_INGREDIENT; - @ClientString(id = 574502, message = "The Secret Ingredient (Lv. 17-25) (In Progress)") - public static NpcStringId THE_SECRET_INGREDIENT_LV_17_25_IN_PROGRESS; + @ClientString(id = 574502, message = "|Lv. 17-25| The Secret Ingredient (In Progress)") + public static NpcStringId LV_17_25_THE_SECRET_INGREDIENT_IN_PROGRESS; - @ClientString(id = 574503, message = "The Secret Ingredient (Lv. 17-25) (Done)") - public static NpcStringId THE_SECRET_INGREDIENT_LV_17_25_DONE; + @ClientString(id = 574503, message = "|Lv. 17-25| The Secret Ingredient (Done)") + public static NpcStringId LV_17_25_THE_SECRET_INGREDIENT_DONE; - @ClientString(id = 574504, message = "The Secret Ingredient (Lv. 17-25)") - public static NpcStringId THE_SECRET_INGREDIENT_LV_17_25_2; + @ClientString(id = 574504, message = "|Lv. 17-25| The Secret Ingredient") + public static NpcStringId LV_17_25_THE_SECRET_INGREDIENT_2; - @ClientString(id = 574601, message = "See the World (Lv. 19-25)") - public static NpcStringId SEE_THE_WORLD_LV_19_25; + @ClientString(id = 574601, message = "|Lv. 19-25| See the World") + public static NpcStringId LV_19_25_SEE_THE_WORLD; - @ClientString(id = 574602, message = "See the World (Lv. 19-25) (In Progress)") - public static NpcStringId SEE_THE_WORLD_LV_19_25_IN_PROGRESS; + @ClientString(id = 574602, message = "|Lv. 19-25| See the World (In Progress)") + public static NpcStringId LV_19_25_SEE_THE_WORLD_IN_PROGRESS; - @ClientString(id = 574603, message = "See the World (Lv. 19-25) (Done)") - public static NpcStringId SEE_THE_WORLD_LV_19_25_DONE; + @ClientString(id = 574603, message = "|Lv. 19-25| See the World (Done)") + public static NpcStringId LV_19_25_SEE_THE_WORLD_DONE; - @ClientString(id = 574604, message = "See the World (Lv. 19-25)") - public static NpcStringId SEE_THE_WORLD_LV_19_25_2; + @ClientString(id = 574604, message = "|Lv. 19-25| See the World") + public static NpcStringId LV_19_25_SEE_THE_WORLD_2; @ClientString(id = 574605, message = "Talk to Astiel") public static NpcStringId TALK_TO_ASTIEL; @@ -14350,17 +14395,17 @@ public final class NpcStringId @ClientString(id = 574606, message = "Talk to Levian") public static NpcStringId TALK_TO_LEVIAN; - @ClientString(id = 574701, message = "The Hero's Journey: Pagan Temple (Lv. 97-99)") - public static NpcStringId THE_HERO_S_JOURNEY_PAGAN_TEMPLE_LV_97_99; + @ClientString(id = 574701, message = "|Lv. 97-99| The Hero's Journey: Pagan Temple") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_PAGAN_TEMPLE; - @ClientString(id = 574702, message = "The Hero's Journey: Pagan Temple (Lv. 97-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_PAGAN_TEMPLE_LV_97_99_IN_PROGRESS; + @ClientString(id = 574702, message = "|Lv. 97-99| The Hero's Journey: Pagan Temple (In Progress)") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_PAGAN_TEMPLE_IN_PROGRESS; - @ClientString(id = 574703, message = "The Hero's Journey: Pagan Temple (Lv. 97-99) (Done)") - public static NpcStringId THE_HERO_S_JOURNEY_PAGAN_TEMPLE_LV_97_99_DONE; + @ClientString(id = 574703, message = "|Lv. 97-99| The Hero's Journey: Pagan Temple (Done)") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_PAGAN_TEMPLE_DONE; - @ClientString(id = 574704, message = "The Hero's Journey: Pagan Temple (Lv. 97-99)") - public static NpcStringId THE_HERO_S_JOURNEY_PAGAN_TEMPLE_LV_97_99_2; + @ClientString(id = 574704, message = "|Lv. 97-99| The Hero's Journey: Pagan Temple") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_PAGAN_TEMPLE_2; @ClientString(id = 574711, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_7; @@ -14371,29 +14416,29 @@ public final class NpcStringId @ClientString(id = 574713, message = "Talk to Kargos") public static NpcStringId TALK_TO_KARGOS_2; - @ClientString(id = 574801, message = "Mysterious Suggestion - 1") - public static NpcStringId MYSTERIOUS_SUGGESTION_1; + @ClientString(id = 574801, message = "|Lv. 76-99| Mysterious Suggestion - 1") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_1; - @ClientString(id = 574802, message = "Mysterious Suggestion - 1 (In Progress)") - public static NpcStringId MYSTERIOUS_SUGGESTION_1_IN_PROGRESS; + @ClientString(id = 574802, message = "|Lv. 76-99| Mysterious Suggestion - 1 (In Progress)") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_1_IN_PROGRESS; - @ClientString(id = 574803, message = "Mysterious Suggestion - 1 (Done)") - public static NpcStringId MYSTERIOUS_SUGGESTION_1_DONE; + @ClientString(id = 574803, message = "|Lv. 76-99| Mysterious Suggestion - 1 (Done)") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_1_DONE; - @ClientString(id = 574804, message = "Mysterious Suggestion - 1") - public static NpcStringId MYSTERIOUS_SUGGESTION_1_2; + @ClientString(id = 574804, message = "|Lv. 76-99| Mysterious Suggestion - 1") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_1_2; - @ClientString(id = 574901, message = "Mysterious Suggestion - 2") - public static NpcStringId MYSTERIOUS_SUGGESTION_2; + @ClientString(id = 574901, message = "|Lv. 76-99| Mysterious Suggestion - 2") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_2; - @ClientString(id = 574902, message = "Mysterious Suggestion - 2 (In Progress)") - public static NpcStringId MYSTERIOUS_SUGGESTION_2_IN_PROGRESS; + @ClientString(id = 574902, message = "|Lv. 76-99| Mysterious Suggestion - 2 (In Progress)") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_2_IN_PROGRESS; - @ClientString(id = 574903, message = "Mysterious Suggestion - 2 (Done)") - public static NpcStringId MYSTERIOUS_SUGGESTION_2_DONE; + @ClientString(id = 574903, message = "|Lv. 76-99| Mysterious Suggestion - 2 (Done)") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_2_DONE; - @ClientString(id = 574904, message = "Mysterious Suggestion - 2") - public static NpcStringId MYSTERIOUS_SUGGESTION_2_2; + @ClientString(id = 574904, message = "|Lv. 76-99| Mysterious Suggestion - 2") + public static NpcStringId LV_76_99_MYSTERIOUS_SUGGESTION_2_2; @ClientString(id = 574905, message = "Open the item screen and double-click the empty water bottle!") public static NpcStringId OPEN_THE_ITEM_SCREEN_AND_DOUBLE_CLICK_THE_EMPTY_WATER_BOTTLE; @@ -14407,17 +14452,17 @@ public final class NpcStringId @ClientString(id = 574908, message = "If you double-click the Helping Seed item, a Tree of Helping will be planted.") public static NpcStringId IF_YOU_DOUBLE_CLICK_THE_HELPING_SEED_ITEM_A_TREE_OF_HELPING_WILL_BE_PLANTED; - @ClientString(id = 575101, message = "Winds of Fate: Encounters (Lv. 38-99)") - public static NpcStringId WINDS_OF_FATE_ENCOUNTERS_LV_38_99; + @ClientString(id = 575101, message = "|Lv. 38-99| Winds of Fate: Encounters") + public static NpcStringId LV_38_99_WINDS_OF_FATE_ENCOUNTERS; - @ClientString(id = 575102, message = "Winds of Fate: Encounters (Lv. 38-99) (In Progress)") - public static NpcStringId WINDS_OF_FATE_ENCOUNTERS_LV_38_99_IN_PROGRESS; + @ClientString(id = 575102, message = "|Lv. 38-99| Winds of Fate: Encounters (In Progress)") + public static NpcStringId LV_38_99_WINDS_OF_FATE_ENCOUNTERS_IN_PROGRESS; - @ClientString(id = 575103, message = "Winds of Fate: Encounters (Lv. 38-99) (Done)") - public static NpcStringId WINDS_OF_FATE_ENCOUNTERS_LV_38_99_DONE; + @ClientString(id = 575103, message = "|Lv. 38-99| Winds of Fate: Encounters (Done)") + public static NpcStringId LV_38_99_WINDS_OF_FATE_ENCOUNTERS_DONE; - @ClientString(id = 575104, message = "Winds of Fate: Encounters (Lv. 38-99)") - public static NpcStringId WINDS_OF_FATE_ENCOUNTERS_LV_38_99_2; + @ClientString(id = 575104, message = "|Lv. 38-99| Winds of Fate: Encounters") + public static NpcStringId LV_38_99_WINDS_OF_FATE_ENCOUNTERS_2; @ClientString(id = 575110, message = "Talk to Katalin") public static NpcStringId TALK_TO_KATALIN_2; @@ -14431,17 +14476,17 @@ public final class NpcStringId @ClientString(id = 575113, message = "Kill Skeletons") public static NpcStringId KILL_SKELETONS; - @ClientString(id = 575201, message = "Winds of Fate: A Promise (Lv. 76-99)") - public static NpcStringId WINDS_OF_FATE_A_PROMISE_LV_76_99; + @ClientString(id = 575201, message = "|Lv. 76-99| Winds of Fate: A Promise") + public static NpcStringId LV_76_99_WINDS_OF_FATE_A_PROMISE; - @ClientString(id = 575202, message = "Winds of Fate: A Promise (Lv. 76-99) (In Progress)") - public static NpcStringId WINDS_OF_FATE_A_PROMISE_LV_76_99_IN_PROGRESS; + @ClientString(id = 575202, message = "|Lv. 76-99| Winds of Fate: A Promise (In Progress)") + public static NpcStringId LV_76_99_WINDS_OF_FATE_A_PROMISE_IN_PROGRESS; - @ClientString(id = 575203, message = "Winds of Fate: A Promise (Lv. 76-99) (Done)") - public static NpcStringId WINDS_OF_FATE_A_PROMISE_LV_76_99_DONE; + @ClientString(id = 575203, message = "|Lv. 76-99| Winds of Fate: A Promise (Done)") + public static NpcStringId LV_76_99_WINDS_OF_FATE_A_PROMISE_DONE; - @ClientString(id = 575204, message = "Winds of Fate: A Promise (Lv. 76-99)") - public static NpcStringId WINDS_OF_FATE_A_PROMISE_LV_76_99_2; + @ClientString(id = 575204, message = "|Lv. 76-99| Winds of Fate: A Promise") + public static NpcStringId LV_76_99_WINDS_OF_FATE_A_PROMISE_2; @ClientString(id = 575211, message = "Talk to Karla") public static NpcStringId TALK_TO_KARLA; @@ -14467,17 +14512,17 @@ public final class NpcStringId @ClientString(id = 575218, message = "Giselle Von Hellmann") public static NpcStringId GISELLE_VON_HELLMANN; - @ClientString(id = 575301, message = "Winds of Fate: Choices (Lv. 85-99)") - public static NpcStringId WINDS_OF_FATE_CHOICES_LV_85_99; + @ClientString(id = 575301, message = "|Lv. 85-99| Winds of Fate: Choices") + public static NpcStringId LV_85_99_WINDS_OF_FATE_CHOICES; - @ClientString(id = 575302, message = "Winds of Fate: Choices (Lv. 85-99) (In Progress)") - public static NpcStringId WINDS_OF_FATE_CHOICES_LV_85_99_IN_PROGRESS; + @ClientString(id = 575302, message = "|Lv. 85-99| Winds of Fate: Choices (In Progress)") + public static NpcStringId LV_85_99_WINDS_OF_FATE_CHOICES_IN_PROGRESS; - @ClientString(id = 575303, message = "Winds of Fate: Choices (Lv. 85-99) (Done)") - public static NpcStringId WINDS_OF_FATE_CHOICES_LV_85_99_DONE; + @ClientString(id = 575303, message = "|Lv. 85-99| Winds of Fate: Choices (Done)") + public static NpcStringId LV_85_99_WINDS_OF_FATE_CHOICES_DONE; - @ClientString(id = 575304, message = "Winds of Fate: Choices (Lv. 85-99)") - public static NpcStringId WINDS_OF_FATE_CHOICES_LV_85_99_2; + @ClientString(id = 575304, message = "|Lv. 85-99| Winds of Fate: Choices") + public static NpcStringId LV_85_99_WINDS_OF_FATE_CHOICES_2; @ClientString(id = 575310, message = "Talk to Arkenias") public static NpcStringId TALK_TO_ARKENIAS; @@ -14515,17 +14560,17 @@ public final class NpcStringId @ClientString(id = 575500, message = "Queen Navari has sent a letter.\\nClick the question-mark icon to read.") public static NpcStringId QUEEN_NAVARI_HAS_SENT_A_LETTER_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; - @ClientString(id = 575501, message = "Letters from the Queen: Windy Hill (Lv. 20-29)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WINDY_HILL_LV_20_29; + @ClientString(id = 575501, message = "|Lv. 20-29| Letters from the Queen: Windy Hill") + public static NpcStringId LV_20_29_LETTERS_FROM_THE_QUEEN_WINDY_HILL; - @ClientString(id = 575502, message = "Letters from the Queen: Windy Hill (Lv. 20-29) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WINDY_HILL_LV_20_29_IN_PROGRESS; + @ClientString(id = 575502, message = "|Lv. 20-29| Letters from the Queen: Windy Hill (In Progress)") + public static NpcStringId LV_20_29_LETTERS_FROM_THE_QUEEN_WINDY_HILL_IN_PROGRESS; - @ClientString(id = 575503, message = "Letters from the Queen: Windy Hill (Lv. 20-29) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WINDY_HILL_LV_20_29_DONE; + @ClientString(id = 575503, message = "|Lv. 20-29| Letters from the Queen: Windy Hill (Done)") + public static NpcStringId LV_20_29_LETTERS_FROM_THE_QUEEN_WINDY_HILL_DONE; - @ClientString(id = 575504, message = "Letters from the Queen: Windy Hill (Lv. 20-29)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WINDY_HILL_LV_20_29_2; + @ClientString(id = 575504, message = "|Lv. 20-29| Letters from the Queen: Windy Hill") + public static NpcStringId LV_20_29_LETTERS_FROM_THE_QUEEN_WINDY_HILL_2; @ClientString(id = 575511, message = "Talk to Levian") public static NpcStringId TALK_TO_LEVIAN_2; @@ -14533,59 +14578,59 @@ public final class NpcStringId @ClientString(id = 575512, message = "Talk to Pio") public static NpcStringId TALK_TO_PIO; - @ClientString(id = 575601, message = "An Interdimensional Draft (Lv. 20-99)") - public static NpcStringId AN_INTERDIMENSIONAL_DRAFT_LV_20_99; + @ClientString(id = 575601, message = "|Lv. 20-99| An Interdimensional Draft") + public static NpcStringId LV_20_99_AN_INTERDIMENSIONAL_DRAFT; - @ClientString(id = 575602, message = "An Interdimensional Draft (Lv. 20-99) (In Progress)") - public static NpcStringId AN_INTERDIMENSIONAL_DRAFT_LV_20_99_IN_PROGRESS; + @ClientString(id = 575602, message = "|Lv. 20-99| An Interdimensional Draft (In Progress)") + public static NpcStringId LV_20_99_AN_INTERDIMENSIONAL_DRAFT_IN_PROGRESS; - @ClientString(id = 575603, message = "An Interdimensional Draft (Lv. 20-99) (Complete)") - public static NpcStringId AN_INTERDIMENSIONAL_DRAFT_LV_20_99_COMPLETE; + @ClientString(id = 575603, message = "|Lv. 20-99| An Interdimensional Draft (Complete)") + public static NpcStringId LV_20_99_AN_INTERDIMENSIONAL_DRAFT_COMPLETE; - @ClientString(id = 575604, message = "An Interdimensional Draft (Lv. 20-99)") - public static NpcStringId AN_INTERDIMENSIONAL_DRAFT_LV_20_99_2; + @ClientString(id = 575604, message = "|Lv. 20-99| An Interdimensional Draft") + public static NpcStringId LV_20_99_AN_INTERDIMENSIONAL_DRAFT_2; - @ClientString(id = 575701, message = "Quieting the Storm (Lv. 24-99)") - public static NpcStringId QUIETING_THE_STORM_LV_24_99; + @ClientString(id = 575701, message = "|Lv. 24-99| Quieting the Storm") + public static NpcStringId LV_24_99_QUIETING_THE_STORM; - @ClientString(id = 575702, message = "Quieting the Storm (Lv. 24-99) (In Progress)") - public static NpcStringId QUIETING_THE_STORM_LV_24_99_IN_PROGRESS; + @ClientString(id = 575702, message = "|Lv. 24-99| Quieting the Storm (In Progress)") + public static NpcStringId LV_24_99_QUIETING_THE_STORM_IN_PROGRESS; - @ClientString(id = 575703, message = "Quieting the Storm (Lv. 24-99) (Complete)") - public static NpcStringId QUIETING_THE_STORM_LV_24_99_COMPLETE; + @ClientString(id = 575703, message = "|Lv. 24-99| Quieting the Storm (Complete)") + public static NpcStringId LV_24_99_QUIETING_THE_STORM_COMPLETE; - @ClientString(id = 575704, message = "Quieting the Storm (Lv. 24-99)") - public static NpcStringId QUIETING_THE_STORM_LV_24_99_2; + @ClientString(id = 575704, message = "|Lv. 24-99| Quieting the Storm") + public static NpcStringId LV_24_99_QUIETING_THE_STORM_2; @ClientString(id = 575711, message = "Immense Windima or Giant Windima") public static NpcStringId IMMENSE_WINDIMA_OR_GIANT_WINDIMA; - @ClientString(id = 575801, message = "The Oath of the Wind (Lv. 28-99)") - public static NpcStringId THE_OATH_OF_THE_WIND_LV_28_99; + @ClientString(id = 575801, message = "|Lv. 28-99| The Oath of the Wind") + public static NpcStringId LV_28_99_THE_OATH_OF_THE_WIND; - @ClientString(id = 575802, message = "The Oath of the Wind (Lv. 28-99) (In Progress)") - public static NpcStringId THE_OATH_OF_THE_WIND_LV_28_99_IN_PROGRESS; + @ClientString(id = 575802, message = "|Lv. 28-99| The Oath of the Wind (In Progress)") + public static NpcStringId LV_28_99_THE_OATH_OF_THE_WIND_IN_PROGRESS; - @ClientString(id = 575803, message = "The Oath of the Wind (Lv. 28-99) (Complete)") - public static NpcStringId THE_OATH_OF_THE_WIND_LV_28_99_COMPLETE; + @ClientString(id = 575803, message = "|Lv. 28-99| The Oath of the Wind (Complete)") + public static NpcStringId LV_28_99_THE_OATH_OF_THE_WIND_COMPLETE; - @ClientString(id = 575804, message = "The Oath of the Wind (Lv. 28-99)") - public static NpcStringId THE_OATH_OF_THE_WIND_LV_28_99_2; + @ClientString(id = 575804, message = "|Lv. 28-99| The Oath of the Wind") + public static NpcStringId LV_28_99_THE_OATH_OF_THE_WIND_2; @ClientString(id = 575811, message = "Ask Pio for a Summon") public static NpcStringId ASK_PIO_FOR_A_SUMMON; - @ClientString(id = 576001, message = "Letters from the Queen: Orc Barracks (Lv. 30-39)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_LV_30_39; + @ClientString(id = 576001, message = "|Lv. 30-39| Letters from the Queen: Orc Barracks") + public static NpcStringId LV_30_39_LETTERS_FROM_THE_QUEEN_ORC_BARRACKS; - @ClientString(id = 576002, message = "Letters from the Queen: Orc Barracks (Lv. 30-39) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_LV_30_39_IN_PROGRESS; + @ClientString(id = 576002, message = "|Lv. 30-39| Letters from the Queen: Orc Barracks (In Progress)") + public static NpcStringId LV_30_39_LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_IN_PROGRESS; - @ClientString(id = 576003, message = "Letters from the Queen: Orc Barracks (Lv. 30-39) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_LV_30_39_DONE; + @ClientString(id = 576003, message = "|Lv. 30-39| Letters from the Queen: Orc Barracks (Done)") + public static NpcStringId LV_30_39_LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_DONE; - @ClientString(id = 576004, message = "Letters from the Queen: Orc Barracks (Lv. 30-39)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_LV_30_39_2; + @ClientString(id = 576004, message = "|Lv. 30-39| Letters from the Queen: Orc Barracks") + public static NpcStringId LV_30_39_LETTERS_FROM_THE_QUEEN_ORC_BARRACKS_2; @ClientString(id = 576011, message = "Talk to Levian") public static NpcStringId TALK_TO_LEVIAN_3; @@ -14593,44 +14638,44 @@ public final class NpcStringId @ClientString(id = 576012, message = "Talk to Piotour") public static NpcStringId TALK_TO_PIOTOUR; - @ClientString(id = 576101, message = "An Orc in Love (Lv. 30-99)") - public static NpcStringId AN_ORC_IN_LOVE_LV_30_99; + @ClientString(id = 576101, message = "|Lv. 30-99| An Orc in Love") + public static NpcStringId LV_30_99_AN_ORC_IN_LOVE; - @ClientString(id = 576102, message = "An Orc in Love (Lv. 30-99) (In Progress)") - public static NpcStringId AN_ORC_IN_LOVE_LV_30_99_IN_PROGRESS; + @ClientString(id = 576102, message = "|Lv. 30-99| An Orc in Love (In Progress)") + public static NpcStringId LV_30_99_AN_ORC_IN_LOVE_IN_PROGRESS; - @ClientString(id = 576103, message = "An Orc in Love (Lv. 30-99) (Complete)") - public static NpcStringId AN_ORC_IN_LOVE_LV_30_99_COMPLETE; + @ClientString(id = 576103, message = "|Lv. 30-99| An Orc in Love (Complete)") + public static NpcStringId LV_30_99_AN_ORC_IN_LOVE_COMPLETE; - @ClientString(id = 576104, message = "An Orc in Love (Lv. 30-99)") - public static NpcStringId AN_ORC_IN_LOVE_LV_30_99_2; + @ClientString(id = 576104, message = "|Lv. 30-99| An Orc in Love") + public static NpcStringId LV_30_99_AN_ORC_IN_LOVE_2; @ClientString(id = 576111, message = "Kill Turek Orcs") public static NpcStringId KILL_TUREK_ORCS; - @ClientString(id = 576201, message = "Marionette Spirit (Lv. 34-99)") - public static NpcStringId MARIONETTE_SPIRIT_LV_34_99; + @ClientString(id = 576201, message = "|Lv. 34-99| Marionette Spirit") + public static NpcStringId LV_34_99_MARIONETTE_SPIRIT; - @ClientString(id = 576202, message = "Marionette Spirit (Lv. 34-99) (In Progress)") - public static NpcStringId MARIONETTE_SPIRIT_LV_34_99_IN_PROGRESS; + @ClientString(id = 576202, message = "|Lv. 34-99| Marionette Spirit (In Progress)") + public static NpcStringId LV_34_99_MARIONETTE_SPIRIT_IN_PROGRESS; - @ClientString(id = 576203, message = "Marionette Spirit (Lv. 34-99) (Complete)") - public static NpcStringId MARIONETTE_SPIRIT_LV_34_99_COMPLETE; + @ClientString(id = 576203, message = "|Lv. 34-99| Marionette Spirit (Complete)") + public static NpcStringId LV_34_99_MARIONETTE_SPIRIT_COMPLETE; - @ClientString(id = 576204, message = "Marionette Spirit (Lv. 34-99)") - public static NpcStringId MARIONETTE_SPIRIT_LV_34_99_2; + @ClientString(id = 576204, message = "|Lv. 34-99| Marionette Spirit") + public static NpcStringId LV_34_99_MARIONETTE_SPIRIT_2; - @ClientString(id = 576301, message = "Terrifying Chertuba (Lv. 34-99)") - public static NpcStringId TERRIFYING_CHERTUBA_LV_34_99; + @ClientString(id = 576301, message = "|Lv. 34-99| Terrifying Chertuba") + public static NpcStringId LV_34_99_TERRIFYING_CHERTUBA; - @ClientString(id = 576302, message = "Terrifying Chertuba (Lv. 34-99) (In Progress)") - public static NpcStringId TERRIFYING_CHERTUBA_LV_34_99_IN_PROGRESS; + @ClientString(id = 576302, message = "|Lv. 34-99| Terrifying Chertuba (In Progress)") + public static NpcStringId LV_34_99_TERRIFYING_CHERTUBA_IN_PROGRESS; - @ClientString(id = 576303, message = "Terrifying Chertuba (Lv. 34-99) (Complete)") - public static NpcStringId TERRIFYING_CHERTUBA_LV_34_99_COMPLETE; + @ClientString(id = 576303, message = "|Lv. 34-99| Terrifying Chertuba (Complete)") + public static NpcStringId LV_34_99_TERRIFYING_CHERTUBA_COMPLETE; - @ClientString(id = 576304, message = "Terrifying Chertuba (Lv. 34-99)") - public static NpcStringId TERRIFYING_CHERTUBA_LV_34_99_2; + @ClientString(id = 576304, message = "|Lv. 34-99| Terrifying Chertuba") + public static NpcStringId LV_34_99_TERRIFYING_CHERTUBA_2; @ClientString(id = 576311, message = "Kill Elite Turek Orcs") public static NpcStringId KILL_ELITE_TUREK_ORCS; @@ -14638,56 +14683,56 @@ public final class NpcStringId @ClientString(id = 576312, message = "Chertuba's Illusion or Chertuba's Mirage") public static NpcStringId CHERTUBA_S_ILLUSION_OR_CHERTUBA_S_MIRAGE; - @ClientString(id = 576401, message = "Free Spirit (Lv. 38-99)") - public static NpcStringId FREE_SPIRIT_LV_38_99; + @ClientString(id = 576401, message = "|Lv. 38-99| Free Spirit") + public static NpcStringId LV_38_99_FREE_SPIRIT; - @ClientString(id = 576402, message = "Free Spirit (Lv. 38-99) (In Progress)") - public static NpcStringId FREE_SPIRIT_LV_38_99_IN_PROGRESS; + @ClientString(id = 576402, message = "|Lv. 38-99| Free Spirit (In Progress)") + public static NpcStringId LV_38_99_FREE_SPIRIT_IN_PROGRESS; - @ClientString(id = 576403, message = "Free Spirit (Lv. 38-99) (Done)") - public static NpcStringId FREE_SPIRIT_LV_38_99_DONE; + @ClientString(id = 576403, message = "|Lv. 38-99| Free Spirit (Done)") + public static NpcStringId LV_38_99_FREE_SPIRIT_DONE; - @ClientString(id = 576404, message = "Free Spirit (Lv. 38-99)") - public static NpcStringId FREE_SPIRIT_LV_38_99_2; + @ClientString(id = 576404, message = "|Lv. 38-99| Free Spirit") + public static NpcStringId LV_38_99_FREE_SPIRIT_2; @ClientString(id = 576411, message = "Free the Imprisoned Spirits") public static NpcStringId FREE_THE_IMPRISONED_SPIRITS; - @ClientString(id = 576601, message = "A New Craft (Lv. 40-99)") - public static NpcStringId A_NEW_CRAFT_LV_40_99; + @ClientString(id = 576601, message = "|Lv. 40-99| A New Craft") + public static NpcStringId LV_40_99_A_NEW_CRAFT; - @ClientString(id = 576602, message = "A New Craft (Lv. 40-99) (In Progress)") - public static NpcStringId A_NEW_CRAFT_LV_40_99_IN_PROGRESS; + @ClientString(id = 576602, message = "|Lv. 40-99| A New Craft (In Progress)") + public static NpcStringId LV_40_99_A_NEW_CRAFT_IN_PROGRESS; - @ClientString(id = 576603, message = "A New Craft (Lv. 40-99) (Done)") - public static NpcStringId A_NEW_CRAFT_LV_40_99_DONE; + @ClientString(id = 576603, message = "|Lv. 40-99| A New Craft (Done)") + public static NpcStringId LV_40_99_A_NEW_CRAFT_DONE; - @ClientString(id = 576604, message = "A New Craft (Lv. 40-99)") - public static NpcStringId A_NEW_CRAFT_LV_40_99_2; + @ClientString(id = 576604, message = "|Lv. 40-99| A New Craft") + public static NpcStringId LV_40_99_A_NEW_CRAFT_2; - @ClientString(id = 576701, message = "A Whole New Level of Alchemy (Lv. 97-99)") - public static NpcStringId A_WHOLE_NEW_LEVEL_OF_ALCHEMY_LV_97_99; + @ClientString(id = 576701, message = "|Lv. 97-99| A Whole New Level of Alchemy") + public static NpcStringId LV_97_99_A_WHOLE_NEW_LEVEL_OF_ALCHEMY; - @ClientString(id = 576702, message = "A Whole New Level of Alchemy (Lv. 97-99) (In Progress)") - public static NpcStringId A_WHOLE_NEW_LEVEL_OF_ALCHEMY_LV_97_99_IN_PROGRESS; + @ClientString(id = 576702, message = "|Lv. 97-99| A Whole New Level of Alchemy (In Progress)") + public static NpcStringId LV_97_99_A_WHOLE_NEW_LEVEL_OF_ALCHEMY_IN_PROGRESS; - @ClientString(id = 576703, message = "A Whole New Level of Alchemy (Lv. 97-99) (Done)") - public static NpcStringId A_WHOLE_NEW_LEVEL_OF_ALCHEMY_LV_97_99_DONE; + @ClientString(id = 576703, message = "|Lv. 97-99| A Whole New Level of Alchemy (Done)") + public static NpcStringId LV_97_99_A_WHOLE_NEW_LEVEL_OF_ALCHEMY_DONE; - @ClientString(id = 576704, message = "A Whole New Level of Alchemy (Lv. 97-99)") - public static NpcStringId A_WHOLE_NEW_LEVEL_OF_ALCHEMY_LV_97_99_2; + @ClientString(id = 576704, message = "|Lv. 97-99| A Whole New Level of Alchemy") + public static NpcStringId LV_97_99_A_WHOLE_NEW_LEVEL_OF_ALCHEMY_2; - @ClientString(id = 576901, message = "Letters from the Queen: Cruma Tower, Part 1 (Lv. 40-45)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_LV_40_45; + @ClientString(id = 576901, message = "|Lv. 40-45| Letters from the Queen: Cruma Tower, Part 1") + public static NpcStringId LV_40_45_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1; - @ClientString(id = 576902, message = "Letters from the Queen: Cruma Tower, Part 1 (Lv. 40-45) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_LV_40_45_IN_PROGRESS; + @ClientString(id = 576902, message = "|Lv. 40-45| Letters from the Queen: Cruma Tower, Part 1 (In Progress)") + public static NpcStringId LV_40_45_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_IN_PROGRESS; - @ClientString(id = 576903, message = "Letters from the Queen: Cruma Tower, Part 1 (Lv. 40-45) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_LV_40_45_DONE; + @ClientString(id = 576903, message = "|Lv. 40-45| Letters from the Queen: Cruma Tower, Part 1 (Done)") + public static NpcStringId LV_40_45_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_DONE; - @ClientString(id = 576904, message = "Letters from the Queen: Cruma Tower, Part 1 (Lv. 40-45)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_LV_40_45_2; + @ClientString(id = 576904, message = "|Lv. 40-45| Letters from the Queen: Cruma Tower, Part 1") + public static NpcStringId LV_40_45_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_1_2; @ClientString(id = 576911, message = "Talk to Sylvain") public static NpcStringId TALK_TO_SYLVAIN; @@ -14695,44 +14740,44 @@ public final class NpcStringId @ClientString(id = 576912, message = "Talk to Lorain") public static NpcStringId TALK_TO_LORAIN; - @ClientString(id = 577001, message = "In Search of the Grail (Lv. 40-99)") - public static NpcStringId IN_SEARCH_OF_THE_GRAIL_LV_40_99; + @ClientString(id = 577001, message = "|Lv. 40-99| In Search of the Grail") + public static NpcStringId LV_40_99_IN_SEARCH_OF_THE_GRAIL; - @ClientString(id = 577002, message = "In Search of the Grail (Lv. 40-99) (In Progress)") - public static NpcStringId IN_SEARCH_OF_THE_GRAIL_LV_40_99_IN_PROGRESS; + @ClientString(id = 577002, message = "|Lv. 40-99| In Search of the Grail (In Progress)") + public static NpcStringId LV_40_99_IN_SEARCH_OF_THE_GRAIL_IN_PROGRESS; - @ClientString(id = 577003, message = "In Search of the Grail (Lv. 40-99) (Done)") - public static NpcStringId IN_SEARCH_OF_THE_GRAIL_LV_40_99_DONE; + @ClientString(id = 577003, message = "|Lv. 40-99| In Search of the Grail (Done)") + public static NpcStringId LV_40_99_IN_SEARCH_OF_THE_GRAIL_DONE; - @ClientString(id = 577004, message = "In Search of the Grail (Lv. 40-99)") - public static NpcStringId IN_SEARCH_OF_THE_GRAIL_LV_40_99_2; + @ClientString(id = 577004, message = "|Lv. 40-99| In Search of the Grail") + public static NpcStringId LV_40_99_IN_SEARCH_OF_THE_GRAIL_2; - @ClientString(id = 577101, message = "Volatile Power (Lv. 44-99)") - public static NpcStringId VOLATILE_POWER_LV_44_99; + @ClientString(id = 577101, message = "|Lv. 44-99| Volatile Power") + public static NpcStringId LV_44_99_VOLATILE_POWER; - @ClientString(id = 577102, message = "Volatile Power (Lv. 44-99) (In Progress)") - public static NpcStringId VOLATILE_POWER_LV_44_99_IN_PROGRESS; + @ClientString(id = 577102, message = "|Lv. 44-99| Volatile Power (In Progress)") + public static NpcStringId LV_44_99_VOLATILE_POWER_IN_PROGRESS; - @ClientString(id = 577103, message = "Volatile Power (Lv. 44-99) (Done)") - public static NpcStringId VOLATILE_POWER_LV_44_99_DONE; + @ClientString(id = 577103, message = "|Lv. 44-99| Volatile Power (Done)") + public static NpcStringId LV_44_99_VOLATILE_POWER_DONE; - @ClientString(id = 577104, message = "Volatile Power (Lv. 44-99)") - public static NpcStringId VOLATILE_POWER_LV_44_99_2; + @ClientString(id = 577104, message = "|Lv. 44-99| Volatile Power") + public static NpcStringId LV_44_99_VOLATILE_POWER_2; @ClientString(id = 577111, message = "Find the Hidden Crusher") public static NpcStringId FIND_THE_HIDDEN_CRUSHER; - @ClientString(id = 577201, message = "Reports from Cruma Tower, Part 1 (Lv. 45-99)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_1_LV_45_99; + @ClientString(id = 577201, message = "|Lv. 45-99| Reports from Cruma Tower, Part 1") + public static NpcStringId LV_45_99_REPORTS_FROM_CRUMA_TOWER_PART_1; - @ClientString(id = 577202, message = "Reports from Cruma Tower, Part 1 (Lv. 45-99) (In Progress)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_1_LV_45_99_IN_PROGRESS; + @ClientString(id = 577202, message = "|Lv. 45-99| Reports from Cruma Tower, Part 1 (In Progress)") + public static NpcStringId LV_45_99_REPORTS_FROM_CRUMA_TOWER_PART_1_IN_PROGRESS; - @ClientString(id = 577203, message = "Reports from Cruma Tower, Part 1 (Lv. 45-99) (Done)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_1_LV_45_99_DONE; + @ClientString(id = 577203, message = "|Lv. 45-99| Reports from Cruma Tower, Part 1 (Done)") + public static NpcStringId LV_45_99_REPORTS_FROM_CRUMA_TOWER_PART_1_DONE; - @ClientString(id = 577204, message = "Reports from Cruma Tower, Part 1 (Lv. 45-99)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_1_LV_45_99_2; + @ClientString(id = 577204, message = "|Lv. 45-99| Reports from Cruma Tower, Part 1") + public static NpcStringId LV_45_99_REPORTS_FROM_CRUMA_TOWER_PART_1_2; @ClientString(id = 577211, message = "Ask Janssen to Summon an Owl") public static NpcStringId ASK_JANSSEN_TO_SUMMON_AN_OWL; @@ -14740,17 +14785,17 @@ public final class NpcStringId @ClientString(id = 577212, message = "Talk to the Owl") public static NpcStringId TALK_TO_THE_OWL; - @ClientString(id = 577401, message = "Letters from the Queen: Cruma Tower, Part 2 (Lv. 46-50)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_LV_46_50; + @ClientString(id = 577401, message = "|Lv. 46-50| Letters from the Queen: Cruma Tower, Part 2") + public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2; - @ClientString(id = 577402, message = "Letters from the Queen: Cruma Tower, Part 2 (Lv. 46-50) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_LV_46_50_IN_PROGRESS; + @ClientString(id = 577402, message = "|Lv. 46-50| Letters from the Queen: Cruma Tower, Part 2 (In Progress)") + public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_IN_PROGRESS; - @ClientString(id = 577403, message = "Letters from the Queen: Cruma Tower, Part 2 (Lv. 46-50) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_LV_46_50_DONE; + @ClientString(id = 577403, message = "|Lv. 46-50| Letters from the Queen: Cruma Tower, Part 2 (Done)") + public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_DONE; - @ClientString(id = 577404, message = "Letters from the Queen: Cruma Tower, Part 2 (Lv. 46-50)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_LV_46_50_2; + @ClientString(id = 577404, message = "|Lv. 46-50| Letters from the Queen: Cruma Tower, Part 2") + public static NpcStringId LV_46_50_LETTERS_FROM_THE_QUEEN_CRUMA_TOWER_PART_2_2; @ClientString(id = 577411, message = "Talk to Sylvain") public static NpcStringId TALK_TO_SYLVAIN_2; @@ -14758,32 +14803,32 @@ public final class NpcStringId @ClientString(id = 577412, message = "Talk to Rombel") public static NpcStringId TALK_TO_ROMBEL; - @ClientString(id = 577501, message = "In Search of an Ancient Giant (Lv. 46-99)") - public static NpcStringId IN_SEARCH_OF_AN_ANCIENT_GIANT_LV_46_99; + @ClientString(id = 577501, message = "|Lv. 46-99| In Search of an Ancient Giant") + public static NpcStringId LV_46_99_IN_SEARCH_OF_AN_ANCIENT_GIANT; - @ClientString(id = 577502, message = "In Search of an Ancient Giant (Lv. 46-99) (In Progress)") - public static NpcStringId IN_SEARCH_OF_AN_ANCIENT_GIANT_LV_46_99_IN_PROGRESS; + @ClientString(id = 577502, message = "|Lv. 46-99| In Search of an Ancient Giant (In Progress)") + public static NpcStringId LV_46_99_IN_SEARCH_OF_AN_ANCIENT_GIANT_IN_PROGRESS; - @ClientString(id = 577503, message = "In Search of an Ancient Giant (Lv. 46-99) (Done)") - public static NpcStringId IN_SEARCH_OF_AN_ANCIENT_GIANT_LV_46_99_DONE; + @ClientString(id = 577503, message = "|Lv. 46-99| In Search of an Ancient Giant (Done)") + public static NpcStringId LV_46_99_IN_SEARCH_OF_AN_ANCIENT_GIANT_DONE; - @ClientString(id = 577504, message = "In Search of an Ancient Giant (Lv. 46-99)") - public static NpcStringId IN_SEARCH_OF_AN_ANCIENT_GIANT_LV_46_99_2; + @ClientString(id = 577504, message = "|Lv. 46-99| In Search of an Ancient Giant") + public static NpcStringId LV_46_99_IN_SEARCH_OF_AN_ANCIENT_GIANT_2; @ClientString(id = 577511, message = "Go to Underground Lv. 2") public static NpcStringId GO_TO_UNDERGROUND_LV_2; - @ClientString(id = 577601, message = "The Wrath of the Giants (Lv. 48-99)") - public static NpcStringId THE_WRATH_OF_THE_GIANTS_LV_48_99; + @ClientString(id = 577601, message = "|Lv. 48-99| The Wrath of the Giants") + public static NpcStringId LV_48_99_THE_WRATH_OF_THE_GIANTS; - @ClientString(id = 577602, message = "The Wrath of the Giants (Lv. 48-99) (In Progress)") - public static NpcStringId THE_WRATH_OF_THE_GIANTS_LV_48_99_IN_PROGRESS; + @ClientString(id = 577602, message = "|Lv. 48-99| The Wrath of the Giants (In Progress)") + public static NpcStringId LV_48_99_THE_WRATH_OF_THE_GIANTS_IN_PROGRESS; - @ClientString(id = 577603, message = "The Wrath of the Giants (Lv. 48-99) (Done)") - public static NpcStringId THE_WRATH_OF_THE_GIANTS_LV_48_99_DONE; + @ClientString(id = 577603, message = "|Lv. 48-99| The Wrath of the Giants (Done)") + public static NpcStringId LV_48_99_THE_WRATH_OF_THE_GIANTS_DONE; - @ClientString(id = 577604, message = "The Wrath of the Giants (Lv. 48-99)") - public static NpcStringId THE_WRATH_OF_THE_GIANTS_LV_48_99_2; + @ClientString(id = 577604, message = "|Lv. 48-99| The Wrath of the Giants") + public static NpcStringId LV_48_99_THE_WRATH_OF_THE_GIANTS_2; @ClientString(id = 577611, message = "Find the Broken Device") public static NpcStringId FIND_THE_BROKEN_DEVICE; @@ -14791,17 +14836,17 @@ public final class NpcStringId @ClientString(id = 577612, message = "Talk to the Ancient Giant") public static NpcStringId TALK_TO_THE_ANCIENT_GIANT; - @ClientString(id = 577701, message = "Reports from Cruma Tower, Part 2 (Lv. 49-99)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_2_LV_49_99; + @ClientString(id = 577701, message = "|Lv. 49-99| Reports from Cruma Tower, Part 2") + public static NpcStringId LV_49_99_REPORTS_FROM_CRUMA_TOWER_PART_2; - @ClientString(id = 577702, message = "Reports from Cruma Tower, Part 2 (Lv. 49-99) (In Progress)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_2_LV_49_99_IN_PROGRESS; + @ClientString(id = 577702, message = "|Lv. 49-99| Reports from Cruma Tower, Part 2 (In Progress)") + public static NpcStringId LV_49_99_REPORTS_FROM_CRUMA_TOWER_PART_2_IN_PROGRESS; - @ClientString(id = 577703, message = "Reports from Cruma Tower, Part 2 (Lv. 49-99) (Done)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_2_LV_49_99_DONE; + @ClientString(id = 577703, message = "|Lv. 49-99| Reports from Cruma Tower, Part 2 (Done)") + public static NpcStringId LV_49_99_REPORTS_FROM_CRUMA_TOWER_PART_2_DONE; - @ClientString(id = 577704, message = "Reports from Cruma Tower, Part 2 (Lv. 49-99)") - public static NpcStringId REPORTS_FROM_CRUMA_TOWER_PART_2_LV_49_99_2; + @ClientString(id = 577704, message = "|Lv. 49-99| Reports from Cruma Tower, Part 2") + public static NpcStringId LV_49_99_REPORTS_FROM_CRUMA_TOWER_PART_2_2; @ClientString(id = 577711, message = "Ask Belkadhi to Summon an Owl") public static NpcStringId ASK_BELKADHI_TO_SUMMON_AN_OWL; @@ -14809,17 +14854,17 @@ public final class NpcStringId @ClientString(id = 577712, message = "Talk to the Owl") public static NpcStringId TALK_TO_THE_OWL_2; - @ClientString(id = 577901, message = "Letters from the Queen: Sea of Spores (Lv. 52-57)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_LV_52_57; + @ClientString(id = 577901, message = "|Lv. 52-57| Letters from the Queen: Sea of Spores") + public static NpcStringId LV_52_57_LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES; - @ClientString(id = 577902, message = "Letters from the Queen: Sea of Spores (Lv. 52-57) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_LV_52_57_IN_PROGRESS; + @ClientString(id = 577902, message = "|Lv. 52-57| Letters from the Queen: Sea of Spores (In Progress)") + public static NpcStringId LV_52_57_LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_IN_PROGRESS; - @ClientString(id = 577903, message = "Letters from the Queen: Sea of Spores (Lv. 52-57) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_LV_52_57_DONE; + @ClientString(id = 577903, message = "|Lv. 52-57| Letters from the Queen: Sea of Spores (Done)") + public static NpcStringId LV_52_57_LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_DONE; - @ClientString(id = 577904, message = "Letters from the Queen: Sea of Spores (Lv. 52-57)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_LV_52_57_2; + @ClientString(id = 577904, message = "|Lv. 52-57| Letters from the Queen: Sea of Spores") + public static NpcStringId LV_52_57_LETTERS_FROM_THE_QUEEN_SEA_OF_SPORES_2; @ClientString(id = 577911, message = "Talk to Hollint") public static NpcStringId TALK_TO_HOLLINT; @@ -14827,44 +14872,44 @@ public final class NpcStringId @ClientString(id = 577912, message = "Talk to Andy") public static NpcStringId TALK_TO_ANDY_2; - @ClientString(id = 578001, message = "A Weakened Barrier (Lv. 52-58)") - public static NpcStringId A_WEAKENED_BARRIER_LV_52_58; + @ClientString(id = 578001, message = "|Lv. 52-58| A Weakened Barrier") + public static NpcStringId LV_52_58_A_WEAKENED_BARRIER; - @ClientString(id = 578002, message = "A Weakened Barrier (Lv. 52-58) (In Progress)") - public static NpcStringId A_WEAKENED_BARRIER_LV_52_58_IN_PROGRESS; + @ClientString(id = 578002, message = "|Lv. 52-58| A Weakened Barrier (In Progress)") + public static NpcStringId LV_52_58_A_WEAKENED_BARRIER_IN_PROGRESS; - @ClientString(id = 578003, message = "A Weakened Barrier (Lv. 52-58) (Done)") - public static NpcStringId A_WEAKENED_BARRIER_LV_52_58_DONE; + @ClientString(id = 578003, message = "|Lv. 52-58| A Weakened Barrier (Done)") + public static NpcStringId LV_52_58_A_WEAKENED_BARRIER_DONE; - @ClientString(id = 578004, message = "A Weakened Barrier (Lv. 52-58)") - public static NpcStringId A_WEAKENED_BARRIER_LV_52_58_2; + @ClientString(id = 578004, message = "|Lv. 52-58| A Weakened Barrier") + public static NpcStringId LV_52_58_A_WEAKENED_BARRIER_2; @ClientString(id = 578011, message = "Kill Monsters near the Sea of Spores") public static NpcStringId KILL_MONSTERS_NEAR_THE_SEA_OF_SPORES; - @ClientString(id = 578101, message = "Ingredients to Enforcements (Lv. 52-58)") - public static NpcStringId INGREDIENTS_TO_ENFORCEMENTS_LV_52_58; + @ClientString(id = 578101, message = "|Lv. 52-58| Ingredients to Enforcements") + public static NpcStringId LV_52_58_INGREDIENTS_TO_ENFORCEMENTS; - @ClientString(id = 578102, message = "Ingredients to Enforcements (Lv. 52-58) (In Progress)") - public static NpcStringId INGREDIENTS_TO_ENFORCEMENTS_LV_52_58_IN_PROGRESS; + @ClientString(id = 578102, message = "|Lv. 52-58| Ingredients to Enforcements (In Progress)") + public static NpcStringId LV_52_58_INGREDIENTS_TO_ENFORCEMENTS_IN_PROGRESS; - @ClientString(id = 578103, message = "Ingredients to Enforcements (Lv. 52-58) (Done)") - public static NpcStringId INGREDIENTS_TO_ENFORCEMENTS_LV_52_58_DONE; + @ClientString(id = 578103, message = "|Lv. 52-58| Ingredients to Enforcements (Done)") + public static NpcStringId LV_52_58_INGREDIENTS_TO_ENFORCEMENTS_DONE; - @ClientString(id = 578104, message = "Ingredients to Enforcements (Lv. 52-58)") - public static NpcStringId INGREDIENTS_TO_ENFORCEMENTS_LV_52_58_2; + @ClientString(id = 578104, message = "|Lv. 52-58| Ingredients to Enforcements") + public static NpcStringId LV_52_58_INGREDIENTS_TO_ENFORCEMENTS_2; - @ClientString(id = 578201, message = "Letters from the Queen: Forsaken Plains (Lv. 58-60)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_LV_58_60; + @ClientString(id = 578201, message = "|Lv. 58-60| Letters from the Queen: Forsaken Plains") + public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS; - @ClientString(id = 578202, message = "Letters from the Queen: Forsaken Plains (Lv. 58-60) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_LV_58_60_IN_PROGRESS; + @ClientString(id = 578202, message = "|Lv. 58-60| Letters from the Queen: Forsaken Plains (In Progress)") + public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_IN_PROGRESS; - @ClientString(id = 578203, message = "Letters from the Queen: Forsaken Plains (Lv. 58-60) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_LV_58_60_DONE; + @ClientString(id = 578203, message = "|Lv. 58-60| Letters from the Queen: Forsaken Plains (Done)") + public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_DONE; - @ClientString(id = 578204, message = "Letters from the Queen: Forsaken Plains (Lv. 58-60)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_LV_58_60_2; + @ClientString(id = 578204, message = "|Lv. 58-60| Letters from the Queen: Forsaken Plains") + public static NpcStringId LV_58_60_LETTERS_FROM_THE_QUEEN_FORSAKEN_PLAINS_2; @ClientString(id = 578211, message = "Talk to Orven") public static NpcStringId TALK_TO_ORVEN; @@ -14872,17 +14917,17 @@ public final class NpcStringId @ClientString(id = 578212, message = "Talk to Novain") public static NpcStringId TALK_TO_NOVAIN; - @ClientString(id = 578301, message = "Traces of an Ambush (Lv. 58-61)") - public static NpcStringId TRACES_OF_AN_AMBUSH_LV_58_61; + @ClientString(id = 578301, message = "|Lv. 58-61| Traces of an Ambush") + public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH; - @ClientString(id = 578302, message = "Traces of an Ambush (Lv. 58-61) (In Progress)") - public static NpcStringId TRACES_OF_AN_AMBUSH_LV_58_61_IN_PROGRESS; + @ClientString(id = 578302, message = "|Lv. 58-61| Traces of an Ambush (In Progress)") + public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_IN_PROGRESS; - @ClientString(id = 578303, message = "Traces of an Ambush (Lv. 58-61) (Done)") - public static NpcStringId TRACES_OF_AN_AMBUSH_LV_58_61_DONE; + @ClientString(id = 578303, message = "|Lv. 58-61| Traces of an Ambush (Done)") + public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_DONE; - @ClientString(id = 578304, message = "Traces of an Ambush (Lv. 58-61)") - public static NpcStringId TRACES_OF_AN_AMBUSH_LV_58_61_2; + @ClientString(id = 578304, message = "|Lv. 58-61| Traces of an Ambush") + public static NpcStringId LV_58_61_TRACES_OF_AN_AMBUSH_2; @ClientString(id = 578351, message = "I will give you death!") public static NpcStringId I_WILL_GIVE_YOU_DEATH; @@ -14893,29 +14938,29 @@ public final class NpcStringId @ClientString(id = 578353, message = "You little punk! Take that!") public static NpcStringId YOU_LITTLE_PUNK_TAKE_THAT; - @ClientString(id = 578401, message = "The Broken Device (Lv. 58-61)") - public static NpcStringId THE_BROKEN_DEVICE_LV_58_61; + @ClientString(id = 578401, message = "|Lv. 58-61| The Broken Device") + public static NpcStringId LV_58_61_THE_BROKEN_DEVICE; - @ClientString(id = 578402, message = "The Broken Device (Lv. 58-61) (In Progress)") - public static NpcStringId THE_BROKEN_DEVICE_LV_58_61_IN_PROGRESS; + @ClientString(id = 578402, message = "|Lv. 58-61| The Broken Device (In Progress)") + public static NpcStringId LV_58_61_THE_BROKEN_DEVICE_IN_PROGRESS; - @ClientString(id = 578403, message = "The Broken Device (Lv. 58-61) (Done)") - public static NpcStringId THE_BROKEN_DEVICE_LV_58_61_DONE; + @ClientString(id = 578403, message = "|Lv. 58-61| The Broken Device (Done)") + public static NpcStringId LV_58_61_THE_BROKEN_DEVICE_DONE; - @ClientString(id = 578404, message = "The Broken Device (Lv. 58-61)") - public static NpcStringId THE_BROKEN_DEVICE_LV_58_61_2; + @ClientString(id = 578404, message = "|Lv. 58-61| The Broken Device") + public static NpcStringId LV_58_61_THE_BROKEN_DEVICE_2; - @ClientString(id = 578501, message = "Letters from the Queen: Fields of Massacre (Lv. 61-64)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_LV_61_64; + @ClientString(id = 578501, message = "|Lv. 61-64| Letters from the Queen: Fields of Massacre") + public static NpcStringId LV_61_64_LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE; - @ClientString(id = 578502, message = "Letters from the Queen: Fields of Massacre (Lv. 61-64) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_LV_61_64_IN_PROGRESS; + @ClientString(id = 578502, message = "|Lv. 61-64| Letters from the Queen: Fields of Massacre (In Progress)") + public static NpcStringId LV_61_64_LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_IN_PROGRESS; - @ClientString(id = 578503, message = "Letters from the Queen: Fields of Massacre (Lv. 61-64) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_LV_61_64_DONE; + @ClientString(id = 578503, message = "|Lv. 61-64| Letters from the Queen: Fields of Massacre (Done)") + public static NpcStringId LV_61_64_LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_DONE; - @ClientString(id = 578504, message = "Letters from the Queen: Fields of Massacre (Lv. 61-64)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_LV_61_64_2; + @ClientString(id = 578504, message = "|Lv. 61-64| Letters from the Queen: Fields of Massacre") + public static NpcStringId LV_61_64_LETTERS_FROM_THE_QUEEN_FIELDS_OF_MASSACRE_2; @ClientString(id = 578511, message = "Talk to Orven") public static NpcStringId TALK_TO_ORVEN_2; @@ -14923,44 +14968,44 @@ public final class NpcStringId @ClientString(id = 578512, message = "Talk to Shuvann") public static NpcStringId TALK_TO_SHUVANN_2; - @ClientString(id = 578601, message = "Resident Problem Solver (Lv. 61-65)") - public static NpcStringId RESIDENT_PROBLEM_SOLVER_LV_61_65; + @ClientString(id = 578601, message = "|Lv. 61-65| Resident Problem Solver") + public static NpcStringId LV_61_65_RESIDENT_PROBLEM_SOLVER; - @ClientString(id = 578602, message = "Resident Problem Solver (Lv. 61-65) (In Progress)") - public static NpcStringId RESIDENT_PROBLEM_SOLVER_LV_61_65_IN_PROGRESS; + @ClientString(id = 578602, message = "|Lv. 61-65| Resident Problem Solver (In Progress)") + public static NpcStringId LV_61_65_RESIDENT_PROBLEM_SOLVER_IN_PROGRESS; - @ClientString(id = 578603, message = "Resident Problem Solver (Lv. 61-65) (Done)") - public static NpcStringId RESIDENT_PROBLEM_SOLVER_LV_61_65_DONE; + @ClientString(id = 578603, message = "|Lv. 61-65| Resident Problem Solver (Done)") + public static NpcStringId LV_61_65_RESIDENT_PROBLEM_SOLVER_DONE; - @ClientString(id = 578604, message = "Resident Problem Solver (Lv. 61-65)") - public static NpcStringId RESIDENT_PROBLEM_SOLVER_LV_61_65_2; + @ClientString(id = 578604, message = "|Lv. 61-65| Resident Problem Solver") + public static NpcStringId LV_61_65_RESIDENT_PROBLEM_SOLVER_2; @ClientString(id = 578611, message = "Kill Monsters in the Fields of Massacre") public static NpcStringId KILL_MONSTERS_IN_THE_FIELDS_OF_MASSACRE; - @ClientString(id = 578701, message = "A Spy Mission (Lv. 61-65)") - public static NpcStringId A_SPY_MISSION_LV_61_65; + @ClientString(id = 578701, message = "|Lv. 61-65| A Spy Mission") + public static NpcStringId LV_61_65_A_SPY_MISSION; - @ClientString(id = 578702, message = "A Spy Mission (Lv. 61-65) (In Progress)") - public static NpcStringId A_SPY_MISSION_LV_61_65_IN_PROGRESS; + @ClientString(id = 578702, message = "|Lv. 61-65| A Spy Mission (In Progress)") + public static NpcStringId LV_61_65_A_SPY_MISSION_IN_PROGRESS; - @ClientString(id = 578703, message = "A Spy Mission (Lv. 61-65) (Done)") - public static NpcStringId A_SPY_MISSION_LV_61_65_DONE; + @ClientString(id = 578703, message = "|Lv. 61-65| A Spy Mission (Done)") + public static NpcStringId LV_61_65_A_SPY_MISSION_DONE; - @ClientString(id = 578704, message = "A Spy Mission (Lv. 61-65)") - public static NpcStringId A_SPY_MISSION_LV_61_65_2; + @ClientString(id = 578704, message = "|Lv. 61-65| A Spy Mission") + public static NpcStringId LV_61_65_A_SPY_MISSION_2; - @ClientString(id = 578901, message = "Letters from the Queen: Swamp of Screams (Lv. 65-69)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_LV_65_69; + @ClientString(id = 578901, message = "|Lv. 65-69| Letters from the Queen: Swamp of Screams") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS; - @ClientString(id = 578902, message = "Letters from the Queen: Swamp of Screams (Lv. 65-69) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_LV_65_69_IN_PROGRESS; + @ClientString(id = 578902, message = "|Lv. 65-69| Letters from the Queen: Swamp of Screams (In Progress)") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_IN_PROGRESS; - @ClientString(id = 578903, message = "Letters from the Queen: Swamp of Screams (Lv. 65-69) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_LV_65_69_DONE; + @ClientString(id = 578903, message = "|Lv. 65-69| Letters from the Queen: Swamp of Screams (Done)") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_DONE; - @ClientString(id = 578904, message = "Letters from the Queen: Swamp of Screams (Lv. 65-69)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_LV_65_69_2; + @ClientString(id = 578904, message = "|Lv. 65-69| Letters from the Queen: Swamp of Screams") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_SWAMP_OF_SCREAMS_2; @ClientString(id = 578911, message = "Talk to Innocentin") public static NpcStringId TALK_TO_INNOCENTIN; @@ -14968,44 +15013,44 @@ public final class NpcStringId @ClientString(id = 578912, message = "Talk to Dokara") public static NpcStringId TALK_TO_DOKARA_2; - @ClientString(id = 579001, message = "A Mercenary Helper (Lv. 65-70)") - public static NpcStringId A_MERCENARY_HELPER_LV_65_70; + @ClientString(id = 579001, message = "|Lv. 65-70| A Mercenary Helper") + public static NpcStringId LV_65_70_A_MERCENARY_HELPER; - @ClientString(id = 579002, message = "A Mercenary Helper (Lv. 65-70) (In Progress)") - public static NpcStringId A_MERCENARY_HELPER_LV_65_70_IN_PROGRESS; + @ClientString(id = 579002, message = "|Lv. 65-70| A Mercenary Helper (In Progress)") + public static NpcStringId LV_65_70_A_MERCENARY_HELPER_IN_PROGRESS; - @ClientString(id = 579003, message = "A Mercenary Helper (Lv. 65-70) (Done)") - public static NpcStringId A_MERCENARY_HELPER_LV_65_70_DONE; + @ClientString(id = 579003, message = "|Lv. 65-70| A Mercenary Helper (Done)") + public static NpcStringId LV_65_70_A_MERCENARY_HELPER_DONE; - @ClientString(id = 579004, message = "A Mercenary Helper (Lv. 65-70)") - public static NpcStringId A_MERCENARY_HELPER_LV_65_70_2; + @ClientString(id = 579004, message = "|Lv. 65-70| A Mercenary Helper") + public static NpcStringId LV_65_70_A_MERCENARY_HELPER_2; @ClientString(id = 579011, message = "Kill Stakatos") public static NpcStringId KILL_STAKATOS; - @ClientString(id = 579101, message = "The Man of Mystery (Lv. 65-70)") - public static NpcStringId THE_MAN_OF_MYSTERY_LV_65_70; + @ClientString(id = 579101, message = "|Lv. 65-70| The Man of Mystery") + public static NpcStringId LV_65_70_THE_MAN_OF_MYSTERY; - @ClientString(id = 579102, message = "The Man of Mystery (Lv. 65-70) (In Progress)") - public static NpcStringId THE_MAN_OF_MYSTERY_LV_65_70_IN_PROGRESS; + @ClientString(id = 579102, message = "|Lv. 65-70| The Man of Mystery (In Progress)") + public static NpcStringId LV_65_70_THE_MAN_OF_MYSTERY_IN_PROGRESS; - @ClientString(id = 579103, message = "The Man of Mystery (Lv. 65-70) (Done)") - public static NpcStringId THE_MAN_OF_MYSTERY_LV_65_70_DONE; + @ClientString(id = 579103, message = "|Lv. 65-70| The Man of Mystery (Done)") + public static NpcStringId LV_65_70_THE_MAN_OF_MYSTERY_DONE; - @ClientString(id = 579104, message = "The Man of Mystery (Lv. 65-70)") - public static NpcStringId THE_MAN_OF_MYSTERY_LV_65_70_2; + @ClientString(id = 579104, message = "|Lv. 65-70| The Man of Mystery") + public static NpcStringId LV_65_70_THE_MAN_OF_MYSTERY_2; - @ClientString(id = 579201, message = "Letters from the Queen: Forest of the Dead (Lv. 65-69)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_LV_65_69; + @ClientString(id = 579201, message = "|Lv. 65-69| Letters from the Queen: Forest of the Dead") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD; - @ClientString(id = 579202, message = "Letters from the Queen: Forest of the Dead (Lv. 65-69) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_LV_65_69_IN_PROGRESS; + @ClientString(id = 579202, message = "|Lv. 65-69| Letters from the Queen: Forest of the Dead (In Progress)") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_IN_PROGRESS; - @ClientString(id = 579203, message = "Letters from the Queen: Forest of the Dead (Lv. 65-69) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_LV_65_69_DONE; + @ClientString(id = 579203, message = "|Lv. 65-69| Letters from the Queen: Forest of the Dead (Done)") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_DONE; - @ClientString(id = 579204, message = "Letters from the Queen: Forest of the Dead (Lv. 65-69)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_LV_65_69_2; + @ClientString(id = 579204, message = "|Lv. 65-69| Letters from the Queen: Forest of the Dead") + public static NpcStringId LV_65_69_LETTERS_FROM_THE_QUEEN_FOREST_OF_THE_DEAD_2; @ClientString(id = 579211, message = "Talk to Innocentin") public static NpcStringId TALK_TO_INNOCENTIN_2; @@ -15013,32 +15058,32 @@ public final class NpcStringId @ClientString(id = 579212, message = "Talk to Hatuba") public static NpcStringId TALK_TO_HATUBA_2; - @ClientString(id = 579301, message = "Save the Souls (Lv. 65-70)") - public static NpcStringId SAVE_THE_SOULS_LV_65_70; + @ClientString(id = 579301, message = "|Lv. 65-70| Save the Souls") + public static NpcStringId LV_65_70_SAVE_THE_SOULS; - @ClientString(id = 579302, message = "Save the Souls (Lv. 65-70) (In Progress)") - public static NpcStringId SAVE_THE_SOULS_LV_65_70_IN_PROGRESS; + @ClientString(id = 579302, message = "|Lv. 65-70| Save the Souls (In Progress)") + public static NpcStringId LV_65_70_SAVE_THE_SOULS_IN_PROGRESS; - @ClientString(id = 579303, message = "Save the Souls (Lv. 65-70) (Done)") - public static NpcStringId SAVE_THE_SOULS_LV_65_70_DONE; + @ClientString(id = 579303, message = "|Lv. 65-70| Save the Souls (Done)") + public static NpcStringId LV_65_70_SAVE_THE_SOULS_DONE; - @ClientString(id = 579304, message = "Save the Souls (Lv. 65-70)") - public static NpcStringId SAVE_THE_SOULS_LV_65_70_2; + @ClientString(id = 579304, message = "|Lv. 65-70| Save the Souls") + public static NpcStringId LV_65_70_SAVE_THE_SOULS_2; @ClientString(id = 579311, message = "Kill the Undead") public static NpcStringId KILL_THE_UNDEAD; - @ClientString(id = 579401, message = "Investigate the Forest (Lv. 65-70)") - public static NpcStringId INVESTIGATE_THE_FOREST_LV_65_70; + @ClientString(id = 579401, message = "|Lv. 65-70| Investigate the Forest") + public static NpcStringId LV_65_70_INVESTIGATE_THE_FOREST; - @ClientString(id = 579402, message = "Investigate the Forest (Lv. 65-70) (In Progress)") - public static NpcStringId INVESTIGATE_THE_FOREST_LV_65_70_IN_PROGRESS; + @ClientString(id = 579402, message = "|Lv. 65-70| Investigate the Forest (In Progress)") + public static NpcStringId LV_65_70_INVESTIGATE_THE_FOREST_IN_PROGRESS; - @ClientString(id = 579403, message = "Investigate the Forest (Lv. 65-70) (Done)") - public static NpcStringId INVESTIGATE_THE_FOREST_LV_65_70_DONE; + @ClientString(id = 579403, message = "|Lv. 65-70| Investigate the Forest (Done)") + public static NpcStringId LV_65_70_INVESTIGATE_THE_FOREST_DONE; - @ClientString(id = 579404, message = "Investigate the Forest (Lv. 65-70)") - public static NpcStringId INVESTIGATE_THE_FOREST_LV_65_70_2; + @ClientString(id = 579404, message = "|Lv. 65-70| Investigate the Forest") + public static NpcStringId LV_65_70_INVESTIGATE_THE_FOREST_2; @ClientString(id = 579411, message = "Kill the Undead near the Cursed Village") public static NpcStringId KILL_THE_UNDEAD_NEAR_THE_CURSED_VILLAGE; @@ -15046,17 +15091,17 @@ public final class NpcStringId @ClientString(id = 579412, message = "Investigate the Tombstone") public static NpcStringId INVESTIGATE_THE_TOMBSTONE; - @ClientString(id = 579501, message = "Letters from the Queen: Wall of Argos (Lv. 70-75)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_LV_70_75; + @ClientString(id = 579501, message = "|Lv. 70-75| Letters from the Queen: Wall of Argos") + public static NpcStringId LV_70_75_LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS; - @ClientString(id = 579502, message = "Letters from the Queen: Wall of Argos (Lv. 70-75) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_LV_70_75_IN_PROGRESS; + @ClientString(id = 579502, message = "|Lv. 70-75| Letters from the Queen: Wall of Argos (In Progress)") + public static NpcStringId LV_70_75_LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_IN_PROGRESS; - @ClientString(id = 579503, message = "Letters from the Queen: Wall of Argos (Lv. 70-75) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_LV_70_75_DONE; + @ClientString(id = 579503, message = "|Lv. 70-75| Letters from the Queen: Wall of Argos (Done)") + public static NpcStringId LV_70_75_LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_DONE; - @ClientString(id = 579504, message = "Letters from the Queen: Wall of Argos (Lv. 70-75)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_LV_70_75_2; + @ClientString(id = 579504, message = "|Lv. 70-75| Letters from the Queen: Wall of Argos") + public static NpcStringId LV_70_75_LETTERS_FROM_THE_QUEEN_WALL_OF_ARGOS_2; @ClientString(id = 579511, message = "Talk to Gregory") public static NpcStringId TALK_TO_GREGORY; @@ -15064,41 +15109,41 @@ public final class NpcStringId @ClientString(id = 579512, message = "Talk to the Hermit") public static NpcStringId TALK_TO_THE_HERMIT; - @ClientString(id = 579601, message = "The Eye that Defied the Gods (Lv. 70-75)") - public static NpcStringId THE_EYE_THAT_DEFIED_THE_GODS_LV_70_75; + @ClientString(id = 579601, message = "|Lv. 70-75| The Eye that Defied the Gods") + public static NpcStringId LV_70_75_THE_EYE_THAT_DEFIED_THE_GODS; - @ClientString(id = 579602, message = "The Eye that Defied the Gods (Lv. 70-75) (In Progress)") - public static NpcStringId THE_EYE_THAT_DEFIED_THE_GODS_LV_70_75_IN_PROGRESS; + @ClientString(id = 579602, message = "|Lv. 70-75| The Eye that Defied the Gods (In Progress)") + public static NpcStringId LV_70_75_THE_EYE_THAT_DEFIED_THE_GODS_IN_PROGRESS; - @ClientString(id = 579603, message = "The Eye that Defied the Gods (Lv. 70-75) (Done)") - public static NpcStringId THE_EYE_THAT_DEFIED_THE_GODS_LV_70_75_DONE; + @ClientString(id = 579603, message = "|Lv. 70-75| The Eye that Defied the Gods (Done)") + public static NpcStringId LV_70_75_THE_EYE_THAT_DEFIED_THE_GODS_DONE; - @ClientString(id = 579604, message = "The Eye that Defied the Gods (Lv. 70-75)") - public static NpcStringId THE_EYE_THAT_DEFIED_THE_GODS_LV_70_75_2; + @ClientString(id = 579604, message = "|Lv. 70-75| The Eye that Defied the Gods") + public static NpcStringId LV_70_75_THE_EYE_THAT_DEFIED_THE_GODS_2; - @ClientString(id = 579701, message = "Crossing Fate (Lv. 70-75)") - public static NpcStringId CROSSING_FATE_LV_70_75; + @ClientString(id = 579701, message = "|Lv. 70-75| Crossing Fate") + public static NpcStringId LV_70_75_CROSSING_FATE; - @ClientString(id = 579702, message = "Crossing Fate (Lv. 70-75) (In Progress)") - public static NpcStringId CROSSING_FATE_LV_70_75_IN_PROGRESS; + @ClientString(id = 579702, message = "|Lv. 70-75| Crossing Fate (In Progress)") + public static NpcStringId LV_70_75_CROSSING_FATE_IN_PROGRESS; - @ClientString(id = 579703, message = "Crossing Fate (Lv. 70-75) (Done)") - public static NpcStringId CROSSING_FATE_LV_70_75_DONE; + @ClientString(id = 579703, message = "|Lv. 70-75| Crossing Fate (Done)") + public static NpcStringId LV_70_75_CROSSING_FATE_DONE; - @ClientString(id = 579704, message = "Crossing Fate (Lv. 70-75)") - public static NpcStringId CROSSING_FATE_LV_70_75_2; + @ClientString(id = 579704, message = "|Lv. 70-75| Crossing Fate") + public static NpcStringId LV_70_75_CROSSING_FATE_2; - @ClientString(id = 579801, message = "Letters from the Queen: Dragon Valley (Lv. 76-84)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_LV_76_84; + @ClientString(id = 579801, message = "|Lv. 76-84| Letters from the Queen: Dragon Valley") + public static NpcStringId LV_76_84_LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY; - @ClientString(id = 579802, message = "Letters from the Queen: Dragon Valley (Lv. 76-84) (In Progress)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_LV_76_84_IN_PROGRESS; + @ClientString(id = 579802, message = "|Lv. 76-84| Letters from the Queen: Dragon Valley (In Progress)") + public static NpcStringId LV_76_84_LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_IN_PROGRESS; - @ClientString(id = 579803, message = "Letters from the Queen: Dragon Valley (Lv. 76-84) (Done)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_LV_76_84_DONE; + @ClientString(id = 579803, message = "|Lv. 76-84| Letters from the Queen: Dragon Valley (Done)") + public static NpcStringId LV_76_84_LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_DONE; - @ClientString(id = 579804, message = "Letters from the Queen: Dragon Valley (Lv. 76-84)") - public static NpcStringId LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_LV_76_84_2; + @ClientString(id = 579804, message = "|Lv. 76-84| Letters from the Queen: Dragon Valley") + public static NpcStringId LV_76_84_LETTERS_FROM_THE_QUEEN_DRAGON_VALLEY_2; @ClientString(id = 579811, message = "Talk to Maximilian") public static NpcStringId TALK_TO_MAXIMILIAN; @@ -15106,32 +15151,32 @@ public final class NpcStringId @ClientString(id = 579812, message = "Talk to Namo") public static NpcStringId TALK_TO_NAMO; - @ClientString(id = 579901, message = "Strange Things Afoot in the Valley (Lv. 76-85)") - public static NpcStringId STRANGE_THINGS_AFOOT_IN_THE_VALLEY_LV_76_85; + @ClientString(id = 579901, message = "|Lv. 76-85| Strange Things Afoot in the Valley") + public static NpcStringId LV_76_85_STRANGE_THINGS_AFOOT_IN_THE_VALLEY; - @ClientString(id = 579902, message = "Strange Things Afoot in the Valley (Lv. 76-85) (In Progress)") - public static NpcStringId STRANGE_THINGS_AFOOT_IN_THE_VALLEY_LV_76_85_IN_PROGRESS; + @ClientString(id = 579902, message = "|Lv. 76-85| Strange Things Afoot in the Valley (In Progress)") + public static NpcStringId LV_76_85_STRANGE_THINGS_AFOOT_IN_THE_VALLEY_IN_PROGRESS; - @ClientString(id = 579903, message = "Strange Things Afoot in the Valley (Lv. 76-85) (Done)") - public static NpcStringId STRANGE_THINGS_AFOOT_IN_THE_VALLEY_LV_76_85_DONE; + @ClientString(id = 579903, message = "|Lv. 76-85| Strange Things Afoot in the Valley (Done)") + public static NpcStringId LV_76_85_STRANGE_THINGS_AFOOT_IN_THE_VALLEY_DONE; - @ClientString(id = 579904, message = "Strange Things Afoot in the Valley (Lv. 76-85)") - public static NpcStringId STRANGE_THINGS_AFOOT_IN_THE_VALLEY_LV_76_85_2; + @ClientString(id = 579904, message = "|Lv. 76-85| Strange Things Afoot in the Valley") + public static NpcStringId LV_76_85_STRANGE_THINGS_AFOOT_IN_THE_VALLEY_2; @ClientString(id = 579911, message = "Kill Monsters in the Dragon Valley") public static NpcStringId KILL_MONSTERS_IN_THE_DRAGON_VALLEY; - @ClientString(id = 580001, message = "Reconnaissance at Dragon Valley (Lv. 76-85)") - public static NpcStringId RECONNAISSANCE_AT_DRAGON_VALLEY_LV_76_85; + @ClientString(id = 580001, message = "|Lv. 76-85| Reconnaissance at Dragon Valley") + public static NpcStringId LV_76_85_RECONNAISSANCE_AT_DRAGON_VALLEY; - @ClientString(id = 580002, message = "Reconnaissance at Dragon Valley (Lv. 76-85) (In Progress)") - public static NpcStringId RECONNAISSANCE_AT_DRAGON_VALLEY_LV_76_85_IN_PROGRESS; + @ClientString(id = 580002, message = "|Lv. 76-85| Reconnaissance at Dragon Valley (In Progress)") + public static NpcStringId LV_76_85_RECONNAISSANCE_AT_DRAGON_VALLEY_IN_PROGRESS; - @ClientString(id = 580003, message = "Reconnaissance at Dragon Valley (Lv. 76-85) (Done)") - public static NpcStringId RECONNAISSANCE_AT_DRAGON_VALLEY_LV_76_85_DONE; + @ClientString(id = 580003, message = "|Lv. 76-85| Reconnaissance at Dragon Valley (Done)") + public static NpcStringId LV_76_85_RECONNAISSANCE_AT_DRAGON_VALLEY_DONE; - @ClientString(id = 580004, message = "Reconnaissance at Dragon Valley (Lv. 76-85)") - public static NpcStringId RECONNAISSANCE_AT_DRAGON_VALLEY_LV_76_85_2; + @ClientString(id = 580004, message = "|Lv. 76-85| Reconnaissance at Dragon Valley") + public static NpcStringId LV_76_85_RECONNAISSANCE_AT_DRAGON_VALLEY_2; @ClientString(id = 580011, message = "Kill Monsters in the Dragon Valley") public static NpcStringId KILL_MONSTERS_IN_THE_DRAGON_VALLEY_2; @@ -15220,80 +15265,80 @@ public final class NpcStringId @ClientString(id = 580704, message = "The Dimensional Warp, Part 7") public static NpcStringId THE_DIMENSIONAL_WARP_PART_7_2; - @ClientString(id = 580901, message = "The Hero's Journey: Blazing Swamp (Lv. 97-99)") - public static NpcStringId THE_HERO_S_JOURNEY_BLAZING_SWAMP_LV_97_99; + @ClientString(id = 580901, message = "|Lv. 97-99| The Hero's Journey: Blazing Swamp") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP; - @ClientString(id = 580902, message = "The Hero's Journey: Blazing Swamp (Lv. 97-99) (In Progress)") - public static NpcStringId THE_HERO_S_JOURNEY_BLAZING_SWAMP_LV_97_99_IN_PROGRESS; + @ClientString(id = 580902, message = "|Lv. 97-99| The Hero's Journey: Blazing Swamp (In Progress)") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP_IN_PROGRESS; - @ClientString(id = 580903, message = "The Hero's Journey: Blazing Swamp (Lv. 97-99) (Complete)") - public static NpcStringId THE_HERO_S_JOURNEY_BLAZING_SWAMP_LV_97_99_COMPLETE; + @ClientString(id = 580903, message = "|Lv. 97-99| The Hero's Journey: Blazing Swamp (Complete)") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP_COMPLETE; - @ClientString(id = 580904, message = "The Hero's Journey: Blazing Swamp (Lv. 97-99)") - public static NpcStringId THE_HERO_S_JOURNEY_BLAZING_SWAMP_LV_97_99_2; + @ClientString(id = 580904, message = "|Lv. 97-99| The Hero's Journey: Blazing Swamp") + public static NpcStringId LV_97_99_THE_HERO_S_JOURNEY_BLAZING_SWAMP_2; @ClientString(id = 580905, message = "Speak with Harp Zu Hestui") public static NpcStringId SPEAK_WITH_HARP_ZU_HESTUI; - @ClientString(id = 586101, message = "(Level 60 or higher) Monster Arena - The Birth of a Warrior") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR; + @ClientString(id = 586101, message = "|Lv. 60+| Monster Arena - The Birth of a Warrior") + public static NpcStringId LV_60_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR; - @ClientString(id = 586102, message = "(Level 60 or higher) Monster Arena - The Birth of a Warrior (In Progress)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_IN_PROGRESS; + @ClientString(id = 586102, message = "|Lv. 60+| Monster Arena - The Birth of a Warrior (In Progress)") + public static NpcStringId LV_60_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_IN_PROGRESS; - @ClientString(id = 586103, message = "(Level 60 or higher) Monster Arena - The Birth of a Warrior (Done)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_DONE; + @ClientString(id = 586103, message = "|Lv. 60+| Monster Arena - The Birth of a Warrior (Done)") + public static NpcStringId LV_60_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_DONE; - @ClientString(id = 586104, message = "(Level 60 or higher) Monster Arena - The Birth of a Warrior") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_2; + @ClientString(id = 586104, message = "|Lv. 60+| Monster Arena - The Birth of a Warrior") + public static NpcStringId LV_60_MONSTER_ARENA_THE_BIRTH_OF_A_WARRIOR_2; - @ClientString(id = 586201, message = "(Level 60 or higher) Monster Arena - 10 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_10_TRIES; + @ClientString(id = 586201, message = "|Lv. 60+| Monster Arena - 10 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_10_TRIES; - @ClientString(id = 586202, message = "(Level 60 or higher) Monster Arena - 10 Tries (In Progress)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_10_TRIES_IN_PROGRESS; + @ClientString(id = 586202, message = "|Lv. 60+| Monster Arena - 10 Tries (In Progress)") + public static NpcStringId LV_60_MONSTER_ARENA_10_TRIES_IN_PROGRESS; - @ClientString(id = 586203, message = "(Level 60 or higher) Monster Arena - 10 Tries (Done)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_10_TRIES_DONE; + @ClientString(id = 586203, message = "|Lv. 60+| Monster Arena - 10 Tries (Done)") + public static NpcStringId LV_60_MONSTER_ARENA_10_TRIES_DONE; - @ClientString(id = 586204, message = "(Level 60 or higher) Monster Arena - 10 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_10_TRIES_2; + @ClientString(id = 586204, message = "|Lv. 60+| Monster Arena - 10 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_10_TRIES_2; - @ClientString(id = 586301, message = "(Level 60 or higher) Monster Arena - 15 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_15_TRIES; + @ClientString(id = 586301, message = "|Lv. 60+| Monster Arena - 15 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_15_TRIES; - @ClientString(id = 586302, message = "(Level 60 or higher) Monster Arena - 15 Tries (In Progress)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_15_TRIES_IN_PROGRESS; + @ClientString(id = 586302, message = "|Lv. 60+| Monster Arena - 15 Tries (In Progress)") + public static NpcStringId LV_60_MONSTER_ARENA_15_TRIES_IN_PROGRESS; - @ClientString(id = 586303, message = "(Level 60 or higher) Monster Arena - 15 Tries (Done)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_15_TRIES_DONE; + @ClientString(id = 586303, message = "|Lv. 60+| Monster Arena - 15 Tries (Done)") + public static NpcStringId LV_60_MONSTER_ARENA_15_TRIES_DONE; - @ClientString(id = 586304, message = "(Level 60 or higher) Monster Arena - 15 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_15_TRIES_2; + @ClientString(id = 586304, message = "|Lv. 60+| Monster Arena - 15 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_15_TRIES_2; - @ClientString(id = 586401, message = "(Level 60 or higher) Monster Arena - 25 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_25_TRIES; + @ClientString(id = 586401, message = "|Lv. 60+| Monster Arena - 25 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_25_TRIES; - @ClientString(id = 586402, message = "(Level 60 or higher) Monster Arena - 25 Tries (In Progress)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_25_TRIES_IN_PROGRESS; + @ClientString(id = 586402, message = "|Lv. 60+| Monster Arena - 25 Tries (In Progress)") + public static NpcStringId LV_60_MONSTER_ARENA_25_TRIES_IN_PROGRESS; - @ClientString(id = 586403, message = "(Level 60 or higher) Monster Arena - 25 Tries (Done)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_25_TRIES_DONE; + @ClientString(id = 586403, message = "|Lv. 60+| Monster Arena - 25 Tries (Done)") + public static NpcStringId LV_60_MONSTER_ARENA_25_TRIES_DONE; - @ClientString(id = 586404, message = "(Level 60 or higher) Monster Arena - 25 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_25_TRIES_2; + @ClientString(id = 586404, message = "|Lv. 60+| Monster Arena - 25 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_25_TRIES_2; - @ClientString(id = 586501, message = "(Level 60 or higher) Monster Arena - 40 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_40_TRIES; + @ClientString(id = 586501, message = "|Lv. 60+| Monster Arena - 40 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_40_TRIES; - @ClientString(id = 586502, message = "(Level 60 or higher) Monster Arena - 40 Tries (In Progress)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_40_TRIES_IN_PROGRESS; + @ClientString(id = 586502, message = "|Lv. 60+| Monster Arena - 40 Tries (In Progress)") + public static NpcStringId LV_60_MONSTER_ARENA_40_TRIES_IN_PROGRESS; - @ClientString(id = 586503, message = "(Level 60 or higher) Monster Arena - 40 Tries (Done)") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_40_TRIES_DONE; + @ClientString(id = 586503, message = "|Lv. 60+| Monster Arena - 40 Tries (Done)") + public static NpcStringId LV_60_MONSTER_ARENA_40_TRIES_DONE; - @ClientString(id = 586504, message = "(Level 60 or higher) Monster Arena - 40 Tries") - public static NpcStringId LEVEL_60_OR_HIGHER_MONSTER_ARENA_40_TRIES_2; + @ClientString(id = 586504, message = "|Lv. 60+| Monster Arena - 40 Tries") + public static NpcStringId LV_60_MONSTER_ARENA_40_TRIES_2; @ClientString(id = 586601, message = "|Lv. 70+| Punitive Operation on the Devil's Isle") public static NpcStringId LV_70_PUNITIVE_OPERATION_ON_THE_DEVIL_S_ISLE; @@ -17395,8 +17440,8 @@ public final class NpcStringId @ClientString(id = 1010152, message = "Devil's Isle") public static NpcStringId DEVIL_S_ISLE; - @ClientString(id = 1010153, message = "Garden of Eva (Lv. 40)") - public static NpcStringId GARDEN_OF_EVA_LV_40; + @ClientString(id = 1010153, message = "Garden of Eva (Lv. 78)") + public static NpcStringId GARDEN_OF_EVA_LV_78; @ClientString(id = 1010154, message = "Talking Island") public static NpcStringId TALKING_ISLAND; @@ -17533,8 +17578,8 @@ public final class NpcStringId @ClientString(id = 1010198, message = "Southern Shore of Innadril (Garden of Eva)") public static NpcStringId SOUTHERN_SHORE_OF_INNADRIL_GARDEN_OF_EVA; - @ClientString(id = 1010199, message = "Borderland Fortress") - public static NpcStringId BORDERLAND_FORTRESS; + @ClientString(id = 1010199, message = "Town of Goddard") + public static NpcStringId TOWN_OF_GODDARD; @ClientString(id = 1010200, message = "Town of Rune") public static NpcStringId TOWN_OF_RUNE; @@ -17620,6 +17665,21 @@ public final class NpcStringId @ClientString(id = 1010227, message = "The goddess' resurrection has already begun. Huhu... Insignificant creatures like you can do nothing!") public static NpcStringId THE_GODDESS_RESURRECTION_HAS_ALREADY_BEGUN_HUHU_INSIGNIFICANT_CREATURES_LIKE_YOU_CAN_DO_NOTHING; + @ClientString(id = 1010228, message = "Land of Winds (Lv. 78)") + public static NpcStringId LAND_OF_WINDS_LV_78; + + @ClientString(id = 1010229, message = "You have destroyed the Limit Barrier!") + public static NpcStringId YOU_HAVE_DESTROYED_THE_LIMIT_BARRIER; + + @ClientString(id = 1010230, message = "You have failed to destroy the Limit Barrier.\\nThe raid boss fully recovers its its strength или its health.") + public static NpcStringId YOU_HAVE_FAILED_TO_DESTROY_THE_LIMIT_BARRIER_NTHE_RAID_BOSS_FULLY_RECOVERS_ITS_ITS_STRENGTH_ITS_HEALTH; + + @ClientString(id = 1010231, message = "The Raid Boss uses the Limit Barrier.\\nFocus your attacks to destroy the Limit Barrier in 15 seconds.") + public static NpcStringId THE_RAID_BOSS_USES_THE_LIMIT_BARRIER_NFOCUS_YOUR_ATTACKS_TO_DESTROY_THE_LIMIT_BARRIER_IN_15_SECONDS; + + @ClientString(id = 1010232, message = "The Raid Boss has recovered its CON!") + public static NpcStringId THE_RAID_BOSS_HAS_RECOVERED_ITS_CON; + @ClientString(id = 1010330, message = "You have obtained 500 Clan Reputation.") public static NpcStringId YOU_HAVE_OBTAINED_500_CLAN_REPUTATION; @@ -17896,11 +17956,11 @@ public final class NpcStringId @ClientString(id = 1010490, message = "Entrance to the Elven Fortress") public static NpcStringId ENTRANCE_TO_THE_ELVEN_FORTRESS; - @ClientString(id = 1010491, message = "Varka Silenos Barracks (Lv. 76)") - public static NpcStringId VARKA_SILENOS_BARRACKS_LV_76; + @ClientString(id = 1010491, message = "Varka Silenos Barracks (Lv. 80)") + public static NpcStringId VARKA_SILENOS_BARRACKS_LV_80; - @ClientString(id = 1010492, message = "Ketra Orc Outpost (Lv. 76)") - public static NpcStringId KETRA_ORC_OUTPOST_LV_76; + @ClientString(id = 1010492, message = "Ketra Orc Outpost (Lv. 80)") + public static NpcStringId KETRA_ORC_OUTPOST_LV_80; @ClientString(id = 1010493, message = "Town of Rune Guild") public static NpcStringId TOWN_OF_RUNE_GUILD; @@ -18013,8 +18073,8 @@ public final class NpcStringId @ClientString(id = 1010529, message = "Shrine of Loyalty (Lv. 76)") public static NpcStringId SHRINE_OF_LOYALTY_LV_76; - @ClientString(id = 1010530, message = "Entrance to the Forge of the Gods (Lv. 78)") - public static NpcStringId ENTRANCE_TO_THE_FORGE_OF_THE_GODS_LV_78; + @ClientString(id = 1010530, message = "Forge of the Gods (Lv. 78)") + public static NpcStringId FORGE_OF_THE_GODS_LV_78; @ClientString(id = 1010531, message = "Forge of the Gods - Top Level") public static NpcStringId FORGE_OF_THE_GODS_TOP_LEVEL; @@ -18127,8 +18187,8 @@ public final class NpcStringId @ClientString(id = 1010567, message = "Devil's Isle (Lv. 92)") public static NpcStringId DEVIL_S_ISLE_LV_92; - @ClientString(id = 1010568, message = "Wall of Argos (Lv. 71)") - public static NpcStringId WALL_OF_ARGOS_LV_71; + @ClientString(id = 1010568, message = "Wall of Argos (Lv. 78)") + public static NpcStringId WALL_OF_ARGOS_LV_78; @ClientString(id = 1010569, message = "Den of Evil (Lv. 81)") public static NpcStringId DEN_OF_EVIL_LV_81; @@ -18250,8 +18310,8 @@ public final class NpcStringId @ClientString(id = 1010608, message = "Center of the Elven Ruins") public static NpcStringId CENTER_OF_THE_ELVEN_RUINS; - @ClientString(id = 1010609, message = "Hot Springs (Lv. 73)") - public static NpcStringId HOT_SPRINGS_LV_73; + @ClientString(id = 1010609, message = "Hot Springs (Lv. 80)") + public static NpcStringId HOT_SPRINGS_LV_80; @ClientString(id = 1010610, message = "The Center of the Hot Springs") public static NpcStringId THE_CENTER_OF_THE_HOT_SPRINGS; @@ -18517,8 +18577,8 @@ public final class NpcStringId @ClientString(id = 1010697, message = "Front of the Schuttgart Castle") public static NpcStringId FRONT_OF_THE_SCHUTTGART_CASTLE; - @ClientString(id = 1010698, message = "Primeval Isle Wharf") - public static NpcStringId PRIMEVAL_ISLE_WHARF; + @ClientString(id = 1010698, message = "Forgotten Island (Lv.79)") + public static NpcStringId FORGOTTEN_ISLAND_LV_79; @ClientString(id = 1010699, message = "Isle of Prayer (Lv. 78)") public static NpcStringId ISLE_OF_PRAYER_LV_78; @@ -19250,7 +19310,7 @@ public final class NpcStringId public static NpcStringId IS_OUT_OF_RANGE; @ClientString(id = 1110075, message = "") - public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_255_REPLY_3_MSG_811MONSTER_DERBY_TELEPORT_TO_MONSTER_DERBY_FREE_BUTTON; + public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_255_REPLY_3_MSG_811_MONSTER_DERBY_TELEPORT_TO_MONSTER_DERBY_FREE_BUTTON; @ClientString(id = 1111002, message = "") public static NpcStringId BUTTON_ALIGN_LEFT_ICON_NORMAL_ACTION_BYPASS_H_MENU_SELECT_ASK_2_REPLY_41_STATE_1_GLADIATOR_BUTTON; @@ -20971,6 +21031,51 @@ public final class NpcStringId @ClientString(id = 1120337, message = "Darion (lv99)") public static NpcStringId DARION_LV99; + @ClientString(id = 1120338, message = "You're not that bad! Now it's time for me to light up the fire!") + public static NpcStringId YOU_RE_NOT_THAT_BAD_NOW_IT_S_TIME_FOR_ME_TO_LIGHT_UP_THE_FIRE; + + @ClientString(id = 1120339, message = "$s1! You will turn to ashes in the agony of hungry flame.") + public static NpcStringId S1_YOU_WILL_TURN_TO_ASHES_IN_THE_AGONY_OF_HUNGRY_FLAME; + + @ClientString(id = 1120340, message = "Magic must be reсovered. Wait a bit.") + public static NpcStringId MAGIC_MUST_BE_RE_OVERED_WAIT_A_BIT; + + @ClientString(id = 1120341, message = "You cannot cope with the fire energy! Come to me!") + public static NpcStringId YOU_CANNOT_COPE_WITH_THE_FIRE_ENERGY_COME_TO_ME; + + @ClientString(id = 1120342, message = "Ice and fire oppose each other. Fire Energy, incinerate!") + public static NpcStringId ICE_AND_FIRE_OPPOSE_EACH_OTHER_FIRE_ENERGY_INCINERATE; + + @ClientString(id = 1120343, message = "Wind is wind, no matter where it blows. The same way I am the same, wherever my fate leads me") + public static NpcStringId WIND_IS_WIND_NO_MATTER_WHERE_IT_BLOWS_THE_SAME_WAY_I_AM_THE_SAME_WHEREVER_MY_FATE_LEADS_ME; + + @ClientString(id = 1120344, message = "Wonderful! Light breeze went down, but wind energy still fills the whole place.") + public static NpcStringId WONDERFUL_LIGHT_BREEZE_WENT_DOWN_BUT_WIND_ENERGY_STILL_FILLS_THE_WHOLE_PLACE; + + @ClientString(id = 1120345, message = "Now I will show you the real power of wind! Prepare yourselves!") + public static NpcStringId NOW_I_WILL_SHOW_YOU_THE_REAL_POWER_OF_WIND_PREPARE_YOURSELVES; + + @ClientString(id = 1120348, message = "Now I will show the true power of earth and it will shake you to the bone!") + public static NpcStringId NOW_I_WILL_SHOW_THE_TRUE_POWER_OF_EARTH_AND_IT_WILL_SHAKE_YOU_TO_THE_BONE; + + @ClientString(id = 1120349, message = "My blade will become a nightmare for my enemies!") + public static NpcStringId MY_BLADE_WILL_BECOME_A_NIGHTMARE_FOR_MY_ENEMIES; + + @ClientString(id = 1120350, message = "Long-range attacks are useless against me.") + public static NpcStringId LONG_RANGE_ATTACKS_ARE_USELESS_AGAINST_ME; + + @ClientString(id = 1120351, message = "All your weapons are nothing but useless junk!") + public static NpcStringId ALL_YOUR_WEAPONS_ARE_NOTHING_BUT_USELESS_JUNK; + + @ClientString(id = 1120352, message = "Oh-ho… So easy to break.") + public static NpcStringId OH_HO_SO_EASY_TO_BREAK; + + @ClientString(id = 1120353, message = "Something must have gone wrong if you see me!") + public static NpcStringId SOMETHING_MUST_HAVE_GONE_WRONG_IF_YOU_SEE_ME; + + @ClientString(id = 1120354, message = "Don't expect any help, all my magic is gone to contain the flames.") + public static NpcStringId DON_T_EXPECT_ANY_HELP_ALL_MY_MAGIC_IS_GONE_TO_CONTAIN_THE_FLAMES; + @ClientString(id = 1121000, message = "Steward: Please wait a moment.") public static NpcStringId STEWARD_PLEASE_WAIT_A_MOMENT; @@ -21236,7 +21341,7 @@ public final class NpcStringId public static NpcStringId WHITE_SANDS_FORTRESS; @ClientString(id = 1300109, message = "Borderland Fortress") - public static NpcStringId BORDERLAND_FORTRESS_2; + public static NpcStringId BORDERLAND_FORTRESS; @ClientString(id = 1300110, message = "Swamp Fortress") public static NpcStringId SWAMP_FORTRESS; @@ -22168,6 +22273,15 @@ public final class NpcStringId @ClientString(id = 1630002, message = "$s1 is what has been in my possession!") public static NpcStringId S1_IS_WHAT_HAS_BEEN_IN_MY_POSSESSION; + @ClientString(id = 1640001, message = "$s1 has extended the duration for $s2 sec.") + public static NpcStringId S1_HAS_EXTENDED_THE_DURATION_FOR_S2_SEC; + + @ClientString(id = 1640004, message = "$s1 has received a Valor Box!") + public static NpcStringId S1_HAS_RECEIVED_A_VALOR_BOX; + + @ClientString(id = 1640005, message = "All levels are completed.") + public static NpcStringId ALL_LEVELS_ARE_COMPLETED; + @ClientString(id = 1717800, message = "We cannot resonate with voice at the current state.") public static NpcStringId WE_CANNOT_RESONATE_WITH_VOICE_AT_THE_CURRENT_STATE; @@ -24647,10 +24761,10 @@ public final class NpcStringId public static NpcStringId FOUR_SECONDS_ARE_REMAINING; @ClientString(id = 1800809, message = "3 seconds are remaining.") - public static NpcStringId THREE_SECONDS_ARE_REMAINING_3; + public static NpcStringId THREE_SECONDS_ARE_REMAINING_2; @ClientString(id = 1800810, message = "2 seconds are remaining.") - public static NpcStringId TWO_SECONDS_ARE_REMAINING_3; + public static NpcStringId TWO_SECONDS_ARE_REMAINING_2; @ClientString(id = 1800811, message = "1 seconds are remaining.") public static NpcStringId ONE_SECONDS_ARE_REMAINING; @@ -24856,14 +24970,14 @@ public final class NpcStringId @ClientString(id = 1800878, message = "Life Stone from the Beginning acquired") public static NpcStringId LIFE_STONE_FROM_THE_BEGINNING_ACQUIRED; - @ClientString(id = 1800879, message = "When inventory weight/number are more than 80%, the Life Stone from the Beginning cannot be acquired.") + @ClientString(id = 1800879, message = "When inventory weight/number are more than 80%%, the Life Stone from the Beginning cannot be acquired.") public static NpcStringId WHEN_INVENTORY_WEIGHT_NUMBER_ARE_MORE_THAN_80_THE_LIFE_STONE_FROM_THE_BEGINNING_CANNOT_BE_ACQUIRED; @ClientString(id = 1800880, message = "You are under my thumb!!") public static NpcStringId YOU_ARE_UNDER_MY_THUMB; - @ClientString(id = 1800881, message = "20 minutes are added to the remaining time in the Instant Zone.") - public static NpcStringId TWENTY_MINUTES_ARE_ADDED_TO_THE_REMAINING_TIME_IN_THE_INSTANT_ZONE; + @ClientString(id = 1800881, message = "20 minutes are added to the remaining time in the Instance Zone.") + public static NpcStringId TWENTY_MINUTES_ARE_ADDED_TO_THE_REMAINING_TIME_IN_THE_INSTANCE_ZONE; @ClientString(id = 1800882, message = "Hurry!") public static NpcStringId HURRY; @@ -27787,13 +27901,13 @@ public final class NpcStringId @ClientString(id = 1802042, message = "\\nA clan has risen up to challenge Nurka!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_RISEN_UP_TO_CHALLENGE_NURKA; - @ClientString(id = 1802043, message = "\\nA clan has decreased Nurka's HP to 70%!") + @ClientString(id = 1802043, message = "\\nA clan has decreased Nurka's HP to 70%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_70; - @ClientString(id = 1802044, message = "\\nA clan has decreased Nurka's HP to 40%!") + @ClientString(id = 1802044, message = "\\nA clan has decreased Nurka's HP to 40%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_40; - @ClientString(id = 1802045, message = "\\nA clan has decreased Nurka's HP to 10%!") + @ClientString(id = 1802045, message = "\\nA clan has decreased Nurka's HP to 10%%!") public static NpcStringId CLAN_HALL_SIEGE_ALERT_NA_CLAN_HAS_DECREASED_NURKA_S_HP_TO_10; @ClientString(id = 1802046, message = "\\nA clan has defeated Nurka for the first time!") @@ -27967,7 +28081,7 @@ public final class NpcStringId @ClientString(id = 1802102, message = "The Request Manager will disappear in 1 minute.") public static NpcStringId THE_REQUEST_MANAGER_WILL_DISAPPEAR_IN_1_MINUTE; - @ClientString(id = 1802103, message = "Dismantling is $s1% complete!") + @ClientString(id = 1802103, message = "Dismantling is $s1%% complete!") public static NpcStringId DISMANTLING_IS_S1_COMPLETE; @ClientString(id = 1802104, message = "The Life Plunderer's true form is revealed.") @@ -28039,7 +28153,7 @@ public final class NpcStringId @ClientString(id = 1802126, message = "You must continuously wake up the Milk Cows while the chefs interrupt.") public static NpcStringId YOU_MUST_CONTINUOUSLY_WAKE_UP_THE_MILK_COWS_WHILE_THE_CHEFS_INTERRUPT; - @ClientString(id = 1802127, message = "You must keep your Request Progress at + % by waking up as many cows as possible within the given time.") + @ClientString(id = 1802127, message = "You must keep your Request Progress at + %% by waking up as many cows as possible within the given time.") public static NpcStringId YOU_MUST_KEEP_YOUR_REQUEST_PROGRESS_AT_BY_WAKING_UP_AS_MANY_COWS_AS_POSSIBLE_WITHIN_THE_GIVEN_TIME; @ClientString(id = 1802128, message = "Click on 'Summon Clan Member' to bring the clan member to your location.") @@ -28183,13 +28297,13 @@ public final class NpcStringId @ClientString(id = 1802174, message = "Your clan has defeated Gustav for the first time! Congratulations!") public static NpcStringId YOUR_CLAN_HAS_DEFEATED_GUSTAV_FOR_THE_FIRST_TIME_CONGRATULATIONS; - @ClientString(id = 1802175, message = "Your clan has decreased Nurka's HP to 70% for the first time!") + @ClientString(id = 1802175, message = "Your clan has decreased Nurka's HP to 70%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_70_FOR_THE_FIRST_TIME; - @ClientString(id = 1802176, message = "Your clan has decreased Nurka's HP to 40% for the first time!") + @ClientString(id = 1802176, message = "Your clan has decreased Nurka's HP to 40%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_40_FOR_THE_FIRST_TIME; - @ClientString(id = 1802177, message = "Your clan has decreased Nurka's HP to 10% for the first time!") + @ClientString(id = 1802177, message = "Your clan has decreased Nurka's HP to 10%% for the first time!") public static NpcStringId YOUR_CLAN_HAS_DECREASED_NURKA_S_HP_TO_10_FOR_THE_FIRST_TIME; @ClientString(id = 1802178, message = "Your clan has defeated Nurka for the first time! Congratulations!") @@ -29479,8 +29593,8 @@ public final class NpcStringId @ClientString(id = 1802608, message = "A powerful monster has come to face you!") public static NpcStringId A_POWERFUL_MONSTER_HAS_COME_TO_FACE_YOU; - @ClientString(id = 1802609, message = "$s1 seconds have been added to the instanced zone duration.") - public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCED_ZONE_DURATION; + @ClientString(id = 1802609, message = "$s1 seconds have been added to the Instance Zone duration.") + public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION; @ClientString(id = 1802610, message = "Master Katalin has sent a letter.\\nClick the question-mark icon to read.") public static NpcStringId MASTER_KATALIN_HAS_SENT_A_LETTER_NCLICK_THE_QUESTION_MARK_ICON_TO_READ; @@ -29764,8 +29878,8 @@ public final class NpcStringId @ClientString(id = 1802703, message = "Happy New Year! Heh heh!") public static NpcStringId HAPPY_NEW_YEAR_HEH_HEH; - @ClientString(id = 1802704, message = "The instanced zone will close soon!") - public static NpcStringId THE_INSTANCED_ZONE_WILL_CLOSE_SOON; + @ClientString(id = 1802704, message = "The Instance Zone will close soon!") + public static NpcStringId THE_INSTANCE_ZONE_WILL_CLOSE_SOON; @ClientString(id = 1802705, message = "Nooo…not enough Vitality yet!") public static NpcStringId NOOO_NOT_ENOUGH_VITALITY_YET; @@ -30319,7 +30433,7 @@ public final class NpcStringId @ClientString(id = 1803374, message = "Healing Relic of the Monster Arena") public static NpcStringId HEALING_RELIC_OF_THE_MONSTER_ARENA; - @ClientString(id = 1803375, message = "In critical moments, you can restore 30% of HP and 20% of MP by asking Nana who is standing behind you (can be used 7 times).") + @ClientString(id = 1803375, message = "In critical moments, you can restore 30%% of HP and 20%% of MP by asking Nana who is standing behind you (can be used 7 times).") public static NpcStringId IN_CRITICAL_MOMENTS_YOU_CAN_RESTORE_30_OF_HP_AND_20_OF_MP_BY_ASKING_NANA_WHO_IS_STANDING_BEHIND_YOU_CAN_BE_USED_7_TIMES; @ClientString(id = 1803376, message = "Warning: if you ask Nana for help more than 3 times, you might lose points.") @@ -30365,10 +30479,10 @@ public final class NpcStringId public static NpcStringId SEVENTH_LEVEL_TIME_LEFT; @ClientString(id = 1803390, message = "8th level. Time left:") - public static NpcStringId EIGTH_LEVEL_TIME_LEFT; + public static NpcStringId EIGHTH_LEVEL_TIME_LEFT; @ClientString(id = 1803391, message = "9th level. Time left:") - public static NpcStringId NINTH_LEVEL_TIME_LEFT; + public static NpcStringId NINETH_LEVEL_TIME_LEFT; @ClientString(id = 1803392, message = "10th level. Time left:") public static NpcStringId TENTH_LEVEL_TIME_LEFT; @@ -30413,7 +30527,7 @@ public final class NpcStringId public static NpcStringId TWENTY_THIRD_LEVEL_TIME_LEFT; @ClientString(id = 1803406, message = "24th level. Time left:") - public static NpcStringId TWENTY_FOURTH_LEVEL_TIME_LEFT; + public static NpcStringId THENTY_FOURTH_LEVEL_TIME_LEFT; @ClientString(id = 1803407, message = "25th level. Time left:") public static NpcStringId TWENTY_FIFTH_LEVEL_TIME_LEFT; @@ -31099,8 +31213,92 @@ public final class NpcStringId @ClientString(id = 1803635, message = "You have already received Zaken's treasure. I have nothing else to give you!") public static NpcStringId YOU_HAVE_ALREADY_RECEIVED_ZAKEN_S_TREASURE_I_HAVE_NOTHING_ELSE_TO_GIVE_YOU; - @ClientString(id = 1810363, message = "You are too far from the corpse.") - public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; + @ClientString(id = 1803636, message = "Event 99999 is starting! The one who is the 99999th to hit the monster will take it all!") + public static NpcStringId EVENT_99999_IS_STARTING_THE_ONE_WHO_IS_THE_99999TH_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803637, message = "Event 33333 is starting! The one who is the 33333rd to hit the monster will take it all!") + public static NpcStringId EVENT_33333_IS_STARTING_THE_ONE_WHO_IS_THE_33333RD_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803638, message = "Event 77777 is starting! The one who is the 77777th to hit the monster will take it all!") + public static NpcStringId EVENT_77777_IS_STARTING_THE_ONE_WHO_IS_THE_77777TH_TO_HIT_THE_MONSTER_WILL_TAKE_IT_ALL; + + @ClientString(id = 1803639, message = "The countdown timer is paused for 1 min. Every character may receive supplies once per stage.") + public static NpcStringId THE_COUNTDOWN_TIMER_IS_PAUSED_FOR_1_MIN_EVERY_CHARACTER_MAY_RECEIVE_SUPPLIES_ONCE_PER_STAGE; + + @ClientString(id = 1803640, message = "The countdown is on! The raid begins!") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_RAID_BEGINS; + + @ClientString(id = 1803641, message = "To extend the duration click the Extend duration button.") + public static NpcStringId TO_EXTEND_THE_DURATION_CLICK_THE_EXTEND_DURATION_BUTTON; + + @ClientString(id = 1803642, message = "Time extension error!") + public static NpcStringId TIME_EXTENSION_ERROR; + + @ClientString(id = 1803643, message = "Be careful! You are about to face the last Ol Mahum!") + public static NpcStringId BE_CAREFUL_YOU_ARE_ABOUT_TO_FACE_THE_LAST_OL_MAHUM; + + @ClientString(id = 1803644, message = "Come what may - it is not your fault.") + public static NpcStringId COME_WHAT_MAY_IT_IS_NOT_YOUR_FAULT; + + @ClientString(id = 1803645, message = "Bring over and surrender your precious gold treasure to me!") + public static NpcStringId BRING_OVER_AND_SURRENDER_YOUR_PRECIOUS_GOLD_TREASURE_TO_ME_2; + + @ClientString(id = 1803646, message = "I'm covered in Kraven's blood… You will be punished!") + public static NpcStringId I_M_COVERED_IN_KRAVEN_S_BLOOD_YOU_WILL_BE_PUNISHED; + + @ClientString(id = 1803647, message = "Who is real? It is not easy to tell!") + public static NpcStringId WHO_IS_REAL_IT_IS_NOT_EASY_TO_TELL; + + @ClientString(id = 1803648, message = "I will be fighting until Kandra finally accepts me!") + public static NpcStringId I_WILL_BE_FIGHTING_UNTIL_KANDRA_FINALLY_ACCEPTS_ME; + + @ClientString(id = 1803649, message = "This is the power of Orcs! Hahaha!") + public static NpcStringId THIS_IS_THE_POWER_OF_ORCS_HAHAHA; + + @ClientString(id = 1803650, message = "I'm gonna make you feel my rage!") + public static NpcStringId I_M_GONNA_MAKE_YOU_FEEL_MY_RAGE; + + @ClientString(id = 1803651, message = "Where is Leo? Where have you hidden him?") + public static NpcStringId WHERE_IS_LEO_WHERE_HAVE_YOU_HIDDEN_HIM; + + @ClientString(id = 1803652, message = "It is just the beginning… You will fail!") + public static NpcStringId IT_IS_JUST_THE_BEGINNING_YOU_WILL_FAIL; + + @ClientString(id = 1803653, message = "We are nothing like these Varka weaklings!") + public static NpcStringId WE_ARE_NOTHING_LIKE_THESE_VARKA_WEAKLINGS; + + @ClientString(id = 1803654, message = "I'll kill you! This is Hallate's will! Die!") + public static NpcStringId I_LL_KILL_YOU_THIS_IS_HALLATE_S_WILL_DIE; + + @ClientString(id = 1803655, message = "Fine, let's see what you can do.") + public static NpcStringId FINE_LET_S_SEE_WHAT_YOU_CAN_DO; + + @ClientString(id = 1803656, message = "I will show no mercy! I will kill you!") + public static NpcStringId I_WILL_SHOW_NO_MERCY_I_WILL_KILL_YOU; + + @ClientString(id = 1803657, message = "I'll make you suffer! You will burn forever!") + public static NpcStringId I_LL_MAKE_YOU_SUFFER_YOU_WILL_BURN_FOREVER; + + @ClientString(id = 1803658, message = "I'll make everyone feel this pain!") + public static NpcStringId I_LL_MAKE_EVERYONE_FEEL_THIS_PAIN; + + @ClientString(id = 1803659, message = "You worthless scum… I will break you!") + public static NpcStringId YOU_WORTHLESS_SCUM_I_WILL_BREAK_YOU; + + @ClientString(id = 1803660, message = "There is nothing you can do!") + public static NpcStringId THERE_IS_NOTHING_YOU_CAN_DO; + + @ClientString(id = 1803661, message = "You think you can take me?") + public static NpcStringId YOU_THINK_YOU_CAN_TAKE_ME; + + @ClientString(id = 1803662, message = "Run, run!") + public static NpcStringId RUN_RUN; + + @ClientString(id = 1803663, message = "You are stronger than you look. But this was just a test.") + public static NpcStringId YOU_ARE_STRONGER_THAN_YOU_LOOK_BUT_THIS_WAS_JUST_A_TEST; + + @ClientString(id = 1803664, message = "This was a mistake! You will never defeat me!") + public static NpcStringId THIS_WAS_A_MISTAKE_YOU_WILL_NEVER_DEFEAT_ME; @ClientString(id = 1803665, message = "Ha! Not bad.") public static NpcStringId HA_NOT_BAD; @@ -31108,6 +31306,99 @@ public final class NpcStringId @ClientString(id = 1803666, message = "Welcome to the Arena! Test your clan's strength!") public static NpcStringId WELCOME_TO_THE_ARENA_TEST_YOUR_CLAN_S_STRENGTH; + @ClientString(id = 1803667, message = "The countdown is on! The raid begins! To extend the duration you can click the Extend duration button.") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_RAID_BEGINS_TO_EXTEND_THE_DURATION_YOU_CAN_CLICK_THE_EXTEND_DURATION_BUTTON; + + @ClientString(id = 1803668, message = "What a lovely day! The treasure is mine!") + public static NpcStringId WHAT_A_LOVELY_DAY_THE_TREASURE_IS_MINE; + + @ClientString(id = 1803669, message = "Wow! This was a pure success!") + public static NpcStringId WOW_THIS_WAS_A_PURE_SUCCESS; + + @ClientString(id = 1803670, message = "The treasure chest is over there! Come, quickly!") + public static NpcStringId THE_TREASURE_CHEST_IS_OVER_THERE_COME_QUICKLY; + + @ClientString(id = 1803671, message = "There, that's the treasure chest! Let's see…") + public static NpcStringId THERE_THAT_S_THE_TREASURE_CHEST_LET_S_SEE; + + @ClientString(id = 1803672, message = "The treasure is ours! We will rule the world!") + public static NpcStringId THE_TREASURE_IS_OURS_WE_WILL_RULE_THE_WORLD; + + @ClientString(id = 1803673, message = "I see the treasure chest! Come on, let's go!") + public static NpcStringId I_SEE_THE_TREASURE_CHEST_COME_ON_LET_S_GO; + + @ClientString(id = 1803674, message = "$s1, that's the treasure… It's our lucky day!") + public static NpcStringId S1_THAT_S_THE_TREASURE_IT_S_OUR_LUCKY_DAY; + + @ClientString(id = 1803675, message = "Those guys with $s1 got lucky!") + public static NpcStringId THOSE_GUYS_WITH_S1_GOT_LUCKY; + + @ClientString(id = 1803676, message = "If only you knew how much effort it took us to find this treasure… Thank you.") + public static NpcStringId IF_ONLY_YOU_KNEW_HOW_MUCH_EFFORT_IT_TOOK_US_TO_FIND_THIS_TREASURE_THANK_YOU; + + @ClientString(id = 1803677, message = "The countdown is on! The last raid has begun!") + public static NpcStringId THE_COUNTDOWN_IS_ON_THE_LAST_RAID_HAS_BEGUN; + + @ClientString(id = 1803678, message = "All raids are finished for now. We will prepare new arena raids for you. Please come back soon!") + public static NpcStringId ALL_RAIDS_ARE_FINISHED_FOR_NOW_WE_WILL_PREPARE_NEW_ARENA_RAIDS_FOR_YOU_PLEASE_COME_BACK_SOON; + + @ClientString(id = 1803679, message = "The chest is empty!") + public static NpcStringId THE_CHEST_IS_EMPTY; + + @ClientString(id = 1803680, message = "Don't think that treasure hunting is going to be easy…") + public static NpcStringId DON_T_THINK_THAT_TREASURE_HUNTING_IS_GOING_TO_BE_EASY; + + @ClientString(id = 1803681, message = "Oh! This is a treasure chest!") + public static NpcStringId OH_THIS_IS_A_TREASURE_CHEST; + + @ClientString(id = 1803682, message = "I see a chest full of treasures!") + public static NpcStringId I_SEE_A_CHEST_FULL_OF_TREASURES; + + @ClientString(id = 1803683, message = "Antharas is trying to escape.") + public static NpcStringId ANTHARAS_IS_TRYING_TO_ESCAPE; + + @ClientString(id = 1803684, message = "Balthus Knights are looking for mercenaries!") + public static NpcStringId BALTHUS_KNIGHTS_ARE_LOOKING_FOR_MERCENARIES; + + @ClientString(id = 1803685, message = "Let's join our forces and face this together!") + public static NpcStringId LET_S_JOIN_OUR_FORCES_AND_FACE_THIS_TOGETHER; + + @ClientString(id = 1803686, message = "Pretty good! Go to level 1 and get through with this!") + public static NpcStringId PRETTY_GOOD_GO_TO_LEVEL_1_AND_GET_THROUGH_WITH_THIS; + + @ClientString(id = 1803687, message = "Wind Spirit King appeared somewhere close!") + public static NpcStringId WIND_SPIRIT_KING_APPEARED_SOMEWHERE_CLOSE; + + @ClientString(id = 1803688, message = "Water Spirit Queen appeared somewhere close!") + public static NpcStringId WATER_SPIRIT_QUEEN_APPEARED_SOMEWHERE_CLOSE; + + @ClientString(id = 1803689, message = "Flame Spirit King appeared somewhere close!") + public static NpcStringId FLAME_SPIRIT_KING_APPEARED_SOMEWHERE_CLOSE; + + @ClientString(id = 1803690, message = "Earth Spirit King appeared somewhere close!") + public static NpcStringId EARTH_SPIRIT_KING_APPEARED_SOMEWHERE_CLOSE; + + @ClientString(id = 1803691, message = "It's hard to see me. I will disappear in 1 minute.") + public static NpcStringId IT_S_HARD_TO_SEE_ME_I_WILL_DISAPPEAR_IN_1_MINUTE; + + @ClientString(id = 1803692, message = "Now I will show the real might of the Silenos!") + public static NpcStringId NOW_I_WILL_SHOW_THE_REAL_MIGHT_OF_THE_SILENOS; + + @ClientString(id = 1803693, message = "Nerva Orcs are the strongest!") + public static NpcStringId NERVA_ORCS_ARE_THE_STRONGEST; + + @ClientString(id = 1803694, message = "Pathetic. Out of my sight!") + public static NpcStringId PATHETIC_OUT_OF_MY_SIGHT; + + @ClientString(id = 1803695, message = "Behold my wrath! You will not triumph over me!") + public static NpcStringId BEHOLD_MY_WRATH_YOU_WILL_NOT_TRIUMPH_OVER_ME; + + @ClientString(id = 1803696, message = "You will not defeat me!") + public static NpcStringId YOU_WILL_NOT_DEFEAT_ME; + + @ClientString(id = 1810363, message = "You are too far from the corpse.") + public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; + @ClientString(id = 1810364, message = "Grudge of Ye Sagira victims have been relieved with your tears.") public static NpcStringId GRUDGE_OF_YE_SAGIRA_VICTIMS_HAVE_BEEN_RELIEVED_WITH_YOUR_TEARS; @@ -31456,8 +31747,8 @@ public final class NpcStringId @ClientString(id = 1811148, message = "Istina spreads the reflecting protective sheet.") public static NpcStringId ISTINA_SPREADS_THE_REFLECTING_PROTECTIVE_SHEET; - @ClientString(id = 1811149, message = "You need to find Escape Device. Re-entry is not allowed once you've left the instant zone.") - public static NpcStringId YOU_NEED_TO_FIND_ESCAPE_DEVICE_RE_ENTRY_IS_NOT_ALLOWED_ONCE_YOU_VE_LEFT_THE_INSTANT_ZONE; + @ClientString(id = 1811149, message = "You need to find Escape Device. Re-entry is not allowed once you've left the Instance Zone.") + public static NpcStringId YOU_NEED_TO_FIND_ESCAPE_DEVICE_RE_ENTRY_IS_NOT_ALLOWED_ONCE_YOU_VE_LEFT_THE_INSTANCE_ZONE; @ClientString(id = 1811150, message = "The location of the escape device is moved.") public static NpcStringId THE_LOCATION_OF_THE_ESCAPE_DEVICE_IS_MOVED; @@ -32134,11 +32425,11 @@ public final class NpcStringId @ClientString(id = 1900020, message = "Happy Holidays~ Thank you for rescuing me from that wretched Turkey.") public static NpcStringId HAPPY_HOLIDAYS_THANK_YOU_FOR_RESCUING_ME_FROM_THAT_WRETCHED_TURKEY_2; - @ClientString(id = 1900021, message = "%s. I have prepared a gift for you.") - public static NpcStringId S_I_HAVE_PREPARED_A_GIFT_FOR_YOU; + @ClientString(id = 1900021, message = "$s1. I have prepared a gift for you.") + public static NpcStringId S1_I_HAVE_PREPARED_A_GIFT_FOR_YOU_2; - @ClientString(id = 1900022, message = "I have a gift for %s.") - public static NpcStringId I_HAVE_A_GIFT_FOR_S; + @ClientString(id = 1900022, message = "I have a gift for $s1.") + public static NpcStringId I_HAVE_A_GIFT_FOR_S1_2; @ClientString(id = 1900023, message = "Take a look at the inventory. I hope you like the gift I gave you.") public static NpcStringId TAKE_A_LOOK_AT_THE_INVENTORY_I_HOPE_YOU_LIKE_THE_GIFT_I_GAVE_YOU_2; @@ -32152,8 +32443,8 @@ public final class NpcStringId @ClientString(id = 1900026, message = "When are you going to stop? I'm slowly getting tired of this.") public static NpcStringId WHEN_ARE_YOU_GOING_TO_STOP_I_M_SLOWLY_GETTING_TIRED_OF_THIS; - @ClientString(id = 1900027, message = "Message from Santa: Many blessings to %s, who saved me~") - public static NpcStringId MESSAGE_FROM_SANTA_MANY_BLESSINGS_TO_S_WHO_SAVED_ME; + @ClientString(id = 1900027, message = "Message from Santa: Many blessings to $s1, who saved me~") + public static NpcStringId MESSAGE_FROM_SANTA_MANY_BLESSINGS_TO_S1_WHO_SAVED_ME_2; @ClientString(id = 1900028, message = "How dare you awaken me. Feel the pain of the flames.") public static NpcStringId HOW_DARE_YOU_AWAKEN_ME_FEEL_THE_PAIN_OF_THE_FLAMES; @@ -32167,8 +32458,8 @@ public final class NpcStringId @ClientString(id = 1900031, message = "Co... Cold! That's cold! Ack! Ack!") public static NpcStringId CO_COLD_THAT_S_COLD_ACK_ACK; - @ClientString(id = 1900032, message = "Please, %s... Don't hit me... Please.") - public static NpcStringId PLEASE_S_DON_T_HIT_ME_PLEASE; + @ClientString(id = 1900032, message = "Please, $s1... Don't hit me... Please.") + public static NpcStringId PLEASE_S1_DON_T_HIT_ME_PLEASE; @ClientString(id = 1900033, message = "Kuaaannggg! Shake in fear!") public static NpcStringId KUAAANNGGG_SHAKE_IN_FEAR; @@ -32314,11 +32605,11 @@ public final class NpcStringId @ClientString(id = 1900080, message = "Wowww. Awesome. Really. I have never met someone as good as you before. Now... I can't play anymore.") public static NpcStringId WOWWW_AWESOME_REALLY_I_HAVE_NEVER_MET_SOMEONE_AS_GOOD_AS_YOU_BEFORE_NOW_I_CAN_T_PLAY_ANYMORE_2; - @ClientString(id = 1900081, message = "%s has won %s Jack's games in a row.") - public static NpcStringId S_HAS_WON_S_JACK_S_GAMES_IN_A_ROW; + @ClientString(id = 1900081, message = "$s1 has won $s2 Jack's games in a row.") + public static NpcStringId S1_HAS_WON_S2_JACK_S_GAMES_IN_A_ROW_2; - @ClientString(id = 1900082, message = "Congratulations! %s has won %s Jack's games in a row.") - public static NpcStringId CONGRATULATIONS_S_HAS_WON_S_JACK_S_GAMES_IN_A_ROW; + @ClientString(id = 1900082, message = "Congratulations! $s1 has won $s2 Jack's games in a row.") + public static NpcStringId CONGRATULATIONS_S1_HAS_WON_S2_JACK_S_GAMES_IN_A_ROW_2; @ClientString(id = 1900083, message = "Congratulations on getting 1st place in Jack's game!") public static NpcStringId CONGRATULATIONS_ON_GETTING_1ST_PLACE_IN_JACK_S_GAME_2; @@ -32434,14 +32725,14 @@ public final class NpcStringId @ClientString(id = 1900120, message = "Thank you. I was able to grow up into an adult. Here is my gift.") public static NpcStringId THANK_YOU_I_WAS_ABLE_TO_GROW_UP_INTO_AN_ADULT_HERE_IS_MY_GIFT; - @ClientString(id = 1900121, message = "Thank you. %s. Now, I can pull the sled.") - public static NpcStringId THANK_YOU_S_NOW_I_CAN_PULL_THE_SLED; + @ClientString(id = 1900121, message = "Thank you, $s1. Now, I can pull the sled.") + public static NpcStringId THANK_YOU_S1_NOW_I_CAN_PULL_THE_SLED; - @ClientString(id = 1900122, message = "%s. Thank you for taking care of me all this time. I enjoyed it very much.") - public static NpcStringId S_THANK_YOU_FOR_TAKING_CARE_OF_ME_ALL_THIS_TIME_I_ENJOYED_IT_VERY_MUCH; + @ClientString(id = 1900122, message = "$s1. Thank you for taking care of me all this time. I enjoyed it very much.") + public static NpcStringId S1_THANK_YOU_FOR_TAKING_CARE_OF_ME_ALL_THIS_TIME_I_ENJOYED_IT_VERY_MUCH; - @ClientString(id = 1900123, message = "%s. It won't be long now until it becomes time to pull the sled. It's too bad.") - public static NpcStringId S_IT_WON_T_BE_LONG_NOW_UNTIL_IT_BECOMES_TIME_TO_PULL_THE_SLED_IT_S_TOO_BAD; + @ClientString(id = 1900123, message = "$s1. It won't be long now until it becomes time to pull the sled. It's too bad.") + public static NpcStringId S1_IT_WON_T_BE_LONG_NOW_UNTIL_IT_BECOMES_TIME_TO_PULL_THE_SLED_IT_S_TOO_BAD; @ClientString(id = 1900124, message = "I must return to Santa now. Thank you for everything!") public static NpcStringId I_MUST_RETURN_TO_SANTA_NOW_THANK_YOU_FOR_EVERYTHING; @@ -32452,17 +32743,17 @@ public final class NpcStringId @ClientString(id = 1900126, message = "This is my gift of thanks. Thank you for taking care of me~") public static NpcStringId THIS_IS_MY_GIFT_OF_THANKS_THANK_YOU_FOR_TAKING_CARE_OF_ME; - @ClientString(id = 1900127, message = "%s. I was always grateful.") - public static NpcStringId S_I_WAS_ALWAYS_GRATEFUL; + @ClientString(id = 1900127, message = "$s1. I was always grateful.") + public static NpcStringId S1_I_WAS_ALWAYS_GRATEFUL; @ClientString(id = 1900128, message = "I'm a little sad. It's time to leave now.") public static NpcStringId I_M_A_LITTLE_SAD_IT_S_TIME_TO_LEAVE_NOW; - @ClientString(id = 1900129, message = "%s. The time has come for me to return to my home.") - public static NpcStringId S_THE_TIME_HAS_COME_FOR_ME_TO_RETURN_TO_MY_HOME; + @ClientString(id = 1900129, message = "$s1. The time has come for me to return to my home.") + public static NpcStringId S1_THE_TIME_HAS_COME_FOR_ME_TO_RETURN_TO_MY_HOME; - @ClientString(id = 1900130, message = "%s. Thank you.") - public static NpcStringId S_THANK_YOU; + @ClientString(id = 1900130, message = "$s1. Thank you.") + public static NpcStringId S1_THANK_YOU; @ClientString(id = 1900131, message = "Hahaha!!! I captured Santa!! Huh? Where is this? Who are you?") public static NpcStringId HAHAHA_I_CAPTURED_SANTA_HUH_WHERE_IS_THIS_WHO_ARE_YOU; @@ -32482,11 +32773,11 @@ public final class NpcStringId @ClientString(id = 1900136, message = "In 10 minutes, it will be 1 hour since you started raising me.") public static NpcStringId IN_10_MINUTES_IT_WILL_BE_1_HOUR_SINCE_YOU_STARTED_RAISING_ME; - @ClientString(id = 1900137, message = "After 5 minutes, if my Full Feeling and Affection Level reach 99%, I can grow bigger.") + @ClientString(id = 1900137, message = "After 5 minutes, if my Full Feeling and Affection Level reach 99%%, I can grow bigger.") public static NpcStringId AFTER_5_MINUTES_IF_MY_FULL_FEELING_AND_AFFECTION_LEVEL_REACH_99_I_CAN_GROW_BIGGER; - @ClientString(id = 1900138, message = "The resupply time of %s hour(s) %s minute(s) %s second(s) remain for the Gift of Energy.") - public static NpcStringId THE_RESUPPLY_TIME_OF_S_HOUR_S_S_MINUTE_S_S_SECOND_S_REMAIN_FOR_THE_GIFT_OF_ENERGY; + @ClientString(id = 1900138, message = "The resupply time of $s1 hour(s) $s2 minute(s) $s3 second(s) remain for the Gift of Energy.") + public static NpcStringId THE_RESUPPLY_TIME_OF_S1_HOUR_S_S2_MINUTE_S_S3_SECOND_S_REMAIN_FOR_THE_GIFT_OF_ENERGY; @ClientString(id = 1900139, message = "Want to test your luck? Give me Adena!") public static NpcStringId WANT_TO_TEST_YOUR_LUCK_GIVE_ME_ADENA; @@ -34903,11 +35194,11 @@ public final class NpcStringId @ClientString(id = 17178332, message = "Imbeciles...you'll disappear on the day of destruction...") public static NpcStringId IMBECILES_YOU_LL_DISAPPEAR_ON_THE_DAY_OF_DESTRUCTION; - @ClientString(id = 17178333, message = "Ah.. Did the backup get wiped out... Looks like we're late.") - public static NpcStringId AH_DID_THE_BACKUP_GET_WIPED_OUT_LOOKS_LIKE_WE_RE_LATE; + @ClientString(id = 17178333, message = "Are you those mercenaries Fellow told me about?") + public static NpcStringId ARE_YOU_THOSE_MERCENARIES_FELLOW_TOLD_ME_ABOUT; - @ClientString(id = 17178334, message = "You guys are the mercenaries.") - public static NpcStringId YOU_GUYS_ARE_THE_MERCENARIES; + @ClientString(id = 17178334, message = "Are you those mercenaries Ateld told me about?") + public static NpcStringId ARE_YOU_THOSE_MERCENARIES_ATELD_TOLD_ME_ABOUT; @ClientString(id = 17178335, message = "He's quiet again. Thanks.") public static NpcStringId HE_S_QUIET_AGAIN_THANKS; @@ -34915,8 +35206,8 @@ public final class NpcStringId @ClientString(id = 17178336, message = "This.. We brought this to support the backup, but we could give these to you.") public static NpcStringId THIS_WE_BROUGHT_THIS_TO_SUPPORT_THE_BACKUP_BUT_WE_COULD_GIVE_THESE_TO_YOU; - @ClientString(id = 17178337, message = "Courageous ones who supported Antharas force, come and take the Kingdom's reward.") - public static NpcStringId COURAGEOUS_ONES_WHO_SUPPORTED_ANTHARAS_FORCE_COME_AND_TAKE_THE_KINGDOM_S_REWARD; + @ClientString(id = 17178337, message = "Courageous ones, come and take Balthus Knights' reward.") + public static NpcStringId COURAGEOUS_ONES_COME_AND_TAKE_BALTHUS_KNIGHTS_REWARD; @ClientString(id = 17178338, message = "Are there those who didn't receive the rewards yet? Come and get it from me.") public static NpcStringId ARE_THERE_THOSE_WHO_DIDN_T_RECEIVE_THE_REWARDS_YET_COME_AND_GET_IT_FROM_ME; @@ -34966,6 +35257,9 @@ public final class NpcStringId @ClientString(id = 17178353, message = "I'm fighting. Talk to me later!") public static NpcStringId I_M_FIGHTING_TALK_TO_ME_LATER; + @ClientString(id = 17178354, message = "You are the mercenaries Paulia has told me about?") + public static NpcStringId YOU_ARE_THE_MERCENARIES_PAULIA_HAS_TOLD_ME_ABOUT; + @ClientString(id = 21249990, message = "Nobody could obtain Zaken's pirate treasure. All chests have disappeared.") public static NpcStringId NOBODY_COULD_OBTAIN_ZAKEN_S_PIRATE_TREASURE_ALL_CHESTS_HAVE_DISAPPEARED; @@ -35143,8 +35437,8 @@ public final class NpcStringId @ClientString(id = 901900146, message = "Lukpie~! I'm full~ It was delicious! Oh... The body is too heavy!") public static NpcStringId LUKPIE_I_M_FULL_IT_WAS_DELICIOUS_OH_THE_BODY_IS_TOO_HEAVY; - @ClientString(id = 901900147, message = "Lukpie~! Too little... It must be at least %s or more!") - public static NpcStringId LUKPIE_TOO_LITTLE_IT_MUST_BE_AT_LEAST_S_OR_MORE; + @ClientString(id = 901900147, message = "Lukpie~! Too little... It must be at least $s1 or more!") + public static NpcStringId LUKPIE_TOO_LITTLE_IT_MUST_BE_AT_LEAST_S1_OR_MORE; @ClientString(id = 901900148, message = "Oh! Wings are gone!... Are you going to hit me? If you hit me, I will vomit what I've eaten!") public static NpcStringId OH_WINGS_ARE_GONE_ARE_YOU_GOING_TO_HIT_ME_IF_YOU_HIT_ME_I_WILL_VOMIT_WHAT_I_VE_EATEN; @@ -35260,7 +35554,7 @@ public final class NpcStringId } catch (Exception e) { - LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '" + field.getName() + "'", e); + LOGGER.log(Level.WARNING, "NpcStringId: Failed field access for '"+ field.getName() + "'", e); } } } @@ -35349,11 +35643,11 @@ public final class NpcStringId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: "+ params); } if (params > 10) { - throw new IllegalArgumentException("Maximum param count exceeded: " + params); + throw new IllegalArgumentException("Maximum param count exceeded: "+ params); } if (params != 0) { @@ -35375,6 +35669,6 @@ public final class NpcStringId @Override public final String toString() { - return "NS[" + getId() + ":" + getName() + "]"; + return "NS["+ getId() + ":"+ getName() + "]"; } } diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/SystemMessageId.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/SystemMessageId.java index 47e410708a..d35b11e34e 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/SystemMessageId.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/SystemMessageId.java @@ -861,8 +861,8 @@ public final class SystemMessageId @ClientString(id = 276, message = "You do not have enough items to learn this skill.") public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_ITEMS_TO_LEARN_THIS_SKILL; - @ClientString(id = 277, message = "You have earned $s1.") - public static SystemMessageId YOU_HAVE_EARNED_S1_2; + @ClientString(id = 277, message = "You have learned $s1.") + public static SystemMessageId YOU_HAVE_LEARNED_S1; @ClientString(id = 278, message = "You do not have enough SP to learn this skill.") public static SystemMessageId YOU_DO_NOT_HAVE_ENOUGH_SP_TO_LEARN_THIS_SKILL; @@ -1737,7 +1737,7 @@ public final class SystemMessageId @ClientString(id = 568, message = "Failed to summon Cube.") public static SystemMessageId FAILED_TO_SUMMON_CUBE; - @ClientString(id = 569, message = "Caution -- this item's price greatly differs from non-player run shops. Do you wish to continue?") + @ClientString(id = 569, message = "Caution - this item's price greatly differs from non-player run shops. Do you wish to continue?") public static SystemMessageId CAUTION_THIS_ITEM_S_PRICE_GREATLY_DIFFERS_FROM_NON_PLAYER_RUN_SHOPS_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 570, message = "How many $s1(s) do you want to purchase?") @@ -3054,23 +3054,23 @@ public final class SystemMessageId @ClientString(id = 1007, message = "The preliminary match registration for $s1 has finished.") public static SystemMessageId THE_PRELIMINARY_MATCH_REGISTRATION_FOR_S1_HAS_FINISHED; - @ClientString(id = 1008, message = "A hungry strider cannot be mounted or dismounted.") - public static SystemMessageId A_HUNGRY_STRIDER_CANNOT_BE_MOUNTED_OR_DISMOUNTED; + @ClientString(id = 1008, message = "A hungry mount cannot be mounted or dismounted.") + public static SystemMessageId A_HUNGRY_MOUNT_CANNOT_BE_MOUNTED_OR_DISMOUNTED; - @ClientString(id = 1009, message = "A strider cannot be ridden when dead.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHEN_DEAD; + @ClientString(id = 1009, message = "A mount cannot be ridden when dead.") + public static SystemMessageId A_MOUNT_CANNOT_BE_RIDDEN_WHEN_DEAD; - @ClientString(id = 1010, message = "A dead strider cannot be ridden.") - public static SystemMessageId A_DEAD_STRIDER_CANNOT_BE_RIDDEN; + @ClientString(id = 1010, message = "A dead mount cannot be ridden.") + public static SystemMessageId A_DEAD_MOUNT_CANNOT_BE_RIDDEN; - @ClientString(id = 1011, message = "A strider in battle cannot be ridden.") - public static SystemMessageId A_STRIDER_IN_BATTLE_CANNOT_BE_RIDDEN; + @ClientString(id = 1011, message = "A mount in battle cannot be ridden.") + public static SystemMessageId A_MOUNT_IN_BATTLE_CANNOT_BE_RIDDEN; - @ClientString(id = 1012, message = "A strider cannot be ridden while in battle.") - public static SystemMessageId A_STRIDER_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; + @ClientString(id = 1012, message = "A mount cannot be ridden while in battle.") + public static SystemMessageId A_MOUNT_CANNOT_BE_RIDDEN_WHILE_IN_BATTLE; - @ClientString(id = 1013, message = "A strider can be ridden only when standing.") - public static SystemMessageId A_STRIDER_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; + @ClientString(id = 1013, message = "A mount can be ridden only when standing.") + public static SystemMessageId A_MOUNT_CAN_BE_RIDDEN_ONLY_WHEN_STANDING; @ClientString(id = 1014, message = "Your pet gained $s1 XP.") public static SystemMessageId YOUR_PET_GAINED_S1_XP; @@ -3630,7 +3630,7 @@ public final class SystemMessageId @ClientString(id = 1199, message = "==============") public static SystemMessageId CLAN_WAR_TARGET; - @ClientString(id = 1200, message = "= $s1 ($S2 Alliance)") + @ClientString(id = 1200, message = "= $s1 ($s2 Alliance)") public static SystemMessageId S1_S2_ALLIANCE; @ClientString(id = 1201, message = "Please select the quest you wish to abort.") @@ -4273,7 +4273,7 @@ public final class SystemMessageId public static SystemMessageId YOU_DO_NOT_MEET_THE_REQUIREMENTS_TO_ENTER_THAT_PARTY_ROOM; @ClientString(id = 1414, message = "The width and length should be 100 or more grids and less than 5,000 grids respectively.") - public static SystemMessageId THE_WIDTH_AND_LENGTH_SHOULD_BE_100_OR_MORE_GRIDS_AND_LESS_THAN_5000_GRIDS_RESPECTIVELY; + public static SystemMessageId THE_WIDTH_AND_LENGTH_SHOULD_BE_100_OR_MORE_GRIDS_AND_LESS_THAN_5_000_GRIDS_RESPECTIVELY; @ClientString(id = 1415, message = "The command file is not set.") public static SystemMessageId THE_COMMAND_FILE_IS_NOT_SET; @@ -5121,8 +5121,8 @@ public final class SystemMessageId @ClientString(id = 1696, message = "Your accumulated play time is $s1.") public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_IS_S1; - @ClientString(id = 1697, message = "Your accumulated play time has reached Fatigue level, so you will receive XP or item drops at only 50 percent of the normal rate. For the sake of you physical and emotional health, we encourage you to log out as soon as possible and take a break before returning.") - public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_FATIGUE_LEVEL_SO_YOU_WILL_RECEIVE_XP_OR_ITEM_DROPS_AT_ONLY_50_PERCENT_OF_THE_NORMAL_RATE_FOR_THE_SAKE_OF_YOU_PHYSICAL_AND_EMOTIONAL_HEALTH_WE_ENCOURAGE_YOU_TO_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_BEFORE_RETURNING; + @ClientString(id = 1697, message = "Your accumulated play time has reached Fatigue level, so you will receive XP or item drops at only 50%% of the normal rate. For the sake of you physical and emotional health, we encourage you to log out as soon as possible and take a break before returning.") + public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_FATIGUE_LEVEL_SO_YOU_WILL_RECEIVE_XP_OR_ITEM_DROPS_AT_ONLY_50_OF_THE_NORMAL_RATE_FOR_THE_SAKE_OF_YOU_PHYSICAL_AND_EMOTIONAL_HEALTH_WE_ENCOURAGE_YOU_TO_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_BEFORE_RETURNING; @ClientString(id = 1698, message = "Your accumulated play time has reached Ill-health level, so you will no longer gain experience or item drops. For the sake of your physical and emotional health, please log out as soon as possible and take a break. Once you have been logged out for at least 5 hours, XP and item drop rate penalties will be removed.") public static SystemMessageId YOUR_ACCUMULATED_PLAY_TIME_HAS_REACHED_ILL_HEALTH_LEVEL_SO_YOU_WILL_NO_LONGER_GAIN_EXPERIENCE_OR_ITEM_DROPS_FOR_THE_SAKE_OF_YOUR_PHYSICAL_AND_EMOTIONAL_HEALTH_PLEASE_LOG_OUT_AS_SOON_AS_POSSIBLE_AND_TAKE_A_BREAK_ONCE_YOU_HAVE_BEEN_LOGGED_OUT_FOR_AT_LEAST_5_HOURS_XP_AND_ITEM_DROP_RATE_PENALTIES_WILL_BE_REMOVED; @@ -5196,8 +5196,8 @@ public final class SystemMessageId @ClientString(id = 1721, message = "Combat Zone") public static SystemMessageId COMBAT_ZONE; - @ClientString(id = 1722, message = "Please enter shop message that you wish to search for in the private store and private workshop.") - public static SystemMessageId PLEASE_ENTER_SHOP_MESSAGE_THAT_YOU_WISH_TO_SEARCH_FOR_IN_THE_PRIVATE_STORE_AND_PRIVATE_WORKSHOP; + @ClientString(id = 1722, message = "Please enter shop message that you wish to search for in the private stores and private workshops.") + public static SystemMessageId PLEASE_ENTER_SHOP_MESSAGE_THAT_YOU_WISH_TO_SEARCH_FOR_IN_THE_PRIVATE_STORES_AND_PRIVATE_WORKSHOPS; @ClientString(id = 1723, message = "Please take a moment to provide feedback about the petition service.") public static SystemMessageId PLEASE_TAKE_A_MOMENT_TO_PROVIDE_FEEDBACK_ABOUT_THE_PETITION_SERVICE; @@ -5802,8 +5802,8 @@ public final class SystemMessageId @ClientString(id = 1923, message = "Court Wizard: The portal has been created!") public static SystemMessageId COURT_WIZARD_THE_PORTAL_HAS_BEEN_CREATED; - @ClientString(id = 1924, message = "Current Location: $s1 / $s2 / $s3 (near the Primeval Isle)") - public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_THE_PRIMEVAL_ISLE; + @ClientString(id = 1924, message = "Current Location: $s1 / $s2 / $s3 (Forgotten Island)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_FORGOTTEN_ISLAND; @ClientString(id = 1925, message = "Due to the affects of the Seal of Strife, it is not possible to summon at this time.") public static SystemMessageId DUE_TO_THE_AFFECTS_OF_THE_SEAL_OF_STRIFE_IT_IS_NOT_POSSIBLE_TO_SUMMON_AT_THIS_TIME; @@ -6132,11 +6132,11 @@ public final class SystemMessageId @ClientString(id = 2033, message = "A subclass cannot be created or changed because you have exceeded your inventory limit.") public static SystemMessageId A_SUBCLASS_CANNOT_BE_CREATED_OR_CHANGED_BECAUSE_YOU_HAVE_EXCEEDED_YOUR_INVENTORY_LIMIT; - @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be purchased.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED; + @ClientString(id = 2034, message = "There are $s1 hour(s) and $s2 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; - @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be purchased.") - public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_PURCHASED; + @ClientString(id = 2035, message = "There are $s1 minute(s) remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; @ClientString(id = 2036, message = "Unable to invite because the party is locked.") public static SystemMessageId UNABLE_TO_INVITE_BECAUSE_THE_PARTY_IS_LOCKED; @@ -6342,23 +6342,23 @@ public final class SystemMessageId @ClientString(id = 2103, message = "You cannot enter because you are not associated with the current command channel.") public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_YOU_ARE_NOT_ASSOCIATED_WITH_THE_CURRENT_COMMAND_CHANNEL; - @ClientString(id = 2104, message = "The maximum number of instant zones has been exceeded. You cannot enter.") - public static SystemMessageId THE_MAXIMUM_NUMBER_OF_INSTANT_ZONES_HAS_BEEN_EXCEEDED_YOU_CANNOT_ENTER; + @ClientString(id = 2104, message = "The maximum number of Instance Zones has been exceeded. You cannot enter.") + public static SystemMessageId THE_MAXIMUM_NUMBER_OF_INSTANCE_ZONES_HAS_BEEN_EXCEEDED_YOU_CANNOT_ENTER; - @ClientString(id = 2105, message = "You have entered another instant zone, therefore you cannot enter corresponding dungeon.") - public static SystemMessageId YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON; + @ClientString(id = 2105, message = "You have entered another Instance Zone, therefore you cannot enter corresponding dungeon.") + public static SystemMessageId YOU_HAVE_ENTERED_ANOTHER_INSTANCE_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON; @ClientString(id = 2106, message = "This dungeon will expire in $s1 minute(s). You will be forced out of the dungeon when the time expires.") public static SystemMessageId THIS_DUNGEON_WILL_EXPIRE_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; - @ClientString(id = 2107, message = "This instant zone will be terminated in $s1 minute(s). You will be forced out of the dungeon when the time expires.") - public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; + @ClientString(id = 2107, message = "This Instance Zone will be terminated in $s1 minute(s). You will be forced out of the dungeon when the time expires.") + public static SystemMessageId THIS_INSTANCE_ZONE_WILL_BE_TERMINATED_IN_S1_MINUTE_S_YOU_WILL_BE_FORCED_OUT_OF_THE_DUNGEON_WHEN_THE_TIME_EXPIRES; @ClientString(id = 2108, message = "Your account has been restricted due to your use of illegal programs. For more information, please visit the Support Center on the official website (https://support.4game.com).") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_YOUR_USE_OF_ILLEGAL_PROGRAMS_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM_2; - @ClientString(id = 2109, message = "During the server merge, your character name, $s1, conflicted with another. Your name may still be available. Please enter your desired name.") - public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CHARACTER_NAME_S1_CONFLICTED_WITH_ANOTHER_YOUR_NAME_MAY_STILL_BE_AVAILABLE_PLEASE_ENTER_YOUR_DESIRED_NAME; + @ClientString(id = 2109, message = "During the server merge, your character name, $s1, conflicted with another. Please enter another name.") + public static SystemMessageId DURING_THE_SERVER_MERGE_YOUR_CHARACTER_NAME_S1_CONFLICTED_WITH_ANOTHER_PLEASE_ENTER_ANOTHER_NAME; @ClientString(id = 2110, message = "This character name already exists or is an invalid name. Please enter a new name.") public static SystemMessageId THIS_CHARACTER_NAME_ALREADY_EXISTS_OR_IS_AN_INVALID_NAME_PLEASE_ENTER_A_NEW_NAME; @@ -6627,11 +6627,11 @@ public final class SystemMessageId @ClientString(id = 2198, message = "You currently have the highest bid in an item auction.") public static SystemMessageId YOU_CURRENTLY_HAVE_THE_HIGHEST_BID_IN_AN_ITEM_AUCTION; - @ClientString(id = 2199, message = "You cannot enter this instant zone while the NPC server is down.") - public static SystemMessageId YOU_CANNOT_ENTER_THIS_INSTANT_ZONE_WHILE_THE_NPC_SERVER_IS_DOWN; + @ClientString(id = 2199, message = "You cannot enter this Instance Zone while the NPC server is down.") + public static SystemMessageId YOU_CANNOT_ENTER_THIS_INSTANCE_ZONE_WHILE_THE_NPC_SERVER_IS_DOWN; - @ClientString(id = 2200, message = "This instant zone will be terminated as the NPC server is down. You will be forcibly removed from the dungeon shortly.") - public static SystemMessageId THIS_INSTANT_ZONE_WILL_BE_TERMINATED_AS_THE_NPC_SERVER_IS_DOWN_YOU_WILL_BE_FORCIBLY_REMOVED_FROM_THE_DUNGEON_SHORTLY; + @ClientString(id = 2200, message = "This Instance Zone will be terminated as the NPC server is down. You will be forcibly removed from the dungeon shortly.") + public static SystemMessageId THIS_INSTANCE_ZONE_WILL_BE_TERMINATED_AS_THE_NPC_SERVER_IS_DOWN_YOU_WILL_BE_FORCIBLY_REMOVED_FROM_THE_DUNGEON_SHORTLY; @ClientString(id = 2201, message = "$s1 year(s) $s2 month(s) $s3 day(s)") public static SystemMessageId S1_YEAR_S_S2_MONTH_S_S3_DAY_S; @@ -6697,10 +6697,10 @@ public final class SystemMessageId public static SystemMessageId DO_YOU_WISH_TO_ACTIVATE_THE_SELECTED_FUNCTIONS; @ClientString(id = 2222, message = "It will cost 150,000 Adena to place scouts. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_150000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; + public static SystemMessageId IT_WILL_COST_150_000_ADENA_TO_PLACE_SCOUTS_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2223, message = "It will cost 200,000 Adena for a fortress gate enhancement. Do you wish to continue?") - public static SystemMessageId IT_WILL_COST_200000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; + public static SystemMessageId IT_WILL_COST_200_000_ADENA_FOR_A_FORTRESS_GATE_ENHANCEMENT_DO_YOU_WISH_TO_CONTINUE; @ClientString(id = 2224, message = "Your crossbow is preparing to fire.") public static SystemMessageId YOUR_CROSSBOW_IS_PREPARING_TO_FIRE; @@ -6714,11 +6714,11 @@ public final class SystemMessageId @ClientString(id = 2227, message = "It is not possible to register for the castle siege side or castle siege of a higher castle in the contract.") public static SystemMessageId IT_IS_NOT_POSSIBLE_TO_REGISTER_FOR_THE_CASTLE_SIEGE_SIDE_OR_CASTLE_SIEGE_OF_A_HIGHER_CASTLE_IN_THE_CONTRACT; - @ClientString(id = 2228, message = "Instant zone time limit:") - public static SystemMessageId INSTANT_ZONE_TIME_LIMIT; + @ClientString(id = 2228, message = "Instance Zone time limit:") + public static SystemMessageId INSTANCE_ZONE_TIME_LIMIT; - @ClientString(id = 2229, message = "There is no instant zone under a time limit.") - public static SystemMessageId THERE_IS_NO_INSTANT_ZONE_UNDER_A_TIME_LIMIT; + @ClientString(id = 2229, message = "There is no Instance Zone under a time limit.") + public static SystemMessageId THERE_IS_NO_INSTANCE_ZONE_UNDER_A_TIME_LIMIT; @ClientString(id = 2230, message = "$s1 will be available for re-use after $s2 hour(s) $s3 minute(s).") public static SystemMessageId S1_WILL_BE_AVAILABLE_FOR_RE_USE_AFTER_S2_HOUR_S_S3_MINUTE_S; @@ -6735,8 +6735,8 @@ public final class SystemMessageId @ClientString(id = 2234, message = "Do you wish to use this Kamael exclusive Hero Weapon?") public static SystemMessageId DO_YOU_WISH_TO_USE_THIS_KAMAEL_EXCLUSIVE_HERO_WEAPON; - @ClientString(id = 2235, message = "The instant zone in use has been deleted and cannot be accessed.") - public static SystemMessageId THE_INSTANT_ZONE_IN_USE_HAS_BEEN_DELETED_AND_CANNOT_BE_ACCESSED; + @ClientString(id = 2235, message = "The Instance Zone in use has been deleted and cannot be accessed.") + public static SystemMessageId THE_INSTANCE_ZONE_IN_USE_HAS_BEEN_DELETED_AND_CANNOT_BE_ACCESSED; @ClientString(id = 2236, message = "You have $s1 minute(s) left on your wyvern.") public static SystemMessageId YOU_HAVE_S1_MINUTE_S_LEFT_ON_YOUR_WYVERN; @@ -7020,7 +7020,7 @@ public final class SystemMessageId @ClientString(id = 2329, message = "Vitality Level $s1 $s2") public static SystemMessageId VITALITY_LEVEL_S1_S2; - @ClientString(id = 2330, message = ": XP/SP boosted by $s1.") + @ClientString(id = 2330, message = ": XP/SP boosted by $s1%%.") public static SystemMessageId XP_SP_BOOSTED_BY_S1; @ClientString(id = 2331, message = " $s1") @@ -7056,8 +7056,8 @@ public final class SystemMessageId @ClientString(id = 2341, message = "The enchant will begin once you press the Start button below.") public static SystemMessageId THE_ENCHANT_WILL_BEGIN_ONCE_YOU_PRESS_THE_START_BUTTON_BELOW; - @ClientString(id = 2342, message = "Success! The item is now a $s1.") - public static SystemMessageId SUCCESS_THE_ITEM_IS_NOW_A_S1; + @ClientString(id = 2342, message = "Success! The item is now $s1.") + public static SystemMessageId SUCCESS_THE_ITEM_IS_NOW_S1; @ClientString(id = 2343, message = "Failed. You have obtained $s2 of $s1.") public static SystemMessageId FAILED_YOU_HAVE_OBTAINED_S2_OF_S1; @@ -7101,8 +7101,8 @@ public final class SystemMessageId @ClientString(id = 2356, message = "You cannot use My Teleports underwater.") public static SystemMessageId YOU_CANNOT_USE_MY_TELEPORTS_UNDERWATER; - @ClientString(id = 2357, message = "You cannot use My Teleports in an instant zone.") - public static SystemMessageId YOU_CANNOT_USE_MY_TELEPORTS_IN_AN_INSTANT_ZONE; + @ClientString(id = 2357, message = "You cannot use My Teleports in an Instance Zone.") + public static SystemMessageId YOU_CANNOT_USE_MY_TELEPORTS_IN_AN_INSTANCE_ZONE; @ClientString(id = 2358, message = "You have no space to save the teleport location.") public static SystemMessageId YOU_HAVE_NO_SPACE_TO_SAVE_THE_TELEPORT_LOCATION; @@ -7110,8 +7110,8 @@ public final class SystemMessageId @ClientString(id = 2359, message = "You cannot teleport because you do not have a teleport item.") public static SystemMessageId YOU_CANNOT_TELEPORT_BECAUSE_YOU_DO_NOT_HAVE_A_TELEPORT_ITEM; - @ClientString(id = 2360, message = "My Teleports Spellbk: $s1") - public static SystemMessageId MY_TELEPORTS_SPELLBK_S1; + @ClientString(id = 2360, message = "Scroll: $s1 pcs") + public static SystemMessageId SCROLL_S1_PCS; @ClientString(id = 2361, message = "Current Location: $s1") public static SystemMessageId CURRENT_LOCATION_S1; @@ -7230,8 +7230,8 @@ public final class SystemMessageId @ClientString(id = 2399, message = "$s1's ownership expires in $s2 minute(s).") public static SystemMessageId S1_S_OWNERSHIP_EXPIRES_IN_S2_MINUTE_S; - @ClientString(id = 2400, message = "Instant Zone currently in use: $s1") - public static SystemMessageId INSTANT_ZONE_CURRENTLY_IN_USE_S1; + @ClientString(id = 2400, message = "Instance Zone currently in use: $s1") + public static SystemMessageId INSTANCE_ZONE_CURRENTLY_IN_USE_S1; @ClientString(id = 2401, message = "Clan Leader $c2, who leads clan $s1, has been declared the lord of the $s3 territory.") public static SystemMessageId CLAN_LEADER_C2_WHO_LEADS_CLAN_S1_HAS_BEEN_DECLARED_THE_LORD_OF_THE_S3_TERRITORY; @@ -7881,8 +7881,8 @@ public final class SystemMessageId @ClientString(id = 2719, message = "Only non-compressed 256 color BMP files can be registered.") public static SystemMessageId ONLY_NON_COMPRESSED_256_COLOR_BMP_FILES_CAN_BE_REGISTERED; - @ClientString(id = 2720, message = "Instant zone: $s1's entry has been restricted. You can check the next possible entry time by using the command '/instancezone.'") - public static SystemMessageId INSTANT_ZONE_S1_S_ENTRY_HAS_BEEN_RESTRICTED_YOU_CAN_CHECK_THE_NEXT_POSSIBLE_ENTRY_TIME_BY_USING_THE_COMMAND_INSTANCEZONE; + @ClientString(id = 2720, message = "Instance Zone: $s1's entry has been restricted. You can check the next possible entry time by using the command '/instancezone.'") + public static SystemMessageId INSTANCE_ZONE_S1_S_ENTRY_HAS_BEEN_RESTRICTED_YOU_CAN_CHECK_THE_NEXT_POSSIBLE_ENTRY_TIME_BY_USING_THE_COMMAND_INSTANCEZONE; @ClientString(id = 2721, message = "You are too high to perform this action. Please lower your altitude and try again.") public static SystemMessageId YOU_ARE_TOO_HIGH_TO_PERFORM_THIS_ACTION_PLEASE_LOWER_YOUR_ALTITUDE_AND_TRY_AGAIN; @@ -8100,8 +8100,8 @@ public final class SystemMessageId @ClientString(id = 2792, message = "50 Clan Reputation will be awarded. Do you wish to continue?") public static SystemMessageId FIFTY_CLAN_REPUTATION_WILL_BE_AWARDED_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this instanced zone.") - public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE; + @ClientString(id = 2793, message = "You must have a minimum of $s1 people to enter this Instance Zone.") + public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE; @ClientString(id = 2794, message = "The territory war channel and functions will now be deactivated.") public static SystemMessageId THE_TERRITORY_WAR_CHANNEL_AND_FUNCTIONS_WILL_NOW_BE_DEACTIVATED; @@ -8295,11 +8295,32 @@ public final class SystemMessageId @ClientString(id = 2857, message = "In event zone you can hide or show HP gage.") public static SystemMessageId IN_EVENT_ZONE_YOU_CAN_HIDE_OR_SHOW_HP_GAGE; - @ClientString(id = 2876, message = "If you are a clan member and below level 40, you can join Clan Academy and learn about game system. Join Clan Academy to make the game more interesting.") - public static SystemMessageId IF_YOU_ARE_A_CLAN_MEMBER_AND_BELOW_LEVEL_40_YOU_CAN_JOIN_CLAN_ACADEMY_AND_LEARN_ABOUT_GAME_SYSTEM_JOIN_CLAN_ACADEMY_TO_MAKE_THE_GAME_MORE_INTERESTING; + @ClientString(id = 2858, message = "View the Arena Bulletin.") + public static SystemMessageId VIEW_THE_ARENA_BULLETIN; - @ClientString(id = 2877, message = "At level 40 you can change you class for the second time. After it your character will get new abilities.") - public static SystemMessageId AT_LEVEL_40_YOU_CAN_CHANGE_YOU_CLASS_FOR_THE_SECOND_TIME_AFTER_IT_YOUR_CHARACTER_WILL_GET_NEW_ABILITIES; + @ClientString(id = 2859, message = "Hide the Arena Bulletin.") + public static SystemMessageId HIDE_THE_ARENA_BULLETIN; + + @ClientString(id = 2860, message = "Rotate the next target enemy.") + public static SystemMessageId ROTATE_THE_NEXT_TARGET_ENEMY; + + @ClientString(id = 2861, message = "Attack the targeted enemy. (Arena only)") + public static SystemMessageId ATTACK_THE_TARGETED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2862, message = "Mark the targeted enemy. (Arena only)") + public static SystemMessageId MARK_THE_TARGETED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2863, message = "Target the marked enemy. (Arena only)") + public static SystemMessageId TARGET_THE_MARKED_ENEMY_ARENA_ONLY; + + @ClientString(id = 2864, message = "Change the target enemy in the order of closest distance. (Arena only)") + public static SystemMessageId CHANGE_THE_TARGET_ENEMY_IN_THE_ORDER_OF_CLOSEST_DISTANCE_ARENA_ONLY; + + @ClientString(id = 2883, message = "When you join the Clan Academy, you can learn the game system as a clan member until you reach level 40. Join the Clan Academy to enhance your gaming experience.") + public static SystemMessageId WHEN_YOU_JOIN_THE_CLAN_ACADEMY_YOU_CAN_LEARN_THE_GAME_SYSTEM_AS_A_CLAN_MEMBER_UNTIL_YOU_REACH_LEVEL_40_JOIN_THE_CLAN_ACADEMY_TO_ENHANCE_YOUR_GAMING_EXPERIENCE; + + @ClientString(id = 2884, message = "When you reach level 40, the 2nd class transfer becomes available. Completing the 2nd class transfer significantly improves your character's abilities.") + public static SystemMessageId WHEN_YOU_REACH_LEVEL_40_THE_2ND_CLASS_TRANSFER_BECOMES_AVAILABLE_COMPLETING_THE_2ND_CLASS_TRANSFER_SIGNIFICANTLY_IMPROVES_YOUR_CHARACTER_S_ABILITIES; @ClientString(id = 2900, message = "$s1-second(s) to the end of territory war!") public static SystemMessageId S1_SECOND_S_TO_THE_END_OF_TERRITORY_WAR; @@ -8794,7 +8815,7 @@ public final class SystemMessageId public static SystemMessageId SKILL_NOT_AVAILABLE_TO_BE_ENHANCED_CHECK_SKILL_S_LV_AND_CURRENT_CHARACTER_STATUS; @ClientString(id = 3071, message = "Do you really want to reset? 10,000,000(10 million) Adena will be consumed.") - public static SystemMessageId DO_YOU_REALLY_WANT_TO_RESET_10000000_10_MILLION_ADENA_WILL_BE_CONSUMED; + public static SystemMessageId DO_YOU_REALLY_WANT_TO_RESET_10_000_000_10_MILLION_ADENA_WILL_BE_CONSUMED; @ClientString(id = 3072, message = "$s1 acquired the attached item to your mail.") public static SystemMessageId S1_ACQUIRED_THE_ATTACHED_ITEM_TO_YOUR_MAIL; @@ -9021,11 +9042,11 @@ public final class SystemMessageId @ClientString(id = 3146, message = "Do you really wish to remove $s1's $s2 attribute?") public static SystemMessageId DO_YOU_REALLY_WISH_TO_REMOVE_S1_S_S2_ATTRIBUTE; - @ClientString(id = 3147, message = "If you are not resurrected within $s1 minute(s), you will be expelled from the instant zone.") - public static SystemMessageId IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANT_ZONE; + @ClientString(id = 3147, message = "If you are not resurrected within $s1 minute(s), you will be expelled from the Instance Zone.") + public static SystemMessageId IF_YOU_ARE_NOT_RESURRECTED_WITHIN_S1_MINUTE_S_YOU_WILL_BE_EXPELLED_FROM_THE_INSTANCE_ZONE; - @ClientString(id = 3148, message = "The number of instant zones that can be created has been exceeded. Please try again later.") - public static SystemMessageId THE_NUMBER_OF_INSTANT_ZONES_THAT_CAN_BE_CREATED_HAS_BEEN_EXCEEDED_PLEASE_TRY_AGAIN_LATER; + @ClientString(id = 3148, message = "The number of Instance Zones that can be created has been exceeded. Please try again later.") + public static SystemMessageId THE_NUMBER_OF_INSTANCE_ZONES_THAT_CAN_BE_CREATED_HAS_BEEN_EXCEEDED_PLEASE_TRY_AGAIN_LATER; @ClientString(id = 3149, message = "One-piece upper and lower body armor can use enchant rate increasing items from +4.") public static SystemMessageId ONE_PIECE_UPPER_AND_LOWER_BODY_ARMOR_CAN_USE_ENCHANT_RATE_INCREASING_ITEMS_FROM_4; @@ -9066,8 +9087,8 @@ public final class SystemMessageId @ClientString(id = 3161, message = "Attribute enchant and attribute cancel cannot take place at the same time. Please complete the current task and try again.") public static SystemMessageId ATTRIBUTE_ENCHANT_AND_ATTRIBUTE_CANCEL_CANNOT_TAKE_PLACE_AT_THE_SAME_TIME_PLEASE_COMPLETE_THE_CURRENT_TASK_AND_TRY_AGAIN; - @ClientString(id = 3162, message = "The skill cannot be used because the opponent is in a different instant zone.") - public static SystemMessageId THE_SKILL_CANNOT_BE_USED_BECAUSE_THE_OPPONENT_IS_IN_A_DIFFERENT_INSTANT_ZONE; + @ClientString(id = 3162, message = "The skill cannot be used because the opponent is in a different Instance Zone.") + public static SystemMessageId THE_SKILL_CANNOT_BE_USED_BECAUSE_THE_OPPONENT_IS_IN_A_DIFFERENT_INSTANCE_ZONE; @ClientString(id = 3163, message = "The $s3's attribute was successfully bestowed on +$s1$s2, and resistance to $s4 was increased.") public static SystemMessageId THE_S3_S_ATTRIBUTE_WAS_SUCCESSFULLY_BESTOWED_ON_S1_S2_AND_RESISTANCE_TO_S4_WAS_INCREASED; @@ -9216,7 +9237,7 @@ public final class SystemMessageId @ClientString(id = 3211, message = "You will be directed to the webpage for $s1. Do you wish to continue?") public static SystemMessageId YOU_WILL_BE_DIRECTED_TO_THE_WEBPAGE_FOR_S1_DO_YOU_WISH_TO_CONTINUE; - @ClientString(id = 3212, message = "When your pet's hunger gauge is at 0, you cannot use your pet.") + @ClientString(id = 3212, message = "When your pet's hunger gauge is at 0%%, you cannot use your pet.") public static SystemMessageId WHEN_YOUR_PET_S_HUNGER_GAUGE_IS_AT_0_YOU_CANNOT_USE_YOUR_PET; @ClientString(id = 3213, message = "Your pet is starving and will not obey until it gets it's food. Feed your pet!") @@ -9393,8 +9414,8 @@ public final class SystemMessageId @ClientString(id = 3270, message = "$s1 second(s) remaining") public static SystemMessageId S1_SECOND_S_REMAINING_2; - @ClientString(id = 3271, message = "Current Progress: $1") - public static SystemMessageId CURRENT_PROGRESS_1; + @ClientString(id = 3271, message = "Current Progress: $s1") + public static SystemMessageId CURRENT_PROGRESS_S1; @ClientString(id = 3272, message = "$s1") public static SystemMessageId S1_4; @@ -9411,8 +9432,8 @@ public final class SystemMessageId @ClientString(id = 3276, message = "Crystallization cannot be proceeded because there are no items registered.") public static SystemMessageId CRYSTALLIZATION_CANNOT_BE_PROCEEDED_BECAUSE_THERE_ARE_NO_ITEMS_REGISTERED; - @ClientString(id = 3277, message = "Nevit's Advent Blessing: $1") - public static SystemMessageId NEVIT_S_ADVENT_BLESSING_1; + @ClientString(id = 3277, message = "Nevit's Advent Blessing: $s1") + public static SystemMessageId NEVIT_S_ADVENT_BLESSING_S1; @ClientString(id = 3278, message = "(allowed after $s1 second(s))") public static SystemMessageId ALLOWED_AFTER_S1_SECOND_S; @@ -9762,8 +9783,8 @@ public final class SystemMessageId @ClientString(id = 3393, message = "You cannot move during combat.") public static SystemMessageId YOU_CANNOT_MOVE_DURING_COMBAT; - @ClientString(id = 3394, message = "You cannot teleport in the Instant Zone.") - public static SystemMessageId YOU_CANNOT_TELEPORT_IN_THE_INSTANT_ZONE; + @ClientString(id = 3394, message = "You cannot teleport in the Instance Zone.") + public static SystemMessageId YOU_CANNOT_TELEPORT_IN_THE_INSTANCE_ZONE; @ClientString(id = 3395, message = "You cannot move during trading, private store, and workshop setup.") public static SystemMessageId YOU_CANNOT_MOVE_DURING_TRADING_PRIVATE_STORE_AND_WORKSHOP_SETUP; @@ -10069,7 +10090,7 @@ public final class SystemMessageId public static SystemMessageId A_MARK_OF_ADVENTURER_IS_ACQUIRED_THIS_ITEM_CAN_BE_RE_ACQUIRED_AFTER_6_30_A_M_EVERYDAY; @ClientString(id = 3496, message = "How many $s1(s) do you wish to move? (Max: 99,999 units)") - public static SystemMessageId HOW_MANY_S1_S_DO_YOU_WISH_TO_MOVE_MAX_99999_UNITS; + public static SystemMessageId HOW_MANY_S1_S_DO_YOU_WISH_TO_MOVE_MAX_99_999_UNITS; @ClientString(id = 3497, message = "You cannot request to auction several clan halls at once, or request to auction clan halls during castle sieges or clan hall wars.") public static SystemMessageId YOU_CANNOT_REQUEST_TO_AUCTION_SEVERAL_CLAN_HALLS_AT_ONCE_OR_REQUEST_TO_AUCTION_CLAN_HALLS_DURING_CASTLE_SIEGES_OR_CLAN_HALL_WARS; @@ -10182,8 +10203,8 @@ public final class SystemMessageId @ClientString(id = 3533, message = "Would you like to generate a new character under the current settings?") public static SystemMessageId WOULD_YOU_LIKE_TO_GENERATE_A_NEW_CHARACTER_UNDER_THE_CURRENT_SETTINGS; - @ClientString(id = 3534, message = "You may not register while using the instant zone.") - public static SystemMessageId YOU_MAY_NOT_REGISTER_WHILE_USING_THE_INSTANT_ZONE; + @ClientString(id = 3534, message = "You may not register while using the Instance Zone.") + public static SystemMessageId YOU_MAY_NOT_REGISTER_WHILE_USING_THE_INSTANCE_ZONE; @ClientString(id = 3535, message = "You cannot register in this region.") public static SystemMessageId YOU_CANNOT_REGISTER_IN_THIS_REGION; @@ -10512,8 +10533,8 @@ public final class SystemMessageId @ClientString(id = 3643, message = "The distance is too far so the teleportation effect does not get applied.") public static SystemMessageId THE_DISTANCE_IS_TOO_FAR_SO_THE_TELEPORTATION_EFFECT_DOES_NOT_GET_APPLIED; - @ClientString(id = 3644, message = "Registration will be cancelled while using the instant zone.") - public static SystemMessageId REGISTRATION_WILL_BE_CANCELLED_WHILE_USING_THE_INSTANT_ZONE; + @ClientString(id = 3644, message = "Registration will be cancelled while using the Instance Zone.") + public static SystemMessageId REGISTRATION_WILL_BE_CANCELLED_WHILE_USING_THE_INSTANCE_ZONE; @ClientString(id = 3645, message = "Party Participation has failed because requirements are not met.") public static SystemMessageId PARTY_PARTICIPATION_HAS_FAILED_BECAUSE_REQUIREMENTS_ARE_NOT_MET; @@ -10758,14 +10779,14 @@ public final class SystemMessageId @ClientString(id = 3725, message = "==========") public static SystemMessageId TEMPERATURE_RAISING_RANKINGS; - @ClientString(id = 3726, message = "Rank $1: $2 ($3.$4 degrees)") - public static SystemMessageId RANK_1_2_3_4_DEGREES; + @ClientString(id = 3726, message = "Rank $s1: $s2 ($s3.$s4 degrees)") + public static SystemMessageId RANK_S1_S2_S3_S4_DEGREES; @ClientString(id = 3727, message = "=======================") public static SystemMessageId EMPTY_9; - @ClientString(id = 3728, message = "$1 receives a prize for raising the temperature most.") - public static SystemMessageId RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; + @ClientString(id = 3728, message = "$s1 receives a prize for raising the temperature most.") + public static SystemMessageId S1_RECEIVES_A_PRIZE_FOR_RAISING_THE_TEMPERATURE_MOST; @ClientString(id = 3729, message = "The character and item recipe levels do not match, so it cannot be used normally.") public static SystemMessageId THE_CHARACTER_AND_ITEM_RECIPE_LEVELS_DO_NOT_MATCH_SO_IT_CANNOT_BE_USED_NORMALLY; @@ -11124,7 +11145,7 @@ public final class SystemMessageId @ClientString(id = 3847, message = "Use $s1.") public static SystemMessageId USE_S1_2; - @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights Secret Supply Items.") + @ClientString(id = 3848, message = "$s1 obtained $s2, the Balthus Knights' Secret Supply Items.") public static SystemMessageId S1_OBTAINED_S2_THE_BALTHUS_KNIGHTS_SECRET_SUPPLY_ITEMS; @ClientString(id = 3849, message = "You obtained $s1 Sibi’s Coins.") @@ -11244,10 +11265,10 @@ public final class SystemMessageId @ClientString(id = 3887, message = "The Balthus Knights event is ready to begin. Marks of the Balthus Knights cannot be used before the event begins.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_READY_TO_BEGIN_MARKS_OF_THE_BALTHUS_KNIGHTS_CANNOT_BE_USED_BEFORE_THE_EVENT_BEGINS; - @ClientString(id = 3888, message = "The Balthus Knights event is in progress.") + @ClientString(id = 3888, message = "The Balthus Knights' event is in progress.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_IS_IN_PROGRESS; - @ClientString(id = 3889, message = "The Balthus Knights Event has begun. Characters of level 20 or higher may participate in it.") + @ClientString(id = 3889, message = "The Balthus Knights' Event has begun. Characters of level 20 or higher may participate in it.") public static SystemMessageId THE_BALTHUS_KNIGHTS_EVENT_HAS_BEGUN_CHARACTERS_OF_LEVEL_20_OR_HIGHER_MAY_PARTICIPATE_IN_IT; @ClientString(id = 3890, message = "All buffs like Rosy Seductions and Art of Seduction will be removed. Sayha's Grace will remain.") @@ -11256,8 +11277,8 @@ public final class SystemMessageId @ClientString(id = 3891, message = "You've obtained individual request points ($s1/100).") public static SystemMessageId YOU_VE_OBTAINED_INDIVIDUAL_REQUEST_POINTS_S1_100; - @ClientString(id = 3892, message = "You are not participating in the event. Use the Mark of the Balthus Knights to participate.
You can obtain the Mark of the Balthus Knights from the Balthus Knight Supply.") - public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_THE_MARK_OF_THE_BALTHUS_KNIGHTS_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_THE_MARK_OF_THE_BALTHUS_KNIGHTS_FROM_THE_BALTHUS_KNIGHT_SUPPLY; + @ClientString(id = 3892, message = "You are not participating in the event. Use the Balthus Knights' Mark to participate.
You can obtain the Balthus Knights' Mark from the Balthus Knights' Supply Box. Go find NPC Sibi for details.") + public static SystemMessageId YOU_ARE_NOT_PARTICIPATING_IN_THE_EVENT_USE_THE_BALTHUS_KNIGHTS_MARK_TO_PARTICIPATE_BR_YOU_CAN_OBTAIN_THE_BALTHUS_KNIGHTS_MARK_FROM_THE_BALTHUS_KNIGHTS_SUPPLY_BOX_GO_FIND_NPC_SIBI_FOR_DETAILS; @ClientString(id = 3893, message = "You cannot receive the item $s1 because you've exceeded the limit on the quantity and weight of the inventory.") public static SystemMessageId YOU_CANNOT_RECEIVE_THE_ITEM_S1_BECAUSE_YOU_VE_EXCEEDED_THE_LIMIT_ON_THE_QUANTITY_AND_WEIGHT_OF_THE_INVENTORY; @@ -11397,14 +11418,14 @@ public final class SystemMessageId @ClientString(id = 4031, message = "Only the clan leader or someone with rank management authority may register the clan.") public static SystemMessageId ONLY_THE_CLAN_LEADER_OR_SOMEONE_WITH_RANK_MANAGEMENT_AUTHORITY_MAY_REGISTER_THE_CLAN; - @ClientString(id = 4032, message = "You may register the clan after $s1 minute(s) due to deleting the entered text.") - public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_MINUTE_S_DUE_TO_DELETING_THE_ENTERED_TEXT; + @ClientString(id = 4032, message = "You may register the clan after $s1 min. due to the deletion of the previous entry.") + public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_MIN_DUE_TO_THE_DELETION_OF_THE_PREVIOUS_ENTRY; @ClientString(id = 4033, message = "You can view the list of characters who have applied to the clan. Those without a clan can be entered on the waiting list.") public static SystemMessageId YOU_CAN_VIEW_THE_LIST_OF_CHARACTERS_WHO_HAVE_APPLIED_TO_THE_CLAN_THOSE_WITHOUT_A_CLAN_CAN_BE_ENTERED_ON_THE_WAITING_LIST; - @ClientString(id = 4034, message = "You can edit the clan information, but deleting text results in a 5-minute penalty.") - public static SystemMessageId YOU_CAN_EDIT_THE_CLAN_INFORMATION_BUT_DELETING_TEXT_RESULTS_IN_A_5_MINUTE_PENALTY; + @ClientString(id = 4034, message = "You can edit the clan information, but deleting Clan Info results in a 5-minute penalty.") + public static SystemMessageId YOU_CAN_EDIT_THE_CLAN_INFORMATION_BUT_DELETING_CLAN_INFO_RESULTS_IN_A_5_MINUTE_PENALTY; @ClientString(id = 4035, message = "Only the clan leader or someone with rank management authority may change clan information.") public static SystemMessageId ONLY_THE_CLAN_LEADER_OR_SOMEONE_WITH_RANK_MANAGEMENT_AUTHORITY_MAY_CHANGE_CLAN_INFORMATION; @@ -11418,8 +11439,8 @@ public final class SystemMessageId @ClientString(id = 4038, message = "You may apply for entry after $s1 minute(s) due to cancelling your application.") public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_MINUTE_S_DUE_TO_CANCELLING_YOUR_APPLICATION; - @ClientString(id = 4039, message = "Entry application complete. Use 'Entry Application Info' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 minutes.") - public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES; + @ClientString(id = 4039, message = "Entry application complete. Use 'My Application' to check or cancel your application. Application is automatically cancelled after 30 days; if you cancel application, you cannot apply again for 5 minutes.") + public static SystemMessageId ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES; @ClientString(id = 4040, message = "Entry application cancelled. You may apply to a new clan after 5 minutes.") public static SystemMessageId ENTRY_APPLICATION_CANCELLED_YOU_MAY_APPLY_TO_A_NEW_CLAN_AFTER_5_MINUTES; @@ -11427,14 +11448,14 @@ public final class SystemMessageId @ClientString(id = 4041, message = "The clan you selected is no longer taking applications as it has too many applicants.") public static SystemMessageId THE_CLAN_YOU_SELECTED_IS_NO_LONGER_TAKING_APPLICATIONS_AS_IT_HAS_TOO_MANY_APPLICANTS; - @ClientString(id = 4042, message = "$s1's clan entry application has been rejected.") - public static SystemMessageId S1_S_CLAN_ENTRY_APPLICATION_HAS_BEEN_REJECTED; + @ClientString(id = 4042, message = "$s1 has rejected clan entry application.") + public static SystemMessageId S1_HAS_REJECTED_CLAN_ENTRY_APPLICATION; - @ClientString(id = 4043, message = "Entered into waiting list. Name is automatically deleted after 30 days. If 'Delete from waiting list' is used, you cannot enter names into the waiting list for 5 minutes.") - public static SystemMessageId ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MINUTES; + @ClientString(id = 4043, message = "You have joined the waiting list. Characters are automatically deleted from the list after 30 days. If 'Exit Waiting List' is used, you cannot join the waiting list for 5 minutes.") + public static SystemMessageId YOU_HAVE_JOINED_THE_WAITING_LIST_CHARACTERS_ARE_AUTOMATICALLY_DELETED_FROM_THE_LIST_AFTER_30_DAYS_IF_EXIT_WAITING_LIST_IS_USED_YOU_CANNOT_JOIN_THE_WAITING_LIST_FOR_5_MINUTES; - @ClientString(id = 4044, message = "You may enter names into the waiting list after $s1 minute(s) due to deleting from the waiting list.") - public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_MINUTE_S_DUE_TO_DELETING_FROM_THE_WAITING_LIST; + @ClientString(id = 4044, message = "You may join the waiting list after $s1 min. due to deleting from the waiting list.") + public static SystemMessageId YOU_MAY_JOIN_THE_WAITING_LIST_AFTER_S1_MIN_DUE_TO_DELETING_FROM_THE_WAITING_LIST; @ClientString(id = 4045, message = "Turning on Optimization Uniform function. Please wait 3 seconds to turn it off.") public static SystemMessageId TURNING_ON_OPTIMIZATION_UNIFORM_FUNCTION_PLEASE_WAIT_3_SECONDS_TO_TURN_IT_OFF; @@ -11601,14 +11622,14 @@ public final class SystemMessageId @ClientString(id = 4099, message = "100,000,000 Adena will be spent on a reset. Proceed?") public static SystemMessageId ONE_HUNDRED_MILION_ADENA_WILL_BE_SPENT_ON_A_RESET_PROCEED; - @ClientString(id = 4100, message = "You may register the clan after $s1 second(s) due to deleting the entered text.") - public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_SECOND_S_DUE_TO_DELETING_THE_ENTERED_TEXT; + @ClientString(id = 4100, message = "You may register the clan after $s1 min. due to the deletion of the previous entry.") + public static SystemMessageId YOU_MAY_REGISTER_THE_CLAN_AFTER_S1_MIN_DUE_TO_THE_DELETION_OF_THE_PREVIOUS_ENTRY_2; @ClientString(id = 4101, message = "You may apply for entry after $s1 second(s) due to cancelling your application.") public static SystemMessageId YOU_MAY_APPLY_FOR_ENTRY_AFTER_S1_SECOND_S_DUE_TO_CANCELLING_YOUR_APPLICATION; - @ClientString(id = 4102, message = "You may enter names into the waiting list after $s1 second(s) due to deleting from the waiting list.") - public static SystemMessageId YOU_MAY_ENTER_NAMES_INTO_THE_WAITING_LIST_AFTER_S1_SECOND_S_DUE_TO_DELETING_FROM_THE_WAITING_LIST; + @ClientString(id = 4102, message = "You may join the waiting list after $s1 sec. due to deleting from the waiting list.") + public static SystemMessageId YOU_MAY_JOIN_THE_WAITING_LIST_AFTER_S1_SEC_DUE_TO_DELETING_FROM_THE_WAITING_LIST; @ClientString(id = 4103, message = "The Prophecy skill cannot be reset due to insufficient Adena.") public static SystemMessageId THE_PROPHECY_SKILL_CANNOT_BE_RESET_DUE_TO_INSUFFICIENT_ADENA; @@ -12237,8 +12258,8 @@ public final class SystemMessageId @ClientString(id = 4311, message = "I have been waiting for you. My blade will pierce you.") public static SystemMessageId I_HAVE_BEEN_WAITING_FOR_YOU_MY_BLADE_WILL_PIERCE_YOU; - @ClientString(id = 4312, message = "Present number: $s1.") - public static SystemMessageId PRESENT_NUMBER_S1; + @ClientString(id = 4312, message = "After dice roll you got $s1.") + public static SystemMessageId AFTER_DICE_ROLL_YOU_GOT_S1; @ClientString(id = 4313, message = "You do not meet the fishing level requirements.") public static SystemMessageId YOU_DO_NOT_MEET_THE_FISHING_LEVEL_REQUIREMENTS; @@ -12297,8 +12318,8 @@ public final class SystemMessageId @ClientString(id = 4331, message = "This effect is already in use.") public static SystemMessageId THIS_EFFECT_IS_ALREADY_IN_USE; - @ClientString(id = 4332, message = "When rune is changed current effect will disappear. Continue?") - public static SystemMessageId WHEN_RUNE_IS_CHANGED_CURRENT_EFFECT_WILL_DISAPPEAR_CONTINUE; + @ClientString(id = 4332, message = "The current rune and its effect will disappear after rune's replacement.") + public static SystemMessageId THE_CURRENT_RUNE_AND_ITS_EFFECT_WILL_DISAPPEAR_AFTER_RUNE_S_REPLACEMENT; @ClientString(id = 4333, message = "The rune has been inserted successfully.") public static SystemMessageId THE_RUNE_HAS_BEEN_INSERTED_SUCCESSFULLY; @@ -12486,8 +12507,8 @@ public final class SystemMessageId @ClientString(id = 4394, message = "Draw $s1, Attempt $s2 is in progress.") public static SystemMessageId DRAW_S1_ATTEMPT_S2_IS_IN_PROGRESS; - @ClientString(id = 4395, message = "Supplies are being produced. Next supplies will be given out in time.") - public static SystemMessageId SUPPLIES_ARE_BEING_PRODUCED_NEXT_SUPPLIES_WILL_BE_GIVEN_OUT_IN_TIME; + @ClientString(id = 4395, message = "The top prize is currently being produced. The next prize will be drawn within the next hour.") + public static SystemMessageId THE_TOP_PRIZE_IS_CURRENTLY_BEING_PRODUCED_THE_NEXT_PRIZE_WILL_BE_DRAWN_WITHIN_THE_NEXT_HOUR; @ClientString(id = 4396, message = "Current location: $s1 / $s2 / $s3 (Dimensional Rift)") public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_DIMENSIONAL_RIFT; @@ -12576,8 +12597,8 @@ public final class SystemMessageId @ClientString(id = 4424, message = "Failure to combine will result in the loss of some or all ingredients. Are you sure that you want to continue?") public static SystemMessageId FAILURE_TO_COMBINE_WILL_RESULT_IN_THE_LOSS_OF_SOME_OR_ALL_INGREDIENTS_ARE_YOU_SURE_THAT_YOU_WANT_TO_CONTINUE; - @ClientString(id = 4425, message = "$s1 Raid Monster") - public static SystemMessageId S1_RAID_MONSTER; + @ClientString(id = 4425, message = "$s1 Raid Boss") + public static SystemMessageId S1_RAID_BOSS; @ClientString(id = 4426, message = "All objectives of Monster Diagram $s1, level $s2, have been achieved.") public static SystemMessageId ALL_OBJECTIVES_OF_MONSTER_DIAGRAM_S1_LEVEL_S2_HAVE_BEEN_ACHIEVED; @@ -12714,53 +12735,395 @@ public final class SystemMessageId @ClientString(id = 4470, message = "Task cannot be completed: Your balance after the transaction exceeds the Adena limit.") public static SystemMessageId TASK_CANNOT_BE_COMPLETED_YOUR_BALANCE_AFTER_THE_TRANSACTION_EXCEEDS_THE_ADENA_LIMIT; - @ClientString(id = 4471, message = "") - public static SystemMessageId EMPTY_10; + @ClientString(id = 4471, message = "The item was upgraded. You obtained $s1.") + public static SystemMessageId THE_ITEM_WAS_UPGRADED_YOU_OBTAINED_S1; - @ClientString(id = 4472, message = "") - public static SystemMessageId EMPTY_11; + @ClientString(id = 4472, message = "$c1 has succeeded in upgrading equipment and obtained a $s2.") + public static SystemMessageId C1_HAS_SUCCEEDED_IN_UPGRADING_EQUIPMENT_AND_OBTAINED_A_S2; - @ClientString(id = 4473, message = "") - public static SystemMessageId EMPTY_12; + @ClientString(id = 4473, message = "Failed the operation.") + public static SystemMessageId FAILED_THE_OPERATION; - @ClientString(id = 4474, message = "") - public static SystemMessageId EMPTY_13; + @ClientString(id = 4474, message = "Failed because the target item does not exist.") + public static SystemMessageId FAILED_BECAUSE_THE_TARGET_ITEM_DOES_NOT_EXIST; - @ClientString(id = 4475, message = "") - public static SystemMessageId EMPTY_14; + @ClientString(id = 4475, message = "Failed because there are not enough ingredients.") + public static SystemMessageId FAILED_BECAUSE_THERE_ARE_NOT_ENOUGH_INGREDIENTS; - @ClientString(id = 4476, message = "") - public static SystemMessageId EMPTY_15; + @ClientString(id = 4476, message = "Failed because there's not enough Adena.") + public static SystemMessageId FAILED_BECAUSE_THERE_S_NOT_ENOUGH_ADENA; - @ClientString(id = 4477, message = "") - public static SystemMessageId EMPTY_16; + @ClientString(id = 4477, message = "Kneel down! Frederick the Destroyer will appear!") + public static SystemMessageId KNEEL_DOWN_FREDERICK_THE_DESTROYER_WILL_APPEAR; - @ClientString(id = 4478, message = "") - public static SystemMessageId EMPTY_17; + @ClientString(id = 4478, message = "The festival of flames begins!") + public static SystemMessageId THE_FESTIVAL_OF_FLAMES_BEGINS; - @ClientString(id = 4479, message = "") - public static SystemMessageId EMPTY_18; + @ClientString(id = 4479, message = "Greenhorns, show your respect!") + public static SystemMessageId GREENHORNS_SHOW_YOUR_RESPECT; - @ClientString(id = 4480, message = "") - public static SystemMessageId EMPTY_19; + @ClientString(id = 4480, message = "After the festival of flames ends, 'Victory' will appear.") + public static SystemMessageId AFTER_THE_FESTIVAL_OF_FLAMES_ENDS_VICTORY_WILL_APPEAR; - @ClientString(id = 4481, message = "") - public static SystemMessageId EMPTY_20; + @ClientString(id = 4481, message = "We remember your excitement, your luck, and your happiness.") + public static SystemMessageId WE_REMEMBER_YOUR_EXCITEMENT_YOUR_LUCK_AND_YOUR_HAPPINESS; - @ClientString(id = 4482, message = "") - public static SystemMessageId EMPTY_21; + @ClientString(id = 4482, message = "We remember your sadness, your anger, and your sorrow.") + public static SystemMessageId WE_REMEMBER_YOUR_SADNESS_YOUR_ANGER_AND_YOUR_SORROW; - @ClientString(id = 4483, message = "") - public static SystemMessageId EMPTY_22; + @ClientString(id = 4483, message = "At some point your memories became mine and they became our memories.") + public static SystemMessageId AT_SOME_POINT_YOUR_MEMORIES_BECAME_MINE_AND_THEY_BECAME_OUR_MEMORIES; - @ClientString(id = 4484, message = "") - public static SystemMessageId EMPTY_23; + @ClientString(id = 4484, message = "Thank you for your unwavering faith for all this time.") + public static SystemMessageId THANK_YOU_FOR_YOUR_UNWAVERING_FAITH_FOR_ALL_THIS_TIME; - @ClientString(id = 4485, message = "") - public static SystemMessageId EMPTY_24; + @ClientString(id = 4485, message = "Thank you for your love.") + public static SystemMessageId THANK_YOU_FOR_YOUR_LOVE; - @ClientString(id = 4486, message = "") - public static SystemMessageId EMPTY_25; + @ClientString(id = 4486, message = "Lineage 2 will always be by your side.") + public static SystemMessageId LINEAGE_2_WILL_ALWAYS_BE_BY_YOUR_SIDE; + + @ClientString(id = 4487, message = "You cannot exchange items during the number card game.") + public static SystemMessageId YOU_CANNOT_EXCHANGE_ITEMS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4488, message = "You cannot send a request to a character who is playing the number card game.") + public static SystemMessageId YOU_CANNOT_SEND_A_REQUEST_TO_A_CHARACTER_WHO_IS_PLAYING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4489, message = "You cannot send or receive attached items during the number card game. You can only read or send mail.") + public static SystemMessageId YOU_CANNOT_SEND_OR_RECEIVE_ATTACHED_ITEMS_DURING_THE_NUMBER_CARD_GAME_YOU_CAN_ONLY_READ_OR_SEND_MAIL; + + @ClientString(id = 4490, message = "The number card game has ended because you are too far from the event NPC.") + public static SystemMessageId THE_NUMBER_CARD_GAME_HAS_ENDED_BECAUSE_YOU_ARE_TOO_FAR_FROM_THE_EVENT_NPC; + + @ClientString(id = 4491, message = "You cannot do Couple Actions during the number card game.") + public static SystemMessageId YOU_CANNOT_DO_COUPLE_ACTIONS_DURING_THE_NUMBER_CARD_GAME; + + @ClientString(id = 4492, message = "$c1 is playing the number card game. You cannot request Couple Actions.") + public static SystemMessageId C1_IS_PLAYING_THE_NUMBER_CARD_GAME_YOU_CANNOT_REQUEST_COUPLE_ACTIONS; + + @ClientString(id = 4493, message = "Guess the number on my card!") + public static SystemMessageId GUESS_THE_NUMBER_ON_MY_CARD; + + @ClientString(id = 4494, message = "The number is higher!") + public static SystemMessageId THE_NUMBER_IS_HIGHER; + + @ClientString(id = 4495, message = "The number is lower!") + public static SystemMessageId THE_NUMBER_IS_LOWER; + + @ClientString(id = 4496, message = "I can't believe it... I lost!") + public static SystemMessageId I_CAN_T_BELIEVE_IT_I_LOST; + + @ClientString(id = 4497, message = "I won! Haha.") + public static SystemMessageId I_WON_HAHA; + + @ClientString(id = 4498, message = "The game has ended because you have used all your chances.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_YOU_HAVE_USED_ALL_YOUR_CHANCES; + + @ClientString(id = 4499, message = "The game has ended because time has run out.") + public static SystemMessageId THE_GAME_HAS_ENDED_BECAUSE_TIME_HAS_RUN_OUT; + + @ClientString(id = 4500, message = "The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.") + public static SystemMessageId THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4501, message = "You can receive the reward only when your inventory is below 80%% of its weight and quantity limits.(The reward is kept for $s1 hours. You can receive it from the event NPC before starting a new game.)") + public static SystemMessageId YOU_CAN_RECEIVE_THE_REWARD_ONLY_WHEN_YOUR_INVENTORY_IS_BELOW_80_OF_ITS_WEIGHT_AND_QUANTITY_LIMITS_THE_REWARD_IS_KEPT_FOR_S1_HOURS_YOU_CAN_RECEIVE_IT_FROM_THE_EVENT_NPC_BEFORE_STARTING_A_NEW_GAME; + + @ClientString(id = 4502, message = "Old) NC OTP related information was deleted on Wednesday August 30th, 2017. Accordingly, Old) NC OTP service accounts require personal verification to reactivate. Complete the personal verification process at Lineage II website to access your account.") + public static SystemMessageId OLD_NC_OTP_RELATED_INFORMATION_WAS_DELETED_ON_WEDNESDAY_AUGUST_30TH_2017_ACCORDINGLY_OLD_NC_OTP_SERVICE_ACCOUNTS_REQUIRE_PERSONAL_VERIFICATION_TO_REACTIVATE_COMPLETE_THE_PERSONAL_VERIFICATION_PROCESS_AT_LINEAGE_II_WEBSITE_TO_ACCESS_YOUR_ACCOUNT; + + @ClientString(id = 4503, message = "Old) NC OTP related information was deleted on Wednesday August 30th, 2017. Accordingly, Old) NC OTP service accounts require personal verification to reactivate. Complete the personal verification process at Lineage II website to access your account.") + public static SystemMessageId OLD_NC_OTP_RELATED_INFORMATION_WAS_DELETED_ON_WEDNESDAY_AUGUST_30TH_2017_ACCORDINGLY_OLD_NC_OTP_SERVICE_ACCOUNTS_REQUIRE_PERSONAL_VERIFICATION_TO_REACTIVATE_COMPLETE_THE_PERSONAL_VERIFICATION_PROCESS_AT_LINEAGE_II_WEBSITE_TO_ACCESS_YOUR_ACCOUNT_2; + + @ClientString(id = 4504, message = "Register the Agathion you want to grow.") + public static SystemMessageId REGISTER_THE_AGATHION_YOU_WANT_TO_GROW; + + @ClientString(id = 4505, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION; + + @ClientString(id = 4506, message = "If the growth fails, the Agathion will be lost.") + public static SystemMessageId IF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_LOST; + + @ClientString(id = 4507, message = "Warning of destruction!\\n\\nIf the growth fails, the Agathion will be destroyed.\\n\\nAre you sure you want to continue?") + public static SystemMessageId WARNING_OF_DESTRUCTION_N_NIF_THE_GROWTH_FAILS_THE_AGATHION_WILL_BE_DESTROYED_N_NARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4508, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RESET; + + @ClientString(id = 4509, message = "If it fails, the Agathion's growth level will be .") + public static SystemMessageId IF_IT_FAILS_THE_AGATHION_S_GROWTH_LEVEL_WILL_BE_RETAINED; + + @ClientString(id = 4510, message = "Press the Start button to grow the selected Agathion.") + public static SystemMessageId PRESS_THE_START_BUTTON_TO_GROW_THE_SELECTED_AGATHION_2; + + @ClientString(id = 4511, message = "The growth failed. The Agathion was lost, and the item was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_WAS_LOST_AND_THE_ITEM_WAS_DESTROYED; + + @ClientString(id = 4512, message = "The growth failed. The Agathion's growth level was .") + public static SystemMessageId THE_GROWTH_FAILED_THE_AGATHION_S_GROWTH_LEVEL_WAS_RESET; + + @ClientString(id = 4513, message = "Congratulations! The Agathion was successfully grown to <$s1>.") + public static SystemMessageId CONGRATULATIONS_THE_AGATHION_WAS_SUCCESSFULLY_GROWN_TO_S1; + + @ClientString(id = 4514, message = "Do you want to leave the $s1 clan? If you leave, you cannot join another clan for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_LEAVE_THE_S1_CLAN_IF_YOU_LEAVE_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4515, message = "Do you want to dismiss $s1 from your clan? If you dismiss a clan member, you cannot accept a new member for a certain period.") + public static SystemMessageId DO_YOU_WANT_TO_DISMISS_S1_FROM_YOUR_CLAN_IF_YOU_DISMISS_A_CLAN_MEMBER_YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_A_CERTAIN_PERIOD; + + @ClientString(id = 4516, message = "You were dismissed from the clan. You cannot join another clan for $s1 minutes.") + public static SystemMessageId YOU_WERE_DISMISSED_FROM_THE_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4517, message = "You cannot accept a new member for $s1 minutes after dismissing a clan member.") + public static SystemMessageId YOU_CANNOT_ACCEPT_A_NEW_MEMBER_FOR_S1_MINUTES_AFTER_DISMISSING_A_CLAN_MEMBER; + + @ClientString(id = 4518, message = "If you are dismissed from or leave a clan, you cannot join another clan for $s1 minutes.") + public static SystemMessageId IF_YOU_ARE_DISMISSED_FROM_OR_LEAVE_A_CLAN_YOU_CANNOT_JOIN_ANOTHER_CLAN_FOR_S1_MINUTES; + + @ClientString(id = 4519, message = "$c1 cannot join your clan because $s2 minutes has not passed since they left another clan.") + public static SystemMessageId C1_CANNOT_JOIN_YOUR_CLAN_BECAUSE_S2_MINUTES_HAS_NOT_PASSED_SINCE_THEY_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4520, message = "You cannot join this clan because $s1 minutes has not passed since you left another clan.") + public static SystemMessageId YOU_CANNOT_JOIN_THIS_CLAN_BECAUSE_S1_MINUTES_HAS_NOT_PASSED_SINCE_YOU_LEFT_ANOTHER_CLAN; + + @ClientString(id = 4521, message = "$s1 was summoned as a Primary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4522, message = "$s1‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES; + + @ClientString(id = 4523, message = "$s1 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4524, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE; + + @ClientString(id = 4525, message = "$s1‘s power was sealed.") + public static SystemMessageId S1_S_POWER_WAS_SEALED; + + @ClientString(id = 4526, message = "Cannot summon any more Agathions.") + public static SystemMessageId CANNOT_SUMMON_ANY_MORE_AGATHIONS; + + @ClientString(id = 4527, message = "You cannot use the Agathion's power because you are not wearing the left bracelet.") + public static SystemMessageId YOU_CANNOT_USE_THE_AGATHION_S_POWER_BECAUSE_YOU_ARE_NOT_WEARING_THE_LEFT_BRACELET; + + @ClientString(id = 4528, message = "+$s1$s2 was summoned as a Primary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_PRIMARY_AGATHION; + + @ClientString(id = 4529, message = "$s1‘s power was unlocked, thereby activating all its abilities.") + public static SystemMessageId S1_S_POWER_WAS_UNLOCKED_THEREBY_ACTIVATING_ALL_ITS_ABILITIES_2; + + @ClientString(id = 4530, message = "+$s1$s2 was summoned as a Secondary Agathion.") + public static SystemMessageId S1_S2_WAS_SUMMONED_AS_A_SECONDARY_AGATHION; + + @ClientString(id = 4531, message = "Only $s1‘s Unique Ability becomes active.") + public static SystemMessageId ONLY_S1_S_UNIQUE_ABILITY_BECOMES_ACTIVE_2; + + @ClientString(id = 4532, message = "+$s1$s2‘s power was sealed.") + public static SystemMessageId S1_S2_S_POWER_WAS_SEALED; + + @ClientString(id = 4533, message = "Your status does not allow for you to use this function.") + public static SystemMessageId YOUR_STATUS_DOES_NOT_ALLOW_FOR_YOU_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4534, message = "$s1‘s status does allow for them to use this function.") + public static SystemMessageId S1_S_STATUS_DOES_ALLOW_FOR_THEM_TO_USE_THIS_FUNCTION; + + @ClientString(id = 4535, message = "Current location: $s1/$s2/$s3 (Balthus Knight Barracks)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_BALTHUS_KNIGHT_BARRACKS; + + @ClientString(id = 4536, message = "Current location: $s1/$s2/$s3 (Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_HATCHLING_HABITAT; + + @ClientString(id = 4537, message = "Current location: $s1/$s2/$s3 (Near Hatchling Habitat)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_HATCHLING_HABITAT; + + @ClientString(id = 4538, message = "Current location: $s1/$s2/$s3 (Antharas' Nest)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_ANTHARAS_NEST; + + @ClientString(id = 4539, message = "You do not belong to any Clan.") + public static SystemMessageId YOU_DO_NOT_BELONG_TO_ANY_CLAN; + + @ClientString(id = 4540, message = "Your clan's point is 0.") + public static SystemMessageId YOUR_CLAN_S_POINT_IS_0; + + @ClientString(id = 4541, message = "Your clan has not played the Throne of Heroes.") + public static SystemMessageId YOUR_CLAN_HAS_NOT_PLAYED_THE_THRONE_OF_HEROES; + + @ClientString(id = 4542, message = "You can enter up to 16 alphanumeric characters.") + public static SystemMessageId YOU_CAN_ENTER_UP_TO_16_ALPHANUMERIC_CHARACTERS; + + @ClientString(id = 4543, message = "No spaces are allowed.") + public static SystemMessageId NO_SPACES_ARE_ALLOWED; + + @ClientString(id = 4544, message = "$s1‘s affiliation will be changed.") + public static SystemMessageId S1_S_AFFILIATION_WILL_BE_CHANGED; + + @ClientString(id = 4545, message = "$s1‘s privileges will be changed.") + public static SystemMessageId S1_S_PRIVILEGES_WILL_BE_CHANGED; + + @ClientString(id = 4546, message = "Clan Level $s1 or higher") + public static SystemMessageId CLAN_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4547, message = "Character Level $s1 or higher") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_HIGHER; + + @ClientString(id = 4548, message = "Character Level $s1 or lower") + public static SystemMessageId CHARACTER_LEVEL_S1_OR_LOWER; + + @ClientString(id = 4549, message = "$s1 playable") + public static SystemMessageId S1_PLAYABLE; + + @ClientString(id = 4550, message = "$s1 must be completed") + public static SystemMessageId S1_MUST_BE_COMPLETED; + + @ClientString(id = 4551, message = "The cycle is updated at 7:00 every Wednesday.") + public static SystemMessageId THE_CYCLE_IS_UPDATED_AT_7_00_EVERY_WEDNESDAY; + + @ClientString(id = 4552, message = "If you fulfill the goal, you can earn $s1 Personal Fame.") + public static SystemMessageId IF_YOU_FULFILL_THE_GOAL_YOU_CAN_EARN_S1_PERSONAL_FAME; + + @ClientString(id = 4553, message = "Rank $s1") + public static SystemMessageId RANK_S1; + + @ClientString(id = 4554, message = "· Consumes 1 Clan Development Point.\\n· Consumes $s1 Clan Reputation Points.\\n· Able to retrieve the Clan Development Points but not Clan Reputation Points by resetting to default.\\n\\nDo you want to unlock the characteristic?") + public static SystemMessageId CONSUMES_1_CLAN_DEVELOPMENT_POINT_N_CONSUMES_S1_CLAN_REPUTATION_POINTS_N_ABLE_TO_RETRIEVE_THE_CLAN_DEVELOPMENT_POINTS_BUT_NOT_CLAN_REPUTATION_POINTS_BY_RESETTING_TO_DEFAULT_N_NDO_YOU_WANT_TO_UNLOCK_THE_CHARACTERISTIC; + + @ClientString(id = 4555, message = "· Consumes $s1 Clan Reputation Points.\\n· Unable to retrieve the Clan Reputation Points by resetting to default.\\n· Extends the durations of previously unlocked seal.\\n\\nDo you want to unlock the seal?") + public static SystemMessageId CONSUMES_S1_CLAN_REPUTATION_POINTS_N_UNABLE_TO_RETRIEVE_THE_CLAN_REPUTATION_POINTS_BY_RESETTING_TO_DEFAULT_N_EXTENDS_THE_DURATIONS_OF_PREVIOUSLY_UNLOCKED_SEAL_N_NDO_YOU_WANT_TO_UNLOCK_THE_SEAL; + + @ClientString(id = 4556, message = "· Consumes 10,000 Clan Reputation Points.\\n· Resets all Specialized skills and seal effects.\\n· Retrieves the Clan Development Points paid for unlocking.\\n· Unable to retrieve the Clam Fame paid for unlocking.\\n\\nAre you sure to reset?") + public static SystemMessageId CONSUMES_10_000_CLAN_REPUTATION_POINTS_N_RESETS_ALL_SPECIALIZED_SKILLS_AND_SEAL_EFFECTS_N_RETRIEVES_THE_CLAN_DEVELOPMENT_POINTS_PAID_FOR_UNLOCKING_N_UNABLE_TO_RETRIEVE_THE_CLAM_FAME_PAID_FOR_UNLOCKING_N_NARE_YOU_SURE_TO_RESET; + + @ClientString(id = 4557, message = "Unlocked $s1.") + public static SystemMessageId UNLOCKED_S1; + + @ClientString(id = 4558, message = "All clan characteristics were reset.") + public static SystemMessageId ALL_CLAN_CHARACTERISTICS_WERE_RESET; + + @ClientString(id = 4559, message = "System error. Please try again.") + public static SystemMessageId SYSTEM_ERROR_PLEASE_TRY_AGAIN; + + @ClientString(id = 4560, message = "Cannot extend the seal activation time any longer.") + public static SystemMessageId CANNOT_EXTEND_THE_SEAL_ACTIVATION_TIME_ANY_LONGER; + + @ClientString(id = 4561, message = "Not enough money to unlock Specialization.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_UNLOCK_SPECIALIZATION; + + @ClientString(id = 4562, message = "Not enough money to unlock seal.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_UNLOCK_SEAL; + + @ClientString(id = 4563, message = "Not enough money to reset.") + public static SystemMessageId NOT_ENOUGH_MONEY_TO_RESET; + + @ClientString(id = 4564, message = "Activation required") + public static SystemMessageId ACTIVATION_REQUIRED; + + @ClientString(id = 4565, message = "None") + public static SystemMessageId NONE_6; + + @ClientString(id = 4566, message = "Locked") + public static SystemMessageId LOCKED; + + @ClientString(id = 4567, message = "The above item will be activated. Are you sure you want to continue?") + public static SystemMessageId THE_ABOVE_ITEM_WILL_BE_ACTIVATED_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4568, message = "Activated the above item in the Clan Shop.") + public static SystemMessageId ACTIVATED_THE_ABOVE_ITEM_IN_THE_CLAN_SHOP; + + @ClientString(id = 4569, message = "The item will be purchased. Are you sure you want to continue?") + public static SystemMessageId THE_ITEM_WILL_BE_PURCHASED_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 4570, message = "Purchased the item successfully.") + public static SystemMessageId PURCHASED_THE_ITEM_SUCCESSFULLY; + + @ClientString(id = 4571, message = "Valid for: $s1 days after unlocked") + public static SystemMessageId VALID_FOR_S1_DAYS_AFTER_UNLOCKED; + + @ClientString(id = 4572, message = "$s1/5 kills") + public static SystemMessageId S1_5_KILLS; + + @ClientString(id = 4573, message = "$s1/5 killed") + public static SystemMessageId S1_5_KILLED; + + @ClientString(id = 4574, message = "Invite players to the clan") + public static SystemMessageId INVITE_PLAYERS_TO_THE_CLAN; + + @ClientString(id = 4575, message = "Grant or remove titles") + public static SystemMessageId GRANT_OR_REMOVE_TITLES; + + @ClientString(id = 4576, message = "View the warehouse and deposit items (only the clan reader can take items)") + public static SystemMessageId VIEW_THE_WAREHOUSE_AND_DEPOSIT_ITEMS_ONLY_THE_CLAN_READER_CAN_TAKE_ITEMS; + + @ClientString(id = 4577, message = "Change a clan member's privilege level and manage the Clan Membership System (registering and editing the clan, approving membership, etc.)") + public static SystemMessageId CHANGE_A_CLAN_MEMBER_S_PRIVILEGE_LEVEL_AND_MANAGE_THE_CLAN_MEMBERSHIP_SYSTEM_REGISTERING_AND_EDITING_THE_CLAN_APPROVING_MEMBERSHIP_ETC; + + @ClientString(id = 4578, message = "Declare/Cancel a Clan War") + public static SystemMessageId DECLARE_CANCEL_A_CLAN_WAR; + + @ClientString(id = 4579, message = "Start the clan raid (Throne of Heroes)") + public static SystemMessageId START_THE_CLAN_RAID_THRONE_OF_HEROES; + + @ClientString(id = 4580, message = "Dismiss a clan member") + public static SystemMessageId DISMISS_A_CLAN_MEMBER; + + @ClientString(id = 4581, message = "Manage the clan crest and mark (only the alliance leader can control the alliance crest)") + public static SystemMessageId MANAGE_THE_CLAN_CREST_AND_MARK_ONLY_THE_ALLIANCE_LEADER_CAN_CONTROL_THE_ALLIANCE_CREST; + + @ClientString(id = 4582, message = "Buy clan items from the Clan Shop") + public static SystemMessageId BUY_CLAN_ITEMS_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4583, message = "Activate clan items in the Clan Shop, manage clan characteristics, and level up the clan") + public static SystemMessageId ACTIVATE_CLAN_ITEMS_IN_THE_CLAN_SHOP_MANAGE_CLAN_CHARACTERISTICS_AND_LEVEL_UP_THE_CLAN; + + @ClientString(id = 4584, message = "Summon the clan airship") + public static SystemMessageId SUMMON_THE_CLAN_AIRSHIP; + + @ClientString(id = 4585, message = "Access the Clan Hall") + public static SystemMessageId ACCESS_THE_CLAN_HALL; + + @ClientString(id = 4586, message = "Use the additional functions set in the Clan Hall") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CLAN_HALL; + + @ClientString(id = 4587, message = "Use the functions related with the Clan Hall bidding and auction") + public static SystemMessageId USE_THE_FUNCTIONS_RELATED_WITH_THE_CLAN_HALL_BIDDING_AND_AUCTION; + + @ClientString(id = 4588, message = "Expel outsiders from the Clan Hall") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CLAN_HALL; + + @ClientString(id = 4589, message = "Set additional functions to the Clan Hall") + public static SystemMessageId SET_ADDITIONAL_FUNCTIONS_TO_THE_CLAN_HALL; + + @ClientString(id = 4590, message = "Access the castle and open/close the castle gate") + public static SystemMessageId ACCESS_THE_CASTLE_AND_OPEN_CLOSE_THE_CASTLE_GATE; + + @ClientString(id = 4591, message = "Register, cancel, and approve the list of castle siege and defense warfare") + public static SystemMessageId REGISTER_CANCEL_AND_APPROVE_THE_LIST_OF_CASTLE_SIEGE_AND_DEFENSE_WARFARE; + + @ClientString(id = 4592, message = "Use the additional functions set in the castle/fortress") + public static SystemMessageId USE_THE_ADDITIONAL_FUNCTIONS_SET_IN_THE_CASTLE_FORTRESS; + + @ClientString(id = 4593, message = "Set functions such as enhancing traps or castle walls") + public static SystemMessageId SET_FUNCTIONS_SUCH_AS_ENHANCING_TRAPS_OR_CASTLE_WALLS; + + @ClientString(id = 4594, message = "Expel outsiders from the castle/fortress") + public static SystemMessageId EXPEL_OUTSIDERS_FROM_THE_CASTLE_FORTRESS; + + @ClientString(id = 4595, message = "Manage the castle taxation, castle vault, and control the castle vault deposits/withdrawals") + public static SystemMessageId MANAGE_THE_CASTLE_TAXATION_CASTLE_VAULT_AND_CONTROL_THE_CASTLE_VAULT_DEPOSITS_WITHDRAWALS; + + @ClientString(id = 4596, message = "Hire/position mercenaries") + public static SystemMessageId HIRE_POSITION_MERCENARIES; + + @ClientString(id = 4597, message = "Manor settings and use blacksmith") + public static SystemMessageId MANOR_SETTINGS_AND_USE_BLACKSMITH; + + @ClientString(id = 4598, message = "Increase the number of clan members ($s1)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1; + + @ClientString(id = 4599, message = "Increase the number of clan members ($s1) and elite clan members ($s2)") + public static SystemMessageId INCREASE_THE_NUMBER_OF_CLAN_MEMBERS_S1_AND_ELITE_CLAN_MEMBERS_S2; + + @ClientString(id = 4600, message = "Clan warehouse available") + public static SystemMessageId CLAN_WAREHOUSE_AVAILABLE; @ClientString(id = 4601, message = "- Great P. Def. and skillful Shield Defense
- Increased P. Def. for the whole party
- Protect party members") public static SystemMessageId GREAT_P_DEF_AND_SKILLFUL_SHIELD_DEFENSE_BR_INCREASED_P_DEF_FOR_THE_WHOLE_PARTY_BR_PROTECT_PARTY_MEMBERS; @@ -12984,6 +13347,84 @@ public final class SystemMessageId @ClientString(id = 4674, message = "Able to tap into the power of the wind god, Sayha's Seers can diffuse themselves into the wind for transport or defenses. Their talents account for their extraordinary survivability.") public static SystemMessageId ABLE_TO_TAP_INTO_THE_POWER_OF_THE_WIND_GOD_SAYHA_S_SEERS_CAN_DIFFUSE_THEMSELVES_INTO_THE_WIND_FOR_TRANSPORT_OR_DEFENSES_THEIR_TALENTS_ACCOUNT_FOR_THEIR_EXTRAORDINARY_SURVIVABILITY; + @ClientString(id = 4675, message = "Clan Bulletin") + public static SystemMessageId CLAN_BULLETIN; + + @ClientString(id = 4676, message = "Use the clan crest/title") + public static SystemMessageId USE_THE_CLAN_CREST_TITLE; + + @ClientString(id = 4677, message = "Participate in the Ceremony of Chaos") + public static SystemMessageId PARTICIPATE_IN_THE_CEREMONY_OF_CHAOS; + + @ClientString(id = 4678, message = "Bid/own auctionable Clan Hall") + public static SystemMessageId BID_OWN_AUCTIONABLE_CLAN_HALL; + + @ClientString(id = 4679, message = "Create an alliance and declare a clan war") + public static SystemMessageId CREATE_AN_ALLIANCE_AND_DECLARE_A_CLAN_WAR; + + @ClientString(id = 4680, message = "Participate in clan hall wars, fortress battles, castle siege, and the Throne of Heroes") + public static SystemMessageId PARTICIPATE_IN_CLAN_HALL_WARS_FORTRESS_BATTLES_CASTLE_SIEGE_AND_THE_THRONE_OF_HEROES; + + @ClientString(id = 4681, message = "Bid/own provisional Clan Hall") + public static SystemMessageId BID_OWN_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4682, message = "Bid/own super advanced provisional Clan Hall") + public static SystemMessageId BID_OWN_SUPER_ADVANCED_PROVISIONAL_CLAN_HALL; + + @ClientString(id = 4683, message = "Earn Clan Development Points") + public static SystemMessageId EARN_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4684, message = "Quite good for a newbie!") + public static SystemMessageId QUITE_GOOD_FOR_A_NEWBIE; + + @ClientString(id = 4685, message = "Hey! Are you okay?") + public static SystemMessageId HEY_ARE_YOU_OKAY; + + @ClientString(id = 4686, message = "You cannot enter because a party member does not belong to your clan.") + public static SystemMessageId YOU_CANNOT_ENTER_BECAUSE_A_PARTY_MEMBER_DOES_NOT_BELONG_TO_YOUR_CLAN; + + @ClientString(id = 4687, message = "<$s1> activated. You can buy it from the Clan Shop.") + public static SystemMessageId S1_ACTIVATED_YOU_CAN_BUY_IT_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4688, message = "<$s1> purchased <$s2> from the Clan Shop.") + public static SystemMessageId S1_PURCHASED_S2_FROM_THE_CLAN_SHOP; + + @ClientString(id = 4689, message = "Cannot use this function consecutively. Please try again later.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_CONSECUTIVELY_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 4690, message = "Cannot use this function while casting a skill.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_CASTING_A_SKILL; + + @ClientString(id = 4691, message = "Not enough money for activation.") + public static SystemMessageId NOT_ENOUGH_MONEY_FOR_ACTIVATION; + + @ClientString(id = 4692, message = "You don't have enough money to buy the item or your inventory exceeds the weight/quantity limit.") + public static SystemMessageId YOU_DON_T_HAVE_ENOUGH_MONEY_TO_BUY_THE_ITEM_OR_YOUR_INVENTORY_EXCEEDS_THE_WEIGHT_QUANTITY_LIMIT; + + @ClientString(id = 4693, message = "The clan level rose to $s1.") + public static SystemMessageId THE_CLAN_LEVEL_ROSE_TO_S1; + + @ClientString(id = 4694, message = "Earned the Clan Development Points.") + public static SystemMessageId EARNED_THE_CLAN_DEVELOPMENT_POINTS; + + @ClientString(id = 4695, message = "Your clan has added $s1 point(s) to its Clan Reputation.") + public static SystemMessageId YOUR_CLAN_HAS_ADDED_S1_POINT_S_TO_ITS_CLAN_REPUTATION_2; + + @ClientString(id = 4696, message = "Reset $s1 to default settings.") + public static SystemMessageId RESET_S1_TO_DEFAULT_SETTINGS; + + @ClientString(id = 4697, message = "Canceled.") + public static SystemMessageId CANCELED; + + @ClientString(id = 4698, message = "Changed the clan privileges.") + public static SystemMessageId CHANGED_THE_CLAN_PRIVILEGES; + + @ClientString(id = 4699, message = "Clan Shop available") + public static SystemMessageId CLAN_SHOP_AVAILABLE; + + @ClientString(id = 4700, message = "This dummy message is not displayed on the chat window.") + public static SystemMessageId THIS_DUMMY_MESSAGE_IS_NOT_DISPLAYED_ON_THE_CHAT_WINDOW; + @ClientString(id = 4701, message = "You can easily configure the graphic quality with presets. A higher value means more visual effects. Note that a high value may reduce game performance.") public static SystemMessageId YOU_CAN_EASILY_CONFIGURE_THE_GRAPHIC_QUALITY_WITH_PRESETS_A_HIGHER_VALUE_MEANS_MORE_VISUAL_EFFECTS_NOTE_THAT_A_HIGH_VALUE_MAY_REDUCE_GAME_PERFORMANCE; @@ -13257,8 +13698,8 @@ public final class SystemMessageId @ClientString(id = 4791, message = "Display names of party members.") public static SystemMessageId DISPLAY_NAMES_OF_PARTY_MEMBERS; - @ClientString(id = 4792, message = "Display names of normal players.") - public static SystemMessageId DISPLAY_NAMES_OF_NORMAL_PLAYERS; + @ClientString(id = 4792, message = "Display names of other players.") + public static SystemMessageId DISPLAY_NAMES_OF_OTHER_PLAYERS_2; @ClientString(id = 4793, message = "Turn on or off status of all gauges.") public static SystemMessageId TURN_ON_OR_OFF_STATUS_OF_ALL_GAUGES; @@ -13491,8 +13932,8 @@ public final class SystemMessageId @ClientString(id = 4869, message = "View various records within the world.") public static SystemMessageId VIEW_VARIOUS_RECORDS_WITHIN_THE_WORLD; - @ClientString(id = 4870, message = "View instanced zone usage status.") - public static SystemMessageId VIEW_INSTANCED_ZONE_USAGE_STATUS; + @ClientString(id = 4870, message = "View Instance Zone usage status.") + public static SystemMessageId VIEW_INSTANCE_ZONE_USAGE_STATUS; @ClientString(id = 4871, message = "You can view clan information and request entry into clan.") public static SystemMessageId YOU_CAN_VIEW_CLAN_INFORMATION_AND_REQUEST_ENTRY_INTO_CLAN; @@ -13512,8 +13953,8 @@ public final class SystemMessageId @ClientString(id = 4876, message = "Display the names of another player's character and their servitor.") public static SystemMessageId DISPLAY_THE_NAMES_OF_ANOTHER_PLAYER_S_CHARACTER_AND_THEIR_SERVITOR; - @ClientString(id = 4877, message = "Not in Use - New Field for Addition") - public static SystemMessageId NOT_IN_USE_NEW_FIELD_FOR_ADDITION_3; + @ClientString(id = 4877, message = "Reset the settings of the activated Chat tab.") + public static SystemMessageId RESET_THE_SETTINGS_OF_THE_ACTIVATED_CHAT_TAB; @ClientString(id = 4878, message = "Use the 1:1 inquiry service.") public static SystemMessageId USE_THE_1_1_INQUIRY_SERVICE; @@ -13557,8 +13998,8 @@ public final class SystemMessageId @ClientString(id = 4891, message = "Enable or disable the damage texts of every object.") public static SystemMessageId ENABLE_OR_DISABLE_THE_DAMAGE_TEXTS_OF_EVERY_OBJECT; - @ClientString(id = 4892, message = "Using this function will show the system messages only in the dedicated window and other messages in the rest of the channels will become deactivated.") - public static SystemMessageId USING_THIS_FUNCTION_WILL_SHOW_THE_SYSTEM_MESSAGES_ONLY_IN_THE_DEDICATED_WINDOW_AND_OTHER_MESSAGES_IN_THE_REST_OF_THE_CHANNELS_WILL_BECOME_DEACTIVATED; + @ClientString(id = 4892, message = "Using this function will show the system messages only in the dedicated window. System messages in the channels will become deactivated.") + public static SystemMessageId USING_THIS_FUNCTION_WILL_SHOW_THE_SYSTEM_MESSAGES_ONLY_IN_THE_DEDICATED_WINDOW_SYSTEM_MESSAGES_IN_THE_CHANNELS_WILL_BECOME_DEACTIVATED; @ClientString(id = 4893, message = "Choose current chat tab. Changes will not affect common chat.") public static SystemMessageId CHOOSE_CURRENT_CHAT_TAB_CHANGES_WILL_NOT_AFFECT_COMMON_CHAT; @@ -13566,6 +14007,42 @@ public final class SystemMessageId @ClientString(id = 4894, message = "Change the quality of the visual effect settings quickly according to the pre-configured setting value.") public static SystemMessageId CHANGE_THE_QUALITY_OF_THE_VISUAL_EFFECT_SETTINGS_QUICKLY_ACCORDING_TO_THE_PRE_CONFIGURED_SETTING_VALUE; + @ClientString(id = 4895, message = "Selects all hostile targets.") + public static SystemMessageId SELECTS_ALL_HOSTILE_TARGETS; + + @ClientString(id = 4896, message = "Selects a hostile monster (Excludes hostile PC's Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_MONSTER_EXCLUDES_HOSTILE_PC_S_SERVITORS; + + @ClientString(id = 4897, message = "Selects a hostile PC (Excludes hostile PC's Servitors).") + public static SystemMessageId SELECTS_A_HOSTILE_PC_EXCLUDES_HOSTILE_PC_S_SERVITORS; + + @ClientString(id = 4898, message = "Selects a friendly NPC.") + public static SystemMessageId SELECTS_A_FRIENDLY_NPC; + + @ClientString(id = 4899, message = "Hide the servitors of other PCs in peaceful zones.") + public static SystemMessageId HIDE_THE_SERVITORS_OF_OTHER_PCS_IN_PEACEFUL_ZONES; + + @ClientString(id = 4900, message = "Reject a regular user's invitation to a party.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4901, message = "Reject a friend's invitation to a party.") + public static SystemMessageId REJECT_A_FRIEND_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4902, message = "Reject a clan member's invitation to a party.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_INVITATION_TO_A_PARTY; + + @ClientString(id = 4903, message = "Turn on/off to reject party invitations from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_PARTY_INVITATIONS_FROM_EVERYONE; + + @ClientString(id = 4904, message = "Reject a regular user's friend request.") + public static SystemMessageId REJECT_A_REGULAR_USER_S_FRIEND_REQUEST; + + @ClientString(id = 4905, message = "Reject a clan member's friend request.") + public static SystemMessageId REJECT_A_CLAN_MEMBER_S_FRIEND_REQUEST; + + @ClientString(id = 4906, message = "Turn on/off to reject friend requests from everyone.") + public static SystemMessageId TURN_ON_OFF_TO_REJECT_FRIEND_REQUESTS_FROM_EVERYONE; + @ClientString(id = 5000, message = "Your account has been restricted due to an account theft issue. If you have an email address registered to your account information, please check your inbox for an email message with details. If you have no direct connection to account theft, please visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center and file a petition. For more details, please visit 1:1 Customer Service Center.") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_AN_ACCOUNT_THEFT_ISSUE_IF_YOU_HAVE_AN_EMAIL_ADDRESS_REGISTERED_TO_YOUR_ACCOUNT_INFORMATION_PLEASE_CHECK_YOUR_INBOX_FOR_AN_EMAIL_MESSAGE_WITH_DETAILS_IF_YOU_HAVE_NO_DIRECT_CONNECTION_TO_ACCOUNT_THEFT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_AND_FILE_A_PETITION_FOR_MORE_DETAILS_PLEASE_VISIT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; @@ -13770,14 +14247,14 @@ public final class SystemMessageId @ClientString(id = 5067, message = "If you fail authentication 3 times in a row, game access will be restricted for 30 minutes. Please try again later.") public static SystemMessageId IF_YOU_FAIL_AUTHENTICATION_FONT_COLOR_FFDF4C_3_TIMES_FONT_IN_A_ROW_GAME_ACCESS_WILL_BE_RESTRICTED_FOR_FONT_COLOR_FFDF4C_30_MINUTES_FONT_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 5068, message = "To request an NC OTP service,
run the cell phone NC OTP service
and enter the displayed NC OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") - public static SystemMessageId TO_REQUEST_AN_NC_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_NC_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_NC_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; + @ClientString(id = 5068, message = "To request an OTP service,
run the cell phone OTP service
and enter the displayed OTP number within 1 minute.
If you did not make the request,
leave this part blank,
and click on the login tab.") + public static SystemMessageId TO_REQUEST_AN_OTP_SERVICE_BR_RUN_THE_CELL_PHONE_OTP_SERVICE_BR_AND_ENTER_THE_DISPLAYED_OTP_NUMBER_WITHIN_1_MINUTE_BR_IF_YOU_DID_NOT_MAKE_THE_REQUEST_BR_LEAVE_THIS_PART_BLANK_BR_AND_CLICK_ON_THE_LOGIN_TAB; @ClientString(id = 5069, message = "Please enter card number $s1.") public static SystemMessageId PLEASE_ENTER_CARD_NUMBER_FONT_COLOR_FFDF4C_S1_FONT; - @ClientString(id = 5070, message = "On 11th of July, 2014 Lineage II classic server has been restructured.
Giran, Elf, Darkelf → Elf (NEW)") - public static SystemMessageId FONT_SIZE_15_COLOR_FFDF5F_ON_11TH_OF_JULY_2014_LINEAGE_II_CLASSIC_SERVER_HAS_BEEN_RESTRUCTURED_FONT_BR_FONT_SIZE_13_COLOR_ABABAB_GIRAN_ELF_DARKELF_FONT_ELF_NEW; + @ClientString(id = 5070, message = "As of July 26th 2017, Lineage II launched the updated Classic Server.
Giran, Elf, Dark Elf → Giran (NEW)") + public static SystemMessageId FONT_SIZE_15_COLOR_FFDF5F_AS_OF_JULY_26TH_2017_LINEAGE_II_LAUNCHED_THE_UPDATED_CLASSIC_SERVER_FONT_BR_FONT_SIZE_13_COLOR_ABABAB_GIRAN_ELF_DARK_ELF_FONT_GIRAN_NEW; @ClientString(id = 5071, message = "We give various benefits to warriors who return after a long time.") public static SystemMessageId FONT_COLOR_FFDF4C_WE_GIVE_VARIOUS_BENEFITS_TO_WARRIORS_WHO_RETURN_AFTER_A_LONG_TIME_FONT; @@ -13785,8 +14262,359 @@ public final class SystemMessageId @ClientString(id = 5072, message = "You can receive the benefits provided to dormant customers on Lineage II Homepage > Dormant Membership Page(https://eu.4game.com).
Receive benefits for dormant customers and log into the game again!") public static SystemMessageId YOU_CAN_RECEIVE_THE_BENEFITS_PROVIDED_TO_DORMANT_CUSTOMERS_ON_FONT_COLOR_FFDF4C_LINEAGE_II_HOMEPAGE_DORMANT_MEMBERSHIP_PAGE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_EU_4GAME_COM_A_FONT_BR_RECEIVE_BENEFITS_FOR_DORMANT_CUSTOMERS_AND_LOG_INTO_THE_GAME_AGAIN; - @ClientString(id = 5142, message = "") - public static SystemMessageId EMPTY_26; + @ClientString(id = 5100, message = "Available only for members authorized to activate items") + public static SystemMessageId AVAILABLE_ONLY_FOR_MEMBERS_AUTHORIZED_TO_ACTIVATE_ITEMS; + + @ClientString(id = 5101, message = "No war in progress. The clan must be level 5 or higher to start a clan war.") + public static SystemMessageId NO_WAR_IN_PROGRESS_THE_CLAN_MUST_BE_LEVEL_5_OR_HIGHER_TO_START_A_CLAN_WAR; + + @ClientString(id = 5102, message = "Assigned the target to the selected division.") + public static SystemMessageId ASSIGNED_THE_TARGET_TO_THE_SELECTED_DIVISION; + + @ClientString(id = 5103, message = "Changed the target's privileges.") + public static SystemMessageId CHANGED_THE_TARGET_S_PRIVILEGES; + + @ClientString(id = 5104, message = "Cannot use this function while using a Private Store.") + public static SystemMessageId CANNOT_USE_THIS_FUNCTION_WHILE_USING_A_PRIVATE_STORE; + + @ClientString(id = 5105, message = "Cannot report a character who is fighting in a duel.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_IS_FIGHTING_IN_A_DUEL; + + @ClientString(id = 5106, message = "No Spirits are available.") + public static SystemMessageId NO_SPIRITS_ARE_AVAILABLE; + + @ClientString(id = 5107, message = "<$s1> will be your attribute attack from now on.") + public static SystemMessageId S1_WILL_BE_YOUR_ATTRIBUTE_ATTACK_FROM_NOW_ON; + + @ClientString(id = 5108, message = "<$s1> will evolve to <$s2>. Spirits can grow up to Lv. 10.") + public static SystemMessageId S1_WILL_EVOLVE_TO_S2_SPIRITS_CAN_GROW_UP_TO_LV_10; + + @ClientString(id = 5109, message = "<$s1> evolved to <$s2-Star>!") + public static SystemMessageId S1_EVOLVED_TO_S2_STAR; + + @ClientString(id = 5110, message = "<$s1, $s2> will be extracted with a card.") + public static SystemMessageId S1_S2_WILL_BE_EXTRACTED_WITH_A_CARD; + + @ClientString(id = 5111, message = "Extracted <$s1, $s2> successfully!") + public static SystemMessageId EXTRACTED_S1_S2_SUCCESSFULLY; + + @ClientString(id = 5112, message = "Add a material for absorption.") + public static SystemMessageId ADD_A_MATERIAL_FOR_ABSORPTION; + + @ClientString(id = 5113, message = "Cannot evolve/absorb/extract while using the private store/workshop.") + public static SystemMessageId CANNOT_EVOLVE_ABSORB_EXTRACT_WHILE_USING_THE_PRIVATE_STORE_WORKSHOP; + + @ClientString(id = 5114, message = "Succesful absorption!") + public static SystemMessageId SUCCESFUL_ABSORPTION; + + @ClientString(id = 5115, message = "Characteristics Points will be used to enhance the stats of <$s1>. You can retrieve these points by resetting the stats. Are you sure you want to continue?") + public static SystemMessageId CHARACTERISTICS_POINTS_WILL_BE_USED_TO_ENHANCE_THE_STATS_OF_S1_YOU_CAN_RETRIEVE_THESE_POINTS_BY_RESETTING_THE_STATS_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5116, message = "Characteristics were applied successfully.") + public static SystemMessageId CHARACTERISTICS_WERE_APPLIED_SUCCESSFULLY; + + @ClientString(id = 5117, message = "The following ingredients will be consumed and <$s1> Characteristics Points will be lost to reset the characteristics of the selected spirit. Are you sure you want to continue?") + public static SystemMessageId THE_FOLLOWING_INGREDIENTS_WILL_BE_CONSUMED_AND_S1_CHARACTERISTICS_POINTS_WILL_BE_LOST_TO_RESET_THE_CHARACTERISTICS_OF_THE_SELECTED_SPIRIT_ARE_YOU_SURE_YOU_WANT_TO_CONTINUE; + + @ClientString(id = 5118, message = "Reset the selected Spirit's Characteristics successfully.") + public static SystemMessageId RESET_THE_SELECTED_SPIRIT_S_CHARACTERISTICS_SUCCESSFULLY; + + @ClientString(id = 5119, message = "Cannot report a character who has signed up for Olympiad.") + public static SystemMessageId CANNOT_REPORT_A_CHARACTER_WHO_HAS_SIGNED_UP_FOR_OLYMPIAD; + + @ClientString(id = 5120, message = "Not allowed to sign up for Olympiad while the report of illegal program users is being verified.") + public static SystemMessageId NOT_ALLOWED_TO_SIGN_UP_FOR_OLYMPIAD_WHILE_THE_REPORT_OF_ILLEGAL_PROGRAM_USERS_IS_BEING_VERIFIED; + + @ClientString(id = 5121, message = "The item has been sealed.") + public static SystemMessageId THE_ITEM_HAS_BEEN_SEALED; + + @ClientString(id = 5122, message = "The seal has been released from the item.") + public static SystemMessageId THE_SEAL_HAS_BEEN_RELEASED_FROM_THE_ITEM; + + @ClientString(id = 5123, message = "Not allowed because the item is sealed. Try again after unsealing the item.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_THE_ITEM_IS_SEALED_TRY_AGAIN_AFTER_UNSEALING_THE_ITEM; + + @ClientString(id = 5124, message = "$s1 cannot be sealed.") + public static SystemMessageId S1_CANNOT_BE_SEALED; + + @ClientString(id = 5125, message = "Not allowed because $s1 is not sealed.") + public static SystemMessageId NOT_ALLOWED_BECAUSE_S1_IS_NOT_SEALED; + + @ClientString(id = 5126, message = "Canceled the use of the Seal/Release Seal Scroll.") + public static SystemMessageId CANCELED_THE_USE_OF_THE_SEAL_RELEASE_SEAL_SCROLL; + + @ClientString(id = 5127, message = "Sealing/unsealing is in progress. Please try again after completing this process.") + public static SystemMessageId SEALING_UNSEALING_IS_IN_PROGRESS_PLEASE_TRY_AGAIN_AFTER_COMPLETING_THIS_PROCESS; + + @ClientString(id = 5128, message = "You cannot seal/unseal an item while you're running a Private Store or Private Workshop.") + public static SystemMessageId YOU_CANNOT_SEAL_UNSEAL_AN_ITEM_WHILE_YOU_RE_RUNNING_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP; + + @ClientString(id = 5129, message = "Select an item you want to seal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_SEAL; + + @ClientString(id = 5130, message = "The selected item will be sealed.\\nTo unseal it, you must go through the identify verification process.") + public static SystemMessageId THE_SELECTED_ITEM_WILL_BE_SEALED_NTO_UNSEAL_IT_YOU_MUST_GO_THROUGH_THE_IDENTIFY_VERIFICATION_PROCESS; + + @ClientString(id = 5131, message = "\\nYou can release the seal by requesting N Shop for the Release Seal Scroll Box.") + public static SystemMessageId NOTE_ON_SEALING_NYOU_CAN_RELEASE_THE_SEAL_BY_REQUESTING_N_SHOP_FOR_THE_RELEASE_SEAL_SCROLL_BOX; + + @ClientString(id = 5132, message = "Select an item you want to unseal.") + public static SystemMessageId SELECT_AN_ITEM_YOU_WANT_TO_UNSEAL; + + @ClientString(id = 5133, message = "The seal will be removed from the selected item.") + public static SystemMessageId THE_SEAL_WILL_BE_REMOVED_FROM_THE_SELECTED_ITEM; + + @ClientString(id = 5134, message = "Cannot grow any more.") + public static SystemMessageId CANNOT_GROW_ANY_MORE; + + @ClientString(id = 5135, message = "Used all the registered items.") + public static SystemMessageId USED_ALL_THE_REGISTERED_ITEMS; + + @ClientString(id = 5136, message = "$s1 Attribute Attack Power") + public static SystemMessageId S1_ATTRIBUTE_ATTACK_POWER; + + @ClientString(id = 5137, message = "$s1 Attribute Defense") + public static SystemMessageId S1_ATTRIBUTE_DEFENSE; + + @ClientString(id = 5138, message = "$s1 Attribute Critical Rate") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_RATE; + + @ClientString(id = 5139, message = "$s1 Attribute Critical Damage") + public static SystemMessageId S1_ATTRIBUTE_CRITICAL_DAMAGE; + + @ClientString(id = 5140, message = "$s1 will be used. You can use $s2 times more.") + public static SystemMessageId S1_WILL_BE_USED_YOU_CAN_USE_S2_TIMES_MORE; + + @ClientString(id = 5141, message = "$s1 is used. $s1 will be lost because it has been used the maximum amount of times.") + public static SystemMessageId S1_IS_USED_S1_WILL_BE_LOST_BECAUSE_IT_HAS_BEEN_USED_THE_MAXIMUM_AMOUNT_OF_TIMES; + + @ClientString(id = 5142, message = "Level $s1 Reward") + public static SystemMessageId LEVEL_S1_REWARD; + + @ClientString(id = 5143, message = "There aren't any Attribute Soulshot. Please purchase it at the Shop.") + public static SystemMessageId THERE_AREN_T_ANY_ATTRIBUTE_SOULSHOT_PLEASE_PURCHASE_IT_AT_THE_SHOP; + + @ClientString(id = 5144, message = "Not enough ingredients for evolution.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_FOR_EVOLUTION; + + @ClientString(id = 5145, message = "Spirits can evolve when they reach level 10 and 100%% XP.") + public static SystemMessageId SPIRITS_CAN_EVOLVE_WHEN_THEY_REACH_LEVEL_10_AND_100_XP; + + @ClientString(id = 5146, message = "Unable to evolve any further.") + public static SystemMessageId UNABLE_TO_EVOLVE_ANY_FURTHER; + + @ClientString(id = 5147, message = "Not enough ingredients to extract.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_TO_EXTRACT; + + @ClientString(id = 5148, message = " Spirit will revert back to level 1 and its attribute will be reset. Do you want to proceed?") + public static SystemMessageId PRECAUTIONS_WHEN_EXTRACTING_SPIRIT_WILL_REVERT_BACK_TO_LEVEL_1_AND_ITS_ATTRIBUTE_WILL_BE_RESET_DO_YOU_WANT_TO_PROCEED; + + @ClientString(id = 5149, message = "Not enough ingredients to absorb.") + public static SystemMessageId NOT_ENOUGH_INGREDIENTS_TO_ABSORB; + + @ClientString(id = 5150, message = "Unable to absorb because reached maximum level.") + public static SystemMessageId UNABLE_TO_ABSORB_BECAUSE_REACHED_MAXIMUM_LEVEL; + + @ClientString(id = 5151, message = "Precaution for loss of $s1 Attribute XP") + public static SystemMessageId PRECAUTION_FOR_LOSS_OF_S1_ATTRIBUTE_XP; + + @ClientString(id = 5152, message = "Not enough to proceed with reset.") + public static SystemMessageId NOT_ENOUGH_ADENA_TO_PROCEED_WITH_RESET; + + @ClientString(id = 5153, message = "Editing for Attribute has been cancelled.") + public static SystemMessageId EDITING_FOR_ATTRIBUTE_HAS_BEEN_CANCELLED; + + @ClientString(id = 5154, message = "Quickly find out what the problem is!") + public static SystemMessageId QUICKLY_FIND_OUT_WHAT_THE_PROBLEM_IS; + + @ClientString(id = 5155, message = "Did you find out something?") + public static SystemMessageId DID_YOU_FIND_OUT_SOMETHING; + + @ClientString(id = 5156, message = "Here, go before the passage closes.") + public static SystemMessageId HERE_GO_BEFORE_THE_PASSAGE_CLOSES; + + @ClientString(id = 5157, message = "This is Great Etina Temple.") + public static SystemMessageId THIS_IS_GREAT_ETINA_TEMPLE; + + @ClientString(id = 5158, message = "Let's begin. / Yes.") + public static SystemMessageId LET_S_BEGIN_YES; + + @ClientString(id = 5159, message = "It's my turn.") + public static SystemMessageId IT_S_MY_TURN; + + @ClientString(id = 5160, message = "Your edits will not be saved if you change Spirits.") + public static SystemMessageId YOUR_EDITS_WILL_NOT_BE_SAVED_IF_YOU_CHANGE_SPIRITS; + + @ClientString(id = 5161, message = "Use Attribute Attack of <$s1>.") + public static SystemMessageId USE_ATTRIBUTE_ATTACK_OF_S1; + + @ClientString(id = 5162, message = "Unable to extract during battle.") + public static SystemMessageId UNABLE_TO_EXTRACT_DURING_BATTLE; + + @ClientString(id = 5163, message = "Unable to extract because Inventory is full.") + public static SystemMessageId UNABLE_TO_EXTRACT_BECAUSE_INVENTORY_IS_FULL; + + @ClientString(id = 5164, message = "Unable to evolve during battle.") + public static SystemMessageId UNABLE_TO_EVOLVE_DURING_BATTLE; + + @ClientString(id = 5165, message = "This Spirit cannot evolve.") + public static SystemMessageId THIS_SPIRIT_CANNOT_EVOLVE; + + @ClientString(id = 5166, message = "Spirit of other Attribute does not fit the evolution condition.") + public static SystemMessageId SPIRIT_OF_OTHER_ATTRIBUTE_DOES_NOT_FIT_THE_EVOLUTION_CONDITION; + + @ClientString(id = 5167, message = "Unable to absorb during battle.") + public static SystemMessageId UNABLE_TO_ABSORB_DURING_BATTLE; + + @ClientString(id = 5168, message = "Unable to reset Spirit Attribute during battle.") + public static SystemMessageId UNABLE_TO_RESET_SPIRIT_ATTRIBUTE_DURING_BATTLE; + + @ClientString(id = 5169, message = "Unable to open Attribute after the third class change.") + public static SystemMessageId UNABLE_TO_OPEN_ATTRIBUTE_AFTER_THE_THIRD_CLASS_CHANGE; + + @ClientString(id = 5170, message = "Obtained $s2 Attribute XP of $s1.") + public static SystemMessageId OBTAINED_S2_ATTRIBUTE_XP_OF_S1; + + @ClientString(id = 5171, message = "$s1 Attribute Spirit became level $s2.") + public static SystemMessageId S1_ATTRIBUTE_SPIRIT_BECAME_LEVEL_S2; + + @ClientString(id = 5172, message = "Unable to use $s1 because Attribute is not learnt.") + public static SystemMessageId UNABLE_TO_USE_S1_BECAUSE_ATTRIBUTE_IS_NOT_LEARNT; + + @ClientString(id = 5173, message = "Not enough Attribute XP for extraction.") + public static SystemMessageId NOT_ENOUGH_ATTRIBUTE_XP_FOR_EXTRACTION; + + @ClientString(id = 5174, message = "$s1 Attack Critical is activated.") + public static SystemMessageId S1_ATTACK_CRITICAL_IS_ACTIVATED; + + @ClientString(id = 5175, message = "Attack Attribute can be changed after $s1 seconds.") + public static SystemMessageId ATTACK_ATTRIBUTE_CAN_BE_CHANGED_AFTER_S1_SECONDS; + + @ClientString(id = 5176, message = "$s1 has inflicted $s3 damage (Attribute Damage: $s4) to $s2.") + public static SystemMessageId S1_HAS_INFLICTED_S3_DAMAGE_ATTRIBUTE_DAMAGE_S4_TO_S2; + + @ClientString(id = 5177, message = "$s1 has received $s3 damage (Attribute Damage: $s4) from $s2.") + public static SystemMessageId S1_HAS_RECEIVED_S3_DAMAGE_ATTRIBUTE_DAMAGE_S4_FROM_S2; + + @ClientString(id = 5178, message = "$s1 has received $s3 damage from $s2 (Attribute Damage: $s5), $s4 damage is transfered to servitor.") + public static SystemMessageId S1_HAS_RECEIVED_S3_DAMAGE_FROM_S2_ATTRIBUTE_DAMAGE_S5_S4_DAMAGE_IS_TRANSFERED_TO_SERVITOR; + + @ClientString(id = 5179, message = "You did not join Throne of Heroes.") + public static SystemMessageId YOU_DID_NOT_JOIN_THRONE_OF_HEROES; + + @ClientString(id = 5180, message = "Ranking information did not load. Please try again later.") + public static SystemMessageId RANKING_INFORMATION_DID_NOT_LOAD_PLEASE_TRY_AGAIN_LATER; + + @ClientString(id = 5181, message = "You have obtained an Attribute. Open your Character Information Screen to check.") + public static SystemMessageId YOU_HAVE_OBTAINED_AN_ATTRIBUTE_OPEN_YOUR_CHARACTER_INFORMATION_SCREEN_TO_CHECK; + + @ClientString(id = 5182, message = "Unable to open Olympiad Screen while in participating or watching a match.") + public static SystemMessageId UNABLE_TO_OPEN_OLYMPIAD_SCREEN_WHILE_IN_PARTICIPATING_OR_WATCHING_A_MATCH; + + @ClientString(id = 5183, message = "Olympiad can be watches in Peace Zone only.") + public static SystemMessageId OLYMPIAD_CAN_BE_WATCHES_IN_PEACE_ZONE_ONLY; + + @ClientString(id = 5184, message = "ROUND $s1") + public static SystemMessageId ROUND_S1_2; + + @ClientString(id = 5185, message = "+hidden_msg+ Start Olympiad") + public static SystemMessageId HIDDEN_MSG_START_OLYMPIAD; + + @ClientString(id = 5186, message = "+hidden_msg+ Olympiad Victory") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_VICTORY; + + @ClientString(id = 5187, message = "+hidden_msg+ Olympiad Defeat") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_DEFEAT; + + @ClientString(id = 5188, message = "+hidden_msg+ Olympiad Tie") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_TIE; + + @ClientString(id = 5189, message = "+hidden_msg+ Olympiad Time Over") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_TIME_OVER; + + @ClientString(id = 5190, message = "+hidden_msg+ Olympiad Knock Down") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_KNOCK_DOWN; + + @ClientString(id = 5191, message = "+hidden_msg+ Olympiad Round 1") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_1; + + @ClientString(id = 5192, message = "+hidden_msg+ Olympiad Round 2") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_2; + + @ClientString(id = 5193, message = "+hidden_msg+ Olympiad Round 3") + public static SystemMessageId HIDDEN_MSG_OLYMPIAD_ROUND_3; + + @ClientString(id = 5194, message = "This bait cannot be used in this area.") + public static SystemMessageId THIS_BAIT_CANNOT_BE_USED_IN_THIS_AREA; + + @ClientString(id = 5195, message = "Do you want to select <$s1>?") + public static SystemMessageId DO_YOU_WANT_TO_SELECT_S1; + + @ClientString(id = 5196, message = "Change next target: $s1") + public static SystemMessageId CHANGE_NEXT_TARGET_S1; + + @ClientString(id = 5197, message = "<$s1> has enchanted successfully! <$s2>") + public static SystemMessageId S1_HAS_ENCHANTED_SUCCESSFULLY_S2; + + @ClientString(id = 5198, message = "$s1's enchant is successful!") + public static SystemMessageId S1_S_ENCHANT_IS_SUCCESSFUL; + + @ClientString(id = 5199, message = "$s1") + public static SystemMessageId S1_5; + + @ClientString(id = 5200, message = "Unfinished Season") + public static SystemMessageId UNFINISHED_SEASON; + + @ClientString(id = 5201, message = "<$s1> has obtained at <$s2>! <$s3>") + public static SystemMessageId S1_HAS_OBTAINED_AT_S2_S3; + + @ClientString(id = 5202, message = "$s1 has obtained at $s2!") + public static SystemMessageId S1_HAS_OBTAINED_AT_S2; + + @ClientString(id = 5203, message = "Stage $s1") + public static SystemMessageId STAGE_S1; + + @ClientString(id = 5204, message = "Time Left: $s1 min") + public static SystemMessageId TIME_LEFT_S1_MIN; + + @ClientString(id = 5206, message = "") + public static SystemMessageId EMPTY_10; + + @ClientString(id = 5207, message = "") + public static SystemMessageId EMPTY_11; + + @ClientString(id = 5208, message = "") + public static SystemMessageId EMPTY_12; + + @ClientString(id = 5209, message = "") + public static SystemMessageId EMPTY_13; + + @ClientString(id = 5210, message = "") + public static SystemMessageId EMPTY_14; + + @ClientString(id = 5211, message = "") + public static SystemMessageId EMPTY_15; + + @ClientString(id = 5212, message = "") + public static SystemMessageId EMPTY_16; + + @ClientString(id = 5213, message = "") + public static SystemMessageId EMPTY_17; + + @ClientString(id = 5214, message = "") + public static SystemMessageId EMPTY_18; + + @ClientString(id = 5215, message = "") + public static SystemMessageId EMPTY_19; + + @ClientString(id = 5216, message = "") + public static SystemMessageId EMPTY_20; + + @ClientString(id = 5217, message = "") + public static SystemMessageId EMPTY_21; + + @ClientString(id = 5218, message = "") + public static SystemMessageId EMPTY_22; @ClientString(id = 5300, message = "Your account has been restricted due to an account theft issue. If you have an email address registered to your account information, please check your inbox for an email message with details. If you have no direct connection to account theft, please visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center and file a petition. For more details, please visit 1:1 Chat in Customer Service Center.") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_AN_ACCOUNT_THEFT_ISSUE_IF_YOU_HAVE_AN_EMAIL_ADDRESS_REGISTERED_TO_YOUR_ACCOUNT_INFORMATION_PLEASE_CHECK_YOUR_INBOX_FOR_AN_EMAIL_MESSAGE_WITH_DETAILS_IF_YOU_HAVE_NO_DIRECT_CONNECTION_TO_ACCOUNT_THEFT_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_AND_FILE_A_PETITION_FOR_MORE_DETAILS_PLEASE_VISIT_FONT_COLOR_FFDF4C_1_1_CHAT_IN_CUSTOMER_SERVICE_CENTER_FONT; @@ -13882,7 +14710,7 @@ public final class SystemMessageId public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_RESTRICTED_DUE_TO_YOUR_ABUSE_OF_SYSTEM_WEAKNESSES_OR_BUGS_ABUSING_BUGS_CAN_CAUSE_GRIEVOUS_SYSTEM_ERRORS_OR_DESTROY_THE_GAME_BALANCE_FOR_MORE_DETAILS_PLEASE_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT_3; @ClientString(id = 5331, message = "Your account is temporarily restricted due to a complaint filed in the process of name changing. For more information,visit the 4Game website(https://support.4game.com) 1:1 Customer Service Center.") - public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_RESTRICTED_DUE_TO_A_COMPLAINT_FILED_IN_THE_PROCESS_OF_NAME_CHANGING_FOR_MORE_INFORMATIONVISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_RESTRICTED_DUE_TO_A_COMPLAINT_FILED_IN_THE_PROCESS_OF_NAME_CHANGING_FOR_MORE_INFORMATION_VISIT_THE_FONT_COLOR_FFDF4C_4GAME_WEBSITE_FONT_FONT_COLOR_6699FF_A_HREF_ASFUNCTION_HOMEPAGE_HTTPS_SUPPORT_4GAME_COM_A_FONT_FONT_COLOR_FFDF4C_1_1_CUSTOMER_SERVICE_CENTER_FONT; @ClientString(id = 5332, message = "You have not used your account for a long time. If you have not logged into the game for a set period of time, you will be able to log in via plaync homepage (id.plaync.com/account/dormant/index) https://id.plaync.com/account/dormant/index'>id.plaync.com/account/dormant/index).") public static SystemMessageId YOU_HAVE_NOT_USED_YOUR_ACCOUNT_FOR_A_LONG_TIME_IF_YOU_HAVE_NOT_LOGGED_INTO_THE_GAME_FOR_A_SET_PERIOD_OF_TIME_YOU_WILL_BE_ABLE_TO_LOG_IN_VIA_FONT_COLOR_FFDF4C_PLAYNC_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_HTTPS_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_ID_PLAYNC_COM_ACCOUNT_DORMANT_INDEX_A_FONT_FONT_COLOR_FFDF4C_FONT; @@ -13890,6 +14718,9 @@ public final class SystemMessageId @ClientString(id = 5333, message = "Your account has been completely blocked due to account theft. For more information, please visit the Support Center on the official website (https://support.4game.com).") public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_COMPLETELY_BLOCKED_DUE_TO_ACCOUNT_THEFT_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; + @ClientString(id = 5334, message = "Your account is temporarily banned because a suspicious attempt to sign into your account was detected. For more information, please visit the Support Center on the official website (https://support.4game.com).") + public static SystemMessageId YOUR_ACCOUNT_IS_TEMPORARILY_BANNED_BECAUSE_A_SUSPICIOUS_ATTEMPT_TO_SIGN_INTO_YOUR_ACCOUNT_WAS_DETECTED_FOR_MORE_INFORMATION_PLEASE_VISIT_THE_SUPPORT_CENTER_ON_THE_OFFICIAL_WEBSITE_HTTPS_SUPPORT_4GAME_COM; + @ClientString(id = 5501, message = "$s1 is killed by $s2.") public static SystemMessageId S1_IS_KILLED_BY_S2; @@ -14004,6 +14835,105 @@ public final class SystemMessageId @ClientString(id = 5538, message = "You must be in a group to access the Group channel.") public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL; + @ClientString(id = 5539, message = "Will you accept $s1‘s group invitation?") + public static SystemMessageId WILL_YOU_ACCEPT_S1_S_GROUP_INVITATION; + + @ClientString(id = 5540, message = "$s1 joined the group.") + public static SystemMessageId S1_JOINED_THE_GROUP; + + @ClientString(id = 5541, message = "$s1 has declined to join the group.") + public static SystemMessageId S1_HAS_DECLINED_TO_JOIN_THE_GROUP; + + @ClientString(id = 5542, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND; + + @ClientString(id = 5543, message = "Invitation was canceled because $s1 did not respond.") + public static SystemMessageId INVITATION_WAS_CANCELED_BECAUSE_S1_DID_NOT_RESPOND_2; + + @ClientString(id = 5544, message = "The player belongs to another group.") + public static SystemMessageId THE_PLAYER_BELONGS_TO_ANOTHER_GROUP; + + @ClientString(id = 5545, message = "Failed to invite the player as they are fighting in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_FIGHTING_IN_THE_ARENA; + + @ClientString(id = 5546, message = "Failed to invite the player as they are preparing to fight in the arena.") + public static SystemMessageId FAILED_TO_INVITE_THE_PLAYER_AS_THEY_ARE_PREPARING_TO_FIGHT_IN_THE_ARENA; + + @ClientString(id = 5547, message = "Cannot find the target.") + public static SystemMessageId CANNOT_FIND_THE_TARGET; + + @ClientString(id = 5548, message = "You cannot invite yourself.") + public static SystemMessageId YOU_CANNOT_INVITE_YOURSELF; + + @ClientString(id = 5549, message = "Select a player you want to invite to the group.") + public static SystemMessageId SELECT_A_PLAYER_YOU_WANT_TO_INVITE_TO_THE_GROUP; + + @ClientString(id = 5550, message = "Cannot invite a new player because your group is full.") + public static SystemMessageId CANNOT_INVITE_A_NEW_PLAYER_BECAUSE_YOUR_GROUP_IS_FULL; + + @ClientString(id = 5551, message = "$s1 left the group.") + public static SystemMessageId S1_LEFT_THE_GROUP; + + @ClientString(id = 5552, message = "The group was disbanded.") + public static SystemMessageId THE_GROUP_WAS_DISBANDED; + + @ClientString(id = 5553, message = "You don't belong to any group.") + public static SystemMessageId YOU_DON_T_BELONG_TO_ANY_GROUP; + + @ClientString(id = 5554, message = "Dismissed $s1 from the group.") + public static SystemMessageId DISMISSED_S1_FROM_THE_GROUP; + + @ClientString(id = 5555, message = "Only the group leader can dismiss a group member.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DISMISS_A_GROUP_MEMBER; + + @ClientString(id = 5556, message = "You cannot dismiss yourself.") + public static SystemMessageId YOU_CANNOT_DISMISS_YOURSELF_2; + + @ClientString(id = 5557, message = "$s1 is now the group leader.") + public static SystemMessageId S1_IS_NOW_THE_GROUP_LEADER; + + @ClientString(id = 5558, message = "Only the group leader can delegate the privileges.") + public static SystemMessageId ONLY_THE_GROUP_LEADER_CAN_DELEGATE_THE_PRIVILEGES; + + @ClientString(id = 5559, message = "Slow down, you are already the party leader.") + public static SystemMessageId SLOW_DOWN_YOU_ARE_ALREADY_THE_PARTY_LEADER_2; + + @ClientString(id = 5560, message = "You can delegate the privileges only to a group member.") + public static SystemMessageId YOU_CAN_DELEGATE_THE_PRIVILEGES_ONLY_TO_A_GROUP_MEMBER; + + @ClientString(id = 5561, message = "You must be in a group to access the Group channel.") + public static SystemMessageId YOU_MUST_BE_IN_A_GROUP_TO_ACCESS_THE_GROUP_CHANNEL_2; + + @ClientString(id = 5562, message = "Input a name and press the Enter key to invite") + public static SystemMessageId INPUT_A_NAME_AND_PRESS_THE_ENTER_KEY_TO_INVITE; + + @ClientString(id = 5563, message = "You cannot resurrect while you're signing up for battle.") + public static SystemMessageId YOU_CANNOT_RESURRECT_WHILE_YOU_RE_SIGNING_UP_FOR_BATTLE; + + @ClientString(id = 5564, message = "You cannot apply as some of your group members are still in the arena.") + public static SystemMessageId YOU_CANNOT_APPLY_AS_SOME_OF_YOUR_GROUP_MEMBERS_ARE_STILL_IN_THE_ARENA; + + @ClientString(id = 5565, message = "Liberated $s1 Stage $s2.") + public static SystemMessageId LIBERATED_S1_STAGE_S2; + + @ClientString(id = 5566, message = "The seal of the monster can be removed.") + public static SystemMessageId THE_SEAL_OF_THE_MONSTER_CAN_BE_REMOVED; + + @ClientString(id = 5567, message = "$s1: $s2! Be careful!") + public static SystemMessageId S1_S2_BE_CAREFUL; + + @ClientString(id = 5568, message = "Beginning validation of $s1's qualification.") + public static SystemMessageId BEGINNING_VALIDATION_OF_S1_S_QUALIFICATION; + + @ClientString(id = 5569, message = "Validation of qualification through $s1 is reset after the season ends.") + public static SystemMessageId VALIDATION_OF_QUALIFICATION_THROUGH_S1_IS_RESET_AFTER_THE_SEASON_ENDS; + + @ClientString(id = 5570, message = "$s1 class qualification has been validated.") + public static SystemMessageId S1_CLASS_QUALIFICATION_HAS_BEEN_VALIDATED; + + @ClientString(id = 5571, message = "$s1 promotion has failed. The item's grade remains unchanged.") + public static SystemMessageId S1_PROMOTION_HAS_FAILED_THE_ITEM_S_GRADE_REMAINS_UNCHANGED; + @ClientString(id = 6001, message = "The item has been successfully purchased.") public static SystemMessageId THE_ITEM_HAS_BEEN_SUCCESSFULLY_PURCHASED_2; @@ -14037,8 +14967,8 @@ public final class SystemMessageId @ClientString(id = 6011, message = "You acquired $s1 XP and $s2 SP. (As a reward you receive $s3%% more XP.)") public static SystemMessageId YOU_ACQUIRED_S1_XP_AND_S2_SP_AS_A_REWARD_YOU_RECEIVE_S3_MORE_XP; - @ClientString(id = 6012, message = "a blessing that increases XP by $1 $2") - public static SystemMessageId A_BLESSING_THAT_INCREASES_XP_BY_1_2; + @ClientString(id = 6012, message = "a blessing that increases XP by $s1 $s2") + public static SystemMessageId A_BLESSING_THAT_INCREASES_XP_BY_S1_S2; @ClientString(id = 6013, message = "It is not a blessing period. When you reach today's target, you can receive $s1.") public static SystemMessageId IT_IS_NOT_A_BLESSING_PERIOD_WHEN_YOU_REACH_TODAY_S_TARGET_YOU_CAN_RECEIVE_S1; @@ -14202,11 +15132,11 @@ public final class SystemMessageId @ClientString(id = 6066, message = "If you cancel sending, the gift item cannot be sent again, and it will be returned to your character.") public static SystemMessageId IF_YOU_CANCEL_SENDING_THE_GIFT_ITEM_CANNOT_BE_SENT_AGAIN_AND_IT_WILL_BE_RETURNED_TO_YOUR_CHARACTER; - @ClientString(id = 6067, message = "Vitality is applied, and you receive $s1 bonus XP. A maximum of $s2 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") - public static SystemMessageId VITALITY_IS_APPLIED_AND_YOU_RECEIVE_S1_BONUS_XP_A_MAXIMUM_OF_S2_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; + @ClientString(id = 6067, message = "Saiha's Grace is applied, and you receive $s1 bonus XP. A maximum of $s2 Saiha's Grace item(s) can be used per week.") + public static SystemMessageId SAIHA_S_GRACE_IS_APPLIED_AND_YOU_RECEIVE_S1_BONUS_XP_A_MAXIMUM_OF_S2_SAIHA_S_GRACE_ITEM_S_CAN_BE_USED_PER_WEEK; - @ClientString(id = 6068, message = "Vitality is not yet applied. Vitality is replenished every Wednesday at 6:30 a.m. A maximum of $s1 Vitality potion(s) can be used per week, including replenishing/maintaining/recovering.") - public static SystemMessageId VITALITY_IS_NOT_YET_APPLIED_VITALITY_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_A_MAXIMUM_OF_S1_VITALITY_POTION_S_CAN_BE_USED_PER_WEEK_INCLUDING_REPLENISHING_MAINTAINING_RECOVERING; + @ClientString(id = 6068, message = "Saiha's Grace is not yet applied. Saiha's Grace is replenished every Wednesday at 6:30 a.m. for 25%%.") + public static SystemMessageId SAIHA_S_GRACE_IS_NOT_YET_APPLIED_SAIHA_S_GRACE_IS_REPLENISHED_EVERY_WEDNESDAY_AT_6_30_A_M_FOR_25; @ClientString(id = 6069, message = "You used the Adventurer's Song. Today you can use $s1 more. The use limit is reset daily at 6:30 a.m.") public static SystemMessageId YOU_USED_THE_ADVENTURER_S_SONG_TODAY_YOU_CAN_USE_S1_MORE_THE_USE_LIMIT_IS_RESET_DAILY_AT_6_30_A_M; @@ -14220,8 +15150,8 @@ public final class SystemMessageId @ClientString(id = 6072, message = "$s1%% XP Rate, Bonus XP is applied.") public static SystemMessageId S1_XP_RATE_BONUS_XP_IS_APPLIED; - @ClientString(id = 6073, message = "$s1 vitality items can be used.") - public static SystemMessageId S1_VITALITY_ITEMS_CAN_BE_USED; + @ClientString(id = 6073, message = "$s1 Saiha's Grace items can be used.") + public static SystemMessageId S1_SAIHA_S_GRACE_ITEMS_CAN_BE_USED; @ClientString(id = 6074, message = "The name of the character cannot be in English.") public static SystemMessageId THE_NAME_OF_THE_CHARACTER_CANNOT_BE_IN_ENGLISH; @@ -14334,8 +15264,8 @@ public final class SystemMessageId @ClientString(id = 6110, message = "Hair Accessories only.") public static SystemMessageId HAIR_ACCESSORIES_ONLY; - @ClientString(id = 6111, message = "The number of Vitality effects usable during this period has increased by $s1. You can currently use $s2 Vitality items.") - public static SystemMessageId THE_NUMBER_OF_VITALITY_EFFECTS_USABLE_DURING_THIS_PERIOD_HAS_INCREASED_BY_S1_YOU_CAN_CURRENTLY_USE_S2_VITALITY_ITEMS; + @ClientString(id = 6111, message = "The number of Saiha's Grace effects usable during this period has increased by $s1. You can currently use $s2 Saiha's Grace items.") + public static SystemMessageId THE_NUMBER_OF_SAIHA_S_GRACE_EFFECTS_USABLE_DURING_THIS_PERIOD_HAS_INCREASED_BY_S1_YOU_CAN_CURRENTLY_USE_S2_SAIHA_S_GRACE_ITEMS; @ClientString(id = 6112, message = "You cannot restore items that have not been modified.") public static SystemMessageId YOU_CANNOT_RESTORE_ITEMS_THAT_HAVE_NOT_BEEN_MODIFIED; @@ -14553,8 +15483,8 @@ public final class SystemMessageId @ClientString(id = 6183, message = "Your VIP rank is too low to receive the reward.") public static SystemMessageId YOUR_VIP_RANK_IS_TOO_LOW_TO_RECEIVE_THE_REWARD; - @ClientString(id = 6184, message = "New Field for Addition") - public static SystemMessageId NEW_FIELD_FOR_ADDITION; + @ClientString(id = 6184, message = "Items in the Pet Inventory cannot be used as offerings.") + public static SystemMessageId ITEMS_IN_THE_PET_INVENTORY_CANNOT_BE_USED_AS_OFFERINGS; @ClientString(id = 6185, message = "You can make another report in $s1-minute(s). You have $s2 point(s) remaining on this account.") public static SystemMessageId YOU_CAN_MAKE_ANOTHER_REPORT_IN_S1_MINUTE_S_YOU_HAVE_S2_POINT_S_REMAINING_ON_THIS_ACCOUNT_2; @@ -14565,10 +15495,10 @@ public final class SystemMessageId @ClientString(id = 6187, message = "Cannot continue because another report is being processed. Please try again after entering the verification number.") public static SystemMessageId CANNOT_CONTINUE_BECAUSE_ANOTHER_REPORT_IS_BEING_PROCESSED_PLEASE_TRY_AGAIN_AFTER_ENTERING_THE_VERIFICATION_NUMBER; - @ClientString(id = 6188, message = "New Field for Addition") - public static SystemMessageId NEW_FIELD_FOR_ADDITION_2; + @ClientString(id = 6188, message = "You do not meet the level requirements to receive the Attendance Reward. Please check the required level. (You can redeem your reward 30 minutes after logging in.)") + public static SystemMessageId YOU_DO_NOT_MEET_THE_LEVEL_REQUIREMENTS_TO_RECEIVE_THE_ATTENDANCE_REWARD_PLEASE_CHECK_THE_REQUIRED_LEVEL_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; - @ClientString(id = 6189, message = "You must receive the reward in a given day to receive the next day's reward.\\\\nRewards received once cannot be reverted back.") + @ClientString(id = 6189, message = "You must receive the reward in a given day to receive the next day's reward.\\nRewards received once cannot be reverted back.") public static SystemMessageId YOU_MUST_RECEIVE_THE_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_NREWARDS_RECEIVED_ONCE_CANNOT_BE_REVERTED_BACK; @ClientString(id = 6190, message = "This item cannot be used as an offering.") @@ -14583,7 +15513,7 @@ public final class SystemMessageId @ClientString(id = 6193, message = "How many $s1 would you like to remove from the offerings?") public static SystemMessageId HOW_MANY_S1_WOULD_YOU_LIKE_TO_REMOVE_FROM_THE_OFFERINGS; - @ClientString(id = 6194, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\\\n(You can redeem your reward 30 minutes after logging in.)") + @ClientString(id = 6194, message = "Your Day $s1 Attendance Reward is ready. Click on the rewards icon.\\n(You can redeem your reward 30 minutes after logging in.)") public static SystemMessageId YOUR_DAY_S1_ATTENDANCE_REWARD_IS_READY_CLICK_ON_THE_REWARDS_ICON_N_YOU_CAN_REDEEM_YOUR_REWARD_30_MINUTES_AFTER_LOGGING_IN; @ClientString(id = 6195, message = "You've received your Attendance Reward for Day $s1.") @@ -14617,9 +15547,9 @@ public final class SystemMessageId public static SystemMessageId C1_HAS_SUCCEEDED_IN_CRAFTING_S2; @ClientString(id = 6205, message = "") - public static SystemMessageId EMPTY_27; + public static SystemMessageId EMPTY_23; - @ClientString(id = 6206, message = "Use offerings to increase the success rate to 100%. At the moment the success rate is $s1%%. Do you want to continue?") + @ClientString(id = 6206, message = "Use offerings to increase the success rate to 100%%. At the moment the success rate is $s1%%. Do you want to continue?") public static SystemMessageId USE_OFFERINGS_TO_INCREASE_THE_SUCCESS_RATE_TO_100_AT_THE_MOMENT_THE_SUCCESS_RATE_IS_S1_DO_YOU_WANT_TO_CONTINUE; @ClientString(id = 6501, message = "You cannot bookmark this location because you do not have a My Teleport Flag.") @@ -14716,7 +15646,7 @@ public final class SystemMessageId public static SystemMessageId THE_NUMBER_OF_ITEMS_YOU_ARE_TRYING_TO_PURCHASE_IS_LIMITED_FOR_EACH_ACCOUNT_YOU_HAVE_PURCHASED_THE_MAXIMUM_QUANTITY_AND_CANNOT_PURCHASE_MORE; @ClientString(id = 6824, message = "") - public static SystemMessageId EMPTY_28; + public static SystemMessageId EMPTY_24; @ClientString(id = 6825, message = "The client will be closed. Do you want to continue?") public static SystemMessageId THE_CLIENT_WILL_BE_CLOSED_DO_YOU_WANT_TO_CONTINUE; @@ -14743,7 +15673,7 @@ public final class SystemMessageId public static SystemMessageId NO_ITEMS_WILL_BE_DROPPED_IN_THIS_LOCATION_UNTIL_YOU_COLLECT_DROPPED_ONES; @ClientString(id = 6833, message = "") - public static SystemMessageId EMPTY_29; + public static SystemMessageId EMPTY_25; @ClientString(id = 6834, message = "The sanctions were imposed on the character.
Please, click on the icon below to find out the details.") public static SystemMessageId THE_SANCTIONS_WERE_IMPOSED_ON_THE_CHARACTER_BR_PLEASE_CLICK_ON_THE_ICON_BELOW_TO_FIND_OUT_THE_DETAILS; @@ -14751,1424 +15681,1430 @@ public final class SystemMessageId @ClientString(id = 6835, message = "According to the User Agreement (https://eu.4game.com/l2ceu-user-agreement/), the game was temporarily blocked. Please, contact support to find out the details.") public static SystemMessageId ACCORDING_TO_THE_USER_AGREEMENT_HTTPS_EU_4GAME_COM_L2CEU_USER_AGREEMENT_THE_GAME_WAS_TEMPORARILY_BLOCKED_PLEASE_CONTACT_SUPPORT_TO_FIND_OUT_THE_DETAILS; - @ClientString(id = 6836, message = "The security card service is terminated and the game can be accessed after revoking the security card. To protect your account, please close your secure card and apply for Google Authenticator.") - public static SystemMessageId THE_SECURITY_CARD_SERVICE_IS_TERMINATED_AND_THE_GAME_CAN_BE_ACCESSED_AFTER_REVOKING_THE_SECURITY_CARD_TO_PROTECT_YOUR_ACCOUNT_PLEASE_CLOSE_YOUR_SECURE_CARD_AND_APPLY_FOR_GOOGLE_AUTHENTICATOR; + @ClientString(id = 6836, message = "The security card service has ended so you will be able to connect to the game after cancelling the security card. In order to protect your account, please cancel the security card and request Google OTP.") + public static SystemMessageId THE_SECURITY_CARD_SERVICE_HAS_ENDED_SO_YOU_WILL_BE_ABLE_TO_CONNECT_TO_THE_GAME_AFTER_CANCELLING_THE_SECURITY_CARD_IN_ORDER_TO_PROTECT_YOUR_ACCOUNT_PLEASE_CANCEL_THE_SECURITY_CARD_AND_REQUEST_GOOGLE_OTP; + + @ClientString(id = 6837, message = "Please enter the OTP number. The numbers change for each login.") + public static SystemMessageId PLEASE_ENTER_THE_OTP_NUMBER_THE_NUMBERS_CHANGE_FOR_EACH_LOGIN; + + @ClientString(id = 6838, message = "The Secret Supplies of the Balthus Knights arrived! Someone received $s1.") + public static SystemMessageId THE_SECRET_SUPPLIES_OF_THE_BALTHUS_KNIGHTS_ARRIVED_SOMEONE_RECEIVED_S1; @ClientString(id = 7001, message = "") - public static SystemMessageId EMPTY_30; + public static SystemMessageId EMPTY_26; @ClientString(id = 7002, message = "") - public static SystemMessageId EMPTY_31; + public static SystemMessageId EMPTY_27; @ClientString(id = 7003, message = "") - public static SystemMessageId EMPTY_32; + public static SystemMessageId EMPTY_28; @ClientString(id = 7004, message = "") - public static SystemMessageId EMPTY_33; + public static SystemMessageId EMPTY_29; @ClientString(id = 7005, message = "") - public static SystemMessageId EMPTY_34; + public static SystemMessageId EMPTY_30; @ClientString(id = 7006, message = "") - public static SystemMessageId EMPTY_35; + public static SystemMessageId EMPTY_31; @ClientString(id = 7007, message = "") - public static SystemMessageId EMPTY_36; + public static SystemMessageId EMPTY_32; @ClientString(id = 7008, message = "") - public static SystemMessageId EMPTY_37; + public static SystemMessageId EMPTY_33; @ClientString(id = 7009, message = "") - public static SystemMessageId EMPTY_38; + public static SystemMessageId EMPTY_34; @ClientString(id = 7010, message = "") - public static SystemMessageId EMPTY_39; + public static SystemMessageId EMPTY_35; @ClientString(id = 7011, message = "") - public static SystemMessageId EMPTY_40; + public static SystemMessageId EMPTY_36; @ClientString(id = 7012, message = "") - public static SystemMessageId EMPTY_41; + public static SystemMessageId EMPTY_37; @ClientString(id = 7013, message = "") - public static SystemMessageId EMPTY_42; + public static SystemMessageId EMPTY_38; @ClientString(id = 7014, message = "") - public static SystemMessageId EMPTY_43; + public static SystemMessageId EMPTY_39; @ClientString(id = 7015, message = "") - public static SystemMessageId EMPTY_44; + public static SystemMessageId EMPTY_40; @ClientString(id = 7016, message = "") - public static SystemMessageId EMPTY_45; + public static SystemMessageId EMPTY_41; @ClientString(id = 7017, message = "") - public static SystemMessageId EMPTY_46; + public static SystemMessageId EMPTY_42; @ClientString(id = 7018, message = "") - public static SystemMessageId EMPTY_47; + public static SystemMessageId EMPTY_43; @ClientString(id = 7019, message = "") - public static SystemMessageId EMPTY_48; + public static SystemMessageId EMPTY_44; @ClientString(id = 7020, message = "") - public static SystemMessageId EMPTY_49; + public static SystemMessageId EMPTY_45; @ClientString(id = 7021, message = "") - public static SystemMessageId EMPTY_50; + public static SystemMessageId EMPTY_46; @ClientString(id = 7022, message = "") - public static SystemMessageId EMPTY_51; + public static SystemMessageId EMPTY_47; @ClientString(id = 7023, message = "") - public static SystemMessageId EMPTY_52; + public static SystemMessageId EMPTY_48; @ClientString(id = 7024, message = "") - public static SystemMessageId EMPTY_53; + public static SystemMessageId EMPTY_49; @ClientString(id = 7025, message = "") - public static SystemMessageId EMPTY_54; + public static SystemMessageId EMPTY_50; @ClientString(id = 7026, message = "") - public static SystemMessageId EMPTY_55; + public static SystemMessageId EMPTY_51; @ClientString(id = 7027, message = "") - public static SystemMessageId EMPTY_56; + public static SystemMessageId EMPTY_52; @ClientString(id = 7028, message = "") - public static SystemMessageId EMPTY_57; + public static SystemMessageId EMPTY_53; @ClientString(id = 7029, message = "") - public static SystemMessageId EMPTY_58; + public static SystemMessageId EMPTY_54; @ClientString(id = 7030, message = "") - public static SystemMessageId EMPTY_59; + public static SystemMessageId EMPTY_55; @ClientString(id = 7031, message = "") - public static SystemMessageId EMPTY_60; + public static SystemMessageId EMPTY_56; @ClientString(id = 7032, message = "") - public static SystemMessageId EMPTY_61; + public static SystemMessageId EMPTY_57; @ClientString(id = 7033, message = "") - public static SystemMessageId EMPTY_62; + public static SystemMessageId EMPTY_58; @ClientString(id = 7034, message = "") - public static SystemMessageId EMPTY_63; + public static SystemMessageId EMPTY_59; @ClientString(id = 7035, message = "") - public static SystemMessageId EMPTY_64; + public static SystemMessageId EMPTY_60; @ClientString(id = 7036, message = "") - public static SystemMessageId EMPTY_65; + public static SystemMessageId EMPTY_61; @ClientString(id = 7037, message = "") - public static SystemMessageId EMPTY_66; + public static SystemMessageId EMPTY_62; @ClientString(id = 7038, message = "") - public static SystemMessageId EMPTY_67; + public static SystemMessageId EMPTY_63; @ClientString(id = 7039, message = "") - public static SystemMessageId EMPTY_68; + public static SystemMessageId EMPTY_64; @ClientString(id = 7040, message = "") - public static SystemMessageId EMPTY_69; + public static SystemMessageId EMPTY_65; @ClientString(id = 7041, message = "") - public static SystemMessageId EMPTY_70; + public static SystemMessageId EMPTY_66; @ClientString(id = 7042, message = "") - public static SystemMessageId EMPTY_71; + public static SystemMessageId EMPTY_67; @ClientString(id = 7043, message = "") - public static SystemMessageId EMPTY_72; + public static SystemMessageId EMPTY_68; @ClientString(id = 7044, message = "") - public static SystemMessageId EMPTY_73; + public static SystemMessageId EMPTY_69; @ClientString(id = 7045, message = "") - public static SystemMessageId EMPTY_74; + public static SystemMessageId EMPTY_70; @ClientString(id = 7046, message = "") - public static SystemMessageId EMPTY_75; + public static SystemMessageId EMPTY_71; @ClientString(id = 7047, message = "") - public static SystemMessageId EMPTY_76; + public static SystemMessageId EMPTY_72; @ClientString(id = 7048, message = "") - public static SystemMessageId EMPTY_77; + public static SystemMessageId EMPTY_73; @ClientString(id = 7049, message = "") - public static SystemMessageId EMPTY_78; + public static SystemMessageId EMPTY_74; @ClientString(id = 7050, message = "") - public static SystemMessageId EMPTY_79; + public static SystemMessageId EMPTY_75; @ClientString(id = 7051, message = "") - public static SystemMessageId EMPTY_80; + public static SystemMessageId EMPTY_76; @ClientString(id = 7052, message = "") - public static SystemMessageId EMPTY_81; + public static SystemMessageId EMPTY_77; @ClientString(id = 7053, message = "") - public static SystemMessageId EMPTY_82; + public static SystemMessageId EMPTY_78; @ClientString(id = 7054, message = "") - public static SystemMessageId EMPTY_83; + public static SystemMessageId EMPTY_79; @ClientString(id = 7055, message = "") - public static SystemMessageId EMPTY_84; + public static SystemMessageId EMPTY_80; @ClientString(id = 7056, message = "") - public static SystemMessageId EMPTY_85; + public static SystemMessageId EMPTY_81; @ClientString(id = 7057, message = "") - public static SystemMessageId EMPTY_86; + public static SystemMessageId EMPTY_82; @ClientString(id = 7058, message = "") - public static SystemMessageId EMPTY_87; + public static SystemMessageId EMPTY_83; @ClientString(id = 7059, message = "") - public static SystemMessageId EMPTY_88; + public static SystemMessageId EMPTY_84; @ClientString(id = 7060, message = "") - public static SystemMessageId EMPTY_89; + public static SystemMessageId EMPTY_85; @ClientString(id = 7061, message = "") - public static SystemMessageId EMPTY_90; + public static SystemMessageId EMPTY_86; @ClientString(id = 7062, message = "") - public static SystemMessageId EMPTY_91; + public static SystemMessageId EMPTY_87; @ClientString(id = 7063, message = "") - public static SystemMessageId EMPTY_92; + public static SystemMessageId EMPTY_88; @ClientString(id = 7064, message = "") - public static SystemMessageId EMPTY_93; + public static SystemMessageId EMPTY_89; @ClientString(id = 7065, message = "") - public static SystemMessageId EMPTY_94; + public static SystemMessageId EMPTY_90; @ClientString(id = 7066, message = "") - public static SystemMessageId EMPTY_95; + public static SystemMessageId EMPTY_91; @ClientString(id = 7067, message = "") - public static SystemMessageId EMPTY_96; + public static SystemMessageId EMPTY_92; @ClientString(id = 7068, message = "") - public static SystemMessageId EMPTY_97; + public static SystemMessageId EMPTY_93; @ClientString(id = 7069, message = "") - public static SystemMessageId EMPTY_98; + public static SystemMessageId EMPTY_94; @ClientString(id = 7070, message = "") - public static SystemMessageId EMPTY_99; + public static SystemMessageId EMPTY_95; @ClientString(id = 7071, message = "") - public static SystemMessageId EMPTY_100; + public static SystemMessageId EMPTY_96; @ClientString(id = 7072, message = "") - public static SystemMessageId EMPTY_101; + public static SystemMessageId EMPTY_97; @ClientString(id = 7073, message = "") - public static SystemMessageId EMPTY_102; + public static SystemMessageId EMPTY_98; @ClientString(id = 7074, message = "") - public static SystemMessageId EMPTY_103; + public static SystemMessageId EMPTY_99; @ClientString(id = 7075, message = "") - public static SystemMessageId EMPTY_104; + public static SystemMessageId EMPTY_100; @ClientString(id = 7076, message = "") - public static SystemMessageId EMPTY_105; + public static SystemMessageId EMPTY_101; @ClientString(id = 7077, message = "") - public static SystemMessageId EMPTY_106; + public static SystemMessageId EMPTY_102; @ClientString(id = 7078, message = "") - public static SystemMessageId EMPTY_107; + public static SystemMessageId EMPTY_103; @ClientString(id = 7079, message = "") - public static SystemMessageId EMPTY_108; + public static SystemMessageId EMPTY_104; @ClientString(id = 7080, message = "") - public static SystemMessageId EMPTY_109; + public static SystemMessageId EMPTY_105; @ClientString(id = 7081, message = "") - public static SystemMessageId EMPTY_110; + public static SystemMessageId EMPTY_106; @ClientString(id = 7082, message = "") - public static SystemMessageId EMPTY_111; + public static SystemMessageId EMPTY_107; @ClientString(id = 7083, message = "") - public static SystemMessageId EMPTY_112; + public static SystemMessageId EMPTY_108; @ClientString(id = 7084, message = "") - public static SystemMessageId EMPTY_113; + public static SystemMessageId EMPTY_109; @ClientString(id = 7085, message = "") - public static SystemMessageId EMPTY_114; + public static SystemMessageId EMPTY_110; @ClientString(id = 7086, message = "") - public static SystemMessageId EMPTY_115; + public static SystemMessageId EMPTY_111; @ClientString(id = 7087, message = "") - public static SystemMessageId EMPTY_116; + public static SystemMessageId EMPTY_112; @ClientString(id = 7088, message = "") - public static SystemMessageId EMPTY_117; + public static SystemMessageId EMPTY_113; @ClientString(id = 7089, message = "") - public static SystemMessageId EMPTY_118; + public static SystemMessageId EMPTY_114; @ClientString(id = 7090, message = "") - public static SystemMessageId EMPTY_119; + public static SystemMessageId EMPTY_115; @ClientString(id = 7091, message = "") - public static SystemMessageId EMPTY_120; + public static SystemMessageId EMPTY_116; @ClientString(id = 7092, message = "") - public static SystemMessageId EMPTY_121; + public static SystemMessageId EMPTY_117; @ClientString(id = 7093, message = "") - public static SystemMessageId EMPTY_122; + public static SystemMessageId EMPTY_118; @ClientString(id = 7094, message = "") - public static SystemMessageId EMPTY_123; + public static SystemMessageId EMPTY_119; @ClientString(id = 7095, message = "") - public static SystemMessageId EMPTY_124; + public static SystemMessageId EMPTY_120; @ClientString(id = 7096, message = "") - public static SystemMessageId EMPTY_125; + public static SystemMessageId EMPTY_121; @ClientString(id = 7097, message = "") - public static SystemMessageId EMPTY_126; + public static SystemMessageId EMPTY_122; @ClientString(id = 7098, message = "") - public static SystemMessageId EMPTY_127; + public static SystemMessageId EMPTY_123; @ClientString(id = 7099, message = "") - public static SystemMessageId EMPTY_128; + public static SystemMessageId EMPTY_124; @ClientString(id = 7100, message = "") - public static SystemMessageId EMPTY_129; + public static SystemMessageId EMPTY_125; @ClientString(id = 7101, message = "") - public static SystemMessageId EMPTY_130; + public static SystemMessageId EMPTY_126; @ClientString(id = 7102, message = "") - public static SystemMessageId EMPTY_131; + public static SystemMessageId EMPTY_127; @ClientString(id = 7103, message = "") - public static SystemMessageId EMPTY_132; + public static SystemMessageId EMPTY_128; @ClientString(id = 7104, message = "") - public static SystemMessageId EMPTY_133; + public static SystemMessageId EMPTY_129; @ClientString(id = 7105, message = "") - public static SystemMessageId EMPTY_134; + public static SystemMessageId EMPTY_130; @ClientString(id = 7106, message = "") - public static SystemMessageId EMPTY_135; + public static SystemMessageId EMPTY_131; @ClientString(id = 7107, message = "") - public static SystemMessageId EMPTY_136; + public static SystemMessageId EMPTY_132; @ClientString(id = 7108, message = "") - public static SystemMessageId EMPTY_137; + public static SystemMessageId EMPTY_133; @ClientString(id = 7109, message = "") - public static SystemMessageId EMPTY_138; + public static SystemMessageId EMPTY_134; @ClientString(id = 7110, message = "") - public static SystemMessageId EMPTY_139; + public static SystemMessageId EMPTY_135; @ClientString(id = 7111, message = "") - public static SystemMessageId EMPTY_140; + public static SystemMessageId EMPTY_136; @ClientString(id = 7112, message = "") - public static SystemMessageId EMPTY_141; + public static SystemMessageId EMPTY_137; @ClientString(id = 7113, message = "") - public static SystemMessageId EMPTY_142; + public static SystemMessageId EMPTY_138; @ClientString(id = 7114, message = "") - public static SystemMessageId EMPTY_143; + public static SystemMessageId EMPTY_139; @ClientString(id = 7115, message = "") - public static SystemMessageId EMPTY_144; + public static SystemMessageId EMPTY_140; @ClientString(id = 7116, message = "") - public static SystemMessageId EMPTY_145; + public static SystemMessageId EMPTY_141; @ClientString(id = 7117, message = "") - public static SystemMessageId EMPTY_146; + public static SystemMessageId EMPTY_142; @ClientString(id = 7118, message = "") - public static SystemMessageId EMPTY_147; + public static SystemMessageId EMPTY_143; @ClientString(id = 7119, message = "") - public static SystemMessageId EMPTY_148; + public static SystemMessageId EMPTY_144; @ClientString(id = 7120, message = "") - public static SystemMessageId EMPTY_149; + public static SystemMessageId EMPTY_145; @ClientString(id = 7121, message = "") - public static SystemMessageId EMPTY_150; + public static SystemMessageId EMPTY_146; @ClientString(id = 7122, message = "") - public static SystemMessageId EMPTY_151; + public static SystemMessageId EMPTY_147; @ClientString(id = 7123, message = "") - public static SystemMessageId EMPTY_152; + public static SystemMessageId EMPTY_148; @ClientString(id = 7124, message = "") - public static SystemMessageId EMPTY_153; + public static SystemMessageId EMPTY_149; @ClientString(id = 7125, message = "") - public static SystemMessageId EMPTY_154; + public static SystemMessageId EMPTY_150; @ClientString(id = 7126, message = "") - public static SystemMessageId EMPTY_155; + public static SystemMessageId EMPTY_151; @ClientString(id = 7127, message = "") - public static SystemMessageId EMPTY_156; + public static SystemMessageId EMPTY_152; @ClientString(id = 7128, message = "") - public static SystemMessageId EMPTY_157; + public static SystemMessageId EMPTY_153; @ClientString(id = 7129, message = "") - public static SystemMessageId EMPTY_158; + public static SystemMessageId EMPTY_154; @ClientString(id = 7130, message = "") - public static SystemMessageId EMPTY_159; + public static SystemMessageId EMPTY_155; @ClientString(id = 7140, message = "") - public static SystemMessageId EMPTY_160; + public static SystemMessageId EMPTY_156; @ClientString(id = 7150, message = "") - public static SystemMessageId EMPTY_161; + public static SystemMessageId EMPTY_157; @ClientString(id = 7151, message = "") - public static SystemMessageId EMPTY_162; + public static SystemMessageId EMPTY_158; @ClientString(id = 7152, message = "") - public static SystemMessageId EMPTY_163; + public static SystemMessageId EMPTY_159; @ClientString(id = 7153, message = "") - public static SystemMessageId EMPTY_164; + public static SystemMessageId EMPTY_160; @ClientString(id = 7154, message = "") - public static SystemMessageId EMPTY_165; + public static SystemMessageId EMPTY_161; @ClientString(id = 7155, message = "") - public static SystemMessageId EMPTY_166; + public static SystemMessageId EMPTY_162; @ClientString(id = 7156, message = "") - public static SystemMessageId EMPTY_167; + public static SystemMessageId EMPTY_163; @ClientString(id = 7157, message = "") - public static SystemMessageId EMPTY_168; + public static SystemMessageId EMPTY_164; @ClientString(id = 7158, message = "") - public static SystemMessageId EMPTY_169; + public static SystemMessageId EMPTY_165; @ClientString(id = 7159, message = "") - public static SystemMessageId EMPTY_170; + public static SystemMessageId EMPTY_166; @ClientString(id = 7160, message = "") - public static SystemMessageId EMPTY_171; + public static SystemMessageId EMPTY_167; @ClientString(id = 7161, message = "") - public static SystemMessageId EMPTY_172; + public static SystemMessageId EMPTY_168; @ClientString(id = 7162, message = "") - public static SystemMessageId EMPTY_173; + public static SystemMessageId EMPTY_169; @ClientString(id = 7163, message = "") - public static SystemMessageId EMPTY_174; + public static SystemMessageId EMPTY_170; @ClientString(id = 7164, message = "") - public static SystemMessageId EMPTY_175; + public static SystemMessageId EMPTY_171; @ClientString(id = 7165, message = "") - public static SystemMessageId EMPTY_176; + public static SystemMessageId EMPTY_172; @ClientString(id = 7166, message = "") - public static SystemMessageId EMPTY_177; + public static SystemMessageId EMPTY_173; @ClientString(id = 7167, message = "") - public static SystemMessageId EMPTY_178; + public static SystemMessageId EMPTY_174; @ClientString(id = 7168, message = "") - public static SystemMessageId EMPTY_179; + public static SystemMessageId EMPTY_175; @ClientString(id = 7169, message = "") - public static SystemMessageId EMPTY_180; + public static SystemMessageId EMPTY_176; @ClientString(id = 7170, message = "") - public static SystemMessageId EMPTY_181; + public static SystemMessageId EMPTY_177; @ClientString(id = 7171, message = "") - public static SystemMessageId EMPTY_182; + public static SystemMessageId EMPTY_178; @ClientString(id = 7172, message = "") - public static SystemMessageId EMPTY_183; + public static SystemMessageId EMPTY_179; @ClientString(id = 7173, message = "") - public static SystemMessageId EMPTY_184; + public static SystemMessageId EMPTY_180; @ClientString(id = 7174, message = "") - public static SystemMessageId EMPTY_185; + public static SystemMessageId EMPTY_181; @ClientString(id = 7175, message = "") - public static SystemMessageId EMPTY_186; + public static SystemMessageId EMPTY_182; @ClientString(id = 7176, message = "") - public static SystemMessageId EMPTY_187; + public static SystemMessageId EMPTY_183; @ClientString(id = 7177, message = "") - public static SystemMessageId EMPTY_188; + public static SystemMessageId EMPTY_184; @ClientString(id = 7178, message = "") - public static SystemMessageId EMPTY_189; + public static SystemMessageId EMPTY_185; @ClientString(id = 7179, message = "") - public static SystemMessageId EMPTY_190; + public static SystemMessageId EMPTY_186; @ClientString(id = 7180, message = "") - public static SystemMessageId EMPTY_191; + public static SystemMessageId EMPTY_187; @ClientString(id = 7181, message = "") - public static SystemMessageId EMPTY_192; + public static SystemMessageId EMPTY_188; @ClientString(id = 7182, message = "") - public static SystemMessageId EMPTY_193; + public static SystemMessageId EMPTY_189; @ClientString(id = 7183, message = "") - public static SystemMessageId EMPTY_194; + public static SystemMessageId EMPTY_190; @ClientString(id = 7184, message = "") - public static SystemMessageId EMPTY_195; + public static SystemMessageId EMPTY_191; @ClientString(id = 7185, message = "") - public static SystemMessageId EMPTY_196; + public static SystemMessageId EMPTY_192; @ClientString(id = 7186, message = "") - public static SystemMessageId EMPTY_197; + public static SystemMessageId EMPTY_193; @ClientString(id = 7187, message = "") - public static SystemMessageId EMPTY_198; + public static SystemMessageId EMPTY_194; @ClientString(id = 7188, message = "") - public static SystemMessageId EMPTY_199; + public static SystemMessageId EMPTY_195; @ClientString(id = 7189, message = "") - public static SystemMessageId EMPTY_200; + public static SystemMessageId EMPTY_196; @ClientString(id = 7190, message = "") - public static SystemMessageId EMPTY_201; + public static SystemMessageId EMPTY_197; @ClientString(id = 7191, message = "") - public static SystemMessageId EMPTY_202; + public static SystemMessageId EMPTY_198; @ClientString(id = 7192, message = "") - public static SystemMessageId EMPTY_203; + public static SystemMessageId EMPTY_199; @ClientString(id = 7193, message = "") - public static SystemMessageId EMPTY_204; + public static SystemMessageId EMPTY_200; @ClientString(id = 7194, message = "") - public static SystemMessageId EMPTY_205; + public static SystemMessageId EMPTY_201; @ClientString(id = 7195, message = "") - public static SystemMessageId EMPTY_206; + public static SystemMessageId EMPTY_202; @ClientString(id = 7196, message = "") - public static SystemMessageId EMPTY_207; + public static SystemMessageId EMPTY_203; @ClientString(id = 7197, message = "") - public static SystemMessageId EMPTY_208; + public static SystemMessageId EMPTY_204; @ClientString(id = 7198, message = "") - public static SystemMessageId EMPTY_209; + public static SystemMessageId EMPTY_205; @ClientString(id = 7199, message = "") - public static SystemMessageId EMPTY_210; + public static SystemMessageId EMPTY_206; @ClientString(id = 7200, message = "") - public static SystemMessageId EMPTY_211; + public static SystemMessageId EMPTY_207; @ClientString(id = 7201, message = "") - public static SystemMessageId EMPTY_212; + public static SystemMessageId EMPTY_208; @ClientString(id = 7202, message = "") - public static SystemMessageId EMPTY_213; + public static SystemMessageId EMPTY_209; @ClientString(id = 7203, message = "") - public static SystemMessageId EMPTY_214; + public static SystemMessageId EMPTY_210; @ClientString(id = 7204, message = "") - public static SystemMessageId EMPTY_215; + public static SystemMessageId EMPTY_211; @ClientString(id = 7205, message = "") - public static SystemMessageId EMPTY_216; + public static SystemMessageId EMPTY_212; @ClientString(id = 7206, message = "") - public static SystemMessageId EMPTY_217; + public static SystemMessageId EMPTY_213; @ClientString(id = 7207, message = "") - public static SystemMessageId EMPTY_218; + public static SystemMessageId EMPTY_214; @ClientString(id = 7208, message = "") - public static SystemMessageId EMPTY_219; + public static SystemMessageId EMPTY_215; @ClientString(id = 7209, message = "") - public static SystemMessageId EMPTY_220; + public static SystemMessageId EMPTY_216; @ClientString(id = 7210, message = "") - public static SystemMessageId EMPTY_221; + public static SystemMessageId EMPTY_217; @ClientString(id = 7211, message = "") - public static SystemMessageId EMPTY_222; + public static SystemMessageId EMPTY_218; @ClientString(id = 7212, message = "") - public static SystemMessageId EMPTY_223; + public static SystemMessageId EMPTY_219; @ClientString(id = 7213, message = "") - public static SystemMessageId EMPTY_224; + public static SystemMessageId EMPTY_220; @ClientString(id = 7214, message = "") - public static SystemMessageId EMPTY_225; + public static SystemMessageId EMPTY_221; @ClientString(id = 7215, message = "") - public static SystemMessageId EMPTY_226; + public static SystemMessageId EMPTY_222; @ClientString(id = 7216, message = "") - public static SystemMessageId EMPTY_227; + public static SystemMessageId EMPTY_223; @ClientString(id = 7217, message = "") - public static SystemMessageId EMPTY_228; + public static SystemMessageId EMPTY_224; @ClientString(id = 7218, message = "") - public static SystemMessageId EMPTY_229; + public static SystemMessageId EMPTY_225; @ClientString(id = 7219, message = "") - public static SystemMessageId EMPTY_230; + public static SystemMessageId EMPTY_226; @ClientString(id = 7220, message = "") - public static SystemMessageId EMPTY_231; + public static SystemMessageId EMPTY_227; @ClientString(id = 7221, message = "") - public static SystemMessageId EMPTY_232; + public static SystemMessageId EMPTY_228; @ClientString(id = 7222, message = "") - public static SystemMessageId EMPTY_233; + public static SystemMessageId EMPTY_229; @ClientString(id = 7223, message = "") - public static SystemMessageId EMPTY_234; + public static SystemMessageId EMPTY_230; @ClientString(id = 7224, message = "") - public static SystemMessageId EMPTY_235; + public static SystemMessageId EMPTY_231; @ClientString(id = 7225, message = "") - public static SystemMessageId EMPTY_236; + public static SystemMessageId EMPTY_232; @ClientString(id = 7226, message = "") - public static SystemMessageId EMPTY_237; + public static SystemMessageId EMPTY_233; @ClientString(id = 7227, message = "") - public static SystemMessageId EMPTY_238; + public static SystemMessageId EMPTY_234; @ClientString(id = 7228, message = "") - public static SystemMessageId EMPTY_239; + public static SystemMessageId EMPTY_235; @ClientString(id = 7229, message = "") - public static SystemMessageId EMPTY_240; + public static SystemMessageId EMPTY_236; @ClientString(id = 7230, message = "") - public static SystemMessageId EMPTY_241; + public static SystemMessageId EMPTY_237; @ClientString(id = 7231, message = "") - public static SystemMessageId EMPTY_242; + public static SystemMessageId EMPTY_238; @ClientString(id = 7232, message = "") - public static SystemMessageId EMPTY_243; + public static SystemMessageId EMPTY_239; @ClientString(id = 7233, message = "") - public static SystemMessageId EMPTY_244; + public static SystemMessageId EMPTY_240; @ClientString(id = 7234, message = "") - public static SystemMessageId EMPTY_245; + public static SystemMessageId EMPTY_241; @ClientString(id = 7235, message = "") - public static SystemMessageId EMPTY_246; + public static SystemMessageId EMPTY_242; @ClientString(id = 7236, message = "") - public static SystemMessageId EMPTY_247; + public static SystemMessageId EMPTY_243; @ClientString(id = 7237, message = "") - public static SystemMessageId EMPTY_248; + public static SystemMessageId EMPTY_244; @ClientString(id = 7238, message = "") - public static SystemMessageId EMPTY_249; + public static SystemMessageId EMPTY_245; @ClientString(id = 7239, message = "") - public static SystemMessageId EMPTY_250; + public static SystemMessageId EMPTY_246; @ClientString(id = 7240, message = "") - public static SystemMessageId EMPTY_251; + public static SystemMessageId EMPTY_247; @ClientString(id = 7241, message = "") - public static SystemMessageId EMPTY_252; + public static SystemMessageId EMPTY_248; @ClientString(id = 7242, message = "") - public static SystemMessageId EMPTY_253; + public static SystemMessageId EMPTY_249; @ClientString(id = 7243, message = "") - public static SystemMessageId EMPTY_254; + public static SystemMessageId EMPTY_250; @ClientString(id = 7244, message = "") - public static SystemMessageId EMPTY_255; + public static SystemMessageId EMPTY_251; @ClientString(id = 7245, message = "") - public static SystemMessageId EMPTY_256; + public static SystemMessageId EMPTY_252; @ClientString(id = 7246, message = "") - public static SystemMessageId EMPTY_257; + public static SystemMessageId EMPTY_253; @ClientString(id = 7247, message = "") - public static SystemMessageId EMPTY_258; + public static SystemMessageId EMPTY_254; @ClientString(id = 7248, message = "") - public static SystemMessageId EMPTY_259; + public static SystemMessageId EMPTY_255; @ClientString(id = 7249, message = "") - public static SystemMessageId EMPTY_260; + public static SystemMessageId EMPTY_256; @ClientString(id = 7250, message = "") - public static SystemMessageId EMPTY_261; + public static SystemMessageId EMPTY_257; @ClientString(id = 7251, message = "") - public static SystemMessageId EMPTY_262; + public static SystemMessageId EMPTY_258; @ClientString(id = 7252, message = "") - public static SystemMessageId EMPTY_263; + public static SystemMessageId EMPTY_259; @ClientString(id = 7253, message = "") - public static SystemMessageId EMPTY_264; + public static SystemMessageId EMPTY_260; @ClientString(id = 7254, message = "") - public static SystemMessageId EMPTY_265; + public static SystemMessageId EMPTY_261; @ClientString(id = 7255, message = "") - public static SystemMessageId EMPTY_266; + public static SystemMessageId EMPTY_262; @ClientString(id = 7256, message = "") - public static SystemMessageId EMPTY_267; + public static SystemMessageId EMPTY_263; @ClientString(id = 7257, message = "") - public static SystemMessageId EMPTY_268; + public static SystemMessageId EMPTY_264; @ClientString(id = 7258, message = "") - public static SystemMessageId EMPTY_269; + public static SystemMessageId EMPTY_265; @ClientString(id = 7259, message = "") - public static SystemMessageId EMPTY_270; + public static SystemMessageId EMPTY_266; @ClientString(id = 7260, message = "") - public static SystemMessageId EMPTY_271; + public static SystemMessageId EMPTY_267; @ClientString(id = 7261, message = "") - public static SystemMessageId EMPTY_272; + public static SystemMessageId EMPTY_268; @ClientString(id = 7262, message = "") - public static SystemMessageId EMPTY_273; + public static SystemMessageId EMPTY_269; @ClientString(id = 7263, message = "") - public static SystemMessageId EMPTY_274; + public static SystemMessageId EMPTY_270; @ClientString(id = 7264, message = "") - public static SystemMessageId EMPTY_275; + public static SystemMessageId EMPTY_271; @ClientString(id = 7265, message = "") - public static SystemMessageId EMPTY_276; + public static SystemMessageId EMPTY_272; @ClientString(id = 7266, message = "") - public static SystemMessageId EMPTY_277; + public static SystemMessageId EMPTY_273; @ClientString(id = 7267, message = "") - public static SystemMessageId EMPTY_278; + public static SystemMessageId EMPTY_274; @ClientString(id = 7268, message = "") - public static SystemMessageId EMPTY_279; + public static SystemMessageId EMPTY_275; @ClientString(id = 7269, message = "") - public static SystemMessageId EMPTY_280; + public static SystemMessageId EMPTY_276; @ClientString(id = 7270, message = "") - public static SystemMessageId EMPTY_281; + public static SystemMessageId EMPTY_277; @ClientString(id = 7271, message = "") - public static SystemMessageId EMPTY_282; + public static SystemMessageId EMPTY_278; @ClientString(id = 7272, message = "") - public static SystemMessageId EMPTY_283; + public static SystemMessageId EMPTY_279; @ClientString(id = 7273, message = "") - public static SystemMessageId EMPTY_284; + public static SystemMessageId EMPTY_280; @ClientString(id = 7274, message = "") - public static SystemMessageId EMPTY_285; + public static SystemMessageId EMPTY_281; @ClientString(id = 7275, message = "") - public static SystemMessageId EMPTY_286; + public static SystemMessageId EMPTY_282; @ClientString(id = 7276, message = "") - public static SystemMessageId EMPTY_287; + public static SystemMessageId EMPTY_283; @ClientString(id = 7277, message = "") - public static SystemMessageId EMPTY_288; + public static SystemMessageId EMPTY_284; @ClientString(id = 7278, message = "") - public static SystemMessageId EMPTY_289; + public static SystemMessageId EMPTY_285; @ClientString(id = 7279, message = "") - public static SystemMessageId EMPTY_290; + public static SystemMessageId EMPTY_286; @ClientString(id = 7280, message = "") - public static SystemMessageId EMPTY_291; + public static SystemMessageId EMPTY_287; @ClientString(id = 7281, message = "") - public static SystemMessageId EMPTY_292; + public static SystemMessageId EMPTY_288; @ClientString(id = 7282, message = "") - public static SystemMessageId EMPTY_293; + public static SystemMessageId EMPTY_289; @ClientString(id = 7283, message = "") - public static SystemMessageId EMPTY_294; + public static SystemMessageId EMPTY_290; @ClientString(id = 7284, message = "") - public static SystemMessageId EMPTY_295; + public static SystemMessageId EMPTY_291; @ClientString(id = 7285, message = "") - public static SystemMessageId EMPTY_296; + public static SystemMessageId EMPTY_292; @ClientString(id = 7286, message = "") - public static SystemMessageId EMPTY_297; + public static SystemMessageId EMPTY_293; @ClientString(id = 7287, message = "") - public static SystemMessageId EMPTY_298; + public static SystemMessageId EMPTY_294; @ClientString(id = 7288, message = "") - public static SystemMessageId EMPTY_299; + public static SystemMessageId EMPTY_295; @ClientString(id = 7289, message = "") - public static SystemMessageId EMPTY_300; + public static SystemMessageId EMPTY_296; @ClientString(id = 7290, message = "") - public static SystemMessageId EMPTY_301; + public static SystemMessageId EMPTY_297; @ClientString(id = 7291, message = "") - public static SystemMessageId EMPTY_302; + public static SystemMessageId EMPTY_298; @ClientString(id = 7292, message = "") - public static SystemMessageId EMPTY_303; + public static SystemMessageId EMPTY_299; @ClientString(id = 7293, message = "") - public static SystemMessageId EMPTY_304; + public static SystemMessageId EMPTY_300; @ClientString(id = 7294, message = "") - public static SystemMessageId EMPTY_305; + public static SystemMessageId EMPTY_301; @ClientString(id = 7295, message = "") - public static SystemMessageId EMPTY_306; + public static SystemMessageId EMPTY_302; @ClientString(id = 7296, message = "") - public static SystemMessageId EMPTY_307; + public static SystemMessageId EMPTY_303; @ClientString(id = 7297, message = "") - public static SystemMessageId EMPTY_308; + public static SystemMessageId EMPTY_304; @ClientString(id = 7298, message = "") - public static SystemMessageId EMPTY_309; + public static SystemMessageId EMPTY_305; @ClientString(id = 7299, message = "") - public static SystemMessageId EMPTY_310; + public static SystemMessageId EMPTY_306; @ClientString(id = 7300, message = "") - public static SystemMessageId EMPTY_311; + public static SystemMessageId EMPTY_307; @ClientString(id = 7301, message = "") - public static SystemMessageId EMPTY_312; + public static SystemMessageId EMPTY_308; @ClientString(id = 7302, message = "") - public static SystemMessageId EMPTY_313; + public static SystemMessageId EMPTY_309; @ClientString(id = 7303, message = "") - public static SystemMessageId EMPTY_314; + public static SystemMessageId EMPTY_310; @ClientString(id = 7304, message = "") - public static SystemMessageId EMPTY_315; + public static SystemMessageId EMPTY_311; @ClientString(id = 7305, message = "") - public static SystemMessageId EMPTY_316; + public static SystemMessageId EMPTY_312; @ClientString(id = 7306, message = "") - public static SystemMessageId EMPTY_317; + public static SystemMessageId EMPTY_313; @ClientString(id = 7307, message = "") - public static SystemMessageId EMPTY_318; + public static SystemMessageId EMPTY_314; @ClientString(id = 7308, message = "") - public static SystemMessageId EMPTY_319; + public static SystemMessageId EMPTY_315; @ClientString(id = 7309, message = "") - public static SystemMessageId EMPTY_320; + public static SystemMessageId EMPTY_316; @ClientString(id = 7310, message = "") - public static SystemMessageId EMPTY_321; + public static SystemMessageId EMPTY_317; @ClientString(id = 7311, message = "") - public static SystemMessageId EMPTY_322; + public static SystemMessageId EMPTY_318; @ClientString(id = 7312, message = "") - public static SystemMessageId EMPTY_323; + public static SystemMessageId EMPTY_319; @ClientString(id = 7313, message = "") - public static SystemMessageId EMPTY_324; + public static SystemMessageId EMPTY_320; @ClientString(id = 7314, message = "") - public static SystemMessageId EMPTY_325; + public static SystemMessageId EMPTY_321; @ClientString(id = 7315, message = "") - public static SystemMessageId EMPTY_326; + public static SystemMessageId EMPTY_322; @ClientString(id = 7316, message = "") - public static SystemMessageId EMPTY_327; + public static SystemMessageId EMPTY_323; @ClientString(id = 7317, message = "") - public static SystemMessageId EMPTY_328; + public static SystemMessageId EMPTY_324; @ClientString(id = 7318, message = "") - public static SystemMessageId EMPTY_329; + public static SystemMessageId EMPTY_325; @ClientString(id = 7319, message = "") - public static SystemMessageId EMPTY_330; + public static SystemMessageId EMPTY_326; @ClientString(id = 7320, message = "") - public static SystemMessageId EMPTY_331; + public static SystemMessageId EMPTY_327; @ClientString(id = 7321, message = "") - public static SystemMessageId EMPTY_332; + public static SystemMessageId EMPTY_328; @ClientString(id = 7322, message = "") - public static SystemMessageId EMPTY_333; + public static SystemMessageId EMPTY_329; @ClientString(id = 7323, message = "") - public static SystemMessageId EMPTY_334; + public static SystemMessageId EMPTY_330; @ClientString(id = 7324, message = "") - public static SystemMessageId EMPTY_335; + public static SystemMessageId EMPTY_331; @ClientString(id = 7325, message = "") - public static SystemMessageId EMPTY_336; + public static SystemMessageId EMPTY_332; @ClientString(id = 7326, message = "") - public static SystemMessageId EMPTY_337; + public static SystemMessageId EMPTY_333; @ClientString(id = 7327, message = "") - public static SystemMessageId EMPTY_338; + public static SystemMessageId EMPTY_334; @ClientString(id = 7328, message = "") - public static SystemMessageId EMPTY_339; + public static SystemMessageId EMPTY_335; @ClientString(id = 7329, message = "") - public static SystemMessageId EMPTY_340; + public static SystemMessageId EMPTY_336; @ClientString(id = 7330, message = "") - public static SystemMessageId EMPTY_341; + public static SystemMessageId EMPTY_337; @ClientString(id = 7331, message = "") - public static SystemMessageId EMPTY_342; + public static SystemMessageId EMPTY_338; @ClientString(id = 7332, message = "") - public static SystemMessageId EMPTY_343; + public static SystemMessageId EMPTY_339; @ClientString(id = 7333, message = "") - public static SystemMessageId EMPTY_344; + public static SystemMessageId EMPTY_340; @ClientString(id = 7334, message = "") - public static SystemMessageId EMPTY_345; + public static SystemMessageId EMPTY_341; @ClientString(id = 7335, message = "") - public static SystemMessageId EMPTY_346; + public static SystemMessageId EMPTY_342; @ClientString(id = 7336, message = "") - public static SystemMessageId EMPTY_347; + public static SystemMessageId EMPTY_343; @ClientString(id = 7337, message = "") - public static SystemMessageId EMPTY_348; + public static SystemMessageId EMPTY_344; @ClientString(id = 7338, message = "") - public static SystemMessageId EMPTY_349; + public static SystemMessageId EMPTY_345; @ClientString(id = 7339, message = "") - public static SystemMessageId EMPTY_350; + public static SystemMessageId EMPTY_346; @ClientString(id = 7340, message = "") - public static SystemMessageId EMPTY_351; + public static SystemMessageId EMPTY_347; @ClientString(id = 7341, message = "") - public static SystemMessageId EMPTY_352; + public static SystemMessageId EMPTY_348; @ClientString(id = 7342, message = "") - public static SystemMessageId EMPTY_353; + public static SystemMessageId EMPTY_349; @ClientString(id = 7343, message = "") - public static SystemMessageId EMPTY_354; + public static SystemMessageId EMPTY_350; @ClientString(id = 7344, message = "") - public static SystemMessageId EMPTY_355; + public static SystemMessageId EMPTY_351; @ClientString(id = 7345, message = "") - public static SystemMessageId EMPTY_356; + public static SystemMessageId EMPTY_352; @ClientString(id = 7346, message = "") - public static SystemMessageId EMPTY_357; + public static SystemMessageId EMPTY_353; @ClientString(id = 7347, message = "") - public static SystemMessageId EMPTY_358; + public static SystemMessageId EMPTY_354; @ClientString(id = 7348, message = "") - public static SystemMessageId EMPTY_359; + public static SystemMessageId EMPTY_355; @ClientString(id = 7349, message = "") - public static SystemMessageId EMPTY_360; + public static SystemMessageId EMPTY_356; @ClientString(id = 7350, message = "") - public static SystemMessageId EMPTY_361; + public static SystemMessageId EMPTY_357; @ClientString(id = 7351, message = "") - public static SystemMessageId EMPTY_362; + public static SystemMessageId EMPTY_358; @ClientString(id = 7352, message = "") - public static SystemMessageId EMPTY_363; + public static SystemMessageId EMPTY_359; @ClientString(id = 7353, message = "") - public static SystemMessageId EMPTY_364; + public static SystemMessageId EMPTY_360; @ClientString(id = 7354, message = "") - public static SystemMessageId EMPTY_365; + public static SystemMessageId EMPTY_361; @ClientString(id = 7355, message = "") - public static SystemMessageId EMPTY_366; + public static SystemMessageId EMPTY_362; @ClientString(id = 7356, message = "") - public static SystemMessageId EMPTY_367; + public static SystemMessageId EMPTY_363; @ClientString(id = 7357, message = "") - public static SystemMessageId EMPTY_368; + public static SystemMessageId EMPTY_364; @ClientString(id = 7358, message = "") - public static SystemMessageId EMPTY_369; + public static SystemMessageId EMPTY_365; @ClientString(id = 7359, message = "") - public static SystemMessageId EMPTY_370; + public static SystemMessageId EMPTY_366; @ClientString(id = 7360, message = "") - public static SystemMessageId EMPTY_371; + public static SystemMessageId EMPTY_367; @ClientString(id = 7361, message = "") - public static SystemMessageId EMPTY_372; + public static SystemMessageId EMPTY_368; @ClientString(id = 7362, message = "") - public static SystemMessageId EMPTY_373; + public static SystemMessageId EMPTY_369; @ClientString(id = 7363, message = "") - public static SystemMessageId EMPTY_374; + public static SystemMessageId EMPTY_370; @ClientString(id = 7364, message = "") - public static SystemMessageId EMPTY_375; + public static SystemMessageId EMPTY_371; @ClientString(id = 7365, message = "") - public static SystemMessageId EMPTY_376; + public static SystemMessageId EMPTY_372; @ClientString(id = 7366, message = "") - public static SystemMessageId EMPTY_377; + public static SystemMessageId EMPTY_373; @ClientString(id = 7367, message = "") - public static SystemMessageId EMPTY_378; + public static SystemMessageId EMPTY_374; @ClientString(id = 7368, message = "") - public static SystemMessageId EMPTY_379; + public static SystemMessageId EMPTY_375; @ClientString(id = 7369, message = "") - public static SystemMessageId EMPTY_380; + public static SystemMessageId EMPTY_376; @ClientString(id = 7370, message = "") - public static SystemMessageId EMPTY_381; + public static SystemMessageId EMPTY_377; @ClientString(id = 7371, message = "") - public static SystemMessageId EMPTY_382; + public static SystemMessageId EMPTY_378; @ClientString(id = 7372, message = "") - public static SystemMessageId EMPTY_383; + public static SystemMessageId EMPTY_379; @ClientString(id = 7373, message = "") - public static SystemMessageId EMPTY_384; + public static SystemMessageId EMPTY_380; @ClientString(id = 7374, message = "") - public static SystemMessageId EMPTY_385; + public static SystemMessageId EMPTY_381; @ClientString(id = 7375, message = "") - public static SystemMessageId EMPTY_386; + public static SystemMessageId EMPTY_382; @ClientString(id = 7376, message = "") - public static SystemMessageId EMPTY_387; + public static SystemMessageId EMPTY_383; @ClientString(id = 7377, message = "") - public static SystemMessageId EMPTY_388; + public static SystemMessageId EMPTY_384; @ClientString(id = 7378, message = "") - public static SystemMessageId EMPTY_389; + public static SystemMessageId EMPTY_385; @ClientString(id = 7379, message = "") - public static SystemMessageId EMPTY_390; + public static SystemMessageId EMPTY_386; @ClientString(id = 7380, message = "") - public static SystemMessageId EMPTY_391; + public static SystemMessageId EMPTY_387; @ClientString(id = 7381, message = "") - public static SystemMessageId EMPTY_392; + public static SystemMessageId EMPTY_388; @ClientString(id = 7382, message = "") - public static SystemMessageId EMPTY_393; + public static SystemMessageId EMPTY_389; @ClientString(id = 7383, message = "") - public static SystemMessageId EMPTY_394; + public static SystemMessageId EMPTY_390; @ClientString(id = 7384, message = "") - public static SystemMessageId EMPTY_395; + public static SystemMessageId EMPTY_391; @ClientString(id = 7385, message = "") - public static SystemMessageId EMPTY_396; + public static SystemMessageId EMPTY_392; @ClientString(id = 7386, message = "") - public static SystemMessageId EMPTY_397; + public static SystemMessageId EMPTY_393; @ClientString(id = 7387, message = "") - public static SystemMessageId EMPTY_398; + public static SystemMessageId EMPTY_394; @ClientString(id = 7388, message = "") - public static SystemMessageId EMPTY_399; + public static SystemMessageId EMPTY_395; @ClientString(id = 7389, message = "") - public static SystemMessageId EMPTY_400; + public static SystemMessageId EMPTY_396; @ClientString(id = 7390, message = "") - public static SystemMessageId EMPTY_401; + public static SystemMessageId EMPTY_397; @ClientString(id = 7391, message = "") - public static SystemMessageId EMPTY_402; + public static SystemMessageId EMPTY_398; @ClientString(id = 7392, message = "") - public static SystemMessageId EMPTY_403; + public static SystemMessageId EMPTY_399; @ClientString(id = 7393, message = "") - public static SystemMessageId EMPTY_404; + public static SystemMessageId EMPTY_400; @ClientString(id = 7394, message = "") - public static SystemMessageId EMPTY_405; + public static SystemMessageId EMPTY_401; @ClientString(id = 7395, message = "") - public static SystemMessageId EMPTY_406; + public static SystemMessageId EMPTY_402; @ClientString(id = 7396, message = "") - public static SystemMessageId EMPTY_407; + public static SystemMessageId EMPTY_403; @ClientString(id = 7397, message = "") - public static SystemMessageId EMPTY_408; + public static SystemMessageId EMPTY_404; @ClientString(id = 7398, message = "") - public static SystemMessageId EMPTY_409; + public static SystemMessageId EMPTY_405; @ClientString(id = 7399, message = "") - public static SystemMessageId EMPTY_410; + public static SystemMessageId EMPTY_406; @ClientString(id = 7400, message = "") - public static SystemMessageId EMPTY_411; + public static SystemMessageId EMPTY_407; @ClientString(id = 7401, message = "") - public static SystemMessageId EMPTY_412; + public static SystemMessageId EMPTY_408; @ClientString(id = 7402, message = "") - public static SystemMessageId EMPTY_413; + public static SystemMessageId EMPTY_409; @ClientString(id = 7403, message = "") - public static SystemMessageId EMPTY_414; + public static SystemMessageId EMPTY_410; @ClientString(id = 7404, message = "") - public static SystemMessageId EMPTY_415; + public static SystemMessageId EMPTY_411; @ClientString(id = 7405, message = "") - public static SystemMessageId EMPTY_416; + public static SystemMessageId EMPTY_412; @ClientString(id = 7406, message = "") - public static SystemMessageId EMPTY_417; + public static SystemMessageId EMPTY_413; @ClientString(id = 7407, message = "") - public static SystemMessageId EMPTY_418; + public static SystemMessageId EMPTY_414; @ClientString(id = 7408, message = "") - public static SystemMessageId EMPTY_419; + public static SystemMessageId EMPTY_415; @ClientString(id = 7409, message = "") - public static SystemMessageId EMPTY_420; + public static SystemMessageId EMPTY_416; @ClientString(id = 7410, message = "") - public static SystemMessageId EMPTY_421; + public static SystemMessageId EMPTY_417; @ClientString(id = 7411, message = "") - public static SystemMessageId EMPTY_422; + public static SystemMessageId EMPTY_418; @ClientString(id = 7412, message = "") - public static SystemMessageId EMPTY_423; + public static SystemMessageId EMPTY_419; @ClientString(id = 7413, message = "") - public static SystemMessageId EMPTY_424; + public static SystemMessageId EMPTY_420; @ClientString(id = 7414, message = "") - public static SystemMessageId EMPTY_425; + public static SystemMessageId EMPTY_421; @ClientString(id = 7415, message = "") - public static SystemMessageId EMPTY_426; + public static SystemMessageId EMPTY_422; @ClientString(id = 7416, message = "") - public static SystemMessageId EMPTY_427; + public static SystemMessageId EMPTY_423; @ClientString(id = 7417, message = "") - public static SystemMessageId EMPTY_428; + public static SystemMessageId EMPTY_424; @ClientString(id = 7418, message = "") - public static SystemMessageId EMPTY_429; + public static SystemMessageId EMPTY_425; @ClientString(id = 7419, message = "") - public static SystemMessageId EMPTY_430; + public static SystemMessageId EMPTY_426; @ClientString(id = 7420, message = "") - public static SystemMessageId EMPTY_431; + public static SystemMessageId EMPTY_427; @ClientString(id = 7421, message = "") - public static SystemMessageId EMPTY_432; + public static SystemMessageId EMPTY_428; @ClientString(id = 7422, message = "") - public static SystemMessageId EMPTY_433; + public static SystemMessageId EMPTY_429; @ClientString(id = 7423, message = "") - public static SystemMessageId EMPTY_434; + public static SystemMessageId EMPTY_430; @ClientString(id = 7424, message = "") - public static SystemMessageId EMPTY_435; + public static SystemMessageId EMPTY_431; @ClientString(id = 7425, message = "") - public static SystemMessageId EMPTY_436; + public static SystemMessageId EMPTY_432; @ClientString(id = 7426, message = "") - public static SystemMessageId EMPTY_437; + public static SystemMessageId EMPTY_433; @ClientString(id = 7427, message = "") - public static SystemMessageId EMPTY_438; + public static SystemMessageId EMPTY_434; @ClientString(id = 7428, message = "") - public static SystemMessageId EMPTY_439; + public static SystemMessageId EMPTY_435; @ClientString(id = 7429, message = "") - public static SystemMessageId EMPTY_440; + public static SystemMessageId EMPTY_436; @ClientString(id = 7430, message = "") - public static SystemMessageId EMPTY_441; + public static SystemMessageId EMPTY_437; @ClientString(id = 7431, message = "") - public static SystemMessageId EMPTY_442; + public static SystemMessageId EMPTY_438; @ClientString(id = 7432, message = "") - public static SystemMessageId EMPTY_443; + public static SystemMessageId EMPTY_439; @ClientString(id = 7433, message = "") - public static SystemMessageId EMPTY_444; + public static SystemMessageId EMPTY_440; @ClientString(id = 7434, message = "") - public static SystemMessageId EMPTY_445; + public static SystemMessageId EMPTY_441; @ClientString(id = 7435, message = "") - public static SystemMessageId EMPTY_446; + public static SystemMessageId EMPTY_442; @ClientString(id = 7436, message = "") - public static SystemMessageId EMPTY_447; + public static SystemMessageId EMPTY_443; @ClientString(id = 7437, message = "") - public static SystemMessageId EMPTY_448; + public static SystemMessageId EMPTY_444; @ClientString(id = 7438, message = "") - public static SystemMessageId EMPTY_449; + public static SystemMessageId EMPTY_445; @ClientString(id = 7439, message = "") - public static SystemMessageId EMPTY_450; + public static SystemMessageId EMPTY_446; @ClientString(id = 7440, message = "") - public static SystemMessageId EMPTY_451; + public static SystemMessageId EMPTY_447; @ClientString(id = 7441, message = "") - public static SystemMessageId EMPTY_452; + public static SystemMessageId EMPTY_448; @ClientString(id = 7442, message = "") - public static SystemMessageId EMPTY_453; + public static SystemMessageId EMPTY_449; @ClientString(id = 7443, message = "") - public static SystemMessageId EMPTY_454; + public static SystemMessageId EMPTY_450; @ClientString(id = 7444, message = "") - public static SystemMessageId EMPTY_455; + public static SystemMessageId EMPTY_451; @ClientString(id = 7445, message = "") - public static SystemMessageId EMPTY_456; + public static SystemMessageId EMPTY_452; @ClientString(id = 7446, message = "") - public static SystemMessageId EMPTY_457; + public static SystemMessageId EMPTY_453; @ClientString(id = 7447, message = "") - public static SystemMessageId EMPTY_458; + public static SystemMessageId EMPTY_454; @ClientString(id = 7448, message = "") - public static SystemMessageId EMPTY_459; + public static SystemMessageId EMPTY_455; @ClientString(id = 7449, message = "") - public static SystemMessageId EMPTY_460; + public static SystemMessageId EMPTY_456; @ClientString(id = 7450, message = "") - public static SystemMessageId EMPTY_461; + public static SystemMessageId EMPTY_457; @ClientString(id = 7451, message = "") - public static SystemMessageId EMPTY_462; + public static SystemMessageId EMPTY_458; @ClientString(id = 7452, message = "") - public static SystemMessageId EMPTY_463; + public static SystemMessageId EMPTY_459; @ClientString(id = 7453, message = "") - public static SystemMessageId EMPTY_464; + public static SystemMessageId EMPTY_460; @ClientString(id = 7454, message = "") - public static SystemMessageId EMPTY_465; + public static SystemMessageId EMPTY_461; @ClientString(id = 7455, message = "") - public static SystemMessageId EMPTY_466; + public static SystemMessageId EMPTY_462; @ClientString(id = 7456, message = "") - public static SystemMessageId EMPTY_467; + public static SystemMessageId EMPTY_463; @ClientString(id = 7457, message = "") - public static SystemMessageId EMPTY_468; + public static SystemMessageId EMPTY_464; @ClientString(id = 7458, message = "") - public static SystemMessageId EMPTY_469; + public static SystemMessageId EMPTY_465; @ClientString(id = 7459, message = "") - public static SystemMessageId EMPTY_470; + public static SystemMessageId EMPTY_466; @ClientString(id = 7460, message = "") - public static SystemMessageId EMPTY_471; + public static SystemMessageId EMPTY_467; @ClientString(id = 7461, message = "") - public static SystemMessageId EMPTY_472; + public static SystemMessageId EMPTY_468; @ClientString(id = 7462, message = "") - public static SystemMessageId EMPTY_473; + public static SystemMessageId EMPTY_469; @ClientString(id = 7463, message = "") - public static SystemMessageId EMPTY_474; + public static SystemMessageId EMPTY_470; @ClientString(id = 7464, message = "") - public static SystemMessageId EMPTY_475; + public static SystemMessageId EMPTY_471; @ClientString(id = 7465, message = "") - public static SystemMessageId EMPTY_476; + public static SystemMessageId EMPTY_472; @ClientString(id = 7466, message = "") - public static SystemMessageId EMPTY_477; + public static SystemMessageId EMPTY_473; @ClientString(id = 7467, message = "") - public static SystemMessageId EMPTY_478; + public static SystemMessageId EMPTY_474; @ClientString(id = 7468, message = "") - public static SystemMessageId EMPTY_479; + public static SystemMessageId EMPTY_475; @ClientString(id = 7469, message = "") - public static SystemMessageId EMPTY_480; + public static SystemMessageId EMPTY_476; @ClientString(id = 7470, message = "") - public static SystemMessageId EMPTY_481; + public static SystemMessageId EMPTY_477; @ClientString(id = 7471, message = "") - public static SystemMessageId EMPTY_482; + public static SystemMessageId EMPTY_478; @ClientString(id = 7472, message = "") - public static SystemMessageId EMPTY_483; + public static SystemMessageId EMPTY_479; @ClientString(id = 7473, message = "") - public static SystemMessageId EMPTY_484; + public static SystemMessageId EMPTY_480; @ClientString(id = 7474, message = "") - public static SystemMessageId EMPTY_485; + public static SystemMessageId EMPTY_481; @ClientString(id = 7475, message = "") - public static SystemMessageId EMPTY_486; + public static SystemMessageId EMPTY_482; @ClientString(id = 7476, message = "") - public static SystemMessageId EMPTY_487; + public static SystemMessageId EMPTY_483; @ClientString(id = 7477, message = "") - public static SystemMessageId EMPTY_488; + public static SystemMessageId EMPTY_484; @ClientString(id = 7478, message = "") - public static SystemMessageId EMPTY_489; + public static SystemMessageId EMPTY_485; @ClientString(id = 7479, message = "") - public static SystemMessageId EMPTY_490; + public static SystemMessageId EMPTY_486; @ClientString(id = 7480, message = "") - public static SystemMessageId EMPTY_491; + public static SystemMessageId EMPTY_487; @ClientString(id = 7481, message = "") - public static SystemMessageId EMPTY_492; + public static SystemMessageId EMPTY_488; @ClientString(id = 7482, message = "") - public static SystemMessageId EMPTY_493; + public static SystemMessageId EMPTY_489; @ClientString(id = 7483, message = "") - public static SystemMessageId EMPTY_494; + public static SystemMessageId EMPTY_490; @ClientString(id = 7484, message = "") - public static SystemMessageId EMPTY_495; + public static SystemMessageId EMPTY_491; @ClientString(id = 7485, message = "") - public static SystemMessageId EMPTY_496; + public static SystemMessageId EMPTY_492; @ClientString(id = 7486, message = "") - public static SystemMessageId EMPTY_497; + public static SystemMessageId EMPTY_493; @ClientString(id = 7487, message = "") - public static SystemMessageId EMPTY_498; + public static SystemMessageId EMPTY_494; @ClientString(id = 7488, message = "") - public static SystemMessageId EMPTY_499; + public static SystemMessageId EMPTY_495; @ClientString(id = 7489, message = "") - public static SystemMessageId EMPTY_500; + public static SystemMessageId EMPTY_496; @ClientString(id = 7490, message = "") - public static SystemMessageId EMPTY_501; + public static SystemMessageId EMPTY_497; static { @@ -16266,7 +17202,7 @@ public final class SystemMessageId { if (params < 0) { - throw new IllegalArgumentException("Invalid negative param count: " + params); + throw new IllegalArgumentException("Invalid negative param count: " + params); } if (params > 10) { diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java index beab55240b..5a98908ec0 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestAcquireSkill.java @@ -700,7 +700,7 @@ public final class RequestAcquireSkill implements IClientIncomingPacket private void giveSkill(L2PcInstance player, L2Npc trainer, Skill skill, boolean store) { // Send message. - final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_EARNED_S1_2); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_LEARNED_S1); sm.addSkillName(skill); player.sendPacket(sm); diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java index 98e050af9b..4389a79e37 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeDraftListApply.java @@ -72,7 +72,7 @@ public class RequestPledgeDraftListApply implements IClientIncomingPacket if (ClanEntryManager.getInstance().addToWaitingList(activeChar.getObjectId(), pledgeDraftList)) { - client.sendPacket(SystemMessageId.ENTERED_INTO_WAITING_LIST_NAME_IS_AUTOMATICALLY_DELETED_AFTER_30_DAYS_IF_DELETE_FROM_WAITING_LIST_IS_USED_YOU_CANNOT_ENTER_NAMES_INTO_THE_WAITING_LIST_FOR_5_MINUTES); + client.sendPacket(SystemMessageId.YOU_HAVE_JOINED_THE_WAITING_LIST_CHARACTERS_ARE_AUTOMATICALLY_DELETED_FROM_THE_LIST_AFTER_30_DAYS_IF_EXIT_WAITING_LIST_IS_USED_YOU_CANNOT_JOIN_THE_WAITING_LIST_FOR_5_MINUTES); } else { diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java index 876ed4402d..e89439001c 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/com/l2jmobius/gameserver/network/clientpackets/RequestPledgeRecruitBoardAccess.java @@ -87,7 +87,7 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().addToClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); } else { @@ -101,7 +101,7 @@ public class RequestPledgeRecruitBoardAccess implements IClientIncomingPacket { if (ClanEntryManager.getInstance().updateClanList(clan.getId(), pledgeRecruitInfo)) { - activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_ENTRY_APPLICATION_INFO_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); + activeChar.sendPacket(SystemMessageId.ENTRY_APPLICATION_COMPLETE_USE_MY_APPLICATION_TO_CHECK_OR_CANCEL_YOUR_APPLICATION_APPLICATION_IS_AUTOMATICALLY_CANCELLED_AFTER_30_DAYS_IF_YOU_CANCEL_APPLICATION_YOU_CANNOT_APPLY_AGAIN_FOR_5_MINUTES); } else { diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/readme.txt b/L2J_Mobius_Classic_2.3_SevenSigns/readme.txt index 4c96b02c38..8fc8c619ef 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/readme.txt +++ b/L2J_Mobius_Classic_2.3_SevenSigns/readme.txt @@ -64,12 +64,14 @@ Zaken: https://eu.4game.com/lineage2classic/play/zaken/ -Newbie quest changes Antharas: https://eu.4game.com/lineage2classic/play/antharas/ +-Parsed new system messages and npc strings from client. -Parsed new skills from client -Parsed new items from client -Parsed new NPCs from L2Wiki and client -Clan Arena Seven Signs: https://eu.4gameforum.com/threads/658543/ +-Parsed new system messages and npc strings from client. -TODO: Parse new items from client Customs: