/* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ package net.sf.l2j.gameserver.network; /** * * @author Noctarius & Nille02 */ public enum SystemMessageId { /** * ID: 0
* Message: You have been disconnected from the server. */ YOU_HAVE_BEEN_DISCONNECTED_FROM_THE_SERVER(0), /** * ID: 1
* Message: The server will be coming down in $s1 second(s). */ THE_SERVER_WILL_BE_COMING_DOWN_IN_S1_SECONDS(1), /** * ID: 3
* Message: $s1 is not currently logged in. */ S1_IS_NOT_ONLINE(3), /** * ID: 4
* Message: You cannot ask yourself to apply to a clan. */ CANNOT_INVITE_YOURSELF(4), /** * ID: 5
* Message: $s1 already exists. */ S1_ALREADY_EXISTS(5), /** * ID: 6
* Message: $s1 does not exist */ S1_DOES_NOT_EXIST(6), /** * ID: 7
* Message: Cant use this time inside Boss Zones */ CANNOT_USE_SCROLL_OF_ESCAPE_INSIDE_BOSS_ZONE(7), /** * ID: 8
* Message: You are working with another clan. */ YOU_ARE_WORKING_WITH_ANOTHER_CLAN(8), /** * ID: 9
* Message: $s1 is not a clan leader. */ S1_IS_NOT_A_CLAN_LEADER(9), /** * ID: 10
* Message: $s1 is working with another clan. */ S1_WORKING_WITH_ANOTHER_CLAN(10), /** * ID: 11
* Message: Cant Summon target Inside Boss Zone */ CANNOT_USE_SUMMON_SKILL_ON_SELECTED_TARGET(11), /** * ID: 13
* Message: Unable to disperse: your clan has requested to participate in a castle siege. */ CANNOT_DISSOLVE_CAUSE_CLAN_WILL_PARTICIPATE_IN_CASTLE_SIEGE(13), /** * ID: 22
* Message: Your target is out of range. */ TARGET_TOO_FAR(22), /** * ID: 23
* Message: Not enough HP. */ NOT_ENOUGH_HP(23), /** * ID: 24
* Message: Not enough MP. */ NOT_ENOUGH_MP(24), /** * ID: 25
* Message: Rejuvenating HP. */ REJUVENATING_HP(25), /** * ID: 26
* Message: Rejuvenating MP. */ REJUVENATING_MP(26), /** * ID: 27
* Message: Your casting has been interrupted. */ CASTING_INTERRUPTED(27), /** * ID: 28
* Message: You have obtained $s1 adena. */ YOU_PICKED_UP_S1_ADENA(28), /** * ID: 29
* Message: You have obtained $s2 $s1. */ YOU_PICKED_UP_S1_S2(29), /** * ID: 30
* Message: You have obtained $s1. */ YOU_PICKED_UP_S1(30), /** * ID: 31
* Message: You cannot move while sitting. */ CANT_MOVE_SITTING(31), /** * ID: 34
* Message: Welcome to the World of Lineage II. */ WELCOME_TO_LINEAGE(34), /** * ID: 35
* Message: You hit for $s1 damage */ YOU_DID_S1_DMG(35), /** * ID: 36
* Message: $s1 hit you for $s2 damage. */ S1_GAVE_YOU_S2_DMG(36), /** * ID: 41
* Message: You carefully nock an arrow. */ GETTING_READY_TO_SHOOT_AN_ARROW(41), /** * ID: 42
* Message: You have avoided $s1's attack. */ AVOIDED_S1S_ATTACK(42), /** * ID: 43
* Message: You have missed. */ MISSED_TARGET(43), /** * ID: 44
* Message: Critical hit! */ CRITICAL_HIT(44), /** * ID: 46
* Message: You use $s1. */ USE_S1(46), /** * ID: 48
* Message: $s1 is not available at this time: being prepared for reuse. */ S1_PREPARED_FOR_REUSE(48), /** * ID: 48
* Message: $s1 is not available at this time: being prepared for reuse. */ SKILL_NOT_AVAILABLE(48), /** * ID: 49
* Message: You have equipped your $s1. */ S1_EQUIPPED(49), /** * ID: 50
* Message: Your target cannot be found. */ TARGET_CANT_FOUND(50), /** * ID: 51
* Message: You cannot use this on yourself. */ CANNOT_USE_ON_YOURSELF(51), /** * ID: 52
* Message: You have earned $s1 adena. */ EARNED_ADENA(52), /** * ID: 53
* Message: You have earned $s2 $s1(s). */ EARNED_S2_S1_S(53), /** * ID: 54
* Message: You have earned $s1. */ EARNED_ITEM(54), /** * ID: 55
* Message: You have failed to pick up $s1 adena. */ FAILED_TO_PICKUP_S1_ADENA(55), /** * ID: 56
* Message: You have failed to pick up $s1. */ FAILED_TO_PICKUP_S1(56), /** * ID: 57
* Message: You have failed to pick up $s2 $s1(s). */ FAILED_TO_PICKUP_S2_S1_S(57), /** * ID: 61
* Message: Nothing happened. */ NOTHING_HAPPENED(61), /** * ID: 62
* Message: Your $s1 has been successfully enchanted. */ S1_SUCCESSFULLY_ENCHANTED(62), /** * ID: 63
* Message: Your +$S1 $S2 has been successfully enchanted. */ S1_S2_SUCCESSFULLY_ENCHANTED(63), /** * ID: 64
* Message: The enchantment has failed! Your $s1 has been crystallized. */ ENCHANTMENT_FAILED_S1_EVAPORATED(64), /** * ID: 65
* Message: The enchantment has failed! Your +$s1 $s2 has been crystallized. */ ENCHANTMENT_FAILED_S1_S2_EVAPORATED(65), /** * ID: 66
* Message: $s1 has invited you to his/her party. Do you accept the invitation? */ S1_INVITED_YOU_TO_PARTY(66), /** * ID: 67
* Message: "$s1 has invited you to the join the clan, $s2. Do you wish to join?" */ S1_HAS_INVITED_YOU_TO_JOIN_THE_CLAN_S2(67), /** * ID: 68
* Message: "Would you like to withdraw from the $s1 clan? If you leave, you will have to wait at least a day before joining another clan." */ WOULD_YOU_LIKE_TO_WITHDRAW_FROM_THE_S1_CLAN(68), /** * ID: 69
* Message: "Would you like to dismiss $s1 from the clan? If you do so, you will have to wait at least a day before accepting a new member." */ WOULD_YOU_LIKE_TO_DISMISS_S1_FROM_THE_CLAN(69), /** * ID: 70
* Message: "Do you wish to disperse the clan, $s1?" */ DO_YOU_WISH_TO_DISPERSE_THE_CLAN_S1(70), /** * ID: 79
* Message: This name already exists. */ NAMING_NAME_ALREADY_EXISTS(79), /** * ID: 80
* Message: Names must be between 1-16 characters, excluding spaces or special characters. */ NAMING_CHARNAME_UP_TO_16CHARS(80), /** * ID: 84
* Message: You may not attack in a peaceful zone. */ CANT_ATK_PEACEZONE(84), /** * ID: 85
* Message: You may not attack this target in a peaceful zone. */ TARGET_IN_PEACEZONE(85), /** * ID: 92
* Message: $s1 has worn off. */ S1_HAS_WORN_OFF(92), /** * ID: 95
* Message: You have earned $s1 experience and $s2 SP. */ YOU_EARNED_S1_EXP_AND_S2_SP(95), /** * ID: 96
* Message: Your level has increased! */ YOU_INCREASED_YOUR_LEVEL(96), /** * ID: 98
* Message: This item cannot be discarded. */ CANNOT_DISCARD_THIS_ITEM(98), /** * ID: 101
* Message: You cannot exit while in combat. */ CANT_LOGOUT_WHILE_FIGHTING(101), /** * ID: 102
* Message: You cannot restart while in combat. */ CANT_RESTART_WHILE_FIGHTING(102), /** * ID: 104
* Message: You may not equip items while casting or performing a skill. */ CANNOT_USE_ITEM_WHILE_USING_MAGIC(104), /** * ID: 105
* Message: You have invited $s1 to your party. */ YOU_INVITED_S1_TO_PARTY(105), /** * ID: 106
* Message: You have joined $s1's party. */ YOU_JOINED_S1_PARTY(106), /** * ID: 107
* Message: $s1 has joined the party. */ S1_JOINED_PARTY(107), /** * ID: 108
* Message: $s1 has left the party. */ S1_LEFT_PARTY(108), /** * ID: 109
* Message: Invalid target. */ INCORRECT_TARGET(109), /** * ID: 110
* Message: The effects of $s1 flow through you. */ YOU_FEEL_S1_EFFECT(110), /** * ID: 111
* Message: Your shield defense has succeeded. */ SHIELD_DEFENCE_SUCCESSFULL(111), /** * ID: 112
* Message: You have run out of arrows. */ NOT_ENOUGH_ARROWS(112), /** * ID: 113
* Message: $s1 cannot be used due to unsuitable terms */ S1_CANNOT_BE_USED(113), /** * ID: 114
* Message: You have entered the shadow of the Mother Tree. */ ENTER_SHADOW_MOTHER_TREE(114), /** * ID: 115
* Message: You have left the shadow of the Mother Tree. */ EXIT_SHADOW_MOTHER_TREE(115), /** * ID: 118
* Message: You have requested a trade with $s1 */ REQUEST_S1_FOR_TRADE(118), /** * ID: 119
* Message: $s1 has denied your request to trade. */ S1_DENIED_TRADE_REQUEST(119), /** * ID: 120
* Message: You begin trading with $s1. */ BEGIN_TRADE_WITH_S1(120), /** * ID: 121
* Message: $s1 has confirmed the trade. */ S1_CONFIRMED_TRADE(121), /** * ID: 123
* Message: Your trade is successful. */ TRADE_SUCCESSFUL(123), /** * ID: 124
* Message: $s1 has canceled the trade. */ S1_CANCELED_TRADE(124), /** * ID: 129
* Message: Your inventory is full. */ SLOTS_FULL(129), /** * ID: 132
* Message: $s1 has been added to your friends list. */ S1_ADDED_TO_FRIENDS(132), /** * ID: 133
* Message: $s1 has been removed from your friends list. */ S1_REMOVED_FROM_YOUR_FRIENDS_LIST(133), /** * ID: 134
* Message: Please check your friends list again. */ PLEACE_CHECK_YOUR_FRIEND_LIST_AGAIN(134), /** * ID: 135
* Message: $s1 did not reply to your invitation), your invite has been canceled. */ S1_DID_NOT_REPLY(135), /** * ID: 136
* Message: You have not replied to $s1's invitation), the offer has been canceled. */ YOU_DID_NOT_REPLY(136), /** * ID: 139
* Message: $s1 has resisted your $s2. */ S1_WAS_UNAFFECTED_BY_S2(139), /** * ID: 140
* Message: Your skill was removed due to a lack of MP. */ SKILL_REMOVED_DUE_LACK_MP(140), /** * ID: 141
* Message: "Once the trade is confirmed, the item cannot be moved again." */ ONCE_THE_TRADE_IS_CONFIRMED_THE_ITEM_CANNOT_BE_MOVED_AGAIN(141), /** * ID: 142
* Message: You are already trading with someone. */ ALREADY_TRADING(142), /** * ID: 144
* Message: That is the incorrect target. */ TARGET_IS_INCORRECT(144), /** * ID: 145
* Message: That player is not online. */ TARGET_IS_NOT_FOUND_IN_THE_GAME(145), /** * ID: 148
* Message: You cannot use quest items. */ CANNOT_USE_QUEST_ITEMS(148), /** * ID: 149
* Message: You cannot pick up or use items while trading. */ CANNOT_USE_ITEM_WHILE_TRADING(149), /** * ID: 151
* Message: That is too far from you to discard. */ CANNOT_DISCARD_DISTANCE_TOO_FAR(151), /** * ID: 152
* Message: You have invited the wrong target. */ YOU_HAVE_INVITED_THE_WRONG_TARGET(152), /** * ID: 153
* Message: $s1 is busy. Please try again later. */ S1_IS_BUSY_TRY_LATER(153), /** * ID: 154
* Message: Only the leader can give out invitations. */ ONLY_LEADER_CAN_INVITE(154), /** * ID: 155
* Message: The party is full. */ PARTY_FULL(155), /** * ID: 156
* Message: Drain was only 50 percent successful. */ DRAIN_HALF_SUCCESFUL(156), /** * ID: 157
* Message: You resisted $s1's drain. */ RESISTED_S1_DRAIN(157), /** * ID: 158
* Message: Your attack has failed. */ ATTACK_FAILED(158), /** * ID: 159
* Message: You have resisted $s1's magic. */ RESISTED_S1_MAGIC(159), /** * ID: 160
* Message: $s1 is a member of another party and cannot be invited. */ S1_IS_ALREADY_IN_PARTY(160), /** * ID: 161
* Message: That player is not currently online. */ INVITED_USER_NOT_ONLINE(161), /** * ID: 164
* Message: Waiting for another reply. */ WAITING_FOR_REPLY(164), /** * ID: 164
* Message: Waiting for another reply. */ WAITING_FOR_ANOTHER_REPLY(164), /** * ID: 165
* Message: You cannot add yourself to your own friend list. */ YOU_CANNOT_ADD_YOURSELF_TO_OWN_FRIEND_LIST(165), /** * ID: 166
* Message: Friend list is not ready yet. Please register again later. */ FRIEND_LIST_NOT_READY_YET_REGISTER_LATER(166), /** * ID: 167
* Message: $s1 is already on your friend list. */ S1_ALRADY_ON_LIST(167), /** * ID: 168
* Message: $s1 has requested to become friends. */ S1_REQUESTED_TO_BECOME_FRIENDS(168), /** * ID: 169
* Message: "Accept friendship 0/1 (1 to accept, 0 to deny)" */ ACCEPT_THE_FRIENDSHIP(169), /** * ID: 170
* Message: The user who requested to become friends is not found in the game. */ THE_USER_YOU_REQUESTED_IS_NOT_IN_GAME(170), /** * ID: 171
* Message: $s1 is not on your friend list. */ S1_NOT_ON_YOUR_FRIENDS_LIST(171), /** * ID: 176
* Message: That person is in message refusal mode. */ THE_PERSON_IS_IN_MESSAGE_REFUSAL_MODE(176), /** * ID: 177
* Message: Message refusal mode. */ MESSAGE_REFUSAL_MODE(177), /** * ID: 178
* Message: Message acceptance mode. */ MESSAGE_ACCEPTANCE_MODE(178), /** * ID: 181
* Message: Cannot see target. */ CANT_SEE_TARGET(181), /** * ID: 189
* Message: Your clan has been created. */ CLAN_CREATED(189), /** * ID: 190
* Message: You have failed to create a clan. */ FAILED_TO_CREATE_CLAN(190), /** * ID: 191
* Message: Clan member $s1 has been expelled. */ CLAN_MEMBER_S1_EXPELLED(191), /** * ID: 193
* Message: Clan has dispersed. */ CLAN_HAS_DISPERSED(193), /** * ID: 195
* Message: Entered the clan. */ ENTERED_THE_CLAN(195), /** * ID: 196
* Message: $s1 declined your clan invitation. */ S1_REFUSED_TO_JOIN_CLAN(196), /** * ID: 197
* Message: You have withdrawn from the clan. */ YOU_HAVE_WITHDRAWN_FROM_CLAN(197), /** * ID: 199
* Message: You have recently been dismissed from a clan. You are not allowed to join another clan for 24-hours. */ CLAN_MEMBERSHIP_TERMINATED(199), /** * ID: 200
* Message: You have withdrawn from the party. */ YOU_LEFT_PARTY(200), /** * ID: 203
* Message: The party has dispersed. */ PARTY_DISPERSED(203), /** * ID: 211
* Message: "You may only register a 16 x 12 pixel, 256-color BMP." */ YOU_MAY_ONLY_REGISTER_A_16_BY_12_PIXEL_256_COLOR_BMP(211), /** * ID: 212
* Message: You are not a clan member and cannot perform this action. */ YOU_ARE_NOT_A_CLAN_MEMBER(212), /** * ID: 214
* Message: Your title has been changed. */ TITLE_CHANGED(214), /** * ID: 215
* Message: War with the $s1 clan has begun. */ WAR_WITH_THE_S1_CLAN_HAS_BEGUN(215), /** * ID: 216
* Message: War with the $s1 clan has ended. */ WAR_WITH_THE_S1_CLAN_HAS_ENDED(216), /** * ID: 217
* Message: You have won the war over the $s1 clan! */ YOU_HAVE_WON_THE_WAR_OVER_THE_S1_CLAN(217), /** * ID: 218
* Message: You have surrendered to the $s1 clan. */ YOU_HAVE_SURRENDERED_TO_THE_S1_CLAN(218), /** * ID: 222
* Message: $s1 has joined the clan. */ S1_HAS_JOINED_CLAN(222), /** * ID: 223
* Message: $s1 has withdrawn from the clan. */ S1_HAS_WITHDRAWN_FROM_THE_CLAN(223), /** * ID: 224
* Message: $s1 did not respond: Invitation to the clan has been cancelled. */ S1_DID_NOT_RESPOND_TO_CLAN_INVITATION(224), /** * ID: 225
* Message: You didn't respond to $s1's invitation: joining has been cancelled. */ YOU_DID_NOT_RESPOND_TO_S1_CLAN_INVITATION(225), /** * ID: 228
* Message: Request to end war has been denied. */ REQUEST_TO_END_WAR_HAS_BEEN_DENIED(228), /** * ID: 229
* Message: You do not meet the criteria ir order to create a clan. */ YOU_DO_NOT_MEET_CRITERIA_IN_ORDER_TO_CREATE_A_CLAN(229), /** * ID: 230
* Message: You must wait 10 days before creating a new clan. */ YOU_MUST_WAIT_XX_DAYS_BEFORE_CREATING_A_NEW_CLAN(230), /** * ID: 231
* Message: "After a clan member is dismissed from a clan, the clan must wait at least a day before accepting a new member." */ YOU_MUST_WAIT_BEFORE_ACCEPTING_A_NEW_MEMBER(231), /** * ID: 232
* Message: "After leaving or having been dismissed from a clan, you must wait at least a day before joining another clan." */ YOU_MUST_WAIT_BEFORE_JOINING_ANOTHER_CLAN(232), /** * ID: 233
* Message: $s1 has withdrawn from the clan. */ SUBCLAN_IS_FULL(233), /** * ID: 234
* Message: The target must be a clan member. */ TARGET_MUST_BE_IN_CLAN(234), /** * ID: 236
* Message: ONLY_THE_CLAN_LEADER_IS_ENABLED. */ ONLY_THE_CLAN_LEADER_IS_ENABLED(236), /** * ID: 239
* Message: The clan leader cannot withdraw. */ CLAN_LEADER_CANNOT_WITHDRAW(239), /** * ID: 242
* Message: You must select a target */ YOU_MUST_SELECT_A_TARGET(242), /** * ID: 250
* Message: You have personally surrendered to the $s1 clan. * You are no longer participating in this clan war. */ YOU_HAVE_PERSONALLY_SURRENDERED_TO_THE_S1_CLAN(250), /** * ID: 261
* Message: Clan name is invalid. */ CLAN_NAME_INCORRECT(261), /** * ID: 262
* Message: Clan name's length is incorrect. */ CLAN_NAME_TOO_LONG(262), /** * ID: 263
* Message: You have already requested the dissolution of your clan. */ DISSOLUTION_IN_PROGRESS(263), /** * ID: 264
* Message: You cannot dissolve a clan while engaged in a war. */ CANNOT_DISSOLVE_WHILE_IN_WAR(264), /** * ID: 265
* Message: You cannot dissolve a clan during a siege or while protecting a castle. */ CANNOT_DISSOLVE_WHILE_IN_SIEGE(265), /** * ID: 266
* Message: You cannot dissolve a clan while owning a clan hall or castle. */ CANNOT_DISSOLVE_WHILE_OWNING_CLAN_HALL_OR_CASTLE(266), /** * ID: 269
* Message: You cannot dismiss yourself. */ YOU_CANNOT_DISMISS_YOURSELF(269), /** * ID: 271
* Message: A player can only be granted a title if the clan is level 3 or above */ CLAN_LVL_3_NEEDED_TO_ENDOWE_TITLE(271), /** * ID: 272
* Message: A clan crest can only be registered when the clan's skill level is 3 or above. */ CLAN_LVL_3_NEEDED_TO_SET_CREST(272), /** * ID: 274
* Message: Your clan's skill level has increased. */ CLAN_LEVEL_INCREASED(274), /** * ID: 276
* Message: You do not have the necessary materials or prerequisites to learn this skill. */ ITEM_MISSING_TO_LEARN_SKILL(276), /** * ID: 277
* Message: You have earned $s1. */ LEARNED_SKILL_S1(277), /** * ID: 278
* Message: You do not have enough SP to learn this skill. */ NOT_ENOUGH_SP_TO_LEARN_SKILL(278), /** * ID: 279
* Message: You do not have enough adena. */ YOU_NOT_ENOUGH_ADENA(279), /** * ID: 282
* Message: You have not deposited any items in your warehouse. */ NO_ITEM_DEPOSITED_IN_WH(282), /** * ID: 283
* Message: You have entered a combat zone. */ ENTERED_COMBAT_ZONE(283), /** * ID: 284
* Message: You have left a combat zone. */ LEFT_COMBAT_ZONE(284), /** * ID: 294
* Message: "Because your clan is not currently on the offensive in a Clan Hall siege war, it cannot summon its base camp." */ BECAUSE_YOUR_CLAN_IS_NOT_CURRENTLY_ON_THE_OFFENSIVE_IN_A_CLAN_HALL_SIEGE_WAR_IT_CANNOT_SUMMON_ITS_BASE_CAMP(294), /** * ID: 295
* Message: $s1's siege was canceled because there were no clans that participated. */ S1_SIEGE_WAS_CANCELED_BECAUSE_NO_CLANS_PARTICIPATED(295), /** * ID: 296
* Message: You received $s1 damage from taking a high fall. */ FALL_DAMAGE_S1(296), /** * ID: 297
* Message: You have taken $s1 damage because you were unable to breathe. */ DROWN_DAMAGE_S1(297), /** * ID: 298
* Message: You have dropped $s1. */ YOU_DROPPED_S1(298), /** * ID: 299
* Message: $s1 has obtained $s3 $s2. */ S1_PICKED_UP_S2_S3(299), /** * ID: 300
* Message: $s1 has obtained $s2. */ S1_PICKED_UP_S2(300), /** * ID: 301
* Message: $s2 $s1 has disappeared. */ DISSAPEARED_ITEM(301), /** * ID: 302
* Message: $s1 has disappeared. */ S1_DISAPPEARED(302), /** * ID: 303
* Message: Select item to enchant. */ SELECT_ITEM_TO_ENCHANT(303), /** * ID: 304
* Message: Clan member $s1 has logged into game. */ CLAN_MEMBER_S1_LOGGED_IN(304), /** * ID: 305
* Message: The player declined to join your party. */ PLAYER_DECLINED(305), /** * ID: 309
* Message: You have succeeded in expelling the clan member. */ YOU_HAVE_SUCCEEDED_IN_EXPELLING_CLAN_MEMBER(309), /** * ID: 319
* Message: This door cannot be unlocked. */ UNABLE_TO_UNLOCK_DOOR(319), /** * ID: 320
* Message: You have failed to unlock the door. */ FAILED_TO_UNLOCK_DOOR(320), /** * ID: 323
* Message: Your force has increased to $s1 level. */ FORCE_INCREASED_TO_S1(323), /** * ID: 324
* Message: Your force has reached maximum capacity. */ FORCE_MAXLEVEL_REACHED(324), /** * ID: 337
* Message: The soulshot you are attempting to use does not match the grade of your equipped weapon. */ SOULSHOTS_GRADE_MISMATCH(337), /** * ID: 338
* Message: You do not have enough soulshots for that. */ NOT_ENOUGH_SOULSHOTS(338), /** * ID: 339
* Message: Cannot use soulshots. */ CANNOT_USE_SOULSHOTS(339), /** * ID: 342
* Message: Power of the spirits enabled. */ ENABLED_SOULSHOT(342), /** * ID: 343
* Message: "Sweeper failed, target not spoiled." */ SWEEPER_FAILED_TARGET_NOT_SPOILED(343), /** * ID: 351
* Message: Incorrect item count. */ NOT_ENOUGH_ITEMS(351), /** * ID: 355
* Message: Inappropriate enchant conditions. */ INAPPROPRIATE_ENCHANT_CONDITION(355), /** * ID: 357
* Message: It has already been spoiled. */ ALREDAY_SPOILED(357), /** * ID: 361
* Message: Over-hit! */ OVER_HIT(361), /** * ID: 362
* Message: You have acquired $s1 bonus experience from a successful over-hit. */ ACQUIRED_BONUS_EXPERIENCE_THROUGH_OVER_HIT(362), /** * ID: 368
* Message: Equipped +$s1 $s2. */ S1_S2_EQUIPPED(368), /** * ID: 369
* Message: You have obtained a +$s1 $s2. */ YOU_PICKED_UP_A_S1_S2(369), /** * ID: 371
* Message: Acquired +$s1 $s2. */ ACQUIRED(371), /** * ID: 378
* Message: $s1 purchased $s2. */ S1_PURCHASED_S2(378), /** * ID: 379
* Message: $s1 purchased +$s2 $s3. */ S1_PURCHASED_S2_S3(379), /** * ID: 380
* Message: $s1 purchased $s3 $s2(s). */ S1_PURCHASED_S3_S2_S(380), /** * ID: 381
* Message: The game client encountered an error and was unable to connect to the petition server. */ GAME_CLIENT_UNABLE_TO_CONNECT_TO_PETITION_SERVER(381), /** * ID: 387
* Message: This ends the GM petition consultation. * Please take a moment to provide feedback about this service. */ THIS_END_THE_PETITION_PLEASE_PROVIDE_FEEDBACK(387), /** * ID: 388
* Message: Not under petition consultation. */ NOT_UNDER_PETITION_CONSULTATION(388), /** * ID: 389
* Message: our petition application has been accepted. - Receipt No. is $s1. */ PETITION_ACCEPTED_RECENT_NO_S1(389), /** * ID: 390
* Message: You may only submit one petition (active) at a time. */ ONLY_ONE_ACTIVE_PETITION_AT_TIME(390), /** * ID: 391
* Message: Receipt No. $s1, petition cancelled. */ RECENT_NO_S1_CANCELED(391), /** * ID: 393
* Message: Failed to cancel petition. Please try again later. */ FAILED_CANCEL_PETITION_TRY_LATER(393), /** * ID: 394
* Message: Petition consultation with $s1, under way. */ PETITION_WITH_S1_UNDER_WAY(394), /** * ID: 395
* Message: Ending petition consultation with $s1. */ PETITION_ENDED_WITH_S1(395), /** * ID: 401
* Message: You have too many ongoing quests. */ TOO_MANY_QUESTS(401), /** * ID: 404
* Message: Your Create Item level is too low to register this recipe. */ CREATE_LVL_TOO_LOW_TO_REGISTER(404), /** * ID: 406
* Message: Petition application accepted. */ PETITION_APP_ACCEPTED(406), /** * ID: 407
* Message: Petition under process. */ PETITION_UNDER_PROCESS(407), /** * ID: 417
* Message: $s1 has been disarmed. */ S1_DISARMED(417), /** * ID: 422
* Message: You have exceeded the weight limit. */ WEIGHT_LIMIT_EXCEEDED(422), /** * ID: 423
* Message: You have cancelled the enchanting process. */ ENCHANT_SCROLL_CANCELLED(423), /** * ID: 464
* Message: This feature is only available alliance leaders. */ FEATURE_ONLY_FOR_ALLIANCE_LEADER(464), /** * ID: 465
* Message: You are not currently allied with any clans. */ NO_CURRENT_ALLIANCES(465), /** * ID: 466
* Message: You have exceeded the limit. */ YOU_HAVE_EXCEEDED_THE_LIMIT(466), /** * ID: 467
* Message: You may not accept any clan within a day after expelling another clan. */ CANT_INVITE_CLAN_WITHIN_1_DAY(467), /** * ID: 468
* Message: A clan that has withdrawn or been expelled cannot enter * into an alliance within one day of withdrawal or expulsion. */ CANT_ENTER_ALLIANCE_WITHIN_1_DAY(468), /** * ID: 469
* Message: You may not ally with a clan you are currently at war with. * That would be diabolical and treacherous. */ MAY_NOT_ALLY_CLAN_BATTLE(469), /** * ID: 470
* Message: Only the clan leader may apply for withdrawal from the alliance. */ ONLY_CLAN_LEADER_WITHDRAW_ALLY(470), /** * ID: 471
* Message: Alliance leaders cannot withdraw. */ ALLIANCE_LEADER_CANT_WITHDRAW(471), /** * ID: 473
* Message: Different alliance. */ DIFFERANT_ALLIANCE(473), /** * ID: 474
* Message: That clan does not exist. */ CLAN_DOESNT_EXISTS(474), /** * ID: 477
* Message: No response. Invitation to join an alliance has been cancelled. */ NO_RESPONSE_TO_ALLY_INVITATION(477), /** * ID: 478
* Message: No response. Your entrance to the alliance has been cancelled. */ YOU_DID_NOT_RESPOND_TO_ALLY_INVITATION(478), /** * ID: 479
* Message: $s1 has joined as a friend. */ S1_JOINED_AS_FRIEND(479), /** * ID: 481
* Message: $s1 has been deleted from your friends list. */ S1_HAS_BEEN_DELETED_FROM_YOUR_FRIENDS_LIST(481), /** * ID: 482
* Message: You cannot add yourself to your own friend list. */ YOU_CANNOT_ADD_YOURSELF_TO_YOUR_OWN_FRIENDS_LIST(482), /** * ID: 484
* Message: This player is already registered in your friends list. */ S1_ALREADY_IN_FRIENDS_LIST(484), /** * ID: 485
* Message: No new friend invitations may be accepted. */ NO_NEW_INVITATIONS_ACCEPTED(485), /** * ID: 486
* Message: The following user is not in your friends list. */ THE_USER_NOT_IN_FRIENDS_LIST(486), /** * ID: 487
* Message: ============ */ FRIEND_LIST_HEAD(487), /** * ID: 488
* Message: $s1 (Currently: Online) */ S1_ONLINE(488), /** * ID: 489
* Message: $s1 (Currently: Offline) */ S1_OFFLINE(489), /** * ID: 490
* Message: ======================== */ FRIEND_LIST_FOOT(490), /** * ID: 491
* Message: ============== */ ALLIANCE_INFO_HEAD(491), /** * ID: 492
* Message: Alliance Name: $s1 */ ALLIANCE_NAME_S1(492), /** * ID: 493
* Message: Connection: $s1 / Total $s2 */ CONNECTION_S1_TOTAL_S2(493), /** * ID: 494
* Message: Alliance Leader: $s2 of $s1 */ ALLIANCE_LEADER_S2_OF_S1(494), /** * ID: 495
* Message: Affiliated clans: Total $s1 clan(s) */ ALLIANCE_CLAN_TOTAL_S1(495), /** * ID: 496
* Message: ========== */ CLAN_INFO_HEAD(496), /** * ID: 497
* Message: Clan Name: $s1 */ CLAN_INFO_NAME(497), /** * ID: 498
* Message: Clan Leader: $s1 */ CLAN_INFO_LEADER(498), /** * ID: 499
* Message: Clan Level: $s1 */ CLAN_INFO_LEVEL(499), /** * ID: 500
* Message: ------------------------ */ CLAN_INFO_SEPARATOR(500), /** * ID: 501
* Message: ======================== */ CLAN_INFO_FOOT(501), /** * ID: 502
* Message: You already belong to another alliance. */ ALREADY_JOINED_ALLIANCE(502), /** * ID: 503
* Message: $s1 (Friend) has logged in. */ FRIEND_S1_HAS_LOGGED_IN(503), /** * ID: 504
* Message: Only clan leaders may create alliances. */ ONLY_CLAN_LEADER_CREATE_ALLIANCE(504), /** * ID: 505
* Message: You cannot create a new alliance within 10 days after dissolution. */ CANT_CREATE_ALLIANCE_10_DAYS_DISOLUTION(505), /** * ID: 506
* Message: Incorrect alliance name. Please try again. */ INCORRECT_ALLIANCE_NAME(506), /** * ID: 507
* Message: Incorrect length for an alliance name. */ INCORRECT_ALLIANCE_NAME_LENGTH(507), /** * ID: 508
* Message: This alliance name already exists. */ ALLIANCE_ALREADY_EXISTS(508), /** * ID: 509
* Message: Cannot accept. clan ally is registered as an enemy during siege battle. */ CANT_ACCEPT_ALLY_ENEMY_FOR_SIEGE(509), /** * ID: 510
* Message: You have invited someone to your alliance. */ YOU_INVITED_FOR_ALLIANCE(510), /** * ID: 511
* Message: You must first select a user to invite. */ SELECT_USER_TO_INVITE(511), /** * ID: 512
* Message: Do you really wish to withdraw from the alliance? */ DO_YOU_WISH_TO_WITHDRW(512), /** * ID: 513
* Message: Enter the name of the clan you wish to expel. */ ENTER_NAME_CLAN_TO_EXPEL(513), /** * ID: 514
* Message: Do you really wish to dissolve the alliance? */ DO_YOU_WISH_TO_DISOLVE(514), /** * ID: 515
* Messages: Enter a file name for the alliance crest. */ ENTER_FILE_NAME_CREST(515), /** * ID: 516
* Message: $s1 has invited you to be their friend. */ SI_INVITED_YOU_AS_FRIEND(516), /** * ID: 517
* Message: You have accepted the alliance. */ YOU_ACCEPTED_ALLIANCE(517), /** * ID: 518
* Message: You have failed to invite a clan into the alliance. */ FAILED_TO_INVITE_CLAN_IN_ALLIANCE(518), /** * ID: 519
* Message: You have withdrawn from the alliance. */ YOU_HAVE_WITHDRAWN_FROM_ALLIANCE(519), /** * ID: 520
* Message: You have failed to withdraw from the alliance. */ YOU_HAVE_FAILED_TO_WITHDRAWN_FROM_ALLIANCE(520), /** * ID: 521
* Message: You have succeeded in expelling a clan. */ YOU_HAVE_EXPELED_A_CLAN(521), /** * ID: 522
* Message: You have failed to expel a clan. */ FAILED_TO_EXPELED_A_CLAN(522), /** * ID: 523
* Message: The alliance has been dissolved. */ ALLIANCE_DISOLVED(523), /** * ID: 524
* Message: You have failed to dissolve the alliance. */ FAILED_TO_DISOLVE_ALLIANCE(524), /** * ID: 525
* Message: You have succeeded in inviting a friend to your friends list. */ YOU_HAVE_SUCCEEDED_INVITING_FRIEND(525), /** * ID: 526
* Message: You have failed to add a friend to your friends list. */ FAILED_TO_INVITE_A_FRIEND(526), /** * ID: 527
* Message: "$s1 leader, $s2, has requested an alliance." */ S2_ALLIANCE_LEADER_OF_S1_REQUESTED_ALLIANCE(527), /** * ID: 528
* Message: Unable to find file at target location. */ FILE_NOT_FOUND(528), /** * ID: 529
* Message: "You may only register an 8 x 12 pixel, 256-color BMP." */ YOU_MAY_ONLY_REGISTER_AN_8_BY_12_PIXEL_256_COLOR_BMP(529), /** * ID: 530
* Message: The Spiritshot does not match the weapon's grade. */ SPIRITSHOTS_GRADE_MISMATCH(530), /** * ID: 531
* Message: You do not have enough Spiritshots for that. */ NOT_ENOUGH_SPIRITSHOTS(531), /** * ID: 532
* Message: You may not use Spiritshots. */ CANNOT_USE_SPIRITSHOTS(532), /** * ID: 533
* Message: Power of Mana enabled. */ ENABLED_SPIRITSHOT(533), /** * ID: 535
* Message: Enter a name for your pet. */ NAMING_NAME_PET(535), /** * ID: 538
* Message: Your SP has decreased by $s1. */ SP_DECREASED_S1(538), /** * ID: 539
* Message: Your Experience has decreased by $s1. */ EXP_DECREASED_BY_S1(539), /** * ID: 540
* Message: Clan leaders may not be deleted. Dissolve the clan first and try again. */ CLAN_LEADERS_MAY_NOT_BE_DELETED(540), /** * ID: 541
* Message: You may not delete a clan member. Withdraw from the clan first and try again. */ CLAN_MEMBER_MAY_NOT_BE_DELETED(541), /** * ID: 543
* Message: You already have a pet. */ YOU_ALREADY_HAVE_A_PET(543), /** * ID: 544
* Message: Your pet cannot carry this item. */ ITEM_NOT_FOR_PETS(544), /** * ID: 547
* Message: Summoning your pet. */ SUMMON_A_PET(547), /** * ID: 548
* Message: Your pet's name can be up to 8 characters in length. */ NAMING_PETNAME_UP_TO_8CHARS(548), /** * ID: 549
* Message: "To create an alliance, your clan must be Level 5 or higher." */ TO_CREATE_AN_ALLY_YOU_CLAN_MUST_BE_LEVEL_5_OR_HIGHER(549), /** * ID: 550
* Message: You may not create an alliance during the term of dissolution postponement. */ YOU_MAY_NOT_CREATE_ALLY_WHILE_DISSOLVING(550), /** * ID: 551
* Message: You cannot raise your clan level during the term of dispersion postponement. */ CANNOT_RISE_LEVEL_WHILE_DISSOLUTION_IN_PROGRESS(551), /** * ID: 552
* Message: "During the grace period for dissolving a clan, the registration or deletion of a clan's crest is not allowed." */ CANNOT_SET_CREST_WHILE_DISSOLUTION_IN_PROGRESS(552), /** * ID: 554
* Message: You cannot disperse the clans in your alliance. */ CANNOT_DISPERSE_THE_CLANS_IN_ALLY(554), /** * ID: 559
* Message: You have purchased $s2 from $s1. */ PURCHASED_S2_FROM_S1(559), /** * ID: 560
* Message: You have purchased +$s2 $s3 from $s1. */ PURCHASED_S2_S3_FROM_S1(560), /** * ID: 561
* Message: You have purchased $s3 $s2(s) from $s1. */ PURCHASED_S3_S2_S_FROM_S1(561), /** * ID: 562
* Message: You may not crystallize this item. Your crystallization skill level is too low. */ CRYSTALLIZE_LEVEL_TOO_LOW(562), /** * ID: 568
* Message: Cubic Summoning failed. */ CUBIC_SUMMONING_FAILED(568), /** * ID: 572
* Message: Do you wish to join $s1's party? (Item distribution: Finders Keepers) */ S1_INVITED_YOU_TO_PARTY_FINDER_KEEPER(572), /** * ID: 573
* Message: Do you wish to join $s1's party? (Item distribution: Random) */ S1_INVITED_YOU_TO_PARTY_RANDOM(573), /** * ID: 574
* Message: Pets and Servitors are not available at this time. */ PETS_ARE_NOT_AVAILABLE_AT_THIS_TIME(574), /** * ID: 578
* Message: You cannot summon during combat. */ YOU_CANNOT_SUMMON_IN_COMBAT(578), /** * ID: 579
* Message: A pet cannot be sent back during battle. */ PET_CANNOT_SENT_BACK_DURING_BATTLE(579), /** * ID: 581
* Message: There is a space in the name. */ NAMING_THERE_IS_A_SPACE(581), /** * ID: 582
* Message: Inappropriate character name. */ NAMING_INAPPROPRIATE_CHARACTER_NAME(582), /** * ID: 583
* Message: Name includes forbidden words. */ NAMING_INCLUDES_FORBIDDEN_WORDS(583), /** * ID: 584
* Message: This is already in use by another pet. */ NAMING_ALREADY_IN_USE_BY_ANOTHER_PET(584), /** * ID: 589
* Message: A dead pet cannot be sent back. */ DEAD_PET_CANNOT_BE_RETURNED(589), /** * ID: 590
* Message: Your pet is motionless and any attempt you make to give * it something goes unrecognized. */ CANNOT_GIVE_ITEMS_TO_DEAD_PET(590), /** * ID: 591
* Message: An invalid character is included in the pet's name. */ NAMING_PETNAME_CONTAINS_INVALID_CHARS(591), /** * ID: 594
* Message: You may not restore a hungry pet. */ YOU_CANNOT_RESTORE_HUNGRY_PETS(594), /** * ID: 600
* Message: You may not equip a pet item. */ CANNOT_EQUIP_PET_ITEM(600), /** * ID: 601
* Message: There are $S1 petitions currently on the waiting list. */ S1_PETITION_ON_WAITING_LIST(601), /** * ID: 602
* Message: The petition system is currently unavailable. Please try again later. */ PETITION_SYSTEM_CURRENT_UNAVAILABLE(602), /** * ID: 603
* Message: That item cannot be discarded or exchanged. */ CANNOT_DISCARD_EXCHANGE_ITEM(603), /** * ID: 607
* Message: You do not have any further skills to learn. Come back when you have reached Level $s1. */ DO_NOT_HAVE_FURTHER_SKILLS_TO_LEARN(607), /** * ID: 608
* Message: $s1 has obtained $s3 $s2 by using Sweeper. */ S1_SWEEPED_UP_S2_S3(608), /** * ID: 609
* Message: $s1 has obtained $s2 by using Sweeper. */ S1_SWEEPED_UP_S2(609), /** * ID: 610
* Message: Your skill has been canceled due to lack of HP. */ SKILL_REMOVED_DUE_LACK_HP(610), /** * ID: 612
* Message: The Spoil condition has been activated. */ SPOIL_SUCCESS(612), /** * ID: 613
* Message: ============ */ BLOCK_LIST_HEADER(613), /** * ID: 615
* Message: You have failed to register the user to your Ignore List. */ FAILED_TO_REGISTER_TO_IGNORE_LIST(615), /** * ID: 617
* Message: $s1 has been added to your Ignore List. */ S1_WAS_ADDED_TO_YOUR_IGNORE_LIST(617), /** * ID: 618
* Message: $s1 has been removed from your Ignore List. */ S1_WAS_REMOVED_FROM_YOUR_IGNORE_LIST(618), /** * ID: 619
* Message: $s1 has placed you on his/her Ignore List. */ S1_HAS_ADDED_YOU_TO_IGNORE_LIST(619), /** * ID: 626
* Message: The $s1 clan did not respond: war proclamation has been refused. */ WAR_PROCLAMATION_HAS_BEEN_REFUSED(626), /** * ID: 628
* Message: You have already been at war with the $s1 clan: 5 days must pass before you can declare war again. */ ALREADY_AT_WAR_WITH_S1_WAIT_5_DAYS(628), /** * ID: 638
* Message: You have already requested a Siege Battle. */ ALREADY_REQUESTED_SIEGE_BATTLE(638), /** * ID: 639
* Message: Your application has been denied because you have already submitted * a request for another Siege Battle. */ APPLICATION_DENIED_BECAUSE_ALREADY_SUBMITTED_A_REQUEST_FOR_ANOTHER_SIEGE_BATTLE(639), /** * ID: 642
* Message: You are already registered to the attacker * side and must cancel your registration before submitting your request. */ NOT_AUTHORIZED_TO_REGISTER_RECIPE(642), /** * ID: 650
* Message: You may not summon from your current location. */ YOU_MAY_NOT_SUMMON_FROM_YOUR_CURRENT_LOCATION(650), /** * ID: 653
* Message: You do not have the authority to position mercenaries. */ YOU_DO_NOT_HAVE_AUTHORITY_TO_POSITION_MERCENARIES(653), /** * ID: 654
* Message: You do not have the authority to cancel mercenary positioning. */ YOU_DO_NOT_HAVE_AUTHORITY_TO_CANCEL_MERCENARY_POSITIONING(654), /** * ID: 655
* Message: Mercenaries cannot be positioned here. */ MERCENARIES_CANNOT_BE_POSITIONED_HERE(655), /** * ID: 656
* Message: This mercenary cannot be positioned anymore. */ THIS_MERCENARY_CANNOT_BE_POSITIONED_ANYMORE(656), /** * ID: 657
* Message: Positioning cannot be done here because the distance between mercenaries is too short. */ POSITIONING_CANNOT_BE_DONE_BECAUSE_DISTANCE_BETWEEN_MERCENARIES_TOO_SHORT(657), /** * ID: 658
* Message: This is not a mercenary of a castle that you own and so you cannot cancel its positioning. */ THIS_IS_NOT_A_MERCENARY_OF_A_CASTLE_THAT_YOU_OWN_AND_SO_CANNOT_CANCEL_POSITIONING(658), /** * ID: 661
* Message: This character cannot be spoiled. */ SPOIL_CANNOT_USE(661), /** * ID: 662
* Message: The other player is rejecting friend invitations. */ THE_PLAYER_IS_REJECTING_FRIEND_INVITATIONS(662), /** * ID: 688
* Message: The clan that owns the castle is automatically registered on the defending side. */ CLAN_THAT_OWNS_CASTLE_IS_AUTOMATICALLY_REGISTERED_DEFENDING(688), /** * ID: 672
* Message: $s1 adena disappeared. */ DISSAPEARED_ADENA(672), /** * ID: 681
* Message: The clan does not own a clan hall. */ CLAN_HAS_NO_CLAN_HALL(681), /** * ID: 683
* Message: There are no priority rights on a sweeper. */ SWEEP_NOT_ALLOWED(683), /** * ID: 691
* Message: $s1 clan is already a member of $s2 alliance. */ S1_CLAN_ALREADY_MEMBER_OF_S2_ALLIANCE(691), /** * ID: 692
* Message: The other party is frozen. Please wait a moment. */ OTHER_PARTY_IS_DROZEN(692), /** * ID: 695
* Message: You cannot set the name of the pet. */ NAMING_YOU_CANNOT_SET_NAME_OF_THE_PET(695), /** * ID: 700
* Message: The purchase is complete. */ THE_PURCHASE_IS_COMPLETE(700), /** * ID: 703
* Message: ============ */ GM_LIST(703), /** * ID: 704
* Message: GM : $s1 */ GM_S1(704), /** * ID: 702
* Message: There are no GMs * currently visible in the public list as they may be * performing other functions at the moment. */ NO_GM_PROVIDING_SERVICE_NOW(702), /** * ID: 707
* Message: You cannot teleport to a village that is in a siege. */ NO_PORT_THAT_IS_IN_SIGE(707), /** * ID: 709
* Message: You do not have the right to use the clan warehouse. */ YOU_DO_NOT_HAVE_THE_RIGHT_TO_USE_CLAN_WAREHOUSE(709), /** * ID: 710
* Message: Only clans of clan level 1 or higher can use a clan warehouse. */ ONLY_LEVEL_1_CLAN_OR_HIGHER_CAN_USE_WAREHOUSE(710), /** * ID: 714 * Message: A trap device has been tripped. * */ A_TRAP_DEVICE_HAS_BEEN_STOPPED(714), /** * ID: 720
* Message: The purchase price is higher than the amount of money that you * have and so you cannot open a personal store. */ THE_PURCHASE_PRICE_IS_HIGHER_THAN_MONEY(720), /** * ID: 722
* Message: You cannot dissolve an alliance while an affiliated clan is * participating in a siege battle. */ CANNOT_DISSOLVE_ALLY_WHILE_IN_SIEGE(722), /** * ID: 723
* Message: The opposing clan is participating in a siege battle. */ OPPOSING_CLAN_IS_PARTICIPATING_IN_SIEGE(723), /** * ID: 730
* Message: - You have submitted your $s1th petition. - You may submit $s2 * more petition(s) today. */ SUBMITTED_YOU_S1_TH_PETITION_S2_LEFT(730), /** * ID: 733
* Message: We have received $s1 petitions from you today and that is the * maximum that you can submit in one day. You cannot submit any more * petitions. */ WE_HAVE_RECEIVED_S1_PETITIONS_TODAY(733), /** * ID: 736
* Message: The petition was canceled. You may submit $s1 more petition(s) * today. */ PETITION_CANCELED_SUBMIT_S1_MORE_TODAY(736), /** * ID: 738
* Message: You have not submitted a petition. */ PETITION_NOT_SUBMITTED(738), /** * ID: 745
* Message: You are currently not in a petition chat. */ YOU_ARE_NOT_IN_PETITION_CHAT(745), /** * ID: 749
* Message: The effect of $s1 has been removed. */ EFFECT_S1_DISAPPEARED(749), /** * ID: 750
* Message: There are no other skills to learn. */ NO_MORE_SKILLS_TO_LEARN(750), /** * ID: 760
* Message: $s1 cannot join the clan because one day has not yet passed * since he/she left another clan. */ S1_MUST_WAIT_BEFORE_JOINING_ANOTHER_CLAN(760), /** * ID: 761
* Message: $s1 clan cannot join the alliance because one day has not yet * passed since it left another alliance. */ S1_CANT_ENTER_ALLIANCE_WITHIN_1_DAY(761), /** * ID: 764
* Message: You have been playing for an extended period of time. Please consider taking a break. */ PLAYING_FOR_LONG_TIME(764), /** * ID: 780
* Message: Observation is only possible during a siege. */ ONLY_VIEW_SIEGE(780), /** * ID: 781
* Message: Observers cannot participate. */ OBSERVERS_CANNOT_PARTICIPATE(781), /** * ID: 783
* Message: Lottery ticket sales have been temporarily suspended. */ LOTTERY_TICKET_SALES_TEMP_SUSPENDED(783), /** * ID: 784
* Message: Tickets for the current lottery are no longer available. */ NO_LOTTERY_TICKETS_AVAILABLE(784), /** * ID: 794
* Message: You are not authorized to do that. */ YOU_ARE_NOT_AUTHORIZED_TO_DO_THAT(794), /** * ID: 797
* Message: You may create up to 48 macros. */ YOU_MAY_CREATE_UP_TO_48_MACROS(797), /** * ID: 810
* Message: Invalid macro. Refer to the Help file for instructions. */ INVALID_MACRO(810), /** * ID: 816
* Message: Tickets are now available for Monster Race $s1! */ MONSRACE_TICKETS_AVAILABLE_FOR_S1_RACE(816), /** * ID: 817
* Message: Now selling tickets for Monster Race $s1! */ MONSRACE_TICKETS_NOW_AVAILABLE_FOR_S1_RACE(817), /** * ID: 818
* Message: Ticket sales for the Monster Race will end in $s1 minute(s). */ MONSRACE_TICKETS_STOP_IN_S1_MINUTES(818), /** * ID: 819
* Message: Tickets sales are closed for Monster Race $s1. Odds are posted. */ MONSRACE_TICKET_SALES_CLOSED(819), /** * ID: 820
* Message: Monster Race $s2 will begin in $s1 minute(s)! */ MONSRACE_BEGINS_IN_S1_MINUTES(820), /** * ID: 821
* Message: Monster Race $s1 will begin in 30 seconds! */ MONSRACE_BEGINS_IN_30_SECONDS(821), /** * ID: 822
* Message: Monster Race $s1 is about to begin! Countdown in five seconds! */ MONSRACE_COUNTDOWN_IN_FIVE_SECONDS(822), /** * ID: 823
* Message: The race will begin in $s1 second(s)! */ MONSRACE_BEGINS_IN_S1_SECONDS(823), /** * ID: 824
* Message: They're off! */ MONSRACE_RACE_START(824), /** * ID: 825
* Message: Monster Race $s1 is finished! */ MONSRACE_RACE_END(825), /** * ID: 826
* Message: First prize goes to the player in lane $s1. Second prize goes to the player in lane $s2. */ MONSRACE_FIRST_PLACE_S1_SECOND_S2(826), /** * ID: 827
* Message: You may not impose a block on a GM. */ YOU_MAY_NOT_IMPOSE_A_BLOCK_AN_A_GM(827), /** * ID: 829
* Message: You cannot recommend yourself. */ YOU_CANNOT_RECOMMEND_YOURSELF(829), /** * ID: 831
* Message: You have been recommended by $s1. */ YOU_HAVE_BEEN_RECOMMENDED(831), /** * ID: 830
* Message: You have recommended $s1. You are authorized to make $s2 more recommendations. */ YOU_HAVE_RECOMMENDED(830), /** * ID: 832
* Message: That character has already been recommended. */ THAT_CHARACTER_IS_RECOMMENDED(832), /** * ID: 833
* Message: You are not authorized to make further recommendations at this time. * You will receive more recommendation credits each day at 1 p.m. */ NO_MORE_RECOMMENDATIONS_TO_HAVE(833), /** * ID: 835
* Message: You may not throw the dice at this time. Try again later. */ YOU_MAY_NOT_THROW_THE_DICE_AT_THIS_TIME_TRY_AGAIN_LATER(835), /** * ID: 836
* Message: You have exceeded your inventory volume limit and cannot take this item. */ YOU_HAVE_EXCEEDED_YOUR_INVENTORY_VOLUME_LIMIT_AND_CANNOT_TAKE_THIS_ITEM(836), /** * ID: 837
* Message: Macro descriptions may contain up to 32 characters. */ MACRO_DESCRIPTION_MAX_32_CHARS(837), /** * ID: 838
* Message: Enter the name of the macro. */ ENTER_THE_MACRO_NAME(838), /** * ID: 840
* Message: That recipe is already registered. */ RECIPE_ALREADY_REGISTERED(840), /** * ID: 841
* Message: No further recipes may be registered. */ NO_FUTHER_RECIPES_CAN_BE_ADDED(841), /** * ID: 843
* Message: $s1 has rolled $s2. */ S1_ROLLED_S2(834), /** * ID: 846
* Message: The siege of $s1 has been canceled due to lack of interest. */ SIEGE_OF_S1_HAS_BEEN_CANCELED_DUE_TO_LACK_OF_INTEREST(846), /** * ID: 853
* Message: You may not alter your recipe book while engaged in manufacturing. */ CANT_ALTER_RECIPEBOOK_WHILE_CRAFTING(853), /** * ID: 871
* Message: The seed has been sown. */ THE_SEED_HAS_BEEN_SOWN(871), /** * ID: 872
* Message: This seed may not be sown here. */ THIS_SEED_MAY_NOT_BE_SOWN_HERE(872), /** * ID: 873
* Message: That character does not exist. */ CHARACTER_DOES_NOT_EXIST(873), /** * ID: 877
* Message: The symbol has been added. */ SYMBOL_ADDED(877), /** * ID: 879
* Message: The manor system is currently under maintenance. */ THE_MANOR_SYSTEM_IS_CURRENTLY_UNDER_MAINTENANCE(879), /** * ID: 880
* Message: The transaction is complete. */ THE_TRANSACTION_IS_COMPLETE(880), /** * ID: 881
* Message: There is a discrepancy on the invoice. */ THERE_IS_A_DISCREPANCY_ON_THE_INVOICE(881), /** * ID: 882
* Message: The seed quantity is incorrect. */ THE_SEED_QUANTITY_IS_INCORRECT(882), /** * ID: 883
* Message: The seed information is incorrect. */ THE_SEED_INFORMATION_IS_INCORRECT(883), /** * ID: 884
* Message: The manor information has been updated. */ THE_MANOR_INFORMATION_HAS_BEEN_UPDATED(884), /** * ID: 885
* Message: The number of crops is incorrect. */ THE_NUMBER_OF_CROPS_IS_INCORRECT(885), /** * ID: 886
* Message: The crops are priced incorrectly. */ THE_CROPS_ARE_PRICED_INCORRECTLY(886), /** * ID: 887
* Message: The type is incorrect. */ THE_TYPE_IS_INCORRECT(887), /** * ID: 888
* Message: No crops can be purchased at this time. */ NO_CROPS_CAN_BE_PURCHASED_AT_THIS_TIME(888), /** * ID: 889
* Message: The seed was successfully sown. */ THE_SEED_WAS_SUCCESSFULLY_SOWN(889), /** * ID: 890
* Message: The seed was not sown. */ THE_SEED_WAS_NOT_SOWN(890), /** * ID: 891
* Message: You are not authorized to harvest. */ YOU_ARE_NOT_AUTHORIZED_TO_HARVEST(891), /** * ID: 892
* Message: The harvest has failed. */ THE_HARVEST_HAS_FAILED(892), /** * ID: 893
* Message: The harvest failed because the seed was not sown. */ THE_HARVEST_FAILED_BECAUSE_THE_SEED_WAS_NOT_SOWN(893), /** * ID: 894
* Message: Up to $s1 recipes can be registered. */ UP_TO_S1_RECIPES_CAN_REGISTER(894), /** * ID: 898
* Message: Only characters of level 10 or above are authorized to make recommendations. */ ONLY_LEVEL_SUP_10_CAN_RECOMMEND(898), /** * ID: 899
* Message: The symbol cannot be drawn. */ CANT_DRAW_SYMBOL(899), /** * ID: 910
* Message: "Current location : $s1, $s2, $s3 (Near Talking Island Village)" */ LOC_TI_S1_S2_S3(910), /** * ID: 911
* Message: "Current location : $s1, $s2, $s3 (Near Gludin Village)" */ LOC_GLUDIN_S1_S2_S3(911), /** * ID: 912
* Message: "Current location : $s1, $s2, $s3 (Near the Town of Gludio)" */ LOC_GLUDIO_S1_S2_S3(912), /** * ID: 913
* Message: "Current location : $s1, $s2, $s3 (Near the Neutral Zone)" */ LOC_NETRAL_ZONE_S1_S2_S3(913), /** * ID: 914
* Message: "Current location : $s1, $s2, $s3 (Near the Elven Village)" */ LOC_ELVEN_S1_S2_S3(914), /** * ID: 915
* Message: "Current location : $s1, $s2, $s3 (Near the Dark Elf Village)" */ LOC_DARK_ELVEN_S1_S2_S3(915), /** * ID: 916
* Message: "Current location : $s1, $s2, $s3 (Near the Town of Dion)" */ LOC_DION_S1_S2_S3(916), /** * ID: 917
* Message: "Current location : $s1, $s2, $s3 (Near the Floran Village)" */ LOC_FLORAN_S1_S2_S3(917), /** * ID: 918
* Message: "Current location : $s1, $s2, $s3 (Near the Town of Giran)" */ LOC_GIRAN_S1_S2_S3(918), /** * ID: 919
* Message: "Current location : $s1, $s2, $s3 (Near Giran Harbor)" */ LOC_GIRAN_HARBOR_S1_S2_S3(919), /** * ID: 920
* Message: "Current location : $s1, $s2, $s3 (Near the Orc Village)" */ LOC_ORC_S1_S2_S3(920), /** * ID: 921
* Message: "Current location : $s1, $s2, $s3 (Near the Dwarven Village)" */ LOC_DWARVEN_S1_S2_S3(921), /** * ID: 922
* Message: "Current location : $s1, $s2, $s3 (Near the Town of Oren)" */ LOC_OREN_S1_S2_S3(922), /** * ID: 923
* Message: "Current location : $s1, $s2, $s3 (Near Hunters Village)" */ LOC_HUNTER_S1_S2_S3(923), /** * ID: 924
* Message: "Current location : $s1, $s2, $s3 (Near Aden Castle Town)" */ LOC_ADEN_S1_S2_S3(924), /** * ID: 925
* Message: "Current location : $s1, $s2, $s3 (Near the Coliseum)" */ LOC_COLISEUM_S1_S2_S3(925), /** * ID: 926
* Message: "Current location : $s1, $s2, $s3 (Near Heine)" */ LOC_HEINE_S1_S2_S3(926), /** * ID: 927
* Message: The current time is $s1:$s2 in the day. */ TIME_S1_S2_IN_THE_DAY(927), /** * ID: 928
* Message: The current time is $s1:$s2 in the night. */ TIME_S1_S2_IN_THE_NIGHT(928), /** * ID: 930
* Message: Lottery tickets are not currently being sold. */ NO_LOTTERY_TICKETS_CURRENT_SOLD(930), /** * ID: 933
* Message: The seed pricing greatly differs from standard seed prices. */ THE_SEED_PRICING_GREATLY_DIFFERS_FROM_STANDARD_SEED_PRICES(933), /** * ID: 935
* Message: The amount is not sufficient and so the manor is not in operation. */ THE_AMOUNT_IS_NOT_SUFFICIENT_AND_SO_THE_MANOR_IS_NOT_IN_OPERATION(935), /** * ID: 938
* Message: The community server is currently offline. */ CB_OFFLINE(938), /** * ID: 970
* Message: $s2's MP has been drained by $s1. */ S2_MP_HAS_BEEN_DRAINED_BY_S1(970), /** * ID: 971
* Message: Petitions cannot exceed 255 characters. */ PETITION_MAX_CHARS_255(971), /** * ID: 972
* Message: This pet cannot use this item. */ PET_CANNOT_USE_ITEM(972), /** * ID: 974
* Message: The soul crystal succeeded in absorbing a soul. */ SOUL_CRYSTAL_ABSORBING_SUCCEEDED(974), /** * ID: 975
* Message: The soul crystal was not able to absorb a soul. */ SOUL_CRYSTAL_ABSORBING_FAILED(975), /** * ID: 976
* Message: The soul crystal broke because it was not able to endure the soul energy. */ SOUL_CRYSTAL_BROKE(976), /** * ID: 977
* Message: The soul crystals caused resonation and failed at absorbing a soul. */ SOUL_CRYSTAL_ABSORBING_FAILED_RESONATION(977), /** * ID: 978
* Message: The soul crystal is refusing to absorb a soul. */ SOUL_CRYSTAL_ABSORBING_REFUSED(978), /** * ID: 1051
* Message: Payment for your clan hall has not been made please make payment tomorrow. */ PAYMENT_FOR_YOUR_CLAN_HALL_HAS_NOT_BEEN_MADE_PLEASE_MAKE_PAYMENT_TO_YOUR_CLAN_WAREHOUSE_BY_S1_TOMORROW(1051), /** * ID: 1052
* Message: Payment of Clan Hall is overdue the owner loose Clan Hall. */ THE_CLAN_HALL_FEE_IS_ONE_WEEK_OVERDUE_THEREFORE_THE_CLAN_HALL_OWNERSHIP_HAS_BEEN_REVOKED(1052), /** * ID: 1009
* Message: A strider cannot be ridden when dead. */ STRIDER_CANT_BE_RIDDEN_WHILE_DEAD(1009), /** * ID: 1010
* Message: A dead strider cannot be ridden. */ DEAD_STRIDER_CANT_BE_RIDDEN(1010), /** * ID: 1011
* Message: A strider in battle cannot be ridden. */ STRIDER_IN_BATLLE_CANT_BE_RIDDEN(1011), /** * ID: 1012
* Message: A strider cannot be ridden while in battle. */ STRIDER_CANT_BE_RIDDEN_WHILE_IN_BATTLE(1012), /** * ID: 1013
* Message: A strider can be ridden only when standing. */ STRIDER_CAN_BE_RIDDEN_ONLY_WHILE_STANDING(1013), /** * ID: 1014
* Message: Your pet gained $s1 experience points. */ PET_EARNED_S1_EXP(1014), /** * ID: 1015
* Message: Your pet hit for $s1 damage. */ PET_HIT_FOR_S1_DAMAGE(1015), /** * ID: 1016
* Message: Your pet received $s2 damage caused by $s1. */ PET_RECEIVED_S2_DAMAGE_BY_S1(1016), /** * ID: 1016
* Message: Your pet received $s2 damage caused by $s1. */ S1_GAME_PET_S2_DMG(1016), /** * ID: 1026
* Message: The summoned monster gave damage of $s1 */ SUMMON_GAVE_DAMAGE_S1(1026), /** * ID: 1027
* Message: The summoned monster received damage of $s2 caused by $s1. */ SUMMON_RECEIVED_DAMAGE_S2_BY_S1(1027), /** * ID: 1017
* Message: Pet's critical hit! */ CRITICAL_HIT_BY_PET(1017), /** * ID: 1028
* Message: Summoned monster's critical hit! */ CRITICAL_HIT_BY_SUMMONED_MOB(1028), /** * ID: 1030
* Message: */ PARTY_INFORMATION(1030), /** * ID: 1031
* Message: Looting method: Finders keepers */ LOOTING_FINDERS_KEEPERS(1031), /** * ID: 1032
* Message: Looting method: Random */ LOOTING_RANDOM(1032), /** * ID: 1033
* Message: Looting method: Random including spoil */ LOOTING_RANDOM_INCLUDE_SPOIL(1033), /** * ID: 1034
* Message: Looting method: By turn */ LOOTING_BY_TURN(1034), /** * ID: 1035
* Message: Looting method: By turn including spoil */ LOOTING_BY_TURN_INCLUDE_SPOIL(1035), /** * ID: 1036
* Message: You have exceeded the quantity that can be inputted. */ YOU_HAVE_EXCEEDED_QUANTITY_THAT_CAN_BE_INPUTTED(1036), /** * ID: 1039
* Message: Items left at the clan hall warehouse can only be retrieved by the clan leader. * Do you want to continue? */ ONLY_CLAN_LEADER_CAN_RETRIEVE_ITEMS_FROM_CLAN_WAREHOUSE(1039), /** * ID: 1041
* Message: The next seed purchase price is $s1 adena. */ THE_NEXT_SEED_PURCHASE_PRICE_IS_S1_ADENA(1041), /** * ID: 1044
* Message: Monster race payout information is not available while tickets are being sold. */ MONSRACE_NO_PAYOUT_INFO(1044), /** * ID: 1046
* Message: Monster race tickets are no longer available. */ MONSRACE_TICKETS_NOT_AVAILABLE(1046), /** * ID: 1050
* Message: There are no communities in my clan. Clan communities are allowed for clans with skill levels of 2 and higher. */ NO_CB_IN_MY_CLAN(1050), /** * ID: 1053
* Message: It is not possible to resurrect in battlefields where a siege war is taking place. */ CANNOT_BE_RESURRECTED_DURING_SIEGE(1053), /** * ID: 1058
* Message: The sales price for seeds is $s1 adena. */ THE_SALES_PRICE_FOR_SEEDS_IS_S1_ADENA(1058), /** * ID: 1060
* Message: The remainder after selling the seeds is $s1. */ THE_REMAINDER_AFTER_SELLING_THE_SEEDS_IS_S1(1060), /** * ID: 1061
* Message: The recipe cannot be registered. You do not have the ability to create items. */ CANT_REGISTER_NO_ABILITY_TO_CRAFT(1061), /** * ID: 1064
* Message: The equipment, +$s1 $s2, has been removed. */ EQUIPMENT_S1_S2_REMOVED(1064), /** * ID: 1065
* Message: While operating a private store or workshop, you cannot discard, destroy, or trade an item. */ CANNOT_TRADE_DISCARD_DROP_ITEM_WHILE_IN_SHOPMODE(1065), /** * ID: 1066
* Message: $s1 HP has been restored. */ S1_HP_RESTORED(1066), /** * ID: 1067
* Message: $s2 HP has been restored by $s1 */ S2_HP_RESTORED_BY_S1(1067), /** * ID: 1068
* Message: $s1 MP has been restored. */ S1_MP_RESTORED(1068), /** * ID: 1069
* Message: $s2 MP has been restored by $s1. */ S2_MP_RESTORED_BY_S1(1069), /** * ID: 1112
* Message: The prize amount for the winner of Lottery #$s1 is $s2 adena. We have $s3 first prize winners. */ AMOUNT_FOR_WINNER_S1_IS_S2_ADENA_WE_HAVE_S3_PRIZE_WINNER(1112), /** * ID: 1113
* Message: The prize amount for Lucky Lottery #$s1 is $s2 adena. * There was no first prize winner in this drawing, therefore the * jackpot will be added to the next drawing. */ AMOUNT_FOR_LOTTERY_S1_IS_S2_ADENA_NO_WINNER(1113), /** * ID: 1114
* Message: Your clan may not register to participate in a siege while under a * grace period of the clan's dissolution. */ CANT_PARTICIPATE_IN_SIEGE_WHILE_DISSOLUTION_IN_PROGRESS(1114), /** * ID: 1116
* Message: One cannot leave one's clan during combat. */ YOU_CANNOT_LEAVE_DURING_COMBAT(1116), /** * ID: 1117
* Message: A clan member may not be dismissed during combat. */ CLAN_MEMBER_CANNOT_BE_DISMISSED_DURING_COMBAT(1117), /** * ID: 1118
* Message: Progress in a quest is possible only when your inventory's * weight and volume are less than 80 percent of capacity. */ INVENTORY_LESS_THAN_80_PERCENT(1118), /** * ID: 1125
* Message: An item may not be created while engaged in trading. */ CANNOT_CREATED_WHILE_ENGAGED_IN_TRADING(1125), /** * ID: 1135
* Message: While you are engaged in combat, you cannot operate a private store or private workshop. */ CANT_CRAFT_DURING_COMBAT(1135), /** * ID: 1137
* Message: $s1 harvested $s3 $s2(s). */ S1_HARVESTED_S3_S2S(1137), /** * ID: 1138
* Message: $s1 harvested $s2(s). */ S1_HARVESTED_S2S(1138), /** * ID: 1140
* Message: Would you like to open the gate? */ WOULD_YOU_LIKE_TO_OPEN_THE_GATE(1140), /** * ID: 1141
* Message: Would you like to close the gate? */ WOULD_YOU_LIKE_TO_CLOSE_THE_GATE(1141), /** * ID: 1176
* Message: This is a quest event period. */ QUEST_EVENT_PERIOD(1176), /** * ID: 1177
* Message: This is the seal validation period. */ VALIDATION_PERIOD(1177), // /** // * ID: 1178
// */ // AVARICE_DESCRIPTION(1178), // // /** // * ID: 1179
// */ // GNOSIS_DESCRIPTION(1179), // // /** // * ID: 1180
// */ // STRIFE_DESCRIPTION(1180), /** * ID: 1183
* Message: This is the initial period. */ INITIAL_PERIOD(1183), /** * ID: 1184
* Message: This is a period of calculating statistics in the server. */ RESULTS_PERIOD(1184), /** * ID: 1188
* Message: Your selected target can no longer receive a recommendation. */ YOU_NO_LONGER_RECIVE_A_RECOMMENDATION(1188), /** * ID: 1196
* Message: Your force has reached maximum capacity. */ FORCE_MAXIMUM(1196), /** * ID: 1197
* Message: Summoning a servitor costs $s2 $s1. */ SUMMONING_SERVITOR_COSTS_S2_S1(1197), /** * ID: 1200
* Message:($s1 ($s2 Alliance) */ S1_S2_ALLIANCE(1200), /** * ID: 1202
* Message:($s1 (No alliance exists) */ S1_NO_ALLI_EXISTS(1202), /** * ID: 1208
* Message: $s1 died and dropped $s3 $s2. */ S1_DIED_DROPPED_S3_S2(1208), /** * ID: 1209
* Message: Congratulations. Your raid was successful. */ RAID_WAS_SUCCESSFUL(1209), /** * ID: 1210
* Message: Seven Signs: The quest event period has begun. * Visit a Priest of Dawn or Priestess of Dusk to participate in the event. */ QUEST_EVENT_PERIOD_BEGUN(1210), /** * ID: 1211
* Message: Seven Signs: The quest event period has ended. * The next quest event will start in one week. */ QUEST_EVENT_PERIOD_ENDED(1211), /** * ID: 1212
* Message: Seven Signs: The Lords of Dawn have obtained the Seal of Avarice. */ DAWN_OBTAINED_AVARICE(1212), /** * ID: 1213
* Message: Seven Signs: The Lords of Dawn have obtained the Seal of Gnosis. */ DAWN_OBTAINED_GNOSIS(1213), /** * ID: 1214
* Message: Seven Signs: The Lords of Dawn have obtained the Seal of Strife. */ DAWN_OBTAINED_STRIFE(1214), /** * ID: 1215
* Message: Seven Signs: The Revolutionaries of Dusk have obtained the Seal of Avarice. */ DUSK_OBTAINED_AVARICE(1215), /** * ID: 1216
* Message: Seven Signs: The Revolutionaries of Dusk have obtained the Seal of Gnosis. */ DUSK_OBTAINED_GNOSIS(1216), /** * ID: 1217
* Message: Seven Signs: The Revolutionaries of Dusk have obtained the Seal of Strife. */ DUSK_OBTAINED_STRIFE(1217), /** * ID: 1218
* Message: Seven Signs: The Seal Validation period has begun. */ SEAL_VALIDATION_PERIOD_BEGUN(1218), /** * ID: 1219
* Message: Seven Signs: The Seal Validation period has ended. */ SEAL_VALIDATION_PERIOD_ENDED(1219), /** * ID: 1235
* Message: Do you wish to delete all your friends? */ DO_YOU_WISH_TO_DELETE_FRIENDLIST(1235), /** * ID: 1241
* Message: Seven Signs: The Lords of Dawn have won. */ DAWN_WON(1241), /** * ID: 1240
* Message: Seven Signs: The Revolutionaries of Dusk have won. */ DUSK_WON(1240), /** * ID: 1260
* Message: Seven Signs: Preparations have begun for the next quest event. */ PREPARATIONS_PERIOD_BEGUN(1260), /** * ID: 1261
* Message: Seven Signs: The quest event period has begun. * Speak with a Priest of Dawn or Dusk Priestess if you wish to participate in the event. */ COMPETITION_PERIOD_BEGUN(1261), /** * ID: 1262
* Message: Seven Signs: Quest event has ended. Results are being tallied. */ RESULTS_PERIOD_BEGUN(1262), /** * ID: 1263
* Message: Seven Signs: This is the seal validation period. A new quest event period begins next Monday. */ VALIDATION_PERIOD_BEGUN(1263), /** * ID: 1267
* Message: Your contribution score is increased by $s1. */ CONTRIB_SCORE_INCREASED(1267), /** * ID: 1269
* Message: The new sub class has been added. */ ADD_NEW_SUBCLASS(1269), /** * ID: 1270
* Message: The transfer of sub class has been completed. */ SUBCLASS_TRANSFER_COMPLETED(1270), /** * ID: 1273
* Message: You will participate in the Seven Signs as a member of the Lords of Dawn. */ SEVENSIGNS_PARTECIPATION_DAWN(1273), /** * ID: 1274
* Message: You will participate in the Seven Signs as a member of the Revolutionaries of Dusk. */ SEVENSIGNS_PARTECIPATION_DUSK(1274), /** * ID: 1275
* Message: You've chosen to fight for the Seal of Avarice during this quest event period. */ FIGHT_FOR_AVARICE(1275), /** * ID: 1276
* Message: You've chosen to fight for the Seal of Gnosis during this quest event period. */ FIGHT_FOR_GNOSIS(1276), /** * ID: 1277
* Message: You've chosen to fight for the Seal of Strife during this quest event period. */ FIGHT_FOR_STRIFE(1277), /** * ID: 1278
* Message: The NPC server is not operating at this time. */ NPC_SERVER_NOT_OPERATING(1278), /** * ID: 1279
* Message: Contribution level has exceeded the limit. You may not continue. */ CONTRIB_SCORE_EXCEEDED(1279), /** * ID: 1280
* Message: Magic Critical Hit! */ CRITICAL_HIT_MAGIC(1280), /** * ID: 1281
* Message: Your excellent shield defense was a success! */ YOUR_EXCELLENT_SHIELD_DEFENSE_WAS_A_SUCCESS(1281), /** * ID: 1282
* Message: Your Karma has been changed to $s1 */ YOUR_KARMA_HAS_BEEN_CHANGED_TO(1282), /** * ID: 1286
* Message: (Until next Monday at 6:00 p.m.) */ UNTIL_MONDAY_6PM(1286), /** * ID: 1287
* Message: (Until today at 6:00 p.m.) */ UNTIL_TODAY_6PM(1287), // /** // * ID: 1288
// * Message: If trends continue, $s1 will win and the seal will belong to: // */ // S1_WILL_WIN_COMPETITION(1288), /** * ID: 1286
* Message: (Until next Monday at 6:00 p.m.) */ SEAL_OWNED_10_MORE_VOTED(1289), /** * ID: 1290
* Message: Although the seal was not owned, since 35 percent or more people have voted. */ SEAL_NOT_OWNED_35_MORE_VOTED(1290), /** * ID: 1291
* Message: Although the seal was owned during the previous period, * because less than 10 percent of people have voted. */ SEAL_OWNED_10_LESS_VOTED(1291), /** * ID: 1292
* Message: Since the seal was not owned during the previous period, * and since less than 35 percent of people have voted. */ SEAL_NOT_OWNED_35_LESS_VOTED(1292), // /** // * ID: 1293
// * Message: If current trends continue, it will end in a tie. // */ // COMPETITION_WILL_TIE(1293), /** * ID: 1294
* Message: The competition has ended in a tie. Therefore, nobody has been awarded the seal. */ COMPETITION_TIE_SEAL_NOT_AWARDED(1294), /** * ID: 1295
* Message: Sub classes may not be created or changed while a skill is in use. */ SUBCLASS_NO_CHANGE_OR_CREATE_WHILE_SKILL_IN_USE(1295), /** * ID: 1301
* Message: Only a Lord of Dawn may use this. */ CAN_BE_USED_BY_DAWN(1301), /** * ID: 1302
* Message: Only a Revolutionary of Dusk may use this. */ CAN_BE_USED_BY_DUSK(1302), /** * ID: 1308
* Message: Congratulations - You've completed a class transfer! */ CLASS_TRANSFER(1308), /** * ID: 1384
* Message: $s1 has become the party leader. */ S1_HAS_BECOME_A_PARTY_LEADER(1384), /** * ID: 1399
* Message: Only the leader of the party can transfer party leadership to another player. */ ONLY_A_PARTY_LEADER_CAN_TRANSFER_ONES_RIGHTS_TO_ANOTHER_PLAYER(1399), /** * ID: 1400
* Message: Please select the person you wish to make the party leader. */ PLEASE_SELECT_THE_PERSON_TO_WHOM_YOU_WOULD_LIKE_TO_TRANSFER_THE_RIGHTS_OF_A_PARTY_LEADER(1400), /** * ID: 1401
* Message: Slow down.you are already the party leader. */ YOU_CANNOT_TRANSFER_RIGHTS_TO_YOURSELF(1401), /** * ID: 1402
* Message: You may only transfer party leadership to another member of the party. */ YOU_CAN_TRANSFER_RIGHTS_ONLY_TO_ANOTHER_PARTY_MEMBER(1402), /** * ID: 1403
* Message: You have failed to transfer the party leadership. */ YOU_HAVE_FAILED_TO_TRANSFER_THE_PARTY_LEADER_RIGHTS(1403), /** * ID: 1405
* Message: $s1 CPs have been restored. */ S1_CP_WILL_BE_RESTORED(1405), /** * ID: 1433
* Message: You will now automatically apply $s1 to your target. */ USE_OF_S1_WILL_BE_AUTO(1433), /** * ID: 1434
* Message: You will no longer automatically apply $s1 to your weapon. */ AUTO_USE_OF_S1_CANCELLED(1434), /** * ID: 1438
* Message: There is no skill that enables enchant. */ THERE_IS_NO_SKILL_THAT_ENABLES_ENCHANT(1438), /** * ID: 1439
* Message: You do not have all of the items needed to enchant that skill. */ YOU_DONT_HAVE_ALL_OF_THE_ITEMS_NEEDED_TO_ENCHANT_THAT_SKILL(1439), /** * ID: 1440
* Message: You have succeeded in enchanting the skill $s1. */ YOU_HAVE_SUCCEEDED_IN_ENCHANTING_THE_SKILL_S1(1440), /** * ID: 1441
* Message: Skill enchant failed. The skill will be initialized. */ YOU_HAVE_FAILED_TO_ENCHANT_THE_SKILL_S1(1441), /** * ID: 1443
* Message: You do not have enough SP to enchant that skill. */ YOU_DONT_HAVE_ENOUGH_SP_TO_ENCHANT_THAT_SKILL(1443), /** * ID: 1444
* Message: You do not have enough experience (Exp) to enchant that skill. */ YOU_DONT_HAVE_ENOUGH_EXP_TO_ENCHANT_THAT_SKILL(1444), /** * ID: 1447
* Message: You cannot do that while fishing. */ CANNOT_DO_WHILE_FISHING_1(1447), /** * ID: 1448
* Message: Only fishing skills may be used at this time. */ ONLY_FISHING_SKILLS_NOW(1448), /** * ID: 1449
* Message: You've got a bite! */ GOT_A_BITE(1449), /** * ID: 1450
* Message: That fish is more determined than you are - it spit the hook! */ FISH_SPIT_THE_HOOK(1450), /** * ID: 1451
* Message: Your bait was stolen by that fish! */ BAIT_STOLEN_BY_FISH(1451), /** * ID: 1452
* Message: Baits have been lost because the fish got away. */ BAIT_LOST_FISH_GOT_AWAY(1452), /** * ID: 1453
* Message: You do not have a fishing pole equipped. */ FISHING_POLE_NOT_EQUIPPED(1453), /** * ID: 1454
* Message: You must put bait on your hook before you can fish. */ BAIT_ON_HOOK_BEFORE_FISHING(1454), /** * ID: 1455
* Message: You cannot fish while under water. */ CANNOT_FISH_UNDER_WATER(1455), /** * ID: 1456
* Message: You cannot fish while riding as a passenger of a boat - it's against the rules. */ CANNOT_FISH_ON_BOAT(1456), /** * ID: 1457
* Message: You can't fish here. */ CANNOT_FISH_HERE(1457), /** * ID: 1458
* Message: Your attempt at fishing has been cancelled. */ FISHING_ATTEMPT_CANCELLED(1458), /** * ID: 1459
* Message: You do not have enough bait. */ NOT_ENOUGH_BAIT(1459), /** * ID: 1460
* Message: You reel your line in and stop fishing. */ REEL_LINE_AND_STOP_FISHING(1460), /** * ID: 1461
* Message: You cast your line and start to fish. */ CAST_LINE_AND_START_FISHING(1461), /** * ID: 1462
* Message: You may only use the Pumping skill while you are fishing. */ CAN_USE_PUMPING_ONLY_WHILE_FISHING(1462), /** * ID: 1463
* Message: You may only use the Reeling skill while you are fishing. */ CAN_USE_REELING_ONLY_WHILE_FISHING(1463), /** * ID: 1464
* Message: The fish has resisted your attempt to bring it in. */ FISH_RESISTED_ATTEMPT_TO_BRING_IT_IN(1464), /** * ID: 1465
* Message: Your pumping is successful, causing $s1 damage. */ PUMPING_SUCCESFUL_S1_DAMAGE(1465), /** * ID: 1466
* Message: You failed to do anything with the fish and it regains $s1 HP. */ FISH_RESISTED_PUMPING_S1_HP_REGAINED(1466), /** * ID: 1467
* Message: You reel that fish in closer and cause $s1 damage. */ REELING_SUCCESFUL_S1_DAMAGE(1467), /** * ID: 1468
* Message: You failed to reel that fish in further and it regains $s1 HP. */ FISH_RESISTED_REELING_S1_HP_REGAINED(1468), /** * ID: 1469
* Message: You caught something! */ YOU_CAUGHT_SOMETHING(1469), /** * ID: 1470
* Message: You cannot do that while fishing. */ CANNOT_DO_WHILE_FISHING_2(1470), /** * ID: 1471
* Message: You cannot do that while fishing. */ CANNOT_DO_WHILE_FISHING_3(1471), /** * ID: 1472
* Message: You look oddly at the fishing pole in disbelief and * realize that you can't attack anything with this. */ CANNOT_ATTACK_WITH_FISHING_POLE(1472), /** * ID: 1479
* Message: That is the wrong grade of soulshot for that fishing pole. */ WRONG_FISHINGSHOT_GRADE(1479), /** * ID: 1490
* Message: Traded $s2 of crop $s1. */ TRADED_S2_OF_CROP_S1(1490), /** * ID: 1491
* Message: Failed in trading $s2 of crop $s1. */ FAILED_IN_TRADING_S2_OF_CROP_S1(1491), /** * ID: 1492
* Message: You will be moved to the Olympiad Stadium in $s1 second(s). */ YOU_WILL_ENTER_THE_OLYMPIAD_STADIUM_IN_S1_SECOND_S(1492), /** * ID: 1493
* Message: Your opponent made haste with their tail between their legs), the match has been cancelled. */ THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_ENDS_THE_GAME(1493), /** * ID: 1494
* Message: Your opponent does not meet the requirements to do battle), the match has been cancelled. */ THE_GAME_HAS_BEEN_CANCELLED_BECAUSE_THE_OTHER_PARTY_DOES_NOT_MEET_THE_REQUIREMENTS_FOR_JOINING_THE_GAME(1494), /** * ID: 1495
* Message: The Grand Olympiad match will start in $s1 second(s). */ THE_GAME_WILL_START_IN_S1_SECOND_S(1495), /** * ID: 1496
* Message: "The match has started, fight!" */ STARTS_THE_GAME(1496), /** * ID: 1497
* Message: Congratulations $C1, you win the match! */ C1_HAS_WON_THE_GAME(1497), /** * ID: 1498
* Message: There is no victor), the match ends in a tie. */ THE_GAME_ENDED_IN_A_TIE(1498), /** * ID: 1499
* Message: You will be moved back to town in $s1 second(s). */ YOU_WILL_GO_BACK_TO_THE_VILLAGE_IN_S1_SECOND_S(1499), /** * ID: 1500
* Message: You cannot participate in the Grand Olympiad Games with a character in their subclass. */ YOU_CANT_JOIN_THE_OLYMPIAD_WITH_A_SUB_JOB_CHARACTER(1500), /** * ID: 1501
* Message: Only Noblesse can participate in the Olympiad. */ ONLY_NOBLESS_CAN_PARTICIPATE_IN_THE_OLYMPIAD(1501), /** * ID: 1502
* Message: You have already been registered in a waiting list of an event. */ YOU_HAVE_ALREADY_BEEN_REGISTERED_IN_A_WAITING_LIST_OF_AN_EVENT(1502), /** * ID: 1503
* Message: You have been registered in the Grand Olympiad Games waiting list for a class specific match. */ YOU_HAVE_BEEN_REGISTERED_IN_A_WAITING_LIST_OF_CLASSIFIED_GAMES(1503), /** * ID: 1504
* Message: You have been registered in the Grand Olympiad Games waiting list for a non-class specific match. */ YOU_HAVE_BEEN_REGISTERED_IN_A_WAITING_LIST_OF_NO_CLASS_GAMES(1504), /** * ID: 1505
* Message: You have been removed from the Grand Olympiad Games waiting list. */ YOU_HAVE_BEEN_DELETED_FROM_THE_WAITING_LIST_OF_A_GAME(1505), /** * ID: 1506
* Message: You are not currently registered on any Grand Olympiad Games waiting list. */ YOU_HAVE_NOT_BEEN_REGISTERED_IN_A_WAITING_LIST_OF_A_GAME(1506), /** * ID: 1507
* Message: You cannot equip that item in a Grand Olympiad Games match. */ THIS_ITEM_CANT_BE_EQUIPPED_FOR_THE_OLYMPIAD_EVENT(1507), /** * ID: 1508
* Message: You cannot use that item in a Grand Olympiad Games match. */ THIS_ITEM_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT(1508), /** * ID: 1509
* Message: You cannot use that skill in a Grand Olympiad Games match. */ THIS_SKILL_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT(1509), /** * ID: 1510
* Message: $s1 is making an attempt at resurrection. * Do you want to continue with this resurrection? */ RESSURECTION_REQUEST(1510), /** * ID: 1511
* Message: :While a pet is attempting to resurrect, it cannot help in resurrecting its master." */ MASTER_CANNOT_RES(1511), /** * ID: 1513
* Message: Resurrection has already been proposed. */ RES_HAS_ALREADY_BEEN_PROPOSED(1513), /** * ID: 1515
* Message: A pet cannot be resurrected while it's owner is in the process of resurrecting. */ PET_CANNOT_RES(1515), /** * ID: 1516
* Message: The target is unavailable for seeding. */ THE_TARGET_IS_UNAVAILABLE_FOR_SEEDING(1516), /** * ID: 1517
* Message: Failed in Blessed Enchant. The enchant value of the item became 0. */ BLESSED_ENCHANT_FAILED(1517), /** * ID: 1518
* Message: You do not meet the required condition to equip that item. */ CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION(1518), /** * ID: 1527
* Message: Your pet was hungry so it ate $s1. */ PET_TOOK_S1_BECAUSE_HE_WAS_HUNGRY(1527), /** * ID: 1533
* Message: Attention: $s1 picked up $s2. */ ATTENTION_S1_PICKED_UP_S2(1533), /** * ID: 1534
* Message: Attention: $s1 picked up +$s2 $s3. */ ATTENTION_S1_PICKED_UP_S2_S3(1534), /** * ID: 1537
* Message: "Current Location: $s1, $s2, $s3 (near Rune Village)" */ LOC_RUNE_S1_S2_S3(1537), /** * ID: 1538
* Message: "Current Location: $s1, $s2, $s3 (near the Town of Goddard)" */ LOC_GODDARD_S1_S2_S3(1538), /** * ID: 1557
* Message: Seed price should be more than $s1 and less than $s2. */ SEED_PRICE_SHOULD_BE_MORE_THAN_S1_AND_LESS_THAN_S2(1557), /** * ID: 1558
* Message: The quantity of seed should be more than $s1 and less than $s2. */ THE_QUANTITY_OF_SEED_SHOULD_BE_MORE_THAN_S1_AND_LESS_THAN_S2(1558), /** * ID: 1559
* Message: Crop price should be more than $s1 and less than $s2. */ CROP_PRICE_SHOULD_BE_MORE_THAN_S1_AND_LESS_THAN_S2(1559), /** * ID: 1560
* Message: The quantity of crop should be more than $s1 and less than $s2 */ THE_QUANTITY_OF_CROP_SHOULD_BE_MORE_THAN_S1_AND_LESS_THAN_S2(1560), /** * ID: 1561
* Message: The clan, $s1, has declared a Clan War. */ CLAN_S1_DECLARED_WAR(1561), /** * ID: 1562
* Message: A Clan War has been declared against the clan, $s1. * If you are killed during the Clan War by members of the opposing clan, * you will only lose a quarter of the normal experience from death. */ CLAN_WAR_DECLARED_AGAINST_S1_IF_KILLED_LOSE_LOW_EXP(1562), /** * ID: 1564
* Message: A Clan War can be declared only if the clan is * level three or above, and the number of clan members is fifteen or greater. */ CLAN_WAR_DECLARED_IF_CLAN_LVL3_OR_15_MEMBER(1564), /** * ID: 1565
* Message: A Clan War cannot be declared against a clan that does not exist! */ CLAN_WAR_CANNOT_DECLARED_CLAN_NOT_EXIST(1565), /** * ID: 1566
* Message: The clan, $s1, has decided to stop the war. */ CLAN_S1_HAS_DECIDED_TO_STOP(1566), /** * ID: 1567
* Message: The war against $s1 Clan has been stopped. */ WAR_AGAINST_S1_HAS_STOPPED(1567), /** * ID: 1569
* Message: A declaration of Clan War against an allied clan can't be made. */ CLAN_WAR_AGAINST_A_ALLIED_CLAN_NOT_WORK(1569), /** * ID: 1571
* Message: ============ */ CLANS_YOU_DECLARED_WAR_ON(1571), /** * ID: 1572
* Message: ============ */ CLANS_THAT_HAVE_DECLARED_WAR_ON_YOU(1572), /** * ID: 1576
* Message: Pet uses the power of spirit. */ PET_USE_THE_POWER_OF_SPIRIT(1576), /** * ID: 1581
* Message: The Command Channel has been disbanded. */ COMMAND_CHANNEL_DISBANDED(1581), /** * ID: 1587
* Message: $c1's party has left the Command Channel. */ S1_PARTY_LEFT_COMMAND_CHANNEL(1587), /** * ID: 1598
* Message: Soulshots and spiritshots are not available for a dead pet or servitor. Sad, isn't it? */ SOULSHOTS_AND_SPIRITSHOTS_ARE_NOT_AVAILABLE_FOR_A_DEAD_PET(1598), /** * ID: 1604
* Message: While dressed in formal wear, you can't use items that require all skills and casting operations. */ CANNOT_USE_ITEMS_SKILLS_WITH_FORMALWEAR(1604), /** * ID: 1605
* Message: "* Here, you can buy only seeds of $s1 Manor." */ HERE_YOU_CAN_BUY_ONLY_SEEDS_OF_S1_MANOR(1605), /** * ID: 1606
* Message: Congratulations - You've completed the third-class transfer quest! */ THIRD_CLASS_TRANSFER(1606), /** * ID: 1607
* Message: $s1 adena has been withdrawn to pay for purchasing fees. */ S1_ADENA_HAS_BEEN_WITHDRAWN_TO_PAY_FOR_PURCHASING_FEES(1607), /** * ID: 1611
* Message: Leader: $s1 */ PARTY_LEADER_S1(1611), /** * ID: 1612
* Message: ========== */ WAR_LIST(1612), /** * ID: 1638
* Message: You cannot fish while using a recipe book, private manufacture or private store. */ CANNOT_FISH_WHILE_USING_RECIPE_BOOK(1638), /** * ID: 1639
* Message: Period $s1 of the Grand Olympiad Games has started! */ OLYMPIAD_PERIOD_S1_HAS_STARTED(1639), /** * ID: 1640
* Message: Period $s1 of the Grand Olympiad Games has now ended. */ OLYMPIAD_PERIOD_S1_HAS_ENDED(1640), /** * ID: 1641
* Message: Sharpen your swords, tighten the stitchings in your armor, * and make haste to a Grand Olympiad Manager! * Battles in the Grand Olympiad Games are now taking place! */ THE_OLYMPIAD_GAME_HAS_STARTED(1641), /** * ID: 1642
* Message: Much carnage has been left for the cleanup crew of the Olympiad Stadium. * Battles in the Grand Olympiad Games are now over! */ THE_OLYMPIAD_GAME_HAS_ENDED(1642), /** * ID: 1643 * Message: "Current Location: $s1, $s2, $s3 (Dimensional Gap)" */ CURRENT_LOCATION_S1_S2_S3_DIMENSIONAL_GAP(1643), /** * ID: 1651
* Message: The Grand Olympiad Games are not currently in progress. */ THE_OLYMPIAD_GAME_IS_NOT_CURRENTLY_IN_PROGRESS(1651), /** * ID: 1655
* Message: "You caught something smelly and scary, maybe you should throw it back!?" */ YOU_CAUGHT_SOMETHING_SMELLY_THROW_IT_BACK(1655), /** * ID: 1657
* Message: $s1 has earned $s2 points in the Grand Olympiad Games. */ S1_HAS_GAINED_S2_OLYMPIAD_POINTS(1657), /** * ID: 1658
* Message: $s1 has lost $s2 points in the Grand Olympiad Games. */ S1_HAS_LOST_S2_OLYMPIAD_POINTS(1658), /** * ID: 1662
* Message: The fish are no longer biting here because you've caught * too many! Try fishing in another location. */ FISH_NO_MORE_BITING_TRY_OTHER_LOCATION(1662), /** * ID: 1663
* Message: The clan crest was successfully registered. Remember, only a clan * that owns a clan hall or castle can have their crest displayed. */ CLAN_EMBLEM_WAS_SUCCESSFULLY_REGISTERED(1663), /** * ID: 1664
* Message: The fish is resisting your efforts to haul it in! Look at that bobber go! */ FISH_RESISTING_LOOK_BOBBLER(1664), /** * ID: 1665
* Message: You've worn that fish out! It can't even pull the bobber under the water! */ YOU_WORN_FISH_OUT(1665), /** * ID: 1667
* Message: Lethal Strike! */ LETHAL_STRIKE(1667), /** * ID: 1668
* Message: Your lethal strike was successful! */ LETHAL_STRIKE_SUCCESSFUL(1668), /** * ID: 1669
* Message: There was nothing found inside of that. */ NOTHING_INSIDE_THAT(1669), /** * ID: 1670
* Message: Due to your Reeling and/or Pumping skill being three * or more levels higher than your Fishing skill, a 50 damage penalty will be applied. */ REELING_PUMPING_3_LEVELS_HIGHER_THAN_FISHING_PENALTY(1670), /** * ID: 1671
* Message: Your reeling was successful! (Mastery Penalty:$s1 ) */ REELING_SUCCESSFUL_PENALTY_S1(1671), /** * ID: 1672
* Message: Your pumping was successful! (Mastery Penalty:$s1 ) */ PUMPING_SUCCESSFUL_PENALTY_S1(1672), /** * ID: 1673
* Message: Your current record for this Grand Olympiad is $s1 match(es), $s2 win(s) and $s3 defeat(s). You have earned $s4 Olympiad Point(s). */ THE_PRESENT_RECORD_DURING_THE_CURRENT_OLYMPIAD_SESSION_IS_S1_MATCHES_S2_WINS_S3_DEFEATS_YOU_HAVE_EARNED_S4_OLYMPIAD_POINTS(1673), /** * ID: 1675
* Message: A manor cannot be set up between 6 a.m. and 8 p.m. */ A_MANOR_CANNOT_BE_SET_UP_BETWEEN_6_AM_AND_8_PM(1675), /** * ID: 1685
* Message: You are unable to equip this item when your PK count is greater than or equal to one. */ YOU_ARE_UNABLE_TO_EQUIP_THIS_ITEM_WHEN_YOUR_PK_COUNT_IS_GREATER_THAN_OR_EQUAL_TO_ONE(1685), /** * ID: 1689
* Message: You have already joined the waiting list for a class specific match. */ YOU_ARE_ALREADY_ON_THE_WAITING_LIST_TO_PARTICIPATE_IN_THE_GAME_FOR_YOUR_CLASS(1689), /** * ID: 1690
* Message: You have already joined the waiting list for a non-class specific match. */ YOU_ARE_ALREADY_ON_THE_WAITING_LIST_FOR_ALL_CLASSES_WAITING_TO_PARTICIPATE_IN_THE_GAME(1690), /** * ID: 1691
* Message: You can't join a Grand Olympiad Game match with that much stuff on you! * Reduce your weight to below 80 percent full and request to join again! */ SINCE_80_PERCENT_OR_MORE_OF_YOUR_INVENTORY_SLOTS_ARE_FULL_YOU_CANNOT_PARTICIPATE_IN_THE_OLYMPIAD(1691), /** * ID: 1692
* Message: You have changed from your main class to a subclass * and therefore are removed from the Grand Olympiad Games waiting list. */ SINCE_YOU_HAVE_CHANGED_YOUR_CLASS_INTO_A_SUB_JOB_YOU_CANNOT_PARTICIPATE_IN_THE_OLYMPIAD(1692), /** * ID: 1693
* Message: You may not observe a Grand Olympiad Games match while you are on the waiting list. */ WHILE_YOU_ARE_ON_THE_WAITING_LIST_YOU_ARE_NOT_ALLOWED_TO_WATCH_THE_GAME(1693), /** * ID: 1700
* Message: You don't have enough spiritshots needed for a pet/servitor. */ NOT_ENOUGH_SPIRITHOTS_FOR_PET(1700), /** * ID: 1701
* Message: You don't have enough soulshots needed for a pet/servitor. */ NOT_ENOUGH_SOULSHOTS_FOR_PET(1701), /** * ID: 1714
* Message: "Current Location: $s1, $s2, $s3 (Near the Town of Schuttgart)" */ LOC_SCHUTTGART_S1_S2_S3(1714), /** * ID: 1735
* Message: $s1 does not meet the requirements to join a Clan Academy. */ S1_DOESNOT_MEET_REQUIREMENTS_TO_JOIN_ACADEMY(1735), /** * ID: 1734
* Message: To join a Clan Academy, characters must be Level 40 or below, * not belong another clan and not yet completed their 2nd class transfer. */ ACADEMY_REQUIREMENTS(1734), /** * ID: 1730
* Message: To establish a Clan Academy, your clan must be Level 5 or higher. */ YOU_DO_NOT_MEET_CRITERIA_IN_ORDER_TO_CREATE_A_CLAN_ACADEMY(1730), /** * ID: 1738
* Message: Your clan has already established a Clan Academy. */ CLAN_HAS_ALREADY_ESTABLISHED_A_CLAN_ACADEMY(1738), /** * ID: 1741
* Message: Congratulations! The $s1's Clan Academy has been created. */ THE_S1S_CLAN_ACADEMY_HAS_BEEN_CREATED(1741), /** * ID: 1748
* Message: Clan Academy member $s1 has successfully completed the 2nd class * transfer and obtained $s2 Clan Reputation points. */ CLAN_MEMBER_GRADUATED_FROM_ACADEMY(1748), /** * ID: 1749
* Message: Congratulations! You will now graduate from the Clan Academy and leave your current clan. As a graduate of the academy, you can immediately join a clan as a regular member without being subject to any penalties." */ ACADEMY_MEMBERSHIP_TERMINATED(1749), /** * ID: 1755
* Message: $s2 has been designated as the apprentice of clan member $s1. */ S2_HAS_BEEN_DESIGNATED_AS_APPRENTICE_OF_CLAN_MEMBER_S1(1755), /** * ID: 1756
* Message: Your apprentice, $s1, has logged in. */ YOUR_APPRENTICE_S1_HAS_LOGGED_IN(1756), /** * ID: 1757
* Message: Your apprentice, $C1, has logged out. */ YOUR_APPRENTICE_C1_HAS_LOGGED_OUT(1757), /** * ID: 1758
* Message: Your sponsor, $s1, has logged in. */ YOUR_SPONSOR_C1_HAS_LOGGED_IN(1758), /** * ID: 1759
* Message: Your sponsor, $s1, has logged out. */ YOUR_SPONSOR_C1_HAS_LOGGED_OUT(1759), /** * ID: 1762
* Message: You do not have the right to dismiss an apprentice. */ YOU_DO_NOT_HAVE_THE_RIGHT_TO_DISMISS_AN_APPRENTICE(1762), /** * ID: 1763
* Message: $s2, clan member $s1's apprentice, has been removed. */ S2_CLAN_MEMBER_S1_S_APPRENTICE_HAS_BEEN_REMOVED(1763), /** * ID: 1771
* Message: Now that your clan level is above Level 5, it can accumulate clan * reputation points. */ CLAN_CAN_ACCUMULATE_CLAN_REPUTATION_POINTS(1771), /** * ID: 1772
* Message: Since your clan was defeated in a siege, $s1 points have been * deducted from your clan's reputation score and given to the opposing clan. */ CLAN_WAS_DEFEATED_IN_SIEGE_AND_LOST_S1_REPUTATION_POINTS(1772), /** * ID: 1773
* Message: Since your clan emerged victorious from the siege, $s1 points * have been added to your clan's reputation score. */ CLAN_VICTORIOUS_IN_SIEGE_AND_GAINED_S1_REPUTATION_POINTS(1773), /** * ID: 1774
* Message: Your clan's newly acquired contested clan hall has added $s1 * points to your clan's reputation score. */ CLAN_ACQUIRED_CONTESTED_CLAN_HALL_AND_S1_REPUTATION_POINTS(1774), /** * ID: 1775
* Message: Clan member $s1 was an active member of the highest-ranked party * in the Festival of Darkness. $s2 points have been added to your clan's reputation score. */ CLAN_MEMBER_S1_WAS_IN_HIGHEST_RANKED_PARTY_IN_FESTIVAL_OF_DARKNESS_AND_GAINED_S2_REPUTATION(1775), /** * ID: 1776
* Message: Clan member $s1 was named a hero. $2s points have been added to your * clan's reputation score. */ CLAN_MEMBER_S1_BECAME_HERO_AND_GAINED_S2_REPUTATION_POINTS(1776), /** * ID: 1777
* Message: You have successfully completed a clan quest. $s1 points have been added to your * clan's reputation score. */ CLAN_QUEST_COMPLETED_AND_S1_POINTS_GAINED(1777), /** * ID: 1778
* Message: An opposing clan has captured your clan's contested clan hall. $s1 points have * been deducted from your clan's reputation score. */ OPPOSING_CLAN_CAPTURED_CLAN_HALL_AND_YOUR_CLAN_LOSES_S1_POINTS(1778), /** * ID: 1779
* Message: After losing the contested clan hall, 300 points have been deducted from your * clan's reputation score. */ CLAN_LOST_CONTESTED_CLAN_HALL_AND_300_POINTS(1779), /** * ID: 1780
* Message: Your clan has captured your opponent's contested clan hall. $s1 points have * been deducted from your opponent's clan reputation score. */ CLAN_CAPTURED_CONTESTED_CLAN_HALL_AND_S1_POINTS_DEDUCTED_FROM_OPPONENT(1780), /** * ID: 1781
* Message: Your clan has added $1s points to its clan reputation score. */ CLAN_ADDED_S1S_POINTS_TO_REPUTATION_SCORE(1781), /** * ID: 1782
* Message: Your clan member $s1 was killed. $s2 points have been deducted from * your clan's reputation score and added to your opponent's clan reputation score. */ CLAN_MEMBER_S1_WAS_KILLED_AND_S2_POINTS_DEDUCTED_FROM_REPUTATION(1782), /** * ID: 1783
* Message: For killing an opposing clan member, $s1 points have been deducted * from your opponents' clan reputation score. */ FOR_KILLING_OPPOSING_MEMBER_S1_POINTS_WERE_DEDUCTED_FROM_OPPONENTS(1783), /** * ID: 1784
* Message: Your clan has failed to defend the castle. $s1 points have been * deducted from your clan's reputation score and added to your opponents'. */ YOUR_CLAN_FAILED_TO_DEFEND_CASTLE_AND_S1_POINTS_LOST_AND_ADDED_TO_OPPONENT(1784), /** * ID: 1785
* Message: The clan you belong to has been initialized. $s1 points have been * deducted from your clan reputation score. */ YOUR_CLAN_HAS_BEEN_INITIALIZED_AND_S1_POINTS_LOST(1785), /** * ID: 1786
* Message: Your clan has failed to defend the castle. $s1 points have been * deducted from your clan's reputation score. */ YOUR_CLAN_FAILED_TO_DEFEND_CASTLE_AND_S1_POINTS_LOST(1786), /** * ID: 1787
* Message: $s1 points have been deducted from the clan's reputation score. */ S1_DEDUCTED_FROM_CLAN_REP(1787), /** * ID: 1788
* Message: The clan skill $s1 has been added. */ CLAN_SKILL_S1_ADDED(1788), /** * ID: 1789
* Message: Since the Clan Reputation Score has dropped to 0 or lower, your * clan skill(s) will be de-activated. */ REPUTATION_POINTS_0_OR_LOWER_CLAN_SKILLS_DEACTIVATED(1789), /** * ID: 1790
* Message: The conditions necessary to increase the clan's level have not been met. */ FAILED_TO_INCREASE_CLAN_LEVEL(1790), /** * ID: 1791
* Message: The conditions necessary to create a military unit have not been met. */ YOU_DO_NOT_MEET_CRITERIA_IN_ORDER_TO_CREATE_A_MILITARY_UNIT(1791), /** * ID: 1793
* Message: The Royal Guard of $s1 have been created. */ S1_HAS_BEEN_SELECTED_AS_CAPTAIN_OF_S2(1793), /** * ID: 1794
* Message: The Knights of $s1 have been created. */ THE_KNIGHTS_OF_S1_HAVE_BEEN_CREATED(1794), /** * ID: 1795
* Message: The Royal Guard of $s1 have been created. */ THE_ROYAL_GUARD_OF_S1_HAVE_BEEN_CREATED(1795), /** * ID: 1798
* Message: Clan lord privileges have been transferred to $s1. */ CLAN_LEADER_PRIVILEGES_HAVE_BEEN_TRANSFERRED_TO_S1(1798), /** * ID: 1813
* Message: $s1 has $s2 hour(s) of usage time remaining. */ THERE_IS_S1_HOUR_AND_S2_MINUTE_LEFT_OF_THE_FIXED_USAGE_TIME(1813), /** * ID: 1814
* Message: $s1 has $s2 minute(s) of usage time remaining. */ S2_MINUTE_OF_USAGE_TIME_ARE_LEFT_FOR_S1(1814), /** * ID: 1815
* Message: $s2 was dropped in the $s1 region. */ S2_WAS_DROPPED_IN_THE_S1_REGION(1815), /** * ID: 1816
* Message: The owner of $s2 has appeared in the $s1 region. */ THE_OWNER_OF_S2_HAS_APPEARED_IN_THE_S1_REGION(1816), /** * ID: 1817
* Message: $s2's owner has logged into the $s1 region. */ S2_OWNER_HAS_LOGGED_INTO_THE_S1_REGION(1817), /** * ID: 1818
* Message: $s1 has disappeared. */ S1_HAS_DISAPPEARED(1818), /** * ID: 1835
* Message: #$s1 is full and cannot accept additional clan members at this time. */ S1_CLAN_IS_FULL(1835), /** * ID: 1842
* Message: $s1 wishes to summon you from $s2. Do you accept? */ S1_WISHES_TO_SUMMON_YOU_FROM_S2_DO_YOU_ACCEPT(1842), /** * ID: 1843
* Message: $s1 is engaged in combat and cannot be summoned. */ S1_IS_ENGAGED_IN_COMBAT_AND_CANNOT_BE_SUMMONED(1843), /** * ID: 1844
* Message: $s1 is dead at the moment and cannot be summoned. */ S1_IS_DEAD_AT_THE_MOMENT_AND_CANNOT_BE_SUMMONED(1844), /** * ID: 1850
* Message: The Captain of the Order of Knights cannot be appointed. */ CAPTAIN_OF_ORDER_OF_KNIGHTS_CANNOT_BE_APPOINTED(1850), /** * ID: 1851
* Message: The Captain of the Royal Guard cannot be appointed. */ CAPTAIN_OF_ROYAL_GUARD_CANNOT_BE_APPOINTED(1851), /** * ID: 1852
* Message: The attempt to acquire the skill has failed because of an insufficient Clan Reputation Score. */ ACQUIRE_SKILL_FAILED_BAD_CLAN_REP_SCORE(1852), /** * ID: 1855
* Message: Another military unit is already using that name. Please enter a different name. */ ANOTHER_MILITARY_UNIT_IS_ALREADY_USING_THAT_NAME(1855), /** * ID: 1860
* Message: THE_CLAN_REPUTATION_SCORE_IS_TOO_LOW. */ THE_CLAN_REPUTATION_SCORE_IS_TOO_LOW(1860), /** * ID: 1861
* Message: The clan's crest has been deleted. */ CLAN_CREST_HAS_BEEN_DELETED(1861), /** * ID: 1860
* Message: The Clan Reputation Score is too low. */ CLAN_REPUTATION_SCORE_IS_TOO_LOW(1860), /** * ID: 1862
* Message: Clan skills will now be activated since the clan's reputation score is 0 or higher. */ CLAN_SKILLS_WILL_BE_ACTIVATED_SINCE_REPUTATION_IS_0_OR_HIGHER(1862), /** * ID: 1867
* Message: Your opponent's MP was reduced by $s1. */ YOUR_OPPONENTS_MP_WAS_REDUCED_BY_S1(1867), /** * ID: 1898
* Message: $s1 is currently trading or operating a private store and cannot be summoned. */ S1_CURRENTLY_TRADING_OR_OPERATING_PRIVATE_STORE_AND_CANNOT_BE_SUMMONED(1898), /** * ID: 1899
* Message: Your target is in an area which blocks summoning. */ YOUR_TARGET_IS_IN_AN_AREA_WHICH_BLOCKS_SUMMONING(1899), /** * ID: 1902
* Message: Incompatible item grade. This item cannot be used. */ INCOMPATIBLE_ITEM_GRADE(1902), /** * ID: 1911
* Message: You cannot summon players who are currently participating in the Grand Olympiad. */ YOU_CANNOT_SUMMON_PLAYERS_WHO_ARE_IN_OLYMPIAD(1911), /** * ID: 1916
* Message: Your Death Penalty is now level $s1. */ DEATH_PENALTY_LEVEL_S1_ADDED(1916), /** * ID: 1917
* Message: Your Death Penalty has been lifted. */ DEATH_PENALTY_LIFTED(1917), /** * ID: 1924
* Message: Current Location: $s1, $s2, $s3 (near the Primeval Isle) */ LOC_PRIMEVAL_ISLE_S1_S2_S3(1924), /** * ID: 1926
* Message: There is no opponent to receive your challenge for a duel. */ THERE_IS_NO_OPPONENT_TO_RECEIVE_YOUR_CHALLENGE_FOR_A_DUEL(1926), /** * ID: 1927
* Message: $s1 has been challenged to a duel. */ S1_HAS_BEEN_CHALLENGED_TO_A_DUEL(1927), /** * ID: 1928
* Message: $s1's party has been challenged to a duel. */ S1S_PARTY_HAS_BEEN_CHALLENGED_TO_A_DUEL(1928), /** * ID: 1929
* Message: $s1 has accepted your challenge to a duel. The duel will begin in a few moments. */ S1_HAS_ACCEPTED_YOUR_CHALLENGE_TO_A_DUEL_THE_DUEL_WILL_BEGIN_IN_A_FEW_MOMENTS(1929), /** * ID: 1930
* Message: You have accepted $s1's challenge to a duel. The duel will begin in a few moments. */ YOU_HAVE_ACCEPTED_S1S_CHALLENGE_TO_A_DUEL_THE_DUEL_WILL_BEGIN_IN_A_FEW_MOMENTS(1930), /** * ID: 1931
* Message: $s1 has declined your challenge to a duel. */ S1_HAS_DECLINED_YOUR_CHALLENGE_TO_A_DUEL(1931), /** * ID: 1933
* Message: You have accepted $s1's challenge to a party duel. The duel will begin in a few moments. */ YOU_HAVE_ACCEPTED_S1S_CHALLENGE_TO_A_PARTY_DUEL_THE_DUEL_WILL_BEGIN_IN_A_FEW_MOMENTS(1933), /** * ID: 1934
* Message: $s1 has accepted your challenge to duel against their party. The duel will begin in a few moments. */ S1_HAS_ACCEPTED_YOUR_CHALLENGE_TO_DUEL_AGAINST_THEIR_PARTY_THE_DUEL_WILL_BEGIN_IN_A_FEW_MOMENTS(1934), /** * ID: 1936
* Message: The opposing party has declined your challenge to a duel. */ THE_OPPOSING_PARTY_HAS_DECLINED_YOUR_CHALLENGE_TO_A_DUEL(1936), /** * ID: 1937
* Message: Since the person you challenged is not currently in a party, they cannot duel against your party. */ SINCE_THE_PERSON_YOU_CHALLENGED_IS_NOT_CURRENTLY_IN_A_PARTY_THEY_CANNOT_DUEL_AGAINST_YOUR_PARTY(1937), /** * ID: 1938
* Message: $s1 has challenged you to a duel. */ S1_HAS_CHALLENGED_YOU_TO_A_DUEL(1938), /** * ID: 1939
* Message: $s1's party has challenged your party to a duel. */ S1S_PARTY_HAS_CHALLENGED_YOUR_PARTY_TO_A_DUEL(1939), /** * ID: 1940
* Message: You are unable to request a duel at this time. */ YOU_ARE_UNABLE_TO_REQUEST_A_DUEL_AT_THIS_TIME(1940), /** * ID: 1942
* Message: The opposing party is currently unable to accept a challenge to a duel. */ THE_OPPOSING_PARTY_IS_CURRENTLY_UNABLE_TO_ACCEPT_A_CHALLENGE_TO_A_DUEL(1942), /** * ID: 1944
* Message: In a moment, you will be transported to the site where the duel will take place. */ IN_A_MOMENT_YOU_WILL_BE_TRANSPORTED_TO_THE_SITE_WHERE_THE_DUEL_WILL_TAKE_PLACE(1944), /** * ID: 1945
* Message: The duel will begin in $s1 seconds. */ THE_DUEL_WILL_BEGIN_IN_S1_SECONDS(1945), /** * ID: 1949
* Message: Let the duel begin! */ LET_THE_DUEL_BEGIN(1949), /** * ID: 1950
* Message: $s1 has won the duel. */ S1_HAS_WON_THE_DUEL(1950), /** * ID: 1951
* Message: $s1's party has won the duel. */ S1S_PARTY_HAS_WON_THE_DUEL(1951), /** * ID: 1952
* Message: The duel has ended in a tie. */ THE_DUEL_HAS_ENDED_IN_A_TIE(1952), /** * ID: 1955
* Message: Since $s1 withdrew from the duel, $s2 has won. */ SINCE_S1_WITHDREW_FROM_THE_DUEL_S2_HAS_WON(1955), /** * ID: 1956
* Message: Since $s1's party withdrew from the duel, $s2's party has won. */ SINCE_S1S_PARTY_WITHDREW_FROM_THE_DUEL_S1S_PARTY_HAS_WON(1956), /** * ID: 1957
* Message: Select the item to be augmented. */ SELECT_THE_ITEM_TO_BE_AUGMENTED(1957), /** * ID: 1958
* Message: Select the catalyst for augmentation. */ SELECT_THE_CATALYST_FOR_AUGMENTATION(1958), /** * ID: 1959
* Message: Requires $s1 $s2. */ REQUIRES_S1_S2(1959), /** * ID: 1960
* Message: This is not a suitable item. */ THIS_IS_NOT_A_SUITABLE_ITEM(1960), /** * ID: 1961
* Message: Gemstone quantity is incorrect. */ GEMSTONE_QUANTITY_IS_INCORRECT(1961), /** * ID: 1962
* Message: The item was successfully augmented! */ THE_ITEM_WAS_SUCCESSFULLY_AUGMENTED(1962), /** * ID : 1963
* Message: Select the item from which you wish to remove augmentation. */ SELECT_THE_ITEM_FROM_WHICH_YOU_WISH_TO_REMOVE_AUGMENTATION(1963), /** * ID: 1964
* Message: Augmentation removal can only be done on an augmented item. */ AUGMENTATION_REMOVAL_CAN_ONLY_BE_DONE_ON_AN_AUGMENTED_ITEM(1964), /** * ID: 1965
* Message: Augmentation has been successfully removed from your $s1. */ AUGMENTATION_HAS_BEEN_SUCCESSFULLY_REMOVED_FROM_YOUR_S1(1965), /** * ID: 1970
* Message: Once an item is augmented, it cannot be augmented again. */ ONCE_AN_ITEM_IS_AUGMENTED_IT_CANNOT_BE_AUGMENTED_AGAIN(1970), /** * ID: 1972
* Message: You cannot augment items while a private store or private workshop is in operation. */ YOU_CANNOT_AUGMENT_ITEMS_WHILE_A_PRIVATE_STORE_OR_PRIVATE_WORKSHOP_IS_IN_OPERATION(1972), /** * ID: 1974
* Message: You cannot augment items while dead. */ YOU_CANNOT_AUGMENT_ITEMS_WHILE_DEAD(1974), /** * ID: 1976
* Message: You cannot augment items while paralyzed. */ YOU_CANNOT_AUGMENT_ITEMS_WHILE_PARALYZED(1976), /** * ID: 1977
* Message: You cannot augment items while fishing. */ YOU_CANNOT_AUGMENT_ITEMS_WHILE_FISHING(1977), /** * ID: 1978
* Message: You cannot augment items while sitting down. */ YOU_CANNOT_AUGMENT_ITEMS_WHILE_SITTING_DOWN(1978), /** * ID: 1979
* Message: $s1's remaining Mana is now 10. */ S1S_REMAINING_MANA_IS_NOW_10(1979), /** * ID: 1980
* Message: $s1's remaining Mana is now 5. */ S1S_REMAINING_MANA_IS_NOW_5(1980), /** * ID: 1981
* Message: $s1's remaining Mana is now 1. It will disappear soon. */ S1S_REMAINING_MANA_IS_NOW_1(1981), /** * ID: 1982
* Message: $s1's remaining Mana is now 0, and the item has disappeared. */ S1S_REMAINING_MANA_IS_NOW_0(1982), /** * ID: 1983
* Message: $s1 */ S1(1983), /** * ID: 1984
* Message: Press the Augment button to begin. */ PRESS_THE_AUGMENT_BUTTON_TO_BEGIN(1984), /** * ID: 2001
* Message: Augmentation failed due to inappropriate conditions. */ AUGMENTATION_FAILED_DUE_TO_INAPPROPRIATE_CONDITIONS(2001), /** * ID: 2010
* Message: $s1 $s2
* ( USE THIS ID TO SEND CUSTOM MESSAGES TO CLIENT ) */ S1_S2(2010), /** * ID: 2011
* Message: The augmented item cannot be discarded. */ AUGMENTED_ITEM_CANNOT_BE_DISCARDED(2011), /** * ID: 2013
* Message: Your seed or remaining purchase amount is inadequate. */ YOUR_SEED_OR_REMAINING_PURCHASE_AMOUNT_IS_INADEQUATE(2013), /** * ID: 2017
* Message: $s1 cannot duel because $s1 is currently engaged in a private store or manufacture. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_CURRENTLY_ENGAGED_IN_A_PRIVATE_STORE_OR_MANUFACTURE(2017), /** * ID: 2018
* Message: $s1 cannot duel because $s1 is currently fishing. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_CURRENTLY_FISHING(2018), /** * ID: 2019
* Message: $s1 cannot duel because $s1's HP or MP is below 50 percent. */ S1_CANNOT_DUEL_BECAUSE_S1S_HP_OR_MP_IS_BELOW_50_PERCENT(2019), /** * ID: 2020
* Message: $s1 cannot make a challenge to a duel because $s1 is currently * in a duel-prohibited area (Peaceful Zone / Seven Signs Zone / Near Water / Restart Prohibited Area). */ S1_CANNOT_MAKE_A_CHALLANGE_TO_A_DUEL_BECAUSE_S1_IS_CURRENTLY_IN_A_DUEL_PROHIBITED_AREA(2020), /** * ID: 2021
* Message: $s1 cannot duel because $s1 is currently engaged in battle. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_CURRENTLY_ENGAGED_IN_BATTLE(2021), /** * ID: 2022
* Message: $s1 cannot duel because $s1 is already engaged in a duel. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_ALREADY_ENGAGED_IN_A_DUEL(2022), /** * ID: 2023
* Message: $s1 cannot duel because $s1 is in a chaotic state. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_IN_A_CHAOTIC_STATE(2023), /** * ID: 2024
* Message: $s1 cannot duel because $s1 is participating in the Olympiad. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_PARTICIPATING_IN_THE_OLYMPIAD(2024), /** * ID: 2025
* Message: $s1 cannot duel because $s1 is participating in a clan hall war. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_PARTICIPATING_IN_A_CLAN_HALL_WAR(2025), /** * ID: 2026
* Message: $s1 cannot duel because $s1 is participating in a siege war. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_PARTICIPATING_IN_A_SIEGE_WAR(2026), /** * ID: 2027
* Message: $s1 cannot duel because $s1 is currently riding a boat, wyvern, or strider. */ S1_CANNOT_DUEL_BECAUSE_S1_IS_CURRENTLY_RIDING_A_BOAT_WYVERN_OR_STRIDER(2027), /** * ID: 2028
* Message: $s1 cannot receive a duel challenge because $s1 is too far away. */ S1_CANNOT_RECEIVE_A_DUEL_CHALLENGE_BECAUSE_S1_IS_TOO_FAR_AWAY(2028), /** * ID: 2058
* Message: You already polymorphed and cannot polymorph again. */ YOU_ALREADY_POLYMORPHED_AND_CANNOT_POLYMORPH_AGAIN(2058), /** * ID: 2060
* Message: You cannot polymorph into the desired form in water. */ YOU_CANNOT_POLYMORPH_INTO_THE_DESIRED_FORM_IN_WATER(2060), /** * ID: 2062
* Message: You cannot polymorph when you have summoned a servitor/pet. */ YOU_CANNOT_POLYMORPH_WHEN_YOU_HAVE_SUMMONED_A_SERVITOR(2062), /** * ID: 2063
* Message: You cannot polymorph while riding a pet. */ YOU_CANNOT_POLYMORPH_WHILE_RIDING_A_PET(2063), /** * ID: 2068
* Message: You do not have all of the items needed to untrain the enchant skill. */ YOU_DONT_HAVE_ALL_ITENS_NEEDED_TO_UNTRAIN_SKILL_ENCHANT(2068), /** * ID: 2069
* Message: Untrain of enchant skill was successful. Current level of enchant skill $s1 has been decreased by 1. */ UNTRAIN_SUCCESSFUL_SKILL_S1_ENCHANT_LEVEL_DECREASED_BY_ONE(2069), /** * ID: 2070
* Message: Untrain of enchant skill was successful. Current level of enchant skill $s1 became 0 and enchant skill will be initialized. */ UNTRAIN_SUCCESSFUL_SKILL_S1_ENCHANT_LEVEL_RESETED(2070), /** * ID: 2071
* Message: You do not have all of the items needed to enchant skill route change. */ YOU_DONT_HAVE_ALL_ITENS_NEEDED_TO_CHANGE_SKILL_ENCHANT_ROUTE(2071), /** * ID: 2072
* Message: Enchant skill route change was successful. Lv of enchant skill $s1 has been decreased by $s2. */ SKILL_ENCHANT_CHANGE_SUCCESSFUL_S1_LEVEL_WAS_DECREASED_BY_S2(2072), /** * ID: 2073
* Message: Enchant skill route change was successful. Lv of enchant skill $s1 will remain. */ SKILL_ENCHANT_CHANGE_SUCCESSFUL_S1_LEVEL_WILL_REMAIN(2073), /** * ID: 2074
* Message: Skill enchant failed. Current level of enchant skill $s1 will remain unchanged. */ SKILL_ENCHANT_FAILED_S1_LEVEL_WILL_REMAIN(2074), /** * ID: 2085
* Message: Shout and trade chatting cannot be used while possessing a cursed weapon. */ SHOUT_AND_TRADE_CHAT_CANNOT_BE_USED_WHILE_POSSESSING_CURSED_WEAPON(2085), /** * ID: 2087
* Message: A fortress is under attack! */ A_FORTRESS_IS_UNDER_ATTACK(2087), /** * ID: 2089
* Message: $s1 minute(s) until the fortress battle starts. */ S1_MINUTES_UNTIL_THE_FORTRESS_BATTLE_STARTS(2089), /** * ID: 2090
* Message: The fortress battle $s1 has begun. */ THE_FORTRESS_BATTLE_S1_AS_BEGUN(2090), /** * ID: 2154
* Message: The target is not a flagpole so a flag cannot be displayed. */ THE_TARGET_IS_NOT_A_FLAGPOLE_SO_A_FLAG_CANNOT_BE_DISPLAYED(2154), /** * ID: 2155
* Message: A flag is already being displayed, another flag cannot be displayed. */ A_FLAG_IS_ALREADY_BEING_DISPLAYED_ANOTHER_FLAG_CANNOT_BE_DISPLAYED(2155), /** * ID: 2156
* Message: There are not enough necessary items to use the skill. */ THERE_ARE_NOT_ENOUGH_NECESSARY_ITEMS_TO_USE_THE_SKILL(2156), /** * ID: 2158
* Message: Forced attack is impossible against seige side temporary allied members. */ FORCED_ATTACK_IS_IMPOSSIBLE_AGAINST_SIEGE_SIDE_TEMPORARY_ALLIED_MEMBERS(2158), /** * ID: 2167
* Message: A malicious skill cannot be used in a peace zone. */ A_MALICIOUS_SKILL_CANNOT_BE_USED_IN_PEACE_ZONE(2167), /** * ID: 2162
* Message: Your soul has increased by $s1, so it is now at $s2. */ YOUR_SOUL_HAS_INCREASED_BY_S1_SO_IT_IS_NOW_AT_S2(2162), /** * ID: 2163
* Message: Soul cannot be increased anymore. */ SOUL_CANNOT_BE_INCREASED_ANYMORE(2163), /** * ID: 2183
* Message: The fortress battle of $s1 has finished. */ THE_FORTRESS_BATTLE_OF_S1_HAS_FINISHED(2183), /** * ID: 2184
* Message: $s1 clan is victorious in the fortress battle of $s2. */ S1_CLAN_IS_VICTORIOUS_IN_THE_FORTRESS_BATTLE_OF_S2(2184), /** * ID: 2186
* Message: Soul cannot be absorbed anymore. */ SOUL_CANNOT_BE_ABSORBED_ANYMORE(2186), /** * ID: 2189
* Message: Current Location: $s1, $s2, $s3 (near Near Kamael Village) */ LOC_KAMAEL_VILLAGE_S1_S2_S3(2189), /** * ID: 2190
* Message: Current Location: $s1, $s2, $s3 (Near south of Wastelands Camp) */ LOC_WASTELANDS_CAMP_S1_S2_S3(2190), /** * ID: 2195
* Message: There is not enough soul. */ THERE_IS_NOT_ENOUGH_SOUL(2195), /** * ID: 2224
* Message: Crossbow is preparing to fire. */ CROSSBOW_PREPARING_TO_FIRE(2224), /** * ID: 2226
* Message: Not enough bolts. */ NOT_ENOUGH_BOLTS(2226), /** * ID: 2229
* Message: There is no instance zone under a time limit. */ NO_INSTANCEZONE_TIME_LIMIT(2229), /** * ID: 2247
* Message: You cannot mount a steed while transformed. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_TRANSFORMED(2247), /** * ID: 2248
* Message: You cannot mount a steed while petrified. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_PETRIFIED(2248), /** * ID: 2249
* Message: You cannot mount a steed while dead. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_DEAD(2249), /** * ID: 2250
* Message: You cannot mount a steed while fishing. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_FISHING(2250), /** * ID: 2251
* Message: You cannot mount a steed while in battle. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_BATTLE(2251), /** * ID: 2252
* Message: You cannot mount a steed while in a duel. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_IN_A_DUEL(2252), /** * ID: 2253
* Message: You cannot mount a steed while sitting. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_SITTING(2253), /** * ID: 2254
* Message: You cannot mount a steed while skill casting. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_SKILL_CASTING(2254), /** * ID: 2255
* Message: You cannot mount a steed while a cursed weapon is equipped. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_A_CURSED_WEAPON_IS_EQUIPPED(2255), /** * ID: 2256
* Message: You cannot mount a steed while holding a flag. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_HOLDING_A_FLAG(2256), /** * ID: 2257
* Message: You cannot mount a steed while a pet or a servitor is summoned. */ YOU_CANNOT_MOUNT_A_STEED_WHILE_A_PET_OR_A_SERVITOR_IS_SUMMONED(2257), /** * ID: 2258
* Message: You have already mounted another steed */ YOU_HAVE_ALREADY_MOUNTED_ANOTHER_STEED(2258), /** * ID: 2259
* Message: Current Location: $s1, $s2, $s3 (near Fantasy Isle) */ LOC_FANTASY_ISLAND_S1_S2_S3(2259); private int _id; private SystemMessageId(int id) { _id = id; } public int getId() { return _id; } }