diff --git a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java index 9c031031a4..60fa9e657f 100644 --- a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/events/MasterOfEnchanting/MasterOfEnchanting.java +++ b/L2J_Mobius_6.0_Fafurion/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_OBTAINED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_HR_AND_S2_MIN_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_OBTAINED); + final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.THERE_ARE_S1_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED); sm.addInt(minutes); player.sendPacket(sm); htmltext = "32599-scroll24.htm"; diff --git a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/AbstractInstance.java b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/AbstractInstance.java index dcb47ca35b..75e356f27c 100644 --- a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/AbstractInstance.java +++ b/L2J_Mobius_6.0_Fafurion/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(SystemMessage.getSystemMessage(SystemMessageId.C1_YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON).addString(player.getName())); return; } onEnter(player, instance, false); @@ -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(SystemMessage.getSystemMessage(SystemMessageId.C1_YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON).addString(p.getName()))); return; } diff --git a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/DimensionalWrap/DimensionalWrap.java b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/DimensionalWrap/DimensionalWrap.java index b3369f2d4c..47e231fabb 100644 --- a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/DimensionalWrap/DimensionalWrap.java +++ b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/DimensionalWrap/DimensionalWrap.java @@ -536,7 +536,7 @@ public class DimensionalWrap extends AbstractInstance } case "NEXT_STAGE": { - world.broadcastPacket(new ExShowScreenMessage(NpcStringId.S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION, ExShowScreenMessage.TOP_CENTER, 5000, true, String.valueOf(180))); + world.broadcastPacket(new ExShowScreenMessage(NpcStringId.S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCED_ZONE_DURATION, ExShowScreenMessage.TOP_CENTER, 5000, true, String.valueOf(180))); world.setDuration((int) ((world.getRemainingTime() / 60000) + 3)); startQuestTimer("START_STAGE", 8000, npc, null); for (L2Npc n : world.getAliveNpcs()) @@ -579,7 +579,7 @@ public class DimensionalWrap extends AbstractInstance } else if (npc.getId() == ABYSSAL_MAKKUM) { - world.broadcastPacket(new ExShowScreenMessage(NpcStringId.THE_INSTANCE_ZONE_WILL_CLOSE_SOON, ExShowScreenMessage.TOP_CENTER, 10000, true)); + world.broadcastPacket(new ExShowScreenMessage(NpcStringId.THE_INSTANCED_ZONE_WILL_CLOSE_SOON, ExShowScreenMessage.TOP_CENTER, 10000, true)); world.finishInstance(3); Clean(); } diff --git a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/Kamaloka/Kamaloka.java b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/Kamaloka/Kamaloka.java index 12ab2b4726..d95dedafaa 100644 --- a/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/Kamaloka/Kamaloka.java +++ b/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/instances/Kamaloka/Kamaloka.java @@ -518,7 +518,7 @@ public final class Kamaloka extends AbstractInstance // but not in kamaloka if ((player.getInstanceId() == 0) || (world.getTemplateId() != templateId)) { - player.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.C1_YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON).addString(player.getName())); return; } // check for level difference again on reenter diff --git a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java index 69506f563b..fa642c951a 100644 --- a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java +++ b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/actor/instance/L2VillageMasterInstance.java @@ -523,7 +523,7 @@ public class L2VillageMasterInstance extends L2NpcInstance } if (leaderName.length() > 16) { - player.sendPacket(SystemMessageId.YOUR_TITLE_CANNOT_EXCEED_16_CHARACTERS_IN_LENGTH_PLEASE_TRY_AGAIN); + player.sendPacket(SystemMessageId.YOUR_TITLE_MUST_BE_AT_LEAST_1_CHARACTER_AND_CANNOT_EXCEED_16_CHARACTERS_IN_LENGTH_PLEASE_TRY_AGAIN); return; } if (player.getName().equals(leaderName)) diff --git a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java index f316b3d320..08fabd97c3 100644 --- a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/model/instancezone/conditions/ConditionGroupMin.java +++ b/L2J_Mobius_6.0_Fafurion/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_INSTANCE_ZONE, (msg, player) -> msg.addInt(getLimit())); + setSystemMessage(SystemMessageId.YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCED_ZONE, (msg, player) -> msg.addInt(getLimit())); } @Override diff --git a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/NpcStringId.java b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/NpcStringId.java index 2a388f824d..9a4d7b89c1 100644 --- a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/NpcStringId.java +++ b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/NpcStringId.java @@ -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.") @@ -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?") @@ -964,7 +964,7 @@ public final class NpcStringId @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!") @@ -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?") @@ -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!") @@ -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.") @@ -4288,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") @@ -5215,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)") @@ -6400,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") @@ -6808,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") @@ -6832,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") @@ -7441,6 +7441,9 @@ public final class NpcStringId @ClientString(id = 50004, message = "|Lv. 85+| Brothers Bound in Chains") public static NpcStringId LV_85_BROTHERS_BOUND_IN_CHAINS_2; + @ClientString(id = 50010, message = "Talk to the Dark Judge") + public static NpcStringId TALK_TO_THE_DARK_JUDGE; + @ClientString(id = 50101, message = "|Lv. 1+| Proof of Clan Alliance") public static NpcStringId LV_1_PROOF_OF_CLAN_ALLIANCE; @@ -7579,6 +7582,48 @@ public final class NpcStringId @ClientString(id = 51204, message = "|Lv. 90+| Blade Under Foot") public static NpcStringId LV_90_BLADE_UNDER_FOOT_2; + @ClientString(id = 51301, message = "|Lv. 106+| Red Libra Request - Field of Silence") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_FIELD_OF_SILENCE; + + @ClientString(id = 51302, message = "|Lv. 106+| Red Libra Request - Field of Silence (In Progress)") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_FIELD_OF_SILENCE_IN_PROGRESS; + + @ClientString(id = 51303, message = "|Lv. 106+| Red Libra Request - Field of Silence (Complete)") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_FIELD_OF_SILENCE_COMPLETE; + + @ClientString(id = 51304, message = "|Lv. 106+| Red Libra Request - Field of Silence") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_FIELD_OF_SILENCE_2; + + @ClientString(id = 51305, message = "Defeat Monsters in the Field of Silence") + public static NpcStringId DEFEAT_MONSTERS_IN_THE_FIELD_OF_SILENCE; + + @ClientString(id = 51311, message = "Lv. 106+") + public static NpcStringId LV_106; + + @ClientString(id = 51312, message = "Field of Silence") + public static NpcStringId FIELD_OF_SILENCE; + + @ClientString(id = 51401, message = "|Lv. 108+| Red Libra Request - Field of Whispers") + public static NpcStringId LV_108_RED_LIBRA_REQUEST_FIELD_OF_WHISPERS; + + @ClientString(id = 51402, message = "|Lv. 108+| Red Libra Request - Field of Whispers (In Progress)") + public static NpcStringId LV_108_RED_LIBRA_REQUEST_FIELD_OF_WHISPERS_IN_PROGRESS; + + @ClientString(id = 51403, message = "|Lv. 108+| Red Libra Request - Field of Whispers (Complete)") + public static NpcStringId LV_108_RED_LIBRA_REQUEST_FIELD_OF_WHISPERS_COMPLETE; + + @ClientString(id = 51404, message = "|Lv. 108+| Red Libra Request - Field of Whispers") + public static NpcStringId LV_108_RED_LIBRA_REQUEST_FIELD_OF_WHISPERS_2; + + @ClientString(id = 51405, message = "Defeat Monsters in the Field of Whispers") + public static NpcStringId DEFEAT_MONSTERS_IN_THE_FIELD_OF_WHISPERS; + + @ClientString(id = 51411, message = "Lv. 108+") + public static NpcStringId LV_108; + + @ClientString(id = 51412, message = "Field of Whispers") + public static NpcStringId FIELD_OF_WHISPERS; + @ClientString(id = 52901, message = "|Lv. 106+| Regular Barrier Maintenance") public static NpcStringId LV_106_REGULAR_BARRIER_MAINTENANCE; @@ -7660,8 +7705,8 @@ public final class NpcStringId @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 = 55503, message = "|Lv. 103+| Red Libra Request - Atelia Refinery (Completed)") - public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_COMPLETED; + @ClientString(id = 55503, message = "|Lv. 103+| Red Libra Request - Atelia Refinery (Complete)") + public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_COMPLETE; @ClientString(id = 55504, message = "|Lv. 103+| Red Libra Request - Atelia Refinery") public static NpcStringId LV_103_RED_LIBRA_REQUEST_ATELIA_REFINERY_2; @@ -7717,6 +7762,63 @@ public final class NpcStringId @ClientString(id = 55712, message = "Fall of Etina") public static NpcStringId FALL_OF_ETINA; + @ClientString(id = 55801, message = "|Lv. 106+| Red Libra Request - Sea of Spores") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_SEA_OF_SPORES; + + @ClientString(id = 55802, message = "|Lv. 106+| Red Libra Request - Sea of Spores (In Progress)") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_SEA_OF_SPORES_IN_PROGRESS; + + @ClientString(id = 55803, message = "|Lv. 106+| Red Libra Request - Sea of Spores (Complete)") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_SEA_OF_SPORES_COMPLETE; + + @ClientString(id = 55804, message = "|Lv. 106+| Red Libra Request - Sea of Spores") + public static NpcStringId LV_106_RED_LIBRA_REQUEST_SEA_OF_SPORES_2; + + @ClientString(id = 55805, message = "Defeat the monsters in the Sea of Spores") + public static NpcStringId DEFEAT_THE_MONSTERS_IN_THE_SEA_OF_SPORES; + + @ClientString(id = 55811, message = "Lv. 106+") + public static NpcStringId LV_106_2; + + @ClientString(id = 55812, message = "Sea of Spores") + public static NpcStringId SEA_OF_SPORES; + + @ClientString(id = 55901, message = "|Lv. 107+| Red Libra Request - Krofin's Nest") + public static NpcStringId LV_107_RED_LIBRA_REQUEST_KROFIN_S_NEST; + + @ClientString(id = 55902, message = "|Lv. 107+| Red Libra Request - Krofin's Nest (In Progress)") + public static NpcStringId LV_107_RED_LIBRA_REQUEST_KROFIN_S_NEST_IN_PROGRESS; + + @ClientString(id = 55903, message = "|Lv. 107+| Red Libra Request - Krofin's Nest (Complete)") + public static NpcStringId LV_107_RED_LIBRA_REQUEST_KROFIN_S_NEST_COMPLETE; + + @ClientString(id = 55904, message = "|Lv. 107+| Red Libra Request - Krofin's Nest") + public static NpcStringId LV_107_RED_LIBRA_REQUEST_KROFIN_S_NEST_2; + + @ClientString(id = 55905, message = "Defeat Queen Krosha") + public static NpcStringId DEFEAT_QUEEN_KROSHA; + + @ClientString(id = 55911, message = "Lv. 107+") + public static NpcStringId LV_107; + + @ClientString(id = 55912, message = "Krofin's Nest") + public static NpcStringId KROFIN_S_NEST; + + @ClientString(id = 56001, message = "|Lv. 110+| How to Overcome Fear") + public static NpcStringId LV_110_HOW_TO_OVERCOME_FEAR; + + @ClientString(id = 56002, message = "|Lv. 110+| How to Overcome Fear (In Progress)") + public static NpcStringId LV_110_HOW_TO_OVERCOME_FEAR_IN_PROGRESS; + + @ClientString(id = 56003, message = "|Lv. 110+| How to Overcome Fear (Complete)") + public static NpcStringId LV_110_HOW_TO_OVERCOME_FEAR_COMPLETE; + + @ClientString(id = 56004, message = "|Lv. 110+| How to Overcome Fear") + public static NpcStringId LV_110_HOW_TO_OVERCOME_FEAR_2; + + @ClientString(id = 56010, message = "Talk to Lupicia") + public static NpcStringId TALK_TO_LUPICIA; + @ClientString(id = 56101, message = "|Lv. 85-87| Basic Mission: Harnak Underground Ruins") public static NpcStringId LV_85_87_BASIC_MISSION_HARNAK_UNDERGROUND_RUINS; @@ -7816,17 +7918,17 @@ public final class NpcStringId @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 = 56401, message = "|Lv. 85 - 99| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_99_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 = 56402, message = "|Lv. 85 - 99| Basic Mission: Kartia's Labyrinth (Solo) (In progress)") + public static NpcStringId LV_85_99_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 = 56403, message = "|Lv. 85 - 99| Basic Mission: Kartia's Labyrinth (Solo) (Completed)") + public static NpcStringId LV_85_99_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 = 56404, message = "|Lv. 85 - 99| Basic Mission: Kartia's Labyrinth (Solo)") + public static NpcStringId LV_85_99_BASIC_MISSION_KARTIA_S_LABYRINTH_SOLO_2; @ClientString(id = 56411, message = "Hear about the mission") public static NpcStringId HEAR_ABOUT_THE_MISSION_3; @@ -8005,17 +8107,17 @@ public final class NpcStringId @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 = 57001, message = "|Lv. 87 - 99| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_99_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 = 57002, message = "|Lv. 87 - 99| Special Mission: Kartia's Labyrinth (Party) (In progress)") + public static NpcStringId LV_87_99_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 = 57003, message = "|Lv. 87 - 99| Special Mission: Kartia's Labyrinth (Party) (Completed)") + public static NpcStringId LV_87_99_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 = 57004, message = "|Lv. 87 - 99| Special Mission: Kartia's Labyrinth (Party)") + public static NpcStringId LV_87_99_SPECIAL_MISSION_KARTIA_S_LABYRINTH_PARTY_2; @ClientString(id = 57011, message = "Hear about the mission") public static NpcStringId HEAR_ABOUT_THE_MISSION_8; @@ -8152,6 +8254,48 @@ public final class NpcStringId @ClientString(id = 57714, message = "Talk to Penny") public static NpcStringId TALK_TO_PENNY_17; + @ClientString(id = 57801, message = "|Lv. 97-99| Basic Mission: Cemetery") + public static NpcStringId LV_97_99_BASIC_MISSION_CEMETERY; + + @ClientString(id = 57802, message = "|Lv. 97-99| Basic Mission: Cemetery (In Progress)") + public static NpcStringId LV_97_99_BASIC_MISSION_CEMETERY_IN_PROGRESS; + + @ClientString(id = 57803, message = "|Lv. 97-99| Basic Mission: Cemetery (Complete)") + public static NpcStringId LV_97_99_BASIC_MISSION_CEMETERY_COMPLETE; + + @ClientString(id = 57804, message = "|Lv. 97-99| Basic Mission: Cemetery") + public static NpcStringId LV_97_99_BASIC_MISSION_CEMETERY_2; + + @ClientString(id = 57811, message = "Talk to Quartermaster") + public static NpcStringId TALK_TO_QUARTERMASTER; + + @ClientString(id = 57812, message = "Undertake 'The Fallen King's Men'") + public static NpcStringId UNDERTAKE_THE_FALLEN_KING_S_MEN; + + @ClientString(id = 57813, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_18; + + @ClientString(id = 57901, message = "|Lv. 97-99| Basic Mission: Blazing Swamp") + public static NpcStringId LV_97_99_BASIC_MISSION_BLAZING_SWAMP; + + @ClientString(id = 57902, message = "|Lv. 97-99| Basic Mission: Blazing Swamp (In Progress)") + public static NpcStringId LV_97_99_BASIC_MISSION_BLAZING_SWAMP_IN_PROGRESS; + + @ClientString(id = 57903, message = "|Lv. 97-99| Basic Mission: Blazing Swamp (Complete)") + public static NpcStringId LV_97_99_BASIC_MISSION_BLAZING_SWAMP_COMPLETE; + + @ClientString(id = 57904, message = "|Lv. 97-99| Basic Mission: Blazing Swamp") + public static NpcStringId LV_97_99_BASIC_MISSION_BLAZING_SWAMP_2; + + @ClientString(id = 57911, message = "Talk to Harph") + public static NpcStringId TALK_TO_HARPH; + + @ClientString(id = 57912, message = "Undertake 'Waiting for Pa'agrio'") + public static NpcStringId UNDERTAKE_WAITING_FOR_PA_AGRIO; + + @ClientString(id = 57913, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_19; + @ClientString(id = 58001, message = "|Lv. 85-95| Beyond the Memories") public static NpcStringId LV_85_95_BEYOND_THE_MEMORIES; @@ -8341,6 +8485,105 @@ public final class NpcStringId @ClientString(id = 59111, message = "Select Mission") public static NpcStringId SELECT_MISSION; + @ClientString(id = 59301, message = "|Lv. 97-99| Basic Mission: Pagan Temple") + public static NpcStringId LV_97_99_BASIC_MISSION_PAGAN_TEMPLE; + + @ClientString(id = 59302, message = "|Lv. 97-99| Basic Mission: Pagan Temple (In Progress)") + public static NpcStringId LV_97_99_BASIC_MISSION_PAGAN_TEMPLE_IN_PROGRESS; + + @ClientString(id = 59303, message = "|Lv. 97-99| Basic Mission: Pagan Temple (Complete)") + public static NpcStringId LV_97_99_BASIC_MISSION_PAGAN_TEMPLE_COMPLETE; + + @ClientString(id = 59304, message = "|Lv. 97-99| Basic Mission: Pagan Temple") + public static NpcStringId LV_97_99_BASIC_MISSION_PAGAN_TEMPLE_2; + + @ClientString(id = 59311, message = "Listen to mission details") + public static NpcStringId LISTEN_TO_MISSION_DETAILS; + + @ClientString(id = 59312, message = "Talk to Eliyah") + public static NpcStringId TALK_TO_ELIYAH; + + @ClientString(id = 59313, message = "Complete 'Conspiracy Behind Doors'") + public static NpcStringId COMPLETE_CONSPIRACY_BEHIND_DOORS; + + @ClientString(id = 59314, message = "Talk to Razen") + public static NpcStringId TALK_TO_RAZEN; + + @ClientString(id = 59315, message = "Complete 'Triol's Movement'") + public static NpcStringId COMPLETE_TRIOL_S_MOVEMENT; + + @ClientString(id = 59316, message = "Return to Penny") + public static NpcStringId RETURN_TO_PENNY; + + @ClientString(id = 59401, message = "|Lv. 95-99| Basic Mission: Dimensional Rift") + public static NpcStringId LV_95_99_BASIC_MISSION_DIMENSIONAL_RIFT; + + @ClientString(id = 59402, message = "|Lv. 95-99| Basic Mission: Dimensional Rift (In Progress)") + public static NpcStringId LV_95_99_BASIC_MISSION_DIMENSIONAL_RIFT_IN_PROGRESS; + + @ClientString(id = 59403, message = "|Lv. 95-99| Basic Mission: Dimensional Rift (Complete)") + public static NpcStringId LV_95_99_BASIC_MISSION_DIMENSIONAL_RIFT_COMPLETE; + + @ClientString(id = 59404, message = "|Lv. 95-99| Basic Mission: Dimensional Rift") + public static NpcStringId LV_95_99_BASIC_MISSION_DIMENSIONAL_RIFT_2; + + @ClientString(id = 59411, message = "Talk to Beloa") + public static NpcStringId TALK_TO_BELOA; + + @ClientString(id = 59412, message = "Undertake 'Exploring the Dimension - 30-day Search Operation'") + public static NpcStringId UNDERTAKE_EXPLORING_THE_DIMENSION_30_DAY_SEARCH_OPERATION; + + @ClientString(id = 59413, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_20; + + @ClientString(id = 59501, message = "|Lv. 97-99| Special Mission: Raider's Crossroads") + public static NpcStringId LV_97_99_SPECIAL_MISSION_RAIDER_S_CROSSROADS; + + @ClientString(id = 59502, message = "|Lv. 97-99| Special Mission: Raider's Crossroads (In Progress)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_RAIDER_S_CROSSROADS_IN_PROGRESS; + + @ClientString(id = 59503, message = "|Lv. 97-99| Special Mission: Raider's Crossroads (Complete)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_RAIDER_S_CROSSROADS_COMPLETE; + + @ClientString(id = 59504, message = "|Lv. 97-99| Special Mission: Raider's Crossroads") + public static NpcStringId LV_97_99_SPECIAL_MISSION_RAIDER_S_CROSSROADS_2; + + @ClientString(id = 59511, message = "Listen to mission details") + public static NpcStringId LISTEN_TO_MISSION_DETAILS_2; + + @ClientString(id = 59512, message = "Talk to Mathias") + public static NpcStringId TALK_TO_MATHIAS; + + @ClientString(id = 59513, message = "Complete 'An Impending Threat'") + public static NpcStringId COMPLETE_AN_IMPENDING_THREAT; + + @ClientString(id = 59514, message = "Talk to Bruener") + public static NpcStringId TALK_TO_BRUENER; + + @ClientString(id = 59515, message = "Complete 'Operation Roaring Flame'") + public static NpcStringId COMPLETE_OPERATION_ROARING_FLAME; + + @ClientString(id = 59516, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_21; + + @ClientString(id = 59601, message = "|Lv. 97-99| Special Mission: Defeat Baylor") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR; + + @ClientString(id = 59602, message = "|Lv. 97-99| Special Mission: Defeat Baylor (In Progress)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_IN_PROGRESS; + + @ClientString(id = 59603, message = "|Lv. 97-99| Special Mission: Defeat Baylor (Complete)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_COMPLETE; + + @ClientString(id = 59604, message = "|Lv. 97-99| Special Mission: Defeat Baylor") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_2; + + @ClientString(id = 59611, message = "Defeat Baylor") + public static NpcStringId DEFEAT_BAYLOR; + + @ClientString(id = 59612, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_22; + @ClientString(id = 59901, message = "|Lv. 103+| Demons and Dimensional Energy") public static NpcStringId LV_103_DEMONS_AND_DIMENSIONAL_ENERGY; @@ -8494,13 +8737,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)") @@ -9226,6 +9469,60 @@ public final class NpcStringId @ClientString(id = 68105, message = "Defeating Giant Monsters") public static NpcStringId DEFEATING_GIANT_MONSTERS_6; + @ClientString(id = 68201, message = "|Lv. 100+| The Strong in the Closed Space") + public static NpcStringId LV_100_THE_STRONG_IN_THE_CLOSED_SPACE; + + @ClientString(id = 68202, message = "|Lv. 100+| The Strong in the Closed Space (In Progress)") + public static NpcStringId LV_100_THE_STRONG_IN_THE_CLOSED_SPACE_IN_PROGRESS; + + @ClientString(id = 68203, message = "|Lv. 100+| The Strong in the Closed Space (Complete)") + public static NpcStringId LV_100_THE_STRONG_IN_THE_CLOSED_SPACE_COMPLETE; + + @ClientString(id = 68204, message = "|Lv. 100+| The Strong in the Closed Space") + public static NpcStringId LV_100_THE_STRONG_IN_THE_CLOSED_SPACE_2; + + @ClientString(id = 68210, message = "Defeat the Strong in the Closed Space") + public static NpcStringId DEFEAT_THE_STRONG_IN_THE_CLOSED_SPACE; + + @ClientString(id = 68211, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_23; + + @ClientString(id = 68301, message = "|Lv. 106+| Advent of Krofin Subspecies") + public static NpcStringId LV_106_ADVENT_OF_KROFIN_SUBSPECIES; + + @ClientString(id = 68302, message = "|Lv. 106+| Advent of Krofin Subspecies (In Progress)") + public static NpcStringId LV_106_ADVENT_OF_KROFIN_SUBSPECIES_IN_PROGRESS; + + @ClientString(id = 68303, message = "|Lv. 106+| Advent of Krofin Subspecies (Complete)") + public static NpcStringId LV_106_ADVENT_OF_KROFIN_SUBSPECIES_COMPLETE; + + @ClientString(id = 68304, message = "|Lv. 106+| Advent of Krofin Subspecies") + public static NpcStringId LV_106_ADVENT_OF_KROFIN_SUBSPECIES_2; + + @ClientString(id = 68310, message = "Defeat Krofin Subspecies") + public static NpcStringId DEFEAT_KROFIN_SUBSPECIES; + + @ClientString(id = 68311, message = "Report mission complete") + public static NpcStringId REPORT_MISSION_COMPLETE; + + @ClientString(id = 68401, message = "|Lv. 108+| Disturbed Fields") + public static NpcStringId LV_108_DISTURBED_FIELDS; + + @ClientString(id = 68402, message = "|Lv. 108+| Disturbed Fields (In Progress)") + public static NpcStringId LV_108_DISTURBED_FIELDS_IN_PROGRESS; + + @ClientString(id = 68403, message = "|Lv. 108+| Disturbed Fields (Complete)") + public static NpcStringId LV_108_DISTURBED_FIELDS_COMPLETE; + + @ClientString(id = 68404, message = "|Lv. 108+| Disturbed Fields") + public static NpcStringId LV_108_DISTURBED_FIELDS_2; + + @ClientString(id = 68410, message = "Defeat Monsters in the Field of Whispers") + public static NpcStringId DEFEAT_MONSTERS_IN_THE_FIELD_OF_WHISPERS_2; + + @ClientString(id = 68411, message = "Report mission complete") + public static NpcStringId REPORT_MISSION_COMPLETE_2; + @ClientString(id = 68801, message = "|Lv. 75 - 85| Defeat the Elrokian Raiders!") public static NpcStringId LV_75_85_DEFEAT_THE_ELROKIAN_RAIDERS; @@ -9466,7 +9763,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") @@ -9484,7 +9781,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") @@ -9502,7 +9799,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") @@ -9514,7 +9811,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") @@ -9535,7 +9832,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") @@ -9577,7 +9874,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") @@ -10387,7 +10684,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") @@ -10534,38 +10831,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 = "Helios Shaper Fragment") - public static NpcStringId HELIOS_SHAPER_FRAGMENT; + @ClientString(id = 75951, message = "Amaranthine Shaper Fragment") + public static NpcStringId AMARANTHINE_SHAPER_FRAGMENT; - @ClientString(id = 75952, message = "Helios Cutter Fragment") - public static NpcStringId HELIOS_CUTTER_FRAGMENT; + @ClientString(id = 75952, message = "Amaranthine Cutter Fragment") + public static NpcStringId AMARANTHINE_CUTTER_FRAGMENT; - @ClientString(id = 75953, message = "Helios Slasher Fragment") - public static NpcStringId HELIOS_SLASHER_FRAGMENT; + @ClientString(id = 75953, message = "Amaranthine Slasher Fragment") + public static NpcStringId AMARANTHINE_SLASHER_FRAGMENT; - @ClientString(id = 75954, message = "Helios Avenger Fragment") - public static NpcStringId HELIOS_AVENGER_FRAGMENT; + @ClientString(id = 75954, message = "Amaranthine Avenger Fragment") + public static NpcStringId AMARANTHINE_AVENGER_FRAGMENT; - @ClientString(id = 75955, message = "Helios Fighter Fragment") - public static NpcStringId HELIOS_FIGHTER_FRAGMENT; + @ClientString(id = 75955, message = "Amaranthine Fighter Fragment") + public static NpcStringId AMARANTHINE_FIGHTER_FRAGMENT; - @ClientString(id = 75956, message = "Helios Stormer Fragment") - public static NpcStringId HELIOS_STORMER_FRAGMENT; + @ClientString(id = 75956, message = "Amaranthine Stormer Fragment") + public static NpcStringId AMARANTHINE_STORMER_FRAGMENT; - @ClientString(id = 75957, message = "Helios Thrower Fragment") - public static NpcStringId HELIOS_THROWER_FRAGMENT; + @ClientString(id = 75957, message = "Amaranthine Thrower Fragment") + public static NpcStringId AMARANTHINE_THROWER_FRAGMENT; - @ClientString(id = 75958, message = "Helios Shooter Fragment") - public static NpcStringId HELIOS_SHOOTER_FRAGMENT; + @ClientString(id = 75958, message = "Amaranthine Shooter Fragment") + public static NpcStringId AMARANTHINE_SHOOTER_FRAGMENT; - @ClientString(id = 75959, message = "Helios Buster Fragment") - public static NpcStringId HELIOS_BUSTER_FRAGMENT; + @ClientString(id = 75959, message = "Amaranthine Buster Fragment") + public static NpcStringId AMARANTHINE_BUSTER_FRAGMENT; - @ClientString(id = 75960, message = "Helios Caster Fragment") - public static NpcStringId HELIOS_CASTER_FRAGMENT; + @ClientString(id = 75960, message = "Amaranthine Caster Fragment") + public static NpcStringId AMARANTHINE_CASTER_FRAGMENT; - @ClientString(id = 75961, message = "Helios Retributer Fragment") - public static NpcStringId HELIOS_RETRIBUTER_FRAGMENT; + @ClientString(id = 75961, message = "Amaranthine Retributer Fragment") + public static NpcStringId AMARANTHINE_RETRIBUTER_FRAGMENT; @ClientString(id = 75962, message = "Earth Wyrm Heart Necklace") public static NpcStringId EARTH_WYRM_HEART_NECKLACE_2; @@ -11194,11 +11491,11 @@ public final class NpcStringId @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 = 80802, message = "|Lv. 102+| Hunter Guild Request - The Fields (In Progress)") + public static NpcStringId LV_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 = 80803, message = "|Lv. 102+| Hunter Guild Request - The Fields (Complete)") + public static NpcStringId LV_102_HUNTER_GUILD_REQUEST_THE_FIELDS_COMPLETE; @ClientString(id = 80805, message = "Defeating Giant Monsters") public static NpcStringId DEFEATING_GIANT_MONSTERS_14; @@ -11288,7 +11585,7 @@ public final class NpcStringId public static NpcStringId LV_101_ELIYAH_IN_THE_FOURTH_STRONGHOLD_2; @ClientString(id = 81505, message = "Talk to Eliyah") - public static NpcStringId TALK_TO_ELIYAH; + public static NpcStringId TALK_TO_ELIYAH_2; @ClientString(id = 81601, message = "|Lv. 101+| Plans to Repair the Stronghold") public static NpcStringId LV_101_PLANS_TO_REPAIR_THE_STRONGHOLD; @@ -11857,7 +12154,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)") @@ -12007,7 +12304,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") @@ -12112,7 +12409,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.") @@ -12139,7 +12436,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.") @@ -12310,8 +12607,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 = "Instance Zone Dungeon Complete") - public static NpcStringId INSTANCE_ZONE_DUNGEON_COMPLETE; + @ClientString(id = 89605, message = "Instanced Zone Dungeon Complete") + public static NpcStringId INSTANCED_ZONE_DUNGEON_COMPLETE; @ClientString(id = 89610, message = "Talk to Bliss") public static NpcStringId TALK_TO_BLISS_2; @@ -13000,8 +13297,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; @@ -13279,8 +13576,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; @@ -13288,8 +13585,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; @@ -14641,7 +14938,7 @@ public final class NpcStringId @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.") + @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") @@ -15269,7 +15566,7 @@ public final class NpcStringId 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; + public static NpcStringId TALK_TO_MATHIAS_2; @ClientString(id = 540832, message = "Talk to Dokara") public static NpcStringId TALK_TO_DOKARA; @@ -15314,7 +15611,7 @@ public final class NpcStringId 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; + public static NpcStringId TALK_TO_MATHIAS_3; @ClientString(id = 541132, message = "Talk to Hatuba") public static NpcStringId TALK_TO_HATUBA; @@ -16201,6 +16498,93 @@ public final class NpcStringId @ClientString(id = 550611, message = "Talk to Diana") public static NpcStringId TALK_TO_DIANA; + @ClientString(id = 551601, message = "|Lv. 110+| Unveiled Fafurion Temple") + public static NpcStringId LV_110_UNVEILED_FAFURION_TEMPLE; + + @ClientString(id = 551602, message = "|Lv. 110+| Unveiled Fafurion Temple (In Progress)") + public static NpcStringId LV_110_UNVEILED_FAFURION_TEMPLE_IN_PROGRESS; + + @ClientString(id = 551603, message = "|Lv. 110+| Unveiled Fafurion Temple (Complete)") + public static NpcStringId LV_110_UNVEILED_FAFURION_TEMPLE_COMPLETE; + + @ClientString(id = 551604, message = "|Lv. 110+| Unveiled Fafurion Temple") + public static NpcStringId LV_110_UNVEILED_FAFURION_TEMPLE_2; + + @ClientString(id = 551610, message = "Talk to Frederick") + public static NpcStringId TALK_TO_FREDERICK; + + @ClientString(id = 551611, message = "Talk to Lupicia") + public static NpcStringId TALK_TO_LUPICIA_2; + + @ClientString(id = 551612, message = "Talk to Okayti") + public static NpcStringId TALK_TO_OKAYTI; + + @ClientString(id = 551701, message = "|Lv. 110+| Fafurion's Minions") + public static NpcStringId LV_110_FAFURION_S_MINIONS; + + @ClientString(id = 551702, message = "|Lv. 110+| Fafurion's Minions (In Progress)") + public static NpcStringId LV_110_FAFURION_S_MINIONS_IN_PROGRESS; + + @ClientString(id = 551703, message = "|Lv. 110+| Fafurion's Minions (Complete)") + public static NpcStringId LV_110_FAFURION_S_MINIONS_COMPLETE; + + @ClientString(id = 551704, message = "|Lv. 110+| Fafurion's Minions") + public static NpcStringId LV_110_FAFURION_S_MINIONS_2; + + @ClientString(id = 551710, message = "Defeat Fafurion's Kin") + public static NpcStringId DEFEAT_FAFURION_S_KIN; + + @ClientString(id = 551711, message = "Talk to Lupicia") + public static NpcStringId TALK_TO_LUPICIA_3; + + @ClientString(id = 551801, message = "|Lv. 110+| Succeeding the Priestess") + public static NpcStringId LV_110_SUCCEEDING_THE_PRIESTESS; + + @ClientString(id = 551802, message = "|Lv. 110+| Succeeding the Priestess (In Progress)") + public static NpcStringId LV_110_SUCCEEDING_THE_PRIESTESS_IN_PROGRESS; + + @ClientString(id = 551803, message = "|Lv. 110+| Succeeding the Priestess (Complete)") + public static NpcStringId LV_110_SUCCEEDING_THE_PRIESTESS_COMPLETE; + + @ClientString(id = 551804, message = "|Lv. 110+| Succeeding the Priestess") + public static NpcStringId LV_110_SUCCEEDING_THE_PRIESTESS_2; + + @ClientString(id = 551810, message = "Defeat Krofins") + public static NpcStringId DEFEAT_KROFINS; + + @ClientString(id = 551811, message = "Talk to Lionel Hunter") + public static NpcStringId TALK_TO_LIONEL_HUNTER; + + @ClientString(id = 551901, message = "|Lv. 110+| Controlling Your Temper") + public static NpcStringId LV_110_CONTROLLING_YOUR_TEMPER; + + @ClientString(id = 551902, message = "|Lv. 110+| Controlling Your Temper (In Progress)") + public static NpcStringId LV_110_CONTROLLING_YOUR_TEMPER_IN_PROGRESS; + + @ClientString(id = 551903, message = "|Lv. 110+| Controlling Your Temper (Complete)") + public static NpcStringId LV_110_CONTROLLING_YOUR_TEMPER_COMPLETE; + + @ClientString(id = 551904, message = "|Lv. 110+| Controlling Your Temper") + public static NpcStringId LV_110_CONTROLLING_YOUR_TEMPER_2; + + @ClientString(id = 551910, message = "Talk to Okayti") + public static NpcStringId TALK_TO_OKAYTI_2; + + @ClientString(id = 552001, message = "|Lv. 110+| Temple Guardians") + public static NpcStringId LV_110_TEMPLE_GUARDIANS; + + @ClientString(id = 552002, message = "|Lv. 110+| Temple Guardians (In Progress)") + public static NpcStringId LV_110_TEMPLE_GUARDIANS_IN_PROGRESS; + + @ClientString(id = 552003, message = "|Lv. 110+| Temple Guardians (Complete)") + public static NpcStringId LV_110_TEMPLE_GUARDIANS_COMPLETE; + + @ClientString(id = 552004, message = "|Lv. 110+| Temple Guardians") + public static NpcStringId LV_110_TEMPLE_GUARDIANS_2; + + @ClientString(id = 552010, message = "Talk to Okayti") + public static NpcStringId TALK_TO_OKAYTI_3; + @ClientString(id = 552101, message = "|Lv. 76 - 80| Queen Navari's Letter: Varka Silenos Barracks") public static NpcStringId LV_76_80_QUEEN_NAVARI_S_LETTER_VARKA_SILENOS_BARRACKS; @@ -16309,17 +16693,17 @@ 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 = 552901, message = "|Lv. 106+| Ivory Tower's Research - Sea of Spores Journal") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_SEA_OF_SPORES_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 = 552902, message = "|Lv. 106+| Ivory Tower's Research - Sea of Spores Journal (In progress)") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_SEA_OF_SPORES_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 = 552903, message = "|Lv. 106+| Ivory Tower's Research - Sea of Spores Journal (Completed)") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_SEA_OF_SPORES_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 = 552904, message = "|Lv. 106+| Ivory Tower's Research - Sea of Spores Journal") + public static NpcStringId LV_106_IVORY_TOWER_S_RESEARCH_SEA_OF_SPORES_JOURNAL_2; @ClientString(id = 552910, message = "Talk to Bacon") public static NpcStringId TALK_TO_BACON; @@ -16660,8 +17044,8 @@ public final class NpcStringId @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 = 555411, message = "Talk to Sibis") + public static NpcStringId TALK_TO_SIBIS; @ClientString(id = 555412, message = "Deliver to Tarti") public static NpcStringId DELIVER_TO_TARTI; @@ -16807,17 +17191,17 @@ public final class NpcStringId @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 = 556001, message = "|Lv. 85 - 99| Way of Wandering Knight") + public static NpcStringId LV_85_99_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 = 556002, message = "|Lv. 85 - 99| Way of Wandering Knight (In progress)") + public static NpcStringId LV_85_99_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 = 556003, message = "|Lv. 85 - 99| Way of Wandering Knight (Completed)") + public static NpcStringId LV_85_99_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 = 556004, message = "|Lv. 85 - 99| Way of Wandering Knight") + public static NpcStringId LV_85_99_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; @@ -16835,7 +17219,7 @@ public final class NpcStringId public static NpcStringId HEAR_ABOUT_FACTIONS; @ClientString(id = 556015, message = "Talk to Penny") - public static NpcStringId TALK_TO_PENNY_18; + public static NpcStringId TALK_TO_PENNY_24; @ClientString(id = 556016, message = "Reach Faction Amity Level 1") public static NpcStringId REACH_FACTION_AMITY_LEVEL_1; @@ -16843,23 +17227,23 @@ public final class NpcStringId @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 = 556101, message = "|Lv. 85 - 99| Across the Death Line") + public static NpcStringId LV_85_99_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 = 556102, message = "|Lv. 85 - 99| Across the Death Line (In progress)") + public static NpcStringId LV_85_99_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 = 556103, message = "|Lv. 85 - 99| Across the Death Line (Completed)") + public static NpcStringId LV_85_99_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 = 556104, message = "|Lv. 85 - 99| Across the Death Line") + public static NpcStringId LV_85_99_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; + public static NpcStringId TALK_TO_PENNY_25; @ClientString(id = 556113, message = "Reach Faction Amity Level 2") public static NpcStringId REACH_FACTION_AMITY_LEVEL_2; @@ -16867,17 +17251,17 @@ public final class NpcStringId @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 = 556201, message = "|Lv. 85 - 99| Take Up Arms") + public static NpcStringId LV_85_99_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 = 556202, message = "|Lv. 85 - 99| Take Up Arms (In progress)") + public static NpcStringId LV_85_99_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 = 556203, message = "|Lv. 85 - 99| Take Up Arms (Completed)") + public static NpcStringId LV_85_99_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 = 556204, message = "|Lv. 85 - 99| Take Up Arms") + public static NpcStringId LV_85_99_TAKE_UP_ARMS_2; @ClientString(id = 556211, message = "Meet with Penny") public static NpcStringId MEET_WITH_PENNY; @@ -16888,17 +17272,17 @@ public final class NpcStringId @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 = 556301, message = "|Lv. 85 - 99| Control of Power") + public static NpcStringId LV_85_99_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 = 556302, message = "|Lv. 85 - 99| Control of Power (In progress)") + public static NpcStringId LV_85_99_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 = 556303, message = "|Lv. 85 - 99| Control of Power (Completed)") + public static NpcStringId LV_85_99_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 = 556304, message = "|Lv. 85 - 99| Control of Power") + public static NpcStringId LV_85_99_CONTROL_OF_POWER_2; @ClientString(id = 556311, message = "Meet with Penny") public static NpcStringId MEET_WITH_PENNY_2; @@ -16909,17 +17293,17 @@ public final class NpcStringId @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 = 556401, message = "|Lv. 85 - 99| Prove Progress") + public static NpcStringId LV_85_99_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 = 556402, message = "|Lv. 85 - 99| Prove Progress (In progress)") + public static NpcStringId LV_85_99_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 = 556403, message = "|Lv. 85 - 99| Prove Progress (Completed)") + public static NpcStringId LV_85_99_PROVE_PROGRESS_COMPLETED; - @ClientString(id = 556404, message = "|Lv. 85 - 97| Prove Progress") - public static NpcStringId LV_85_97_PROVE_PROGRESS_2; + @ClientString(id = 556404, message = "|Lv. 85 - 99| Prove Progress") + public static NpcStringId LV_85_99_PROVE_PROGRESS_2; @ClientString(id = 556411, message = "Meet with Penny") public static NpcStringId MEET_WITH_PENNY_3; @@ -16930,17 +17314,17 @@ public final class NpcStringId @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 = 556501, message = "|Lv. 85 - 99| Nothing Is Impossible") + public static NpcStringId LV_85_99_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 = 556502, message = "|Lv. 85 - 99| Nothing Is Impossible (In progress)") + public static NpcStringId LV_85_99_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 = 556503, message = "|Lv. 85 - 99| Nothing Is Impossible (Completed)") + public static NpcStringId LV_85_99_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 = 556504, message = "|Lv. 85 - 99| Nothing Is Impossible") + public static NpcStringId LV_85_99_NOTHING_IS_IMPOSSIBLE_2; @ClientString(id = 556511, message = "Meet with Penny") public static NpcStringId MEET_WITH_PENNY_4; @@ -16994,7 +17378,7 @@ public final class NpcStringId public static NpcStringId COMPLETE_THE_QUEST_SOULLESS_ONE; @ClientString(id = 556716, message = "Talk to Penny") - public static NpcStringId TALK_TO_PENNY_20; + public static NpcStringId TALK_TO_PENNY_26; @ClientString(id = 556801, message = "|Lv. 102+| Kamael's Technological Advancement") public static NpcStringId LV_102_KAMAEL_S_TECHNOLOGICAL_ADVANCEMENT; @@ -17111,7 +17495,7 @@ public final class NpcStringId public static NpcStringId COMPLETE_THE_QUEST_FOR_THE_FORGOTTEN_HEROES; @ClientString(id = 557413, message = "Talk to Penny") - public static NpcStringId TALK_TO_PENNY_21; + public static NpcStringId TALK_TO_PENNY_27; @ClientString(id = 557501, message = "|Lv. 95+| Let's Go Fishing") public static NpcStringId LV_95_LET_S_GO_FISHING; @@ -17243,7 +17627,28 @@ public final class NpcStringId 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; + public static NpcStringId TALK_TO_PENNY_28; + + @ClientString(id = 558801, message = "|Lv. 97-99| Special Mission: Defeat Baylor") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_3; + + @ClientString(id = 558802, message = "|Lv. 97-99| Special Mission: Defeat Baylor (In Progress)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_IN_PROGRESS_2; + + @ClientString(id = 558803, message = "|Lv. 97-99| Special Mission: Defeat Baylor (Complete)") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_COMPLETE_2; + + @ClientString(id = 558804, message = "|Lv. 97-99| Special Mission: Defeat Baylor") + public static NpcStringId LV_97_99_SPECIAL_MISSION_DEFEAT_BAYLOR_4; + + @ClientString(id = 558811, message = "Talk to Fioren") + public static NpcStringId TALK_TO_FIOREN; + + @ClientString(id = 558812, message = "Carry out Fioren's missions") + public static NpcStringId CARRY_OUT_FIOREN_S_MISSIONS; + + @ClientString(id = 558813, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_29; @ClientString(id = 559401, message = "|Lv. 97+| Fergason's Scheme") public static NpcStringId LV_97_FERGASON_S_SCHEME; @@ -17710,17 +18115,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 = "|Lv. 97+| The Hero's Journey: Cemetery") - public static NpcStringId LV_97_THE_HERO_S_JOURNEY_CEMETERY; + @ClientString(id = 572801, message = "|Lv. 97+| The Hero's Journey: The Cemetery") + public static NpcStringId LV_97_THE_HERO_S_JOURNEY_THE_CEMETERY; - @ClientString(id = 572802, message = "|Lv. 97+| The Hero's Journey: Cemetery (In progress)") - public static NpcStringId LV_97_THE_HERO_S_JOURNEY_CEMETERY_IN_PROGRESS; + @ClientString(id = 572802, message = "|Lv. 97+| The Hero's Journey: The Cemetery (In progress)") + public static NpcStringId LV_97_THE_HERO_S_JOURNEY_THE_CEMETERY_IN_PROGRESS; - @ClientString(id = 572803, message = "|Lv. 97+| The Hero's Journey: Cemetery (Completed)") - public static NpcStringId LV_97_THE_HERO_S_JOURNEY_CEMETERY_COMPLETED; + @ClientString(id = 572803, message = "|Lv. 97+| The Hero's Journey: The Cemetery (Completed)") + public static NpcStringId LV_97_THE_HERO_S_JOURNEY_THE_CEMETERY_COMPLETED; - @ClientString(id = 572804, message = "|Lv. 97+| The Hero's Journey: Cemetery") - public static NpcStringId LV_97_THE_HERO_S_JOURNEY_CEMETERY_2; + @ClientString(id = 572804, message = "|Lv. 97+| The Hero's Journey: The Cemetery") + public static NpcStringId LV_97_THE_HERO_S_JOURNEY_THE_CEMETERY_2; @ClientString(id = 572811, message = "Talk to Tulesir") public static NpcStringId TALK_TO_TULESIR_3; @@ -19174,6 +19579,12 @@ public final class NpcStringId @ClientString(id = 582104, message = "|Lv. 99+| Helping Others") public static NpcStringId LV_99_HELPING_OTHERS_4; + @ClientString(id = 582111, message = "Be Party Leader") + public static NpcStringId BE_PARTY_LEADER; + + @ClientString(id = 582112, message = "Talk to Sir Rodemaye") + public static NpcStringId TALK_TO_SIR_RODEMAYE; + @ClientString(id = 582301, message = "|Lv. 100+| Exalted, One Who Shatters the Limit") public static NpcStringId LV_100_EXALTED_ONE_WHO_SHATTERS_THE_LIMIT_3; @@ -19246,8 +19657,8 @@ public final class NpcStringId @ClientString(id = 582704, message = "|Lv. 100+| Step Up to Lead") public static NpcStringId LV_100_STEP_UP_TO_LEAD_4; - @ClientString(id = 582711, message = "Party/Association Leader Bonus") - public static NpcStringId PARTY_ASSOCIATION_LEADER_BONUS; + @ClientString(id = 582711, message = "Be Party Leader") + public static NpcStringId BE_PARTY_LEADER_2; @ClientString(id = 582712, message = "Talk with Sir Gustav Athebaldt") public static NpcStringId TALK_WITH_SIR_GUSTAV_ATHEBALDT; @@ -19480,7 +19891,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") @@ -20017,6 +20428,129 @@ public final class NpcStringId @ClientString(id = 589310, message = "Talk to Leona Blackbird") public static NpcStringId TALK_TO_LEONA_BLACKBIRD_10; + @ClientString(id = 589501, message = "|Lv. 107+| Restrain Queen Krosha") + public static NpcStringId LV_107_RESTRAIN_QUEEN_KROSHA; + + @ClientString(id = 589502, message = "|Lv. 107+| Restrain Queen Krosha (In Progress)") + public static NpcStringId LV_107_RESTRAIN_QUEEN_KROSHA_IN_PROGRESS; + + @ClientString(id = 589503, message = "|Lv. 107+| Restrain Queen Krosha (Complete)") + public static NpcStringId LV_107_RESTRAIN_QUEEN_KROSHA_COMPLETE; + + @ClientString(id = 589504, message = "|Lv. 107+| Restrain Queen Krosha") + public static NpcStringId LV_107_RESTRAIN_QUEEN_KROSHA_2; + + @ClientString(id = 589510, message = "Talk to Lionel Hunter") + public static NpcStringId TALK_TO_LIONEL_HUNTER_2; + + @ClientString(id = 589601, message = "|Lv. 100+| Meet the Adventure Guild") + public static NpcStringId LV_100_MEET_THE_ADVENTURE_GUILD; + + @ClientString(id = 589602, message = "|Lv. 100+| Meet the Adventure Guild (In Progress)") + public static NpcStringId LV_100_MEET_THE_ADVENTURE_GUILD_IN_PROGRESS; + + @ClientString(id = 589603, message = "|Lv. 100+| Meet the Adventure Guild (Complete)") + public static NpcStringId LV_100_MEET_THE_ADVENTURE_GUILD_COMPLETE; + + @ClientString(id = 589604, message = "|Lv. 100+| Meet the Adventure Guild") + public static NpcStringId LV_100_MEET_THE_ADVENTURE_GUILD_2; + + @ClientString(id = 589610, message = "Reach Adventure Guild Lv. 1") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_1; + + @ClientString(id = 589611, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_30; + + @ClientString(id = 589701, message = "|Lv. 100+| Show Your Ability") + public static NpcStringId LV_100_SHOW_YOUR_ABILITY; + + @ClientString(id = 589702, message = "|Lv. 100+| Show Your Ability (In Progress)") + public static NpcStringId LV_100_SHOW_YOUR_ABILITY_IN_PROGRESS; + + @ClientString(id = 589703, message = "|Lv. 100+| Show Your Ability (Complete)") + public static NpcStringId LV_100_SHOW_YOUR_ABILITY_COMPLETE; + + @ClientString(id = 589704, message = "|Lv. 100+| Show Your Ability") + public static NpcStringId LV_100_SHOW_YOUR_ABILITY_2; + + @ClientString(id = 589710, message = "Reach Adventure Guild Lv. 2") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_2; + + @ClientString(id = 589711, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_31; + + @ClientString(id = 589801, message = "|Lv. 100+| Toward A Goal") + public static NpcStringId LV_100_TOWARD_A_GOAL; + + @ClientString(id = 589802, message = "|Lv. 100+| Toward A Goal (In Progress)") + public static NpcStringId LV_100_TOWARD_A_GOAL_IN_PROGRESS; + + @ClientString(id = 589803, message = "|Lv. 100+| Toward A Goal (Complete)") + public static NpcStringId LV_100_TOWARD_A_GOAL_COMPLETE; + + @ClientString(id = 589804, message = "|Lv. 100+| Toward A Goal") + public static NpcStringId LV_100_TOWARD_A_GOAL_2; + + @ClientString(id = 589810, message = "Reach Adventure Guild Lv. 3") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_3; + + @ClientString(id = 589811, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_32; + + @ClientString(id = 589901, message = "|Lv. 100+| Veteran Adventurer") + public static NpcStringId LV_100_VETERAN_ADVENTURER; + + @ClientString(id = 589902, message = "|Lv. 100+| Veteran Adventurer (In Progress)") + public static NpcStringId LV_100_VETERAN_ADVENTURER_IN_PROGRESS; + + @ClientString(id = 589903, message = "|Lv. 100+| Veteran Adventurer (Complete)") + public static NpcStringId LV_100_VETERAN_ADVENTURER_COMPLETE; + + @ClientString(id = 589904, message = "|Lv. 100+| Veteran Adventurer") + public static NpcStringId LV_100_VETERAN_ADVENTURER_2; + + @ClientString(id = 589910, message = "Reach Adventure Guild Lv. 4") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_4; + + @ClientString(id = 589911, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_33; + + @ClientString(id = 590001, message = "|Lv. 100+| Path to Strength") + public static NpcStringId LV_100_PATH_TO_STRENGTH; + + @ClientString(id = 590002, message = "|Lv. 100+| Path to Strength (In Progress)") + public static NpcStringId LV_100_PATH_TO_STRENGTH_IN_PROGRESS; + + @ClientString(id = 590003, message = "|Lv. 100+| Path to Strength (Complete)") + public static NpcStringId LV_100_PATH_TO_STRENGTH_COMPLETE; + + @ClientString(id = 590004, message = "|Lv. 100+| Path to Strength") + public static NpcStringId LV_100_PATH_TO_STRENGTH_2; + + @ClientString(id = 590010, message = "Reach Adventure Guild Lv. 5") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_5; + + @ClientString(id = 590011, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_34; + + @ClientString(id = 590101, message = "|Lv. 100+| A Model Adventurer") + public static NpcStringId LV_100_A_MODEL_ADVENTURER; + + @ClientString(id = 590102, message = "|Lv. 100+| A Model Adventurer (In Progress)") + public static NpcStringId LV_100_A_MODEL_ADVENTURER_IN_PROGRESS; + + @ClientString(id = 590103, message = "|Lv. 100+| A Model Adventurer (Complete)") + public static NpcStringId LV_100_A_MODEL_ADVENTURER_COMPLETE; + + @ClientString(id = 590104, message = "|Lv. 100+| A Model Adventurer") + public static NpcStringId LV_100_A_MODEL_ADVENTURER_2; + + @ClientString(id = 590110, message = "Reach Adventure Guild Lv. 6") + public static NpcStringId REACH_ADVENTURE_GUILD_LV_6; + + @ClientString(id = 590111, message = "Talk to Penny") + public static NpcStringId TALK_TO_PENNY_35; + @ClientString(id = 1000001, message = "A non-permitted target has been discovered.") public static NpcStringId A_NON_PERMITTED_TARGET_HAS_BEEN_DISCOVERED; @@ -20158,7 +20692,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?") @@ -20830,8 +21364,8 @@ public final class NpcStringId @ClientString(id = 1000271, message = "Shilen... our Shilen!") public static NpcStringId SHILEN_OUR_SHILEN; - @ClientString(id = 1000272, message = "All who fear of Fafurion... Leave this place at once!") - public static NpcStringId ALL_WHO_FEAR_OF_FAFURION_LEAVE_THIS_PLACE_AT_ONCE; + @ClientString(id = 1000272, message = "All who fear Fafurion... Leave this place at once!") + public static NpcStringId ALL_WHO_FEAR_FAFURION_LEAVE_THIS_PLACE_AT_ONCE; @ClientString(id = 1000273, message = "You are being punished in the name of Fafurion!") public static NpcStringId YOU_ARE_BEING_PUNISHED_IN_THE_NAME_OF_FAFURION; @@ -21484,7 +22018,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!") @@ -21781,8 +22315,8 @@ public final class NpcStringId @ClientString(id = 1010075, message = "Necropolis of Martyrdom (Lv. 65)") public static NpcStringId NECROPOLIS_OF_MARTYRDOM_LV_65; - @ClientString(id = 1010076, message = "The Disciple's Necropolis (Lv. 90)") - public static NpcStringId THE_DISCIPLE_S_NECROPOLIS_LV_90; + @ClientString(id = 1010076, message = "The Disciple's Necropolis (Lv. 105)") + public static NpcStringId THE_DISCIPLE_S_NECROPOLIS_LV_105; @ClientString(id = 1010077, message = "The Saint's Necropolis (Lv. 70)") public static NpcStringId THE_SAINT_S_NECROPOLIS_LV_70; @@ -21799,8 +22333,8 @@ public final class NpcStringId @ClientString(id = 1010081, message = "Catacomb of the Witch (Lv. 60)") public static NpcStringId CATACOMB_OF_THE_WITCH_LV_60; - @ClientString(id = 1010082, message = "Catacomb of Dark Omens (Lv. 85)") - public static NpcStringId CATACOMB_OF_DARK_OMENS_LV_85; + @ClientString(id = 1010082, message = "Catacomb of Dark Omens (Lv. 105)") + public static NpcStringId CATACOMB_OF_DARK_OMENS_LV_105; @ClientString(id = 1010083, message = "Catacomb of the Forbidden Path (Lv. 72)") public static NpcStringId CATACOMB_OF_THE_FORBIDDEN_PATH_LV_72; @@ -21820,11 +22354,11 @@ public final class NpcStringId @ClientString(id = 1010088, message = "Entrance to Dragon Valley") public static NpcStringId ENTRANCE_TO_DRAGON_VALLEY; - @ClientString(id = 1010089, message = "Field of Silence (Lv. 81)") - public static NpcStringId FIELD_OF_SILENCE_LV_81; + @ClientString(id = 1010089, message = "Field of Silence (Lv. 106)") + public static NpcStringId FIELD_OF_SILENCE_LV_106; - @ClientString(id = 1010090, message = "Field of Whispers (Lv. 81)") - public static NpcStringId FIELD_OF_WHISPERS_LV_81; + @ClientString(id = 1010090, message = "Field of Whispers (Lv. 108)") + public static NpcStringId FIELD_OF_WHISPERS_LV_108; @ClientString(id = 1010091, message = "Entrance to Alligator Island") public static NpcStringId ENTRANCE_TO_ALLIGATOR_ISLAND; @@ -21925,7 +22459,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") @@ -22306,10 +22840,10 @@ public final class NpcStringId @ClientString(id = 1010421, message = "Ke, ke, ke, Rakul! Spin! Eh, eh, eh!") public static NpcStringId KE_KE_KE_RAKUL_SPIN_EH_EH_EH; - @ClientString(id = 1010422, message = "Ah! Fafurion! Ah! Ah!") - public static NpcStringId AH_FAFURION_AH_AH; + @ClientString(id = 1010422, message = "Hya! Fafurion! Hya! Hya!") + public static NpcStringId HYA_FAFURION_HYA_HYA; - @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...") @@ -22564,7 +23098,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") @@ -22783,7 +23317,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!") @@ -22954,7 +23488,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.") @@ -22996,8 +23530,8 @@ public final class NpcStringId @ClientString(id = 1010651, message = "Mimir's Forest Base") public static NpcStringId MIMIR_S_FOREST_BASE; - @ClientString(id = 1010652, message = "Isle of Souls Harbor(Lv. 93)") - public static NpcStringId ISLE_OF_SOULS_HARBOR_LV_93; + @ClientString(id = 1010652, message = "Isle of Souls Harbor") + public static NpcStringId ISLE_OF_SOULS_HARBOR; @ClientString(id = 1010653, message = "Stronghold I (Lv. 1)") public static NpcStringId STRONGHOLD_I_LV_1; @@ -23237,7 +23771,7 @@ public final class NpcStringId public static NpcStringId KEUCEREUS_ALLIANCE_BASE; @ClientString(id = 1010732, message = "Isle of Souls Harbor (Lv. 93)") - public static NpcStringId ISLE_OF_SOULS_HARBOR_LV_93_2; + public static NpcStringId ISLE_OF_SOULS_HARBOR_LV_93; @ClientString(id = 1010733, message = "North of Alligator Island (Lv. 40)") public static NpcStringId NORTH_OF_ALLIGATOR_ISLAND_LV_40; @@ -23284,6 +23818,9 @@ public final class NpcStringId @ClientString(id = 1010747, message = "Freya's Garden") public static NpcStringId FREYA_S_GARDEN; + @ClientString(id = 1010748, message = "Fafurion Temple (Lv. 111)") + public static NpcStringId FAFURION_TEMPLE_LV_111; + @ClientString(id = 1029350, message = "What took so long? I waited for ever.") public static NpcStringId WHAT_TOOK_SO_LONG_I_WAITED_FOR_EVER; @@ -23650,8 +24187,8 @@ 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 = 1083474, message = "The battle time has ended in the Throne of Heroes. The instanced zone will be closed shortly.") + public static NpcStringId THE_BATTLE_TIME_HAS_ENDED_IN_THE_THRONE_OF_HEROES_THE_INSTANCED_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; @@ -24667,7 +25204,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)") @@ -24892,8 +25429,8 @@ public final class NpcStringId @ClientString(id = 1120074, message = "Earth Protector Panathen (lv43)") public static NpcStringId EARTH_PROTECTOR_PANATHEN_LV43; - @ClientString(id = 1120075, message = "Fafurion's Messenger Loch Ness (lv70)") - public static NpcStringId FAFURION_S_MESSENGER_LOCH_NESS_LV70; + @ClientString(id = 1120075, message = "Fafurion's Messenger Lokness (Lv. 70)") + public static NpcStringId FAFURION_S_MESSENGER_LOKNESS_LV_70; @ClientString(id = 1120076, message = "Fafurion's Seer Sheshark (lv72)") public static NpcStringId FAFURION_S_SEER_SHESHARK_LV72; @@ -24910,8 +25447,8 @@ public final class NpcStringId @ClientString(id = 1120080, message = "Sebek (lv36)") public static NpcStringId SEBEK_LV36; - @ClientString(id = 1120081, message = "Fafurion's Page Sika (lv40)") - public static NpcStringId FAFURION_S_PAGE_SIKA_LV40; + @ClientString(id = 1120081, message = "Fafurion's Page Sika (Lv. 40)") + public static NpcStringId FAFURION_S_PAGE_SIKA_LV_40; @ClientString(id = 1120082, message = "Cursed Clara (lv50)") public static NpcStringId CURSED_CLARA_LV50; @@ -25198,11 +25735,11 @@ public final class NpcStringId @ClientString(id = 1120176, message = "Eva's Spirit Niniel (lv55)") public static NpcStringId EVA_S_SPIRIT_NINIEL_LV55; - @ClientString(id = 1120177, message = "Fafurion's Envoy Pingolpin (lv52)") - public static NpcStringId FAFURION_S_ENVOY_PINGOLPIN_LV52; + @ClientString(id = 1120177, message = "Fafurion's Envoy Pingolpin (Lv. 52)") + public static NpcStringId FAFURION_S_ENVOY_PINGOLPIN_LV_52; - @ClientString(id = 1120178, message = "Fafurion's Henchman Istary (lv45)") - public static NpcStringId FAFURION_S_HENCHMAN_ISTARY_LV45; + @ClientString(id = 1120178, message = "Fafurion's Henchman Istary (Lv. 45)") + public static NpcStringId FAFURION_S_HENCHMAN_ISTARY_LV_45; @ClientString(id = 1120179, message = "Grave Robber Boss Akata (lv30)") public static NpcStringId GRAVE_ROBBER_BOSS_AKATA_LV30; @@ -26023,8 +26560,8 @@ public final class NpcStringId @ClientString(id = 1300134, message = "Boundary Fortress") public static NpcStringId BOUNDARY_FORTRESS; - @ClientString(id = 1300135, message = "$s1 h. $s2 min.") - public static NpcStringId S1_H_S2_MIN; + @ClientString(id = 1300135, message = "$s1hour $s2minute") + public static NpcStringId S1HOUR_S2MINUTE; @ClientString(id = 1300136, message = "Not designated") public static NpcStringId NOT_DESIGNATED; @@ -26212,7 +26749,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.") @@ -27367,7 +27904,7 @@ public final class NpcStringId @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!") + @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.") @@ -27694,10 +28231,10 @@ public final class NpcStringId @ClientString(id = 1800067, message = "Demon King Beleth, give me the power! Aaahh!!!") public static NpcStringId DEMON_KING_BELETH_GIVE_ME_THE_POWER_AAAHH; - @ClientString(id = 1800068, message = "No....... I feel the power of Fafurion.......") - public static NpcStringId NO_I_FEEL_THE_POWER_OF_FAFURION; + @ClientString(id = 1800068, message = "Damn... I can feel Fafurion's power...") + public static NpcStringId DAMN_I_CAN_FEEL_FAFURION_S_POWER; - @ClientString(id = 1800069, message = "Fafurion! Please give power to this helpless witch!!") + @ClientString(id = 1800069, message = "Fafurion! Please give power to this helpless witch!") public static NpcStringId FAFURION_PLEASE_GIVE_POWER_TO_THIS_HELPLESS_WITCH; @ClientString(id = 1800070, message = "I can't help you much, but I can weaken the power of Baylor since I'm locked up here.") @@ -27982,22 +28519,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!") @@ -28366,10 +28903,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>.") @@ -29656,7 +30193,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?") @@ -29680,7 +30217,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...") @@ -29689,7 +30226,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.") @@ -29698,7 +30235,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...") @@ -29707,19 +30244,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~") @@ -29797,7 +30334,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!") @@ -29944,7 +30481,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?") @@ -30085,7 +30622,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") @@ -30787,7 +31324,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") @@ -31039,7 +31576,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?") @@ -31093,7 +31630,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") @@ -31390,7 +31927,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.") @@ -31465,7 +32002,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.") @@ -32659,7 +33196,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!!!") @@ -32824,10 +33361,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") @@ -33307,7 +33844,7 @@ 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.") @@ -33622,7 +34159,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!") @@ -33652,7 +34189,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.") @@ -33955,10 +34492,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!") @@ -34045,14 +34582,14 @@ public final class NpcStringId @ClientString(id = 1802372, message = "You dare interfere with Embryo? Surely you wish for death!") public static NpcStringId YOU_DARE_INTERFERE_WITH_EMBRYO_SURELY_YOU_WISH_FOR_DEATH; - @ClientString(id = 1802373, message = "10 minutes until Antharas goes berserk!") - public static NpcStringId TEN_MINUTES_UNTIL_ANTHARAS_GOES_BERSERK; + @ClientString(id = 1802373, message = "15 minutes until Antharas goes berserk!") + public static NpcStringId FIFTEEN_MINUTES_UNTIL_ANTHARAS_GOES_BERSERK; @ClientString(id = 1802374, message = "Antharas is on a rampage. The terrains are twisting and turning.") public static NpcStringId ANTHARAS_IS_ON_A_RAMPAGE_THE_TERRAINS_ARE_TWISTING_AND_TURNING; - @ClientString(id = 1802375, message = "10 minutes until Valakas goes berserk!") - public static NpcStringId TEN_MINUTES_UNTIL_VALAKAS_GOES_BERSERK; + @ClientString(id = 1802375, message = "15 minutes until Valakas goes berserk!") + public static NpcStringId FIFTEEN_MINUTES_UNTIL_VALAKAS_GOES_BERSERK; @ClientString(id = 1802376, message = "Valakas is on a rampage. The land begins to burn.") public static NpcStringId VALAKAS_IS_ON_A_RAMPAGE_THE_LAND_BEGINS_TO_BURN; @@ -34090,11 +34627,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; @@ -34183,7 +34720,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...") @@ -34750,8 +35287,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 Instance Zone duration.") - public static NpcStringId S1_SECONDS_HAVE_BEEN_ADDED_TO_THE_INSTANCE_ZONE_DURATION; + @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 = 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; @@ -34888,7 +35425,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.") @@ -35035,8 +35572,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 Instance Zone will close soon!") - public static NpcStringId THE_INSTANCE_ZONE_WILL_CLOSE_SOON; + @ClientString(id = 1802704, message = "The instanced zone will close soon!") + public static NpcStringId THE_INSTANCED_ZONE_WILL_CLOSE_SOON; @ClientString(id = 1802705, message = "Nooo…not enough Vitality yet!") public static NpcStringId NOOO_NOT_ENOUGH_VITALITY_YET; @@ -35083,7 +35620,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!") @@ -35098,7 +35635,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.") @@ -35110,13 +35647,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.") @@ -35128,7 +35665,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.") @@ -35158,7 +35695,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!") @@ -35173,16 +35710,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!") @@ -35197,7 +35734,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!") @@ -35251,7 +35788,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!") @@ -35266,7 +35803,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!") @@ -35275,7 +35812,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!") @@ -35287,7 +35824,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?") @@ -35302,10 +35839,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.") @@ -35473,7 +36010,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%%.") @@ -35752,7 +36289,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.") @@ -35800,13 +36337,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!") @@ -35866,7 +36403,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?") @@ -35881,16 +36418,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!") @@ -35926,13 +36463,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!") @@ -35941,7 +36478,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.") @@ -36223,7 +36760,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!") @@ -36403,7 +36940,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.") @@ -36523,7 +37060,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?") @@ -36661,13 +37198,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.") @@ -36790,17 +37327,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 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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; @@ -37162,7 +37699,7 @@ public final class NpcStringId @ClientString(id = 1803413, message = "1 second") public static NpcStringId ONE_SECOND_2; - @ClientString(id = 1803414, message = "The first challenge begins.") + @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.") @@ -37174,13 +37711,13 @@ public final class NpcStringId @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.") + @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.") + @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.") @@ -37195,7 +37732,7 @@ public final class NpcStringId @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.") + @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!") @@ -37210,7 +37747,7 @@ public final class NpcStringId @ClientString(id = 1803429, message = "Tiat summons his minions.") public static NpcStringId TIAT_SUMMONS_HIS_MINIONS; - @ClientString(id = 1803430, message = "Tiat reveals his dignity.") + @ClientString(id = 1803430, message = "Tiat reveals his dignity. ") public static NpcStringId TIAT_REVEALS_HIS_DIGNITY; @ClientString(id = 1803431, message = "Tauti summons his mechanical contraption.") @@ -37246,8 +37783,8 @@ public final class NpcStringId @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 = 1803442, message = "Go find and talk to Balthus Knight Sibis.") + public static NpcStringId GO_FIND_AND_TALK_TO_BALTHUS_KNIGHT_SIBIS; @ClientString(id = 1803443, message = "Go find and talk to Tarti.") public static NpcStringId GO_FIND_AND_TALK_TO_TARTI; @@ -37261,8 +37798,8 @@ public final class NpcStringId @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 = 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; @@ -37270,7 +37807,7 @@ public final class NpcStringId @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.") + @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.") @@ -37393,11 +37930,11 @@ public final class NpcStringId @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 = 1803520, message = "$s1 has reached +21 Enchantment Level and gained a +16 Bloody Amaranthine Weapon.") + public static NpcStringId S1_HAS_REACHED_21_ENCHANTMENT_LEVEL_AND_GAINED_A_16_BLOODY_AMARANTHINE_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 = 1803521, message = "$s1 has reached +22 Enchantment Level and gained a +18 Bloody Amaranthine Weapon.") + public static NpcStringId S1_HAS_REACHED_22_ENCHANTMENT_LEVEL_AND_GAINED_A_18_BLOODY_AMARANTHINE_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; @@ -37648,8 +38185,8 @@ public final class NpcStringId @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 = 1803605, message = "See who is the true Master of the Sea of Spores!") + public static NpcStringId SEE_WHO_IS_THE_TRUE_MASTER_OF_THE_SEA_OF_SPORES; @ClientString(id = 1803606, message = "Creatures! Witness my power!") public static NpcStringId CREATURES_WITNESS_MY_POWER; @@ -37660,8 +38197,8 @@ public final class NpcStringId @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 = 1803609, message = "You detect Orfen's Handmaidens and the Energy of the Sea of Spores.") + public static NpcStringId YOU_DETECT_ORFEN_S_HANDMAIDENS_AND_THE_ENERGY_OF_THE_SEA_OF_SPORES; @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; @@ -37669,20 +38206,20 @@ public final class NpcStringId @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 = 1803612, message = "Orfen's Handmaidens have appeared to absorb the Energy of the Sea of Spores.") + public static NpcStringId ORFEN_S_HANDMAIDENS_HAVE_APPEARED_TO_ABSORB_THE_ENERGY_OF_THE_SEA_OF_SPORES; - @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 = 1803613, message = "Orfen's Handmaidens begin absorbing the Energy of the Sea of Spores.\\nYou can gain Vitality by defeating Orfen's Handmaidens before they can finish obtaining the Energy of the Sea of Spores.") + public static NpcStringId ORFEN_S_HANDMAIDENS_BEGIN_ABSORBING_THE_ENERGY_OF_THE_SEA_OF_SPORES_NYOU_CAN_GAIN_VITALITY_BY_DEFEATING_ORFEN_S_HANDMAIDENS_BEFORE_THEY_CAN_FINISH_OBTAINING_THE_ENERGY_OF_THE_SEA_OF_SPORES; - @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 = 1803614, message = "Orfen's Handmaidens have finished absorbing the Energy of the Sea of Spores.\\nAs the Energy of the Sea of Spores 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_SEA_OF_SPORES_NAS_THE_ENERGY_OF_THE_SEA_OF_SPORES_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 = 1803616, message = "The dead of $s1th wave are rising and starting to attack.") + public static NpcStringId THE_DEAD_OF_S1TH_WAVE_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; @@ -37693,8 +38230,8 @@ public final class NpcStringId @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 = 1803620, message = "The dead of $s1th wave are rising and starting to attack after Votan's defeat.") + public static NpcStringId THE_DEAD_OF_S1TH_WAVE_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; @@ -37705,8 +38242,8 @@ public final class NpcStringId @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 = 1803624, message = "Merkios falls and the light begins to fade from the altar, settling it into silence.") + public static NpcStringId MERKIOS_FALLS_AND_THE_LIGHT_BEGINS_TO_FADE_FROM_THE_ALTAR_SETTLING_IT_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; @@ -37714,12 +38251,330 @@ public final class NpcStringId @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 = 1803627, message = "Orfen recovers her power by using the Energy of the Sea of Spores.") + public static NpcStringId ORFEN_RECOVERS_HER_POWER_BY_USING_THE_ENERGY_OF_THE_SEA_OF_SPORES; @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 = 1803629, message = "Lurin's minions are coming to defend the fortress.") + public static NpcStringId LURIN_S_MINIONS_ARE_COMING_TO_DEFEND_THE_FORTRESS; + + @ClientString(id = 1803630, message = "Defense Force No. $s1 is coming.") + public static NpcStringId DEFENSE_FORCE_NO_S1_IS_COMING; + + @ClientString(id = 1803631, message = "The Battle Demolisher has been activated.") + public static NpcStringId THE_BATTLE_DEMOLISHER_HAS_BEEN_ACTIVATED; + + @ClientString(id = 1803632, message = "The Lookout - Battle Demolisher has been activated.") + public static NpcStringId THE_LOOKOUT_BATTLE_DEMOLISHER_HAS_BEEN_ACTIVATED; + + @ClientString(id = 1803633, message = "The Destroyer - Battle Demolisher has been activated.") + public static NpcStringId THE_DESTROYER_BATTLE_DEMOLISHER_HAS_BEEN_ACTIVATED; + + @ClientString(id = 1803634, message = "After the Battle Demolisher fell, Lurin's minions descended.") + public static NpcStringId AFTER_THE_BATTLE_DEMOLISHER_FELL_LURIN_S_MINIONS_DESCENDED; + + @ClientString(id = 1803635, message = "Lurin appears surrounded by the Mysterious Power.") + public static NpcStringId LURIN_APPEARS_SURROUNDED_BY_THE_MYSTERIOUS_POWER; + + @ClientString(id = 1803636, message = "'Lord' Lurin appears surrounded by the Mysterious Power.") + public static NpcStringId LORD_LURIN_APPEARS_SURROUNDED_BY_THE_MYSTERIOUS_POWER; + + @ClientString(id = 1803637, message = "'Archlord' Lurin appears surrounded by the Mysterious Power.") + public static NpcStringId ARCHLORD_LURIN_APPEARS_SURROUNDED_BY_THE_MYSTERIOUS_POWER; + + @ClientString(id = 1803638, message = "Since Lurin fell, the Mysterious Power surrounding the fortress has disappeared.") + public static NpcStringId SINCE_LURIN_FELL_THE_MYSTERIOUS_POWER_SURROUNDING_THE_FORTRESS_HAS_DISAPPEARED; + + @ClientString(id = 1803639, message = "The water is rising due to Queen Krosha's attack.") + public static NpcStringId THE_WATER_IS_RISING_DUE_TO_QUEEN_KROSHA_S_ATTACK; + + @ClientString(id = 1803640, message = "Combat Force No. $s1 is coming.") + public static NpcStringId COMBAT_FORCE_NO_S1_IS_COMING; + + @ClientString(id = 1803641, message = "Evelyn has retreated, heavily wounded.") + public static NpcStringId EVELYN_HAS_RETREATED_HEAVILY_WOUNDED; + + @ClientString(id = 1803642, message = "Queen Krosha has disappeared.") + public static NpcStringId QUEEN_KROSHA_HAS_DISAPPEARED; + + @ClientString(id = 1803643, message = "Queen Krosha has returned more powerful than ever.") + public static NpcStringId QUEEN_KROSHA_HAS_RETURNED_MORE_POWERFUL_THAN_EVER; + + @ClientString(id = 1803644, message = "Queen Krosha is under the protection of water thanks to her ties with the Krofins.") + public static NpcStringId QUEEN_KROSHA_IS_UNDER_THE_PROTECTION_OF_WATER_THANKS_TO_HER_TIES_WITH_THE_KROFINS; + + @ClientString(id = 1803645, message = "The water power protecting Queen Krosha has disappeared.") + public static NpcStringId THE_WATER_POWER_PROTECTING_QUEEN_KROSHA_HAS_DISAPPEARED; + + @ClientString(id = 1803646, message = "Successfully destroyed Lilith's Unholy Barrier!") + public static NpcStringId SUCCESSFULLY_DESTROYED_LILITH_S_UNHOLY_BARRIER; + + @ClientString(id = 1803647, message = "Failed to destroy the Lilith's Unholy Barrier.\\nLilith will recover Max CON.") + public static NpcStringId FAILED_TO_DESTROY_THE_LILITH_S_UNHOLY_BARRIER_NLILITH_WILL_RECOVER_MAX_CON; + + @ClientString(id = 1803648, message = "Successfully destroyed Anakim's Holy Shield!") + public static NpcStringId SUCCESSFULLY_DESTROYED_ANAKIM_S_HOLY_SHIELD; + + @ClientString(id = 1803649, message = "Failed to destroy Anakim's Holy Shield.\\nAnakim will recover Max CON.") + public static NpcStringId FAILED_TO_DESTROY_ANAKIM_S_HOLY_SHIELD_NANAKIM_WILL_RECOVER_MAX_CON; + + @ClientString(id = 1803650, message = "The power to water block the passage has disappeared.") + public static NpcStringId THE_POWER_TO_WATER_BLOCK_THE_PASSAGE_HAS_DISAPPEARED; + + @ClientString(id = 1803651, message = "Lilith uses the Unholy Barrier to protect herself. ") + public static NpcStringId LILITH_USES_THE_UNHOLY_BARRIER_TO_PROTECT_HERSELF; + + @ClientString(id = 1803652, message = "Anakim uses the Holy Shield to protect herself.") + public static NpcStringId ANAKIM_USES_THE_HOLY_SHIELD_TO_PROTECT_HERSELF; + + @ClientString(id = 1803653, message = "The command channel to which $s1 belongs has the right to loot Lilith's dropped items.") + public static NpcStringId THE_COMMAND_CHANNEL_TO_WHICH_S1_BELONGS_HAS_THE_RIGHT_TO_LOOT_LILITH_S_DROPPED_ITEMS; + + @ClientString(id = 1803654, message = "The command channel to which $s1 belongs has the right to loot Anakim's dropped items.") + public static NpcStringId THE_COMMAND_CHANNEL_TO_WHICH_S1_BELONGS_HAS_THE_RIGHT_TO_LOOT_ANAKIM_S_DROPPED_ITEMS; + + @ClientString(id = 1803655, message = "Lilith's dropped item looting right has been unbound.") + public static NpcStringId LILITH_S_DROPPED_ITEM_LOOTING_RIGHT_HAS_BEEN_UNBOUND; + + @ClientString(id = 1803656, message = "Anakim's dropped item looting right has been unbound.") + public static NpcStringId ANAKIM_S_DROPPED_ITEM_LOOTING_RIGHT_HAS_BEEN_UNBOUND; + + @ClientString(id = 1803657, message = "Main Body") + public static NpcStringId MAIN_BODY; + + @ClientString(id = 1803658, message = "First Illusion") + public static NpcStringId FIRST_ILLUSION; + + @ClientString(id = 1803659, message = "Second Illusion") + public static NpcStringId SECOND_ILLUSION; + + @ClientString(id = 1803660, message = "The 'First Illusion' of Krotanion has appeared.") + public static NpcStringId THE_FIRST_ILLUSION_OF_KROTANION_HAS_APPEARED; + + @ClientString(id = 1803661, message = "The 'Second Illusion' of Krotanion has appeared.") + public static NpcStringId THE_SECOND_ILLUSION_OF_KROTANION_HAS_APPEARED; + + @ClientString(id = 1803662, message = "As there was no battle for a while, Lilith drove out those who invaded her territory.") + public static NpcStringId AS_THERE_WAS_NO_BATTLE_FOR_A_WHILE_LILITH_DROVE_OUT_THOSE_WHO_INVADED_HER_TERRITORY; + + @ClientString(id = 1803663, message = "As there was no battle for a while, Anakim drove out those who invaded her territory.") + public static NpcStringId AS_THERE_WAS_NO_BATTLE_FOR_A_WHILE_ANAKIM_DROVE_OUT_THOSE_WHO_INVADED_HER_TERRITORY; + + @ClientString(id = 1803664, message = "Spotted Raid Boss $s1.") + public static NpcStringId SPOTTED_RAID_BOSS_S1; + + @ClientString(id = 1803665, message = "Succeeded in defeating Raid Boss $s1.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_S1; + + @ClientString(id = 1803666, message = "$s1 hour(s) and $s2 minute(s) left to purify Fafurion's Nest.") + public static NpcStringId S1_HOUR_S_AND_S2_MINUTE_S_LEFT_TO_PURIFY_FAFURION_S_NEST; + + @ClientString(id = 1803667, message = "Cyrax has fallen, activating a portal to Fafurion's Nest inside the temple.") + public static NpcStringId CYRAX_HAS_FALLEN_ACTIVATING_A_PORTAL_TO_FAFURION_S_NEST_INSIDE_THE_TEMPLE; + + @ClientString(id = 1803668, message = "Big Dragon Bomber charges at $s1.") + public static NpcStringId BIG_DRAGON_BOMBER_CHARGES_AT_S1; + + @ClientString(id = 1803669, message = "Eliminate all intruders!") + public static NpcStringId ELIMINATE_ALL_INTRUDERS; + + @ClientString(id = 1803670, message = "Intruders! Kill them all!") + public static NpcStringId INTRUDERS_KILL_THEM_ALL; + + @ClientString(id = 1803671, message = "Spotted Raid Boss Zigathan.") + public static NpcStringId SPOTTED_RAID_BOSS_ZIGATHAN; + + @ClientString(id = 1803672, message = "Succeeded in defeating Raid Boss Zigathan.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_ZIGATHAN; + + @ClientString(id = 1803673, message = "Spotted Raid Boss Nemertess.") + public static NpcStringId SPOTTED_RAID_BOSS_NEMERTESS; + + @ClientString(id = 1803674, message = "Succeeded in defeating Raid Boss Nemertess.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_NEMERTESS; + + @ClientString(id = 1803675, message = "Spotted Raid Boss Nann.") + public static NpcStringId SPOTTED_RAID_BOSS_NANN; + + @ClientString(id = 1803676, message = "Succeeded in defeating Raid Boss Nann.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_NANN; + + @ClientString(id = 1803677, message = "Spotted Raid Boss Brutal.") + public static NpcStringId SPOTTED_RAID_BOSS_BRUTAL; + + @ClientString(id = 1803678, message = "Succeeded in defeating Raid Boss Brutal.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_BRUTAL; + + @ClientString(id = 1803679, message = "Spotted Raid Boss Epica.") + public static NpcStringId SPOTTED_RAID_BOSS_EPICA; + + @ClientString(id = 1803680, message = "Succeeded in defeating Raid Boss Epica.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_EPICA; + + @ClientString(id = 1803681, message = "Spotted Raid Boss Balthazar.") + public static NpcStringId SPOTTED_RAID_BOSS_BALTHAZAR; + + @ClientString(id = 1803682, message = "Succeeded in defeating Raid Boss Balthazar.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_BALTHAZAR; + + @ClientString(id = 1803683, message = "Spotted Raid Boss Baldoo.") + public static NpcStringId SPOTTED_RAID_BOSS_BALDOO; + + @ClientString(id = 1803684, message = "Succeeded in defeating Raid Boss Baldoo.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_BALDOO; + + @ClientString(id = 1803685, message = "Spotted Raid Boss Decca.") + public static NpcStringId SPOTTED_RAID_BOSS_DECCA; + + @ClientString(id = 1803686, message = "Succeeded in defeating Raid Boss Decca.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_DECCA; + + @ClientString(id = 1803687, message = "Spotted Raid Boss Keron.") + public static NpcStringId SPOTTED_RAID_BOSS_KERON; + + @ClientString(id = 1803688, message = "Succeeded in defeating Raid Boss Keron.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_KERON; + + @ClientString(id = 1803689, message = "Spotted Raid Boss Moldiropa.") + public static NpcStringId SPOTTED_RAID_BOSS_MOLDIROPA; + + @ClientString(id = 1803690, message = "Succeeded in defeating Raid Boss Moldiropa.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_MOLDIROPA; + + @ClientString(id = 1803691, message = "Spotted Raid Boss Gariott.") + public static NpcStringId SPOTTED_RAID_BOSS_GARIOTT; + + @ClientString(id = 1803692, message = "Succeeded in defeating Raid Boss Gariott.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_GARIOTT; + + @ClientString(id = 1803693, message = "Spotted Raid Boss Afjak.") + public static NpcStringId SPOTTED_RAID_BOSS_AFJAK; + + @ClientString(id = 1803694, message = "Succeeded in defeating Raid Boss Afjak.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_AFJAK; + + @ClientString(id = 1803695, message = "Spotted Raid Boss Andeval.") + public static NpcStringId SPOTTED_RAID_BOSS_ANDEVAL; + + @ClientString(id = 1803696, message = "Succeeded in defeating Raid Boss Andeval.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_ANDEVAL; + + @ClientString(id = 1803697, message = "Spotted Raid Boss Realpin.") + public static NpcStringId SPOTTED_RAID_BOSS_REALPIN; + + @ClientString(id = 1803698, message = "Succeeded in defeating Raid Boss Realpin.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_REALPIN; + + @ClientString(id = 1803699, message = "Spotted Raid Boss Mimir.") + public static NpcStringId SPOTTED_RAID_BOSS_MIMIR; + + @ClientString(id = 1803700, message = "Succeeded in defeating Raid Boss Mimir.") + public static NpcStringId SUCCEEDED_IN_DEFEATING_RAID_BOSS_MIMIR; + + @ClientString(id = 1803701, message = "Keep your guard up!") + public static NpcStringId KEEP_YOUR_GUARD_UP; + + @ClientString(id = 1803702, message = "All clear! Retreat!") + public static NpcStringId ALL_CLEAR_RETREAT; + + @ClientString(id = 1803703, message = "Berserk") + public static NpcStringId BERSERK; + + @ClientString(id = 1803704, message = "My minions, it is time to hunt.") + public static NpcStringId MY_MINIONS_IT_IS_TIME_TO_HUNT; + + @ClientString(id = 1803705, message = "My wave shall swallow you whole!") + public static NpcStringId MY_WAVE_SHALL_SWALLOW_YOU_WHOLE; + + @ClientString(id = 1803706, message = "I am tired of fighting you. I'll let the waves take you!") + public static NpcStringId I_AM_TIRED_OF_FIGHTING_YOU_I_LL_LET_THE_WAVES_TAKE_YOU; + + @ClientString(id = 1803707, message = "$s1 minute(s) remaining for the Fafurion's Nest Raid.") + public static NpcStringId S1_MINUTE_S_REMAINING_FOR_THE_FAFURION_S_NEST_RAID; + + @ClientString(id = 1803708, message = "4 minutes remaining for the Fafurion's Nest Raid.") + public static NpcStringId FOUR_MINUTES_REMAINING_FOR_THE_FAFURION_S_NEST_RAID; + + @ClientString(id = 1803709, message = "3 minutes remaining for the Fafurion's Nest Raid.") + public static NpcStringId THREE_MINUTES_REMAINING_FOR_THE_FAFURION_S_NEST_RAID; + + @ClientString(id = 1803710, message = "2 minutes remaining for the Fafurion's Nest Raid.") + public static NpcStringId TWO_MINUTES_REMAINING_FOR_THE_FAFURION_S_NEST_RAID; + + @ClientString(id = 1803711, message = "1 minutes remaining for the Fafurion's Nest Raid.") + public static NpcStringId ONE_MINUTES_REMAINING_FOR_THE_FAFURION_S_NEST_RAID; + + @ClientString(id = 1803712, message = "Exceeded the Fafurion's Nest Raid time limit.") + public static NpcStringId EXCEEDED_THE_FAFURION_S_NEST_RAID_TIME_LIMIT; + + @ClientString(id = 1803713, message = "The honored warrior has obtained a Bloody Amaranthine Weapon.") + public static NpcStringId THE_HONORED_WARRIOR_HAS_OBTAINED_A_BLOODY_AMARANTHINE_WEAPON; + + @ClientString(id = 1803714, message = "The honored warrior has obtained a piece of Bloody Eternal Armor.") + public static NpcStringId THE_HONORED_WARRIOR_HAS_OBTAINED_A_PIECE_OF_BLOODY_ETERNAL_ARMOR; + + @ClientString(id = 1803715, message = "The honored warrior has obtained a Lv. 5 Jewel.") + public static NpcStringId THE_HONORED_WARRIOR_HAS_OBTAINED_A_LV_5_JEWEL; + + @ClientString(id = 1803716, message = "The honored warrior has obtained the Ruler's Authority.") + public static NpcStringId THE_HONORED_WARRIOR_HAS_OBTAINED_THE_RULER_S_AUTHORITY; + + @ClientString(id = 1803717, message = "Spotted Raid Boss Bloody Golem.") + public static NpcStringId SPOTTED_RAID_BOSS_BLOODY_GOLEM; + + @ClientString(id = 1803718, message = "The Raid Boss goes into Combat state.\\nFocus your attacks to destroy the Limit Barrier within 15 seconds.") + public static NpcStringId THE_RAID_BOSS_GOES_INTO_COMBAT_STATE_NFOCUS_YOUR_ATTACKS_TO_DESTROY_THE_LIMIT_BARRIER_WITHIN_15_SECONDS; + + @ClientString(id = 1803719, message = "Failed to destroy the Limit Barrier.\\nThe Limit Barrier of the Raid Boss will be reset.") + public static NpcStringId FAILED_TO_DESTROY_THE_LIMIT_BARRIER_NTHE_LIMIT_BARRIER_OF_THE_RAID_BOSS_WILL_BE_RESET; + + @ClientString(id = 1803720, message = "$s1 has used +16 Mammon's Magic Staff and gained an Ultimate Lv. 5 Jewelry Box.") + public static NpcStringId S1_HAS_USED_16_MAMMON_S_MAGIC_STAFF_AND_GAINED_AN_ULTIMATE_LV_5_JEWELRY_BOX; + + @ClientString(id = 1803721, message = "$s1 has used +17 Mammon's Magic Staff and gained a +7 Zodiac Agathion Cube.") + public static NpcStringId S1_HAS_USED_17_MAMMON_S_MAGIC_STAFF_AND_GAINED_A_7_ZODIAC_AGATHION_CUBE; + + @ClientString(id = 1803722, message = "$s1 has used +18 Mammon's Magic Staff and gained the Queen Ant's Soul Ring.") + public static NpcStringId S1_HAS_USED_18_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_QUEEN_ANT_S_SOUL_RING; + + @ClientString(id = 1803723, message = "$s1 has used +18 Mammon's Magic Staff and gained the Baium's Soul Ring.") + public static NpcStringId S1_HAS_USED_18_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_BAIUM_S_SOUL_RING; + + @ClientString(id = 1803724, message = "$s1 has used +18 Mammon's Magic Staff and gained the Earth Wyrm Heart Ring.") + public static NpcStringId S1_HAS_USED_18_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_EARTH_WYRM_HEART_RING; + + @ClientString(id = 1803725, message = "$s1 has used +19 Mammon's Magic Staff and gained the Super Advanced Seed Bracelet.") + public static NpcStringId S1_HAS_USED_19_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_SUPER_ADVANCED_SEED_BRACELET; + + @ClientString(id = 1803726, message = "$s1 has used +20 Mammon's Magic Staff and gained a +18 Bloody Amaranthine Weapon.") + public static NpcStringId S1_HAS_USED_20_MAMMON_S_MAGIC_STAFF_AND_GAINED_A_18_BLOODY_AMARANTHINE_WEAPON; + + @ClientString(id = 1803727, message = "$s1 has used +21 Mammon's Magic Staff and gained a +19 Bloody Amaranthine Weapon.") + public static NpcStringId S1_HAS_USED_21_MAMMON_S_MAGIC_STAFF_AND_GAINED_A_19_BLOODY_AMARANTHINE_WEAPON; + + @ClientString(id = 1803728, message = "$s1 has used +22 Mammon's Magic Staff and gained a +20 Bloody Amaranthine Weapon.") + public static NpcStringId S1_HAS_USED_22_MAMMON_S_MAGIC_STAFF_AND_GAINED_A_20_BLOODY_AMARANTHINE_WEAPON; + + @ClientString(id = 1803729, message = "$s1 has used + 23 Mammon's Magic Staff and gained the Ruler's Authority.") + public static NpcStringId S1_HAS_USED_23_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_RULER_S_AUTHORITY; + + @ClientString(id = 1803730, message = "$s1 has used +24 Mammon's Magic Staff and gained the Blessed Antharas' Earring.") + public static NpcStringId S1_HAS_USED_24_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_BLESSED_ANTHARAS_EARRING; + + @ClientString(id = 1803731, message = "$s1 has used +24 Mammon's Magic Staff and gained the Blessed Valakas' Necklace.") + public static NpcStringId S1_HAS_USED_24_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_BLESSED_VALAKAS_NECKLACE; + + @ClientString(id = 1803732, message = "$s1 has used +24 Mammon's Magic Staff and gained the Lindvior's Earring.") + public static NpcStringId S1_HAS_USED_24_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_LINDVIOR_S_EARRING; + + @ClientString(id = 1803733, message = "$s1 has used +25 Mammon's Magic Staff and gained the Ruler's Ring of Authority.") + public static NpcStringId S1_HAS_USED_25_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_RULER_S_RING_OF_AUTHORITY; + + @ClientString(id = 1803734, message = "$s1 has used +25 Mammon's Magic Staff and gained the Ring of the Truth-Seeker.") + public static NpcStringId S1_HAS_USED_25_MAMMON_S_MAGIC_STAFF_AND_GAINED_THE_RING_OF_THE_TRUTH_SEEKER; + @ClientString(id = 1810363, message = "You are too far from the corpse.") public static NpcStringId YOU_ARE_TOO_FAR_FROM_THE_CORPSE; @@ -38260,7 +39115,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.") @@ -38467,7 +39322,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.") @@ -38638,7 +39493,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!") @@ -39133,7 +39988,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?!") @@ -39154,13 +40009,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!") @@ -39205,7 +40060,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..") @@ -39217,7 +40072,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!") @@ -39235,10 +40090,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..") @@ -39259,10 +40114,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?") @@ -39274,205 +40129,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.") @@ -39481,34 +40336,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?") @@ -39523,40 +40378,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!") @@ -39592,10 +40447,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?") @@ -39700,7 +40555,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?!") @@ -39769,7 +40624,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!") @@ -39829,7 +40684,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!") @@ -39838,7 +40693,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…") @@ -39904,7 +40759,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.") @@ -39973,7 +40828,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!") @@ -40009,7 +40864,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!") @@ -40477,7 +41332,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!") @@ -40531,7 +41386,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!") @@ -40666,7 +41521,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?") @@ -40678,7 +41533,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!") @@ -40693,19 +41548,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.") @@ -40735,7 +41590,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?") @@ -40756,7 +41611,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?") @@ -40786,19 +41641,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?") @@ -40825,7 +41680,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?") @@ -40852,7 +41707,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?") @@ -40936,10 +41791,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.") @@ -40957,7 +41812,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!") @@ -40969,22 +41824,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 = "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 = 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 = 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!") @@ -40996,13 +41851,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!") @@ -41041,32 +41896,32 @@ 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.") public static NpcStringId AFTER_THE_FESTIVAL_OF_FLAMES_ENDS_VICTORY_WILL_APPEAR; - @ClientString(id = 3000127, message = "We remember your excitement, your luck, and your happiness.") - public static NpcStringId WE_REMEMBER_YOUR_EXCITEMENT_YOUR_LUCK_AND_YOUR_HAPPINESS; + @ClientString(id = 3000127, message = "Urgh... It won't be like this next time.") + public static NpcStringId URGH_IT_WON_T_BE_LIKE_THIS_NEXT_TIME; - @ClientString(id = 3000128, message = "We remember your sadness, your anger, and your sorrow.") - public static NpcStringId WE_REMEMBER_YOUR_SADNESS_YOUR_ANGER_AND_YOUR_SORROW; + @ClientString(id = 3000128, message = "I shall engrave fear into your soul.") + public static NpcStringId I_SHALL_ENGRAVE_FEAR_INTO_YOUR_SOUL; - @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 = 3000129, message = "Your attacks didn't hurt me at all. Hahaha! Ow! My side... ahem...") + public static NpcStringId YOUR_ATTACKS_DIDN_T_HURT_ME_AT_ALL_HAHAHA_OW_MY_SIDE_AHEM; - @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 = 3000130, message = "'Victory' disappears in 5 minutes after it appears.") + public static NpcStringId VICTORY_DISAPPEARS_IN_5_MINUTES_AFTER_IT_APPEARS; - @ClientString(id = 3000131, message = "Thank you for your unwavering faith for all this time.") - public static NpcStringId THANK_YOU_FOR_YOUR_UNWAVERING_FAITH_FOR_ALL_THIS_TIME; + @ClientString(id = 3000131, message = "I never give up.") + public static NpcStringId I_NEVER_GIVE_UP; - @ClientString(id = 3000132, message = "Thank you for your love.") - public static NpcStringId THANK_YOU_FOR_YOUR_LOVE; + @ClientString(id = 3000132, message = "I shall challenge again and again until I conquer Aden.") + public static NpcStringId I_SHALL_CHALLENGE_AGAIN_AND_AGAIN_UNTIL_I_CONQUER_ADEN; - @ClientString(id = 3000133, message = "Lineage 2 will always be by your side.") - public static NpcStringId LINEAGE_2_WILL_ALWAYS_BE_BY_YOUR_SIDE; + @ClientString(id = 3000133, message = "I will be back!") + public static NpcStringId I_WILL_BE_BACK; @ClientString(id = 3000134, message = "Children, show your respect!") public static NpcStringId CHILDREN_SHOW_YOUR_RESPECT; @@ -41092,7 +41947,7 @@ public final class NpcStringId @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.") + @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?") @@ -41170,6 +42025,153 @@ public final class NpcStringId @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 = 3000168, message = "Trick or treat!") + public static NpcStringId TRICK_OR_TREAT; + + @ClientString(id = 3000169, message = "Veroverove!") + public static NpcStringId VEROVEROVE; + + @ClientString(id = 3000170, message = "If you don't give me Monster Energy I'll turn into a ghost!") + public static NpcStringId IF_YOU_DON_T_GIVE_ME_MONSTER_ENERGY_I_LL_TURN_INTO_A_GHOST; + + @ClientString(id = 3000171, message = "Happy Halloween!") + public static NpcStringId HAPPY_HALLOWEEN; + + @ClientString(id = 3000172, message = "Ve! Transform!") + public static NpcStringId VE_TRANSFORM; + + @ClientString(id = 3000173, message = "You are not scared of ghosts?") + public static NpcStringId YOU_ARE_NOT_SCARED_OF_GHOSTS; + + @ClientString(id = 3000174, message = "Don't make me into a pie just because I'm big!") + public static NpcStringId DON_T_MAKE_ME_INTO_A_PIE_JUST_BECAUSE_I_M_BIG; + + @ClientString(id = 3000175, message = "Turn into a scary pimpkin!") + public static NpcStringId TURN_INTO_A_SCARY_PIMPKIN; + + @ClientString(id = 3000176, message = "Run before I turn into a ghost!") + public static NpcStringId RUN_BEFORE_I_TURN_INTO_A_GHOST; + + @ClientString(id = 3000177, message = "I prefer Monster Energy over cookies!") + public static NpcStringId I_PREFER_MONSTER_ENERGY_OVER_COOKIES; + + @ClientString(id = 3000178, message = "Give me some more Monster Energy! I'll give you cookies!") + public static NpcStringId GIVE_ME_SOME_MORE_MONSTER_ENERGY_I_LL_GIVE_YOU_COOKIES; + + @ClientString(id = 3000179, message = "Halloween is the best!") + public static NpcStringId HALLOWEEN_IS_THE_BEST; + + @ClientString(id = 3000180, message = "Give me more! I'll give you candy!") + public static NpcStringId GIVE_ME_MORE_I_LL_GIVE_YOU_CANDY; + + @ClientString(id = 3000181, message = "Halloween is so much fun!") + public static NpcStringId HALLOWEEN_IS_SO_MUCH_FUN; + + @ClientString(id = 3000182, message = "Will you dance with me?") + public static NpcStringId WILL_YOU_DANCE_WITH_ME; + + @ClientString(id = 3000183, message = "I like cheerful songs!") + public static NpcStringId I_LIKE_CHEERFUL_SONGS; + + @ClientString(id = 3000184, message = "Hey, did you hear the ghost's voice?") + public static NpcStringId HEY_DID_YOU_HEAR_THE_GHOST_S_VOICE; + + @ClientString(id = 3000185, message = "A pumpkin ghost?") + public static NpcStringId A_PUMPKIN_GHOST; + + @ClientString(id = 3000186, message = "I'm disappearing… I'll turn into a ghost!") + public static NpcStringId I_M_DISAPPEARING_I_LL_TURN_INTO_A_GHOST; + + @ClientString(id = 3000187, message = "Not my fault if it comes out all in pieces!") + public static NpcStringId NOT_MY_FAULT_IF_IT_COMES_OUT_ALL_IN_PIECES; + + @ClientString(id = 3000188, message = "I'm not a ghost! Don't hit me!") + public static NpcStringId I_M_NOT_A_GHOST_DON_T_HIT_ME; + + @ClientString(id = 3000189, message = "Hey! It's not fun even if you hit with that!") + public static NpcStringId HEY_IT_S_NOT_FUN_EVEN_IF_YOU_HIT_WITH_THAT; + + @ClientString(id = 3000190, message = "I want the perfect song for Halloween!") + public static NpcStringId I_WANT_THE_PERFECT_SONG_FOR_HALLOWEEN; + + @ClientString(id = 3000191, message = "I'll give you candy! Use the chrono instrument!") + public static NpcStringId I_LL_GIVE_YOU_CANDY_USE_THE_CHRONO_INSTRUMENT; + + @ClientString(id = 3000192, message = "Hitting with that won't get you cookies! Hit with the instrument!") + public static NpcStringId HITTING_WITH_THAT_WON_T_GET_YOU_COOKIES_HIT_WITH_THE_INSTRUMENT; + + @ClientString(id = 3000193, message = "If you don't give me within 30 seconds, I'll turn into a ghost!") + public static NpcStringId IF_YOU_DON_T_GIVE_ME_WITHIN_30_SECONDS_I_LL_TURN_INTO_A_GHOST; + + @ClientString(id = 3000194, message = "20 seconds left! Hurry!") + public static NpcStringId TWENTY_SECONDS_LEFT_HURRY; + + @ClientString(id = 3000195, message = "10 seconds left! 9…8…7…") + public static NpcStringId TEN_SECONDS_LEFT_9_8_7; + + @ClientString(id = 3000196, message = "If you don't give me Monster Energy I'll go back in 2 minutes!") + public static NpcStringId IF_YOU_DON_T_GIVE_ME_MONSTER_ENERGY_I_LL_GO_BACK_IN_2_MINUTES; + + @ClientString(id = 3000197, message = "If you don't give me Monster Energy I'll go back in 1 minute!") + public static NpcStringId IF_YOU_DON_T_GIVE_ME_MONSTER_ENERGY_I_LL_GO_BACK_IN_1_MINUTE; + + @ClientString(id = 3000198, message = "Bye bye! Happy Halloween!") + public static NpcStringId BYE_BYE_HAPPY_HALLOWEEN; + + @ClientString(id = 3000199, message = "The party is over!") + public static NpcStringId THE_PARTY_IS_OVER; + + @ClientString(id = 3000200, message = "I turned into a ghost so I'll leave now!") + public static NpcStringId I_TURNED_INTO_A_GHOST_SO_I_LL_LEAVE_NOW; + + @ClientString(id = 3000201, message = "What kind of cookie will it be?") + public static NpcStringId WHAT_KIND_OF_COOKIE_WILL_IT_BE; + + @ClientString(id = 3000202, message = "The Halloween party was fun!") + public static NpcStringId THE_HALLOWEEN_PARTY_WAS_FUN; + + @ClientString(id = 3000203, message = "Call me again next Halloween!") + public static NpcStringId CALL_ME_AGAIN_NEXT_HALLOWEEN; + + @ClientString(id = 3000204, message = "The end! Happy Halloween!") + public static NpcStringId THE_END_HAPPY_HALLOWEEN; + + @ClientString(id = 3000205, message = "Did you get the cookie?") + public static NpcStringId DID_YOU_GET_THE_COOKIE; + + @ClientString(id = 3000206, message = "Be terrified!") + public static NpcStringId BE_TERRIFIED; + + @ClientString(id = 3000207, message = "I won't turn into a pie!") + public static NpcStringId I_WON_T_TURN_INTO_A_PIE; + + @ClientString(id = 3000208, message = "If you don't hurry, you can't get cookies!") + public static NpcStringId IF_YOU_DON_T_HURRY_YOU_CAN_T_GET_COOKIES; + + @ClientString(id = 3000209, message = "If it breaks, a ghost might come out!") + public static NpcStringId IF_IT_BREAKS_A_GHOST_MIGHT_COME_OUT; + + @ClientString(id = 3000210, message = "Will it be cookies?") + public static NpcStringId WILL_IT_BE_COOKIES; + + @ClientString(id = 3000211, message = "You don't need the cookies? Hit harder!") + public static NpcStringId YOU_DON_T_NEED_THE_COOKIES_HIT_HARDER; + + @ClientString(id = 3000212, message = "If you want cookies, give me Monster Energy!") + public static NpcStringId IF_YOU_WANT_COOKIES_GIVE_ME_MONSTER_ENERGY; + + @ClientString(id = 3000213, message = "Don't be mad if a ghost comes out!") + public static NpcStringId DON_T_BE_MAD_IF_A_GHOST_COMES_OUT; + + @ClientString(id = 3000214, message = "You want cookies? Give me Monster Energy!") + public static NpcStringId YOU_WANT_COOKIES_GIVE_ME_MONSTER_ENERGY; + + @ClientString(id = 3000215, message = "If you don't give me Monster Energy, I'll trick you!") + public static NpcStringId IF_YOU_DON_T_GIVE_ME_MONSTER_ENERGY_I_LL_TRICK_YOU; + + @ClientString(id = 3000216, message = "I'll turn into a big pumpkin and surprise you!") + public static NpcStringId I_LL_TURN_INTO_A_BIG_PUMPKIN_AND_SURPRISE_YOU; + @ClientString(id = 8888001, message = "Intruder. The gate will soon be closed.") public static NpcStringId INTRUDER_THE_GATE_WILL_SOON_BE_CLOSED; @@ -41407,7 +42409,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") @@ -41476,7 +42478,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!") @@ -41533,13 +42535,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. ") @@ -42085,6 +43087,12 @@ public final class NpcStringId @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 = 12230097, message = "90 minutes left until the timeout for the Great Etina Temple Outer Castle Raid.") + public static NpcStringId NINETY_MINUTES_LEFT_UNTIL_THE_TIMEOUT_FOR_THE_GREAT_ETINA_TEMPLE_OUTER_CASTLE_RAID; + + @ClientString(id = 12230098, message = "90 minutes left until the time out for the Great Etina Temple Inner Castle Raid.") + public static NpcStringId NINETY_MINUTES_LEFT_UNTIL_THE_TIME_OUT_FOR_THE_GREAT_ETINA_TEMPLE_INNER_CASTLE_RAID; + @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; @@ -42142,7 +43150,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!") @@ -42175,6 +43183,9 @@ public final class NpcStringId @ClientString(id = 14211717, message = "Darion's Appearance") public static NpcStringId DARION_S_APPEARANCE; + @ClientString(id = 14211718, message = "Honored warriors have defeated the Water Dragon Fafurion! ") + public static NpcStringId HONORED_WARRIORS_HAVE_DEFEATED_THE_WATER_DRAGON_FAFURION; + @ClientString(id = 14250001, message = "Embryo's army started invading the Keucereus Alliance Base.") public static NpcStringId EMBRYO_S_ARMY_STARTED_INVADING_THE_KEUCEREUS_ALLIANCE_BASE; @@ -42184,7 +43195,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.") @@ -42241,8 +43252,8 @@ 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 = "Final Evolution Form Sakum has appeared!") - public static NpcStringId FINAL_EVOLUTION_FORM_SAKUM_HAS_APPEARED; + @ClientString(id = 14250023, message = "Ultimate Sakum has appeared!") + public static NpcStringId ULTIMATE_SAKUM_HAS_APPEARED; @ClientString(id = 14250024, message = "Crazy Typhoon has appeared!") public static NpcStringId CRAZY_TYPHOON_HAS_APPEARED; @@ -42262,8 +43273,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 Whitera has appeared!") - public static NpcStringId GUARDIAN_WHITERA_HAS_APPEARED; + @ClientString(id = 14250030, message = "Guardian Whitra has appeared!") + public static NpcStringId GUARDIAN_WHITRA_HAS_APPEARED; @ClientString(id = 14250031, message = "Guardian Bletra has appeared!") public static NpcStringId GUARDIAN_BLETRA_HAS_APPEARED; @@ -42787,10 +43798,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_6.0_Fafurion/java/com/l2jmobius/gameserver/network/SystemMessageId.java b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/SystemMessageId.java index 9ca6b466f7..d2646e2526 100644 --- a/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/SystemMessageId.java +++ b/L2J_Mobius_6.0_Fafurion/java/com/l2jmobius/gameserver/network/SystemMessageId.java @@ -270,8 +270,8 @@ public final class SystemMessageId @ClientString(id = 79, message = "This name already exists.") public static SystemMessageId THIS_NAME_ALREADY_EXISTS; - @ClientString(id = 80, message = "Your title cannot exceed 16 characters in length.  Please try again.") - public static SystemMessageId YOUR_TITLE_CANNOT_EXCEED_16_CHARACTERS_IN_LENGTH_PLEASE_TRY_AGAIN; + @ClientString(id = 80, message = "Your title must be at least 1 character and cannot exceed 16 characters in length. Please try again.") + public static SystemMessageId YOUR_TITLE_MUST_BE_AT_LEAST_1_CHARACTER_AND_CANNOT_EXCEED_16_CHARACTERS_IN_LENGTH_PLEASE_TRY_AGAIN; @ClientString(id = 81, message = "Please select your race.") public static SystemMessageId PLEASE_SELECT_YOUR_RACE; @@ -3219,8 +3219,8 @@ 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 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 = 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 = "+$s1 $s2 has been unequipped.") public static SystemMessageId S1_S2_HAS_BEEN_UNEQUIPPED; @@ -3585,7 +3585,7 @@ 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.4game.com).") @@ -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 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 = 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/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_HTTPS_EU_4GAME_COM_LEGAL_USER_AGREEMENTS_LINEAGE_2_USER_AGREEMENT_HTML_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; @@ -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.") @@ -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 obtained.") - public static SystemMessageId THERE_ARE_S1_HOUR_S_AND_S2_MINUTE_S_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; + @ClientString(id = 2034, message = "There are $s1 hr. and $s2 min. remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_HR_AND_S2_MIN_REMAINING_UNTIL_THE_ITEM_CAN_BE_OBTAINED; - @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 = 2035, message = "There are $s1 min. remaining until the item can be obtained.") + public static SystemMessageId THERE_ARE_S1_MIN_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; @@ -6345,8 +6345,8 @@ public final class SystemMessageId @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 = 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 = "$c1, you have entered another instant zone, therefore you cannot enter corresponding dungeon.") + public static SystemMessageId C1_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; @@ -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 Instance Zone.") - public static SystemMessageId YOU_MUST_HAVE_A_MINIMUM_OF_S1_PEOPLE_TO_ENTER_THIS_INSTANCE_ZONE; + @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 = 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; @@ -8919,8 +8919,8 @@ public final class SystemMessageId @ClientString(id = 3105, message = "Telephone certification is already underway. Please try again later.") public static SystemMessageId TELEPHONE_CERTIFICATION_IS_ALREADY_UNDERWAY_PLEASE_TRY_AGAIN_LATER; - @ClientString(id = 3106, message = "Telephone certification is underway.") - public static SystemMessageId TELEPHONE_CERTIFICATION_IS_UNDERWAY; + @ClientString(id = 3106, message = "For better security service, the Telephone Verification Service will be no longer provided from November 21st, 2018.

To use our game service safely, please cancel your telephone verification and sign up for the OTP Service.
Visit the 4Game website (My Page > Information Protection) to sign up for the OTP Service.") + public static SystemMessageId FOR_BETTER_SECURITY_SERVICE_THE_TELEPHONE_VERIFICATION_SERVICE_WILL_BE_NO_LONGER_PROVIDED_FROM_NOVEMBER_21ST_2018_BR_BR_TO_USE_OUR_GAME_SERVICE_SAFELY_PLEASE_CANCEL_YOUR_TELEPHONE_VERIFICATION_AND_SIGN_UP_FOR_THE_OTP_SERVICE_BR_VISIT_THE_4GAME_WEBSITE_MY_PAGE_INFORMATION_PROTECTION_TO_SIGN_UP_FOR_THE_OTP_SERVICE; @ClientString(id = 3107, message = "One moment please.") public static SystemMessageId ONE_MOMENT_PLEASE; @@ -9225,8 +9225,8 @@ public final class SystemMessageId @ClientString(id = 3207, message = "You obtained $s1 Recommendation(s).") public static SystemMessageId YOU_OBTAINED_S1_RECOMMENDATION_S; - @ClientString(id = 3208, message = "You will go to the Lineage II homepage. Do you wish to continue?") - public static SystemMessageId YOU_WILL_GO_TO_THE_LINEAGE_II_HOMEPAGE_DO_YOU_WISH_TO_CONTINUE; + @ClientString(id = 3208, message = "You will be redirected to the Lineage II website. Do you want to continue?") + public static SystemMessageId YOU_WILL_BE_REDIRECTED_TO_THE_LINEAGE_II_WEBSITE_DO_YOU_WANT_TO_CONTINUE; @ClientString(id = 3209, message = "You obtained a Maguen Pet Collar.") public static SystemMessageId YOU_OBTAINED_A_MAGUEN_PET_COLLAR; @@ -9336,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.") @@ -9372,10 +9372,10 @@ public final class SystemMessageId @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).") @@ -10413,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.") @@ -11277,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 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 = 3892, message = "You are not participating in the event. You need 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_YOU_NEED_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; @@ -11532,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.") @@ -11673,7 +11673,7 @@ public final class SystemMessageId @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.") @@ -11709,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.") @@ -11808,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!") @@ -11832,7 +11832,7 @@ 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,
the hair style may not be displayed. Proceed?
") + @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.") @@ -11850,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.") @@ -11988,8 +11988,8 @@ public final class SystemMessageId @ClientString(id = 4221, message = "This is not a valid combination.") public static SystemMessageId THIS_IS_NOT_A_VALID_COMBINATION; - @ClientString(id = 4222, message = "This item does not exist.") - public static SystemMessageId THIS_ITEM_DOES_NOT_EXIST; + @ClientString(id = 4222, message = "You don't have materials.") + public static SystemMessageId YOU_DON_T_HAVE_MATERIALS; @ClientString(id = 4223, message = "You cannot do that while trading.") public static SystemMessageId YOU_CANNOT_DO_THAT_WHILE_TRADING; @@ -12177,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.") @@ -12198,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.") @@ -12246,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.") @@ -12363,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.") @@ -12504,8 +12504,8 @@ 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 = "Draw $s1, Attempt $s2 in progress.") - public static SystemMessageId DRAW_S1_ATTEMPT_S2_IN_PROGRESS; + @ClientString(id = 4394, message = "Currently in Stage $s1, Round $s2.") + public static SystemMessageId CURRENTLY_IN_STAGE_S1_ROUND_S2; @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; @@ -12783,34 +12783,34 @@ 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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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!") + @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!") + @ClientString(id = 4494, message = "The number is higher! ") public static SystemMessageId THE_NUMBER_IS_HIGHER; - @ClientString(id = 4495, message = "The number is lower!") + @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!") + @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.") @@ -12885,40 +12885,40 @@ public final class SystemMessageId @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") @@ -13083,7 +13083,7 @@ public final class SystemMessageId @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") + @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") @@ -13113,10 +13113,10 @@ public final class SystemMessageId @ClientString(id = 4596, message = "Hire/position mercenaries") public static SystemMessageId HIRE_POSITION_MERCENARIES; - @ClientString(id = 4597, message = "Manor settings and use blacksmith") + @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)") + @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)") @@ -13188,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") @@ -13212,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") @@ -13233,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") @@ -13260,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") @@ -13278,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") @@ -13296,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") @@ -13308,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") @@ -13332,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.") @@ -13341,7 +13341,7 @@ 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.") @@ -13932,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 Instance Zone usage status.") - public static SystemMessageId VIEW_INSTANCE_ZONE_USAGE_STATUS; + @ClientString(id = 4870, message = "View instanced zone usage status.") + public static SystemMessageId VIEW_INSTANCED_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; @@ -14043,56 +14043,62 @@ public final class SystemMessageId @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 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 = 4907, message = "Shows other PC's equipped items regardless of their transformation status.") + public static SystemMessageId SHOWS_OTHER_PC_S_EQUIPPED_ITEMS_REGARDLESS_OF_THEIR_TRANSFORMATION_STATUS; - @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 = 4908, message = "Shows your equipped items regardless of your transformation status.") + public static SystemMessageId SHOWS_YOUR_EQUIPPED_ITEMS_REGARDLESS_OF_YOUR_TRANSFORMATION_STATUS; - @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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 5007, message = "Your account has been suspended for disrupting public well-being, order, public morals, etc. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 5009, message = "Your account has been suspended for using an illegal program. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5016, message = "For more information, go to the official 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_OFFICIAL_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 = 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; @@ -14100,38 +14106,38 @@ 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 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 = 5019, message = "Go to the official homepage (www.plaync.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_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_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 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 = 5020, message = "If you have lost your account information, go to the official 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_OFFICIAL_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 = 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 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 = 5022, message = "Please complete the user verification process for your identification. For user verification process, go to the official 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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 5026, message = "Your account has been suspended for trading cash, server or other games. For more information, go to the official 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_OFFICIAL_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 = 5027, message = "Your account has been suspended for trading cash, or account. For more information, go to the official 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_OFFICIAL_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 = 5028, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the official 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 official 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_OFFICIAL_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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_HOMEPAGE_FONT_FONT_COLOR_6699FF_A_ACTION_URL_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_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; @@ -14139,8 +14145,8 @@ public final class SystemMessageId @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 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 = 5032, message = "Your account needs verification.
Visit the official homepage (www.plaync.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_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_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 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; @@ -14151,17 +14157,17 @@ public final class SystemMessageId @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 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 = 5036, message = "Your account has been suspended.
For more information, visit official 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_OFFICIAL_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 = 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 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 = 5038, message = "You may access your account after updating your password and password quiz.
Go to the official 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_OFFICIAL_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 = 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 = 5039, message = "Your account has been suspended for using illegal programs. For more information, go to the official 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_OFFICIAL_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 = 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; @@ -14169,35 +14175,35 @@ public final class SystemMessageId @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 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 = 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 (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_OFFICIAL_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 = 5043, message = "Your account has been completely blocked for making a fraudulent payment. For more information, go to the official 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_OFFICIAL_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 = 5044, message = "Your account has been completely blocked for trading accounts.
For more information, go to the official 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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5046, message = "Your account has been completely blocked for using illegal programs. For more information, go to the official 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_OFFICIAL_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 = 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 = 5047, message = "Your account has been completely blocked for using illegal programs. For more information, go to the official 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_OFFICIAL_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 = 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 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 = 5049, message = "Your account has been suspended for repeated uploading abusive posts. For more information, go to the official 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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5051, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the official 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_OFFICIAL_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 = 5052, message = "You have entered the Live Server.") public static SystemMessageId YOU_HAVE_ENTERED_THE_FONT_COLOR_FFDF4C_LIVE_SERVER_FONT; @@ -14211,14 +14217,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 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 = 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(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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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; @@ -14238,11 +14244,11 @@ 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.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 = 5065, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM; - @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 = 5066, message = "An unexpected error has occured. Please contact our Customer Support Team at https://support.4game.com") + public static SystemMessageId AN_UNEXPECTED_ERROR_HAS_OCCURED_PLEASE_CONTACT_OUR_CUSTOMER_SUPPORT_TEAM_AT_HTTPS_SUPPORT_4GAME_COM_2; @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; @@ -14253,8 +14259,8 @@ public final class SystemMessageId @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 = "As of April 22nd 2015, Lineage II launched the updated Classic Server.
Giran, Elf, Dark Elf → Giran (NEW)") - public static SystemMessageId FONT_SIZE_15_COLOR_FFDF5F_AS_OF_APRIL_22ND_2015_LINEAGE_II_LAUNCHED_THE_UPDATED_CLASSIC_SERVER_FONT_BR_FONT_SIZE_13_COLOR_ABABAB_GIRAN_ELF_DARK_ELF_FONT_GIRAN_NEW; + @ClientString(id = 5070, message = "As of July 30th, 2018, Lineage II launched the Specialized Server.
Bloody (NEW)") + public static SystemMessageId FONT_SIZE_15_COLOR_FFDF5F_AS_OF_JULY_30TH_2018_LINEAGE_II_LAUNCHED_THE_SPECIALIZED_SERVER_FONT_BR_BLOODY_NEW; @ClientString(id = 5071, message = "Generous benefits await the returning heroes!") public static SystemMessageId FONT_COLOR_FFDF4C_GENEROUS_BENEFITS_AWAIT_THE_RETURNING_HEROES_FONT; @@ -14262,6 +14268,9 @@ 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 = 5073, message = "To access the server, you must sign up for the OTP Service.

Do you want to go to the Guide Page for OTP Service sign-up?") + public static SystemMessageId TO_ACCESS_THE_SERVER_YOU_MUST_SIGN_UP_FOR_THE_OTP_SERVICE_BR_BR_DO_YOU_WANT_TO_GO_TO_THE_FONT_COLOR_FFDF4C_GUIDE_PAGE_FONT_FOR_OTP_SERVICE_SIGN_UP; + @ClientString(id = 5100, message = "Available only for members authorized to activate items") public static SystemMessageId AVAILABLE_ONLY_FOR_MEMBERS_AUTHORIZED_TO_ACTIVATE_ITEMS; @@ -14505,13 +14514,13 @@ public final class SystemMessageId @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.") + @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.") + @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") @@ -14577,6 +14586,9 @@ public final class SystemMessageId @ClientString(id = 5204, message = "Time Left: $s1min") public static SystemMessageId TIME_LEFT_S1MIN; + @ClientString(id = 5205, message = "No zone to display.") + public static SystemMessageId NO_ZONE_TO_DISPLAY; + @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; @@ -14616,110 +14628,146 @@ public final class SystemMessageId @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 = 5219, message = "If enchantment fails, the item will be destroyed (crystallized). If enchantment to +8 or higher fails, you can obtain additional weapon enhancement stones.") + public static SystemMessageId IF_ENCHANTMENT_FAILS_THE_ITEM_WILL_BE_DESTROYED_CRYSTALLIZED_IF_ENCHANTMENT_TO_8_OR_HIGHER_FAILS_YOU_CAN_OBTAIN_ADDITIONAL_WEAPON_ENHANCEMENT_STONES; - @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 = 5220, message = "If enchantment fails, the item will be destroyed (crystallized). If enchantment to +6 or higher fails, you can obtain additional Defense enhancement stones.") + public static SystemMessageId IF_ENCHANTMENT_FAILS_THE_ITEM_WILL_BE_DESTROYED_CRYSTALLIZED_IF_ENCHANTMENT_TO_6_OR_HIGHER_FAILS_YOU_CAN_OBTAIN_ADDITIONAL_DEFENSE_ENHANCEMENT_STONES; - @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 = 5221, message = "Today you can use $s1 Attack Point(s).\\nYour remaining Life for today is $s2.\\nAn attacker with 1 or higher Life/Attack Point can obtain Bloody Coins by killing a user with 1 or higher Life. These points are rest at 6:30 every day. ") + public static SystemMessageId TODAY_YOU_CAN_USE_S1_ATTACK_POINT_S_NYOUR_REMAINING_LIFE_FOR_TODAY_IS_S2_NAN_ATTACKER_WITH_1_OR_HIGHER_LIFE_ATTACK_POINT_CAN_OBTAIN_BLOODY_COINS_BY_KILLING_A_USER_WITH_1_OR_HIGHER_LIFE_THESE_POINTS_ARE_REST_AT_6_30_EVERY_DAY; - @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 = 5222, message = "Only Lv. 95 or higher users can use the Bloody Coin System. ") + public static SystemMessageId ONLY_LV_95_OR_HIGHER_USERS_CAN_USE_THE_BLOODY_COIN_SYSTEM; - @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 = 5223, message = "You beat $c1 and obtained $s2 Bloody Coins. You lost 1 Attack Point. Enter /bloodycoin in the chat window to check your points. ") + public static SystemMessageId YOU_BEAT_C1_AND_OBTAINED_S2_BLOODY_COINS_YOU_LOST_1_ATTACK_POINT_ENTER_BLOODYCOIN_IN_THE_CHAT_WINDOW_TO_CHECK_YOUR_POINTS; - @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 = 5224, message = "You were killed by $c1 and lost 1 Life. Your Life must be 1 or higher to win a battle and obtain Bloody Coins. Enter /bloodycoin in the chat window to check your points. ") + public static SystemMessageId YOU_WERE_KILLED_BY_C1_AND_LOST_1_LIFE_YOUR_LIFE_MUST_BE_1_OR_HIGHER_TO_WIN_A_BATTLE_AND_OBTAIN_BLOODY_COINS_ENTER_BLOODYCOIN_IN_THE_CHAT_WINDOW_TO_CHECK_YOUR_POINTS; - @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 = 5225, message = "Current location: $s1/$s2/$s3 (near the outpost)") + public static SystemMessageId CURRENT_LOCATION_S1_S2_S3_NEAR_THE_OUTPOST; - @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 = 5226, message = "$c1 has obtained $s4 +$s2$s3 through item upgrade.") + public static SystemMessageId C1_HAS_OBTAINED_S4_S2_S3_THROUGH_ITEM_UPGRADE; - @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 = 5227, message = "Items with Rune or Augment effects cannot be upgraded. Remove the effects and try again.") + public static SystemMessageId ITEMS_WITH_RUNE_OR_AUGMENT_EFFECTS_CANNOT_BE_UPGRADED_REMOVE_THE_EFFECTS_AND_TRY_AGAIN; - @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 = 5228, message = "============") + public static SystemMessageId BLOODY_COIN_INFORMATION; - @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 = 5229, message = "Attack Points: $s1") + public static SystemMessageId ATTACK_POINTS_S1; - @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 = 5230, message = "Life: $s1") + public static SystemMessageId LIFE_S1; - @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 = 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 (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_OFFICIAL_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 = 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 = 5301, message = "Your account has been suspended as it was confirmed to have misled other users and disrupted our game operation by impersonating our staff, spreading false information, or employing unlawful means. For more information, go to the official 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_IT_WAS_CONFIRMED_TO_HAVE_MISLED_OTHER_USERS_AND_DISRUPTED_OUR_GAME_OPERATION_BY_IMPERSONATING_OUR_STAFF_SPREADING_FALSE_INFORMATION_OR_EMPLOYING_UNLAWFUL_MEANS_FOR_MORE_INFORMATION_GO_TO_THE_FONT_COLOR_FFDF4C_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 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 = 5305, message = "Your account has been suspended for trading cash, or account. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (www.plaync.com) and submit an objection to the Report 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_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_COM_A_FONT_FONT_COLOR_FFDF4C_AND_SUBMIT_AN_OBJECTION_TO_THE_REPORT_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 = 5307, message = "Your account has been suspended for using vulgar language during gameplay. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5316, message = "Your account has been suspended for using an illegal program. For more information, go to the official 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_OFFICIAL_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 suspended temporarily for an objection raised to your real name verification process. For more information, go to the official 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_OFFICIAL_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 = "Please complete user verification process for your identification. For user verification process, go to the official homepage (www.plaync.com). For more information, official 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_OFFICIAL_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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5321, message = "Your account has been suspended for trading cash or other games. For more information, go to the official 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_OFFICIAL_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 = 5322, message = "You haven't completed the user verification process and are not allowed to our game service. Go to the official 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 official 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_OFFICIAL_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_OFFICIAL_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 suspended for using an illegal program. For more information, go to the official 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_OFFICIAL_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 = 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 (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_OFFICIAL_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 = 5325, message = "Your account has been completely blocked for using our game service for commercial purposes. For more information, go to the official 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_OFFICIAL_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 = 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 = 5327, message = "Your account has been suspended for engaging in the promotional activities for commercial purpose. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 = 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 = 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 (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_OFFICIAL_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 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 = 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 (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_OFFICIAL_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 = 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 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 = 5333, message = "Your account has been completely blocked due to account theft. For more information, go to the official 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_OFFICIAL_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 = 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 = 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 (www.plaync.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_HTTP_WWW_PLAYNC_COM_WWW_PLAYNC_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; @@ -14754,7 +14802,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.") @@ -15132,8 +15180,8 @@ 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 = "Vitality is applied, and you receive $s1 bonus XP/SP. 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_SP_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.") 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; @@ -15183,7 +15231,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.") @@ -15315,7 +15363,7 @@ 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 does not allow you to purchase this item.") @@ -15366,7 +15414,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") @@ -15408,8 +15456,8 @@ 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 Lucky Game complete.") - public static SystemMessageId ROUND_S1_OF_LUCKY_GAME_COMPLETE; + @ClientString(id = 6159, message = "The Lucky Game is in Round $s1.") + public static SystemMessageId THE_LUCKY_GAME_IS_IN_ROUND_S1; @ClientString(id = 6160, message = "Congratulations! You won $s2 of $s1.") public static SystemMessageId CONGRATULATIONS_YOU_WON_S2_OF_S1; @@ -15447,22 +15495,22 @@ public final class SystemMessageId @ClientString(id = 6171, message = "Lv. $s1 or below") public static SystemMessageId LV_S1_OR_BELOW; - @ClientString(id = 6172, message = "Redirecting to the Lineage II website. Proceed?") - public static SystemMessageId REDIRECTING_TO_THE_LINEAGE_II_WEBSITE_PROCEED; + @ClientString(id = 6172, message = "You will be redirected to the Lineage II website. Do you want to continue?") + public static SystemMessageId YOU_WILL_BE_REDIRECTED_TO_THE_LINEAGE_II_WEBSITE_DO_YOU_WANT_TO_CONTINUE_2; @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. (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 = 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 = 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 Premium Account 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.") @@ -15474,13 +15522,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'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.") @@ -15498,8 +15546,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.\\\\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 = 6189, message = "- You must receive the 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_REWARD_IN_A_GIVEN_DAY_TO_RECEIVE_THE_NEXT_DAY_S_REWARD_N_REWARDS_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; @@ -15514,9 +15562,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; + 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 = 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.") @@ -15552,6 +15600,12 @@ public final class SystemMessageId @ClientString(id = 6206, message = "Your current success rate is $s1%%. Adding offerings can increase the success rate to 100%% for certain recipes. Continue?") public static SystemMessageId YOUR_CURRENT_SUCCESS_RATE_IS_S1_ADDING_OFFERINGS_CAN_INCREASE_THE_SUCCESS_RATE_TO_100_FOR_CERTAIN_RECIPES_CONTINUE; + @ClientString(id = 6207, message = "The Festival is not available right now.") + public static SystemMessageId THE_FESTIVAL_IS_NOT_AVAILABLE_RIGHT_NOW; + + @ClientString(id = 6208, message = "The Festival has ended. Please participate in the next round.") + public static SystemMessageId THE_FESTIVAL_HAS_ENDED_PLEASE_PARTICIPATE_IN_THE_NEXT_ROUND; + @ClientString(id = 6501, message = "You cannot bookmark this location because you do not have a My Teleport Flag.") public static SystemMessageId YOU_CANNOT_BOOKMARK_THIS_LOCATION_BECAUSE_YOU_DO_NOT_HAVE_A_MY_TELEPORT_FLAG; @@ -15663,8 +15717,8 @@ public final class SystemMessageId @ClientString(id = 6829, message = "You don't have any Beast Soulshots/Spiritshots. Please buy them at the shop.") public static SystemMessageId YOU_DON_T_HAVE_ANY_BEAST_SOULSHOTS_SPIRITSHOTS_PLEASE_BUY_THEM_AT_THE_SHOP; - @ClientString(id = 6830, message = "There are $s1 players in the qeue. Click on cancel to end the server connection.") - public static SystemMessageId THERE_ARE_S1_PLAYERS_IN_THE_QEUE_CLICK_ON_CANCEL_TO_END_THE_SERVER_CONNECTION; + @ClientString(id = 6830, message = "There are $s1 players in the queue. Click 'Cancel' to end the server connection. Avoid wait times with the new Gludio server.") + public static SystemMessageId THERE_ARE_S1_PLAYERS_IN_THE_QUEUE_CLICK_CANCEL_TO_END_THE_SERVER_CONNECTION_AVOID_WAIT_TIMES_WITH_THE_NEW_GLUDIO_SERVER; @ClientString(id = 6831, message = "Cannot request duels when participating in the Olympiad/Ceremony of Chaos.") public static SystemMessageId CANNOT_REQUEST_DUELS_WHEN_PARTICIPATING_IN_THE_OLYMPIAD_CEREMONY_OF_CHAOS; @@ -15678,8 +15732,8 @@ public final class SystemMessageId @ClientString(id = 6834, message = "Your character has been restricted.
Please check the icon below for details.") public static SystemMessageId YOUR_CHARACTER_HAS_BEEN_RESTRICTED_BR_PLEASE_CHECK_THE_ICON_BELOW_FOR_DETAILS; - @ClientString(id = 6835, message = "Your account has been suspended as per our management policy for disrupting other users' normal gameplay or the company's game operation. For more information, contact us through the Support Center.") - public static SystemMessageId YOUR_ACCOUNT_HAS_BEEN_SUSPENDED_AS_PER_OUR_MANAGEMENT_POLICY_FOR_DISRUPTING_OTHER_USERS_NORMAL_GAMEPLAY_OR_THE_COMPANY_S_GAME_OPERATION_FOR_MORE_INFORMATION_CONTACT_US_THROUGH_THE_SUPPORT_CENTER; + @ClientString(id = 6835, message = "The character was blocked due to the User Agreement Violation. Please contact Support for the detailed information: https://eu.4gamesupport.com/") + public static SystemMessageId THE_CHARACTER_WAS_BLOCKED_DUE_TO_THE_USER_AGREEMENT_VIOLATION_PLEASE_CONTACT_SUPPORT_FOR_THE_DETAILED_INFORMATION_HTTPS_EU_4GAMESUPPORT_COM; @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; @@ -15690,6 +15744,12 @@ public final class SystemMessageId @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 = 6839, message = "The current local time is $s1:$s2.") + public static SystemMessageId THE_CURRENT_LOCAL_TIME_IS_S1_S2; + + @ClientString(id = 6840, message = "With a premium account, you can create a Balthus Knights character starting from Level 85.") + public static SystemMessageId WITH_A_PREMIUM_ACCOUNT_YOU_CAN_CREATE_A_BALTHUS_KNIGHTS_CHARACTER_STARTING_FROM_LEVEL_85; + @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; @@ -15765,11 +15825,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 players") - public static SystemMessageId S1_PLAYERS; + @ClientString(id = 7026, message = "$s1-member party") + public static SystemMessageId S1_MEMBER_PARTY; - @ClientString(id = 7027, message = "$s1~$s2 players") - public static SystemMessageId S1_S2_PLAYERS; + @ClientString(id = 7027, message = "$s1~$s2-member party") + public static SystemMessageId S1_S2_MEMBER_PARTY; @ClientString(id = 7028, message = "Above Lv. $s1") public static SystemMessageId ABOVE_LV_S1; @@ -15858,7 +15918,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.") @@ -15894,10 +15954,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.") @@ -16092,13 +16152,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.") @@ -16128,7 +16188,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.") @@ -16185,7 +16245,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") @@ -16206,7 +16266,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.") @@ -16293,7 +16353,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.") @@ -16422,7 +16482,7 @@ public final class SystemMessageId @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 get +100%% XP between 20:00-23:00 every day.") @@ -16548,7 +16608,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.") @@ -16701,7 +16761,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") @@ -16725,7 +16785,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.") @@ -16737,7 +16797,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.") @@ -16824,13 +16884,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.") @@ -16896,7 +16956,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.") @@ -16905,7 +16965,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.") @@ -16935,7 +16995,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.") @@ -17025,7 +17085,7 @@ 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.") @@ -17049,10 +17109,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.") @@ -17070,7 +17130,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.")