diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-31 19:09:49 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-31 19:09:49 -0200 |
commit | 2f16d8b8c34257733180058c82415d395ea27474 (patch) | |
tree | 09a7e0b77ba01cfade269593ee88c02122fd5976 | |
parent | f4ac215d94dc2c5eb58675f79e0be87932f78cc3 (diff) | |
parent | 28fdcc18ff9c80fea20414482ecc7c74fd0bf9cf (diff) | |
download | serverdata-jesusalva/GuidedTour.tar.gz serverdata-jesusalva/GuidedTour.tar.bz2 serverdata-jesusalva/GuidedTour.tar.xz serverdata-jesusalva/GuidedTour.zip |
Merge branch 'master' into jesusalva/GuidedTourjesusalva/GuidedTour
146 files changed, 14106 insertions, 342 deletions
diff --git a/conf/channels.conf.base b/conf/channels.conf.base index c7e372c1..dee7575b 100644 --- a/conf/channels.conf.base +++ b/conf/channels.conf.base @@ -63,5 +63,14 @@ chsys: ( irc_channel_nick_pw: "" /* password to this nick (if any) to identify to nick server on the irc network */ irc_channel_use_ghost: false /* whether to send a GHOST command to the nick server (requires irc_channel_nick_pw to be defined) */ irc_channel_autojoin: true + irc_flood_protection_enabled: true /* Whether to enable anti-flood protection for outgoing messages */ + irc_flood_protection_rate: 1000 /* The delay between messages during anti-flood protection (milliseconds) */ + irc_flood_protection_burst: 3 /* The maximum number of messages that are sent at once burst size before triggering the anti-flood protection */ + + // @channel setopt MessageDelay <delay> + // Sets the maximum amount of message delay (in seconds) allowed for a channel. + // Default: 10 + // Max: 255 + channel_opt_msg_delay: 10 } ) diff --git a/conf/char/char-server.conf b/conf/char/char-server.conf index 60b54fc8..9b5f861f 100644 --- a/conf/char/char-server.conf +++ b/conf/char/char-server.conf @@ -152,6 +152,11 @@ char_configuration: { // Set the letters/symbols that you want use with the 'char_name_option' option. // Note: Don't add spaces unless you mean to add 'space' to the list. name_letters: "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" + + // Block renaming if character is in a guild or a party? (BOOL) + // Athena: false Aegis: true + // This check is imposed by Aegis to avoid dead entries in databases and is not needed on Hercules, as we clear data properly + use_aegis_rename: false } deletion: { diff --git a/conf/map/battle/client.conf b/conf/map/battle/client.conf index 8df6ea54..59f5fceb 100644 --- a/conf/map/battle/client.conf +++ b/conf/map/battle/client.conf @@ -177,3 +177,15 @@ client_emblem_max_blank_percent: 100 // kRO removed the packet and this re-enables the message. // Official: false. mvp_exp_reward_message: false + +// Displays the same HP value as official servers do when a character is dead. +// (Note 1) +// On official servers, HP are never displayed as 0, but when dead, they +// display the value that will be shown after resurrection (50% HP for novice +// classes, 1 HP for other classes). Athena servers, instead, show the real +// value (0 when dead), to avoid confusion. +// Note: this is only a visual setting, and the server will internally handle +// it as 0 regardless of this. This means that scripts will know that the +// character has 0 HP when dead. +// Default: true (Official behavior) +display_fake_hp_when_dead: false diff --git a/conf/map/battle/items.conf b/conf/map/battle/items.conf index 144e04ea..e834b80f 100644 --- a/conf/map/battle/items.conf +++ b/conf/map/battle/items.conf @@ -123,3 +123,11 @@ boarding_halter_speed: 25 // Allow to use items when the storage is open? // Official: false (Default) storage_use_item: false + +// Minimum item buy price at shop +// Default: 1 +min_item_buy_price: 1 + +// Minimum item sell price at shop +// Default: 0 +min_item_sell_price: 0 diff --git a/conf/map/battle/skill.conf b/conf/map/battle/skill.conf index d258567a..64bba68b 100644 --- a/conf/map/battle/skill.conf +++ b/conf/map/battle/skill.conf @@ -307,6 +307,12 @@ dancing_weaponswitch_fix: true // 1: Traps in GvG make player stop moving right when stepping over it. skill_trap_type: 0 +// Trap Reflect +// Whether the damage from traps must be reflected (for example by Reflect Shield or High Orc Card)? +// true: Aegis - traps are reflected +// false: Athena - traps are not reflected +trap_reflect: true + // Max Possible Level of Monster skills // Note: If your MVPs are too tough, reduce it to 10. mob_max_skilllvl: 100 diff --git a/conf/map/maps.conf b/conf/map/maps.conf index 58cf9446..f9cb4cad 100644 --- a/conf/map/maps.conf +++ b/conf/map/maps.conf @@ -89,6 +89,7 @@ map_list: ( "008-2-7", "008-2-8", "008-2-9", + "008-3-0", "008-3-1", "test", "testbg", diff --git a/conf/messages.conf b/conf/messages.conf index 54e8c077..212da118 100644 --- a/conf/messages.conf +++ b/conf/messages.conf @@ -447,7 +447,8 @@ // Return pet to egg message 451: You can't return your pet because your inventory is full. -//452-497 FREE +452: usage @camerainfo range rotation latitude +//453-497 FREE // Messages of others (not for GM commands) // ---------------------------------------- @@ -710,7 +711,14 @@ // @jobchange 923: You can not change to this job by command. -//924-979 FREE + +// atcommand_setzone +924: Usage: @setzone <zone name> +925: The zone is already set to '%s'. +926: Zone not found. Keep in mind that the names are CaSe SenSitiVe. +927: Zone successfully changed from '%s' to '%s'. + +//928-979 FREE // @kami 980: Please enter a message (usage: @kami <message>). @@ -1486,11 +1494,11 @@ 1448: -- Available options 1449: option '%s' is already enabled, if you'd like to disable it type '@channel opt %s 0' 1450: option '%s' is now enabled for channel '%s' -1451: value '%d' for option '%s' is out of range (limit is 0-10) +1451: value '%d' for option '%s' is out of range (limit is 0-%d) 1452: option '%s' is now enabled for channel '%s' with %d seconds 1453: option '%s' is now disabled for channel '%s' 1454: option '%s' is not enabled on channel '%s' -1455: You're talking too fast! +1455: You cannot send a message to this channel for another %d seconds. 1456: -- %s ban <channel name> <character name> 1457: - bans <character name> from <channel name> channel 1458: -- %s banlist <channel name> diff --git a/db/achievement_rank_db.conf b/db/achievement_rank_db.conf new file mode 100644 index 00000000..e19194fa --- /dev/null +++ b/db/achievement_rank_db.conf @@ -0,0 +1,43 @@ +//================= Hercules Database ========================================== +//= _ _ _ +//= | | | | | | +//= | |_| | ___ _ __ ___ _ _| | ___ ___ +//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| +//= | | | | __/ | | (__| |_| | | __/\__ \ +//= \_| |_/\___|_| \___|\__,_|_|\___||___/ +//================= License ==================================================== +//= This file is part of Hercules. +//= http://herc.ws - http://github.com/HerculesWS/Hercules +//= +//= Copyright (C) 2018 Hercules Dev Team +//= +//= Hercules 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 <http://www.gnu.org/licenses/>. +//============================================================================== +//= Achievement Rank Database +//============================================================================== + +achievement_rank_db: +{ + Rank1: 18 + Rank2: 31 + Rank3: 49 + Rank4: 73 + Rank5: 135 + Rank6: 104 + Rank7: 140 + Rank8: 214 + Rank9: 305 + Rank10: 257 + Rank11: 300 +} diff --git a/db/constants.conf b/db/constants.conf index 29d308c1..2da38e3c 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3848,6 +3848,86 @@ constants_db: { HAT_EF_QSCARABA: 54 HAT_EF_FSTONE: 55 HAT_EF_MAGICCIRCLE: 56 + HAT_EF_BRYSINGGAMEN: 57 + HAT_EF_MAGINGIORDE: 58 + HAT_EF_LEVEL99_RED: 59 + HAT_EF_LEVEL99_ULTRAMARINE: 60 + HAT_EF_LEVEL99_CYAN: 61 + HAT_EF_LEVEL99_LIME: 62 + HAT_EF_LEVEL99_VIOLET: 63 + HAT_EF_LEVEL99_LILAC: 64 + HAT_EF_LEVEL99_SUN_ORANGE: 65 + HAT_EF_LEVEL99_DEEP_PINK: 66 + HAT_EF_LEVEL99_BLACK: 67 + HAT_EF_LEVEL99_WHITE: 68 + HAT_EF_LEVEL160_RED: 69 + HAT_EF_LEVEL160_ULTRAMARINE: 70 + HAT_EF_LEVEL160_CYAN: 71 + HAT_EF_LEVEL160_LIME: 72 + HAT_EF_LEVEL160_VIOLET: 73 + HAT_EF_LEVEL160_LILAC: 74 + HAT_EF_LEVEL160_SUN_ORANGE: 75 + HAT_EF_LEVEL160_DEEP_PINK: 76 + HAT_EF_LEVEL160_BLACK: 77 + HAT_EF_LEVEL160_WHITE: 78 + HAT_EF_FULL_BLOOMCHERRY_TREE: 79 + HAT_EF_C_BLESSINGS_OF_SOUL: 80 + HAT_EF_MANYSTARS: 81 + HAT_EF_SUBJECT_AURA_GOLD: 82 + HAT_EF_SUBJECT_AURA_WHITE: 83 + HAT_EF_SUBJECT_AURA_RED: 84 + HAT_EF_C_SHINING_ANGEL_WING: 85 + HAT_EF_MAGIC_STAR_TW: 86 + HAT_DIGITAL_SPACE: 87 + HAT_EF_SLEIPNIR: 88 + + comment__: "Achievement Types" + ACH_QUEST: 0 + ACH_KILL_PC_TOTAL: 1 + ACH_KILL_PC_JOB: 2 + ACH_KILL_PC_JOBTYPE: 3 + ACH_KILL_MOB_CLASS: 4 + ACH_DAMAGE_PC_MAX: 5 + ACH_DAMAGE_PC_TOTAL: 6 + ACH_DAMAGE_PC_REC_MAX: 7 + ACH_DAMAGE_PC_REC_TOTAL: 8 + ACH_DAMAGE_MOB_MAX: 9 + ACH_DAMAGE_MOB_TOTAL: 10 + ACH_DAMAGE_MOB_REC_MAX: 11 + ACH_DAMAGE_MOB_REC_TOTAL: 12 + ACH_JOB_CHANGE: 13 + ACH_STATUS: 14 + ACH_STATUS_BY_JOB: 15 + ACH_STATUS_BY_JOBTYPE: 16 + ACH_CHATROOM_CREATE_DEAD: 17 + ACH_CHATROOM_CREATE: 18 + ACH_CHATROOM_MEMBERS: 19 + ACH_FRIEND_ADD: 20 + ACH_PARTY_CREATE: 21 + ACH_PARTY_JOIN: 22 + ACH_MARRY: 23 + ACH_ADOPT_BABY: 24 + ACH_ADOPT_PARENT: 25 + ACH_ZENY_HOLD: 26 + ACH_ZENY_GET_ONCE: 27 + ACH_ZENY_GET_TOTAL: 28 + ACH_ZENY_SPEND_ONCE: 29 + ACH_ZENY_SPEND_TOTAL: 30 + ACH_EQUIP_REFINE_SUCCESS: 31 + ACH_EQUIP_REFINE_FAILURE: 32 + ACH_EQUIP_REFINE_SUCCESS_TOTAL: 33 + ACH_EQUIP_REFINE_FAILURE_TOTAL: 34 + ACH_EQUIP_REFINE_SUCCESS_WLV: 35 + ACH_EQUIP_REFINE_FAILURE_WLV: 36 + ACH_EQUIP_REFINE_SUCCESS_ID: 37 + ACH_EQUIP_REFINE_FAILURE_ID: 38 + ACH_ITEM_GET_COUNT: 39 + ACH_ITEM_GET_COUNT_ITEMTYPE: 40 + ACH_ITEM_GET_WORTH: 41 + ACH_ITEM_SELL_WORTH: 42 + ACH_PET_CREATE: 43 + ACH_ACHIEVE: 44 + ACH_ACHIEVEMENT_RANK: 45 // for disable warning ITMCHAIN_ORE: 1 @@ -3948,6 +4028,45 @@ constants_db: { NPC_OSCAR: 145 NPC_SHOP_BAG_TEST: 146 NPC_RED: 147 + NPC_KOGA: 148 + NPC_OLD_LADY: 149 + NPC_ARKIM: 150 + NPC_YOUNG_MAN_APPRENTICE: 151 + NPC_YOUNG_MAN_KFAHR: 152 + NPC_INSPECTOR: 153 + NPC_SUSPICIOUS_TRADER: 154 + NPC_GENERAL_STORE: 155 + NPC_DARK_DRUID: 156 + NPC_AIRLIA: 157 + NPC_NICHOLAS: 158 + NPC_BLONDE_APPRENTICE: 159 + NPC_GIRL_MILLY: 160 + NPC_OLANA: 161 + NPC_DESERT_HAT_MAN: 162 + NPC_ANGUS_THE_SMITH: 163 + NPC_YOUNG_MAN_IN_PINK: 164 + NPC_WAITRESS_LEGACY: 165 + NPC_WIZARD: 166 + NPC_LORA_TAY: 167 + NPC_DOCTOR_LEGACY: 168 + NPC_BOY_MIKE: 169 + NPC_CELESTIA: 170 + NPC_GUMI_THE_DYER: 171 + NPC_DIMOND: 172 + NPC_CHEF_LEGACY: 173 + NPC_DIMONDS_WAITRESS: 174 + NPC_DRINKER_ROAMINGO: 175 + NPC_DRINKER_MICKSHA: 176 + NPC_NURSE_LEGACY: 177 + NPC_LENA: 178 + NPC_CAUL: 179 + NPC_MALIK: 180 + NPC_SNARFLES: 181 + NPC_OLD_MAN_HURNS: 182 + NPC_BERNARD: 183 + NPC_SABINE: 184 + NPC_MIKHAIL: 185 + NPC_TROUPE_LEADER: 186 NPC_CONFUSED_TREE: 400 NPC_ALIGE: 401 @@ -3998,6 +4117,13 @@ constants_db: { NPC_DEVIS_ARTIS: 448 NPC_MOUBOO: 449 NPC_MONA: 450 + NPC_MELINDA: 451 + NPC_LUMBERJACK: 452 + NPC_HINNAK: 453 + NPC_RICHARD_LEGACY: 454 + NPC_SOPHIALLA: 455 + NPC_MUNDANE: 456 + NPC_ROWBOAT_STAND_WE: 457 NPC_TEST1: 800 NPC_PLAYER: 801 diff --git a/db/map_index.txt b/db/map_index.txt index 547afb0b..599d54b0 100644 --- a/db/map_index.txt +++ b/db/map_index.txt @@ -86,6 +86,7 @@ 008-2-7 86 008-2-8 87 008-2-9 88 -008-3-1 89 -test 90 -testbg 91 +008-3-0 89 +008-3-1 90 +test 91 +testbg 92 diff --git a/db/quest_db.conf b/db/quest_db.conf index 48d4129a..bc8acb82 100644 --- a/db/quest_db.conf +++ b/db/quest_db.conf @@ -162,6 +162,26 @@ quest_db: ( Name: "Artis_Legion_Progress" }, { + Id: 36 + Name: "HurnscaldQuests_Hinnak" +}, +{ + Id: 37 + Name: "HurnscaldQuests_Soup" +}, +{ + Id: 38 + Name: "HurnscaldQuests_Inspector" +}, +{ + Id: 39 + Name: "HurnscaldQuests_ForestBow" +}, +{ + Id: 40 + Name: "HurnscaldQuests_WoodenShield" +}, +{ Id: 1000 Name: "Test_testing1" }, diff --git a/db/re/achievement_db.conf b/db/re/achievement_db.conf new file mode 100644 index 00000000..68334840 --- /dev/null +++ b/db/re/achievement_db.conf @@ -0,0 +1,134 @@ +//================= Hercules Database ===================================== +//= _ _ _ +//= | | | | | | +//= | |_| | ___ _ __ ___ _ _| | ___ ___ +//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| +//= | | | | __/ | | (__| |_| | | __/\__ \ +//= \_| |_/\___|_| \___|\__,_|_|\___||___/ +//================= License =============================================== +//= This file is part of Hercules. +//= http://herc.ws - http://github.com/HerculesWS/Hercules +//= +//= Copyright (C) 2018 Hercules Dev Team +//= +//= Hercules 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 <http://www.gnu.org/licenses/>. +//========================================================================= +//= Achievement Database +//========================================================================= + +achievement_db: ( +/***************************************************************** + * Entry Structure + ***************************************************************** +{ + Id: (int) Unique ID of the achievement representing it's client-side equivalent. + Name: (string) Name/Title of the Achievement. + Type: (string) Validation type for the achievement. + [Type] [Validation Description] (Trigger) + ACH_QUEST: Specific achievement objective update (Script). + ACH_KILL_PC_TOTAL: (Accumulative) Total kill count. (Player kill) + ACH_KILL_PC_JOB: Kill a player of the specified job. (Player Kill) + ACH_KILL_PC_JOBTYPE: Kill a player of the specified job type. (Player Kill) + ACH_KILL_MOB_CLASS: Kill a particular mob class. (Mob Kill) + ACH_DAMAGE_PC_MAX: Maximum damage caused on a player. (Player Damage) + ACH_DAMAGE_PC_TOTAL: (Accumulative) Damage on players. (Player Damage) + ACH_DAMAGE_PC_REC_MAX: Maximum damage received by a player. (Receive Player Damage) + ACH_DAMAGE_PC_REC_TOTAL: (Accumulative) Damage received by players. (Receive Player Damage) + ACH_DAMAGE_MOB_MAX: Maximum damage caused on a monster. (Monster Damage) + ACH_DAMAGE_MOB_TOTAL: (Accumulative) Damage caused on monsters. (Monster Damage) + ACH_DAMAGE_MOB_REC_MAX: Maximum damage received by a monster. (Receive Monster Damage) + ACH_DAMAGE_MOB_REC_TOTAL: (Accumulative) Damage received by monsters. (Receive Monster Damage) + ACH_JOB_CHANGE: Change to a specific job. (Job Change) + ACH_STATUS: Acquire a specific amount of a particular status type. (Stat Change) + ACH_STATUS_BY_JOB: Acquire a specific amount of a status type as a job class. (Stat Change) + ACH_STATUS_BY_JOBTYPE: Acquire a specific amount of a status type as a job type. (Stat Change) + ACH_CHATROOM_CREATE_DEAD: (Accumulative) Create a chatroom when dead. (Chatroom Creation) + ACH_CHATROOM_CREATE: (Accumulative) Create a chatroom. (Chatroom Creation) + ACH_CHATROOM_MEMBERS: Gather 'n' members in a chatroom. (Chatroom Join) + ACH_FRIEND_ADD: Add a specific number of friends. (Friend Addition) + ACH_PARTY_CREATE: (Accumulative) Create a specific number of parties. (Party Creation) + ACH_PARTY_JOIN: (Accumulative) Join a specific number of parties. (Party Join) + ACH_MARRY: (Accumulative) Marry a specified number of times. (Marriage) + ACH_ADOPT_BABY: (Accumulative) Get Adopted. (Adoption) + ACH_ADOPT_PARENT: (Accumulative) Adopt a Baby. (Adoption) + ACH_ZENY_HOLD: Hold a specific amount of zeny in your inventory. (Gain Zeny) + ACH_ZENY_GET_ONCE: Gain a specific amount of zeny in one transaction. (Gain Zeny) + ACH_ZENY_GET_TOTAL: (Accumulative) Gain a specific amount of zeny in total. (Gain Zeny) + ACH_ZENY_SPEND_ONCE: Spend a specific amount of zeny in one transaction. (Pay Zeny) + ACH_ZENY_SPEND_TOTAL: (Accumulative) Spend a specific amount of zeny in total. (Pay Zeny) + ACH_EQUIP_REFINE_SUCCESS: Refine an item to +N. (Successful Refine) + ACH_EQUIP_REFINE_FAILURE: Fail to refine an item of +N refine. (Failed Refine) + ACH_EQUIP_REFINE_SUCCESS_TOTAL: (Accumulative) Refine an item successfully N times. (Success Refine) + ACH_EQUIP_REFINE_FAILURE_TOTAL: (Accumulative) Fail to refine an item N times. (Failed Refine) + ACH_EQUIP_REFINE_SUCCESS_WLV: Refine a Weapon of a particular Level to +N. (Success Refine) + ACH_EQUIP_REFINE_FAILURE_WLV: Fail to refine a Weapon of a particular level from +N. (Failed Refine) + ACH_EQUIP_REFINE_SUCCESS_ID: Refine a particular Item successfully to +N. (Success Refine) + ACH_EQUIP_REFINE_FAILURE_ID: Fail to refine a particular item successfully from +N. (Failed Refine) + ACH_ITEM_GET_COUNT: Acquire N amount of an item of a particular ID. (Acquire Item) + ACH_ITEM_GET_COUNT_ITEMTYPE: Acquire N amount of items of a particular type mask. (Acquire Item) + ACH_ITEM_GET_WORTH: Acquire an item of buy value N. (Acquire Item) + ACH_ITEM_SELL_WORTH: Sell an item of sell value N. (NPC Sell Item) + ACH_PET_CREATE: Successfully tame a pet of a particular mob class. (Successful Pet Tame) + ACH_ACHIEVE: Achieve an Achievement. (Achievement Completion) + ACH_ACHIEVEMENT_RANK: Achieve an Achievement Rank. (Achievement Rank Increase) + Objectives: { [Mandatory Field] Objectives of an achievement. Up to 10 objectives per achievement. + To comply with the client's order of objectives, this list must be in order. + *1: { + Description: (string) [Mandatory Field] Description of a particular objective. + Criteria: { This is a field for achievements whose objectives must meet + certain criteria before evaluating the player's progress for it. + MobId: (mixed) MonsterId required for an objective. + For types such as ACH_KILL_MOB_CLASS and ACH_PET_CREATE. Can be either int or string constant. + JobId: (mixed) Array or Single entry of JobIds. + For types - ACH_KILL_PC_JOBTYPE, ACH_JOB_CHANGE or ACH_STATUS_BY_JOBTYPE. + Can be either a numeric or string constant. + ItemId: (mixed) ItemId required for an objective. + For Types such as ACH_ITEM_GET_COUNT. Can be either int or string constant. + StatusType: (mixed) Status Type required for an objective. + For Types such as ACH_STATUS, ACH_STATUS_BY_JOB, ACH_STATUS_BY_JOBTYPE. + Types - + "SP_STR" - Strength + "SP_AGI" - Agility + "SP_VIT" - Vitality + "SP_INT" - Intelligence + "SP_DEX" - Dexterity + "SP_LUK" - Luck + "SP_BASELEVEL" - Base Level + "SP_JOBLEVEL" - Job Level + Can be either int or string constant. + ItemType: (mixed) Item type that is required for this achievement. + For Types such as ACH_ITEM_GET_COUNT_ITEMTYPE. + Can be either int, string or list. + Refer "Item types" Constants from constants.conf + WeaponLevel: (int) Weapon Level that is required for this achievement. (Eg. 0, 1, 2, 3 or 4). + For Types such as ACH_EQUIP_REFINE_SUCCESS_WLV and ACH_EQUIP_REFINE_FAILURE_WLV. + Achieve: (int) AchievementID to be achieved. + For Type - ACH_ACHIEVE. + } + Goal: (int) Target amount to be met for the completion of the objective. Default is 1. + } + ... + *10: {...} + } + Rewards: { + Bonus: <""> (script) Script code bonus to be given as a reward for an achievement. + Items: { Item rewards per achievement. With a maximum defined in mmo.h as MAX_ACHEIVEMENT_ITEM_REWARDS. + Apple: 1 (int) Item ID (int or string constant) : Amount (int) + } + TitleId: (int) ID of the Title (from the Title System) awarded. + } + Points: (int) Points per achievement given on it's successful completion. +} + *****************************************************************/ +) diff --git a/db/re/item_db.conf b/db/re/item_db.conf index de337b46..6f4665da 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -1272,6 +1272,366 @@ item_db: ( "> }, { + Id: 563 + AegisName: "Beer" + Name: "Beer" + Type: "IT_HEALING" + Buy: 90 + Sell: 20 + Weight: 20 + Job: { + All: true + } + Gender: "SEX_ANY" + Refine: false + ViewSprite: 563 + BindOnEquip: false + BuyingStore: true + Delay: 750 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 60; + @max = 110; + @delay = 8; + @type = 1; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 564 + AegisName: "RoastedMaggot" + Name: "Roasted Maggot" + Type: "IT_HEALING" + Buy: 500 + Sell: 50 + Weight: 25 + Job: { + All: true + } + Gender: "SEX_ANY" + Refine: false + ViewSprite: 564 + BindOnEquip: false + BuyingStore: true + Delay: 450 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 180; + @max = 360; + @delay = 50; + @type = 1; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 565 + AegisName: "BottleOfWater" + Name: "Bottle of Water" + Type: "IT_HEALING" + Buy: 60 + Sell: 5 + Weight: 25 + Job: { + All: true + } + Gender: "SEX_ANY" + Refine: false + ViewSprite: 565 + BindOnEquip: false + BuyingStore: true + Delay: 450 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 70; + @max = 100; + @delay = 15; + @type = 1; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 566 + AegisName: "CherryCake" + Name: "Cherry Cake" + Type: "IT_HEALING" + Buy: 100 + Sell: 15 + Weight: 10 + Job: { + All: true + } + Gender: "SEX_ANY" + Refine: false + ViewSprite: 566 + BindOnEquip: false + BuyingStore: true + Delay: 450 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 20; + @max = 35; + @delay = 150; + @type = 1; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 600 + AegisName: "SmallHealing" + Name: "Small Healing Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 300 + Weight: 32 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 600 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 200; + @max = 300; + @delay = 3; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 601 + AegisName: "MediumHealing" + Name: "Medium Healing Potion" + Type: "IT_HEALING" + Buy: 5000 + Sell: 650 + Weight: 64 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 601 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 400; + @max = 600; + @delay = 4; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 602 + AegisName: "LargeHealing" + Name: "Large Healing Potion" + Type: "IT_HEALING" + Buy: 10000 + Sell: 1250 + Weight: 128 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 602 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 800; + @max = 1200; + @delay = 5; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 603 + AegisName: "SmallMana" + Name: "Small Mana Potion" + Type: "IT_HEALING" + Buy: 2000 + Sell: 250 + Weight: 32 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 603 + BindOnEquip: false + BuyingStore: true + Delay: 205 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,20; + "> +}, +{ + Id: 604 + AegisName: "MediumMana" + Name: "Medium Mana Potion" + Type: "IT_HEALING" + Buy: 5000 + Sell: 600 + Weight: 64 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 604 + BindOnEquip: false + BuyingStore: true + Delay: 250 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,50; + "> +}, +{ + Id: 605 + AegisName: "LargeMana" + Name: "Large Mana Potion" + Type: "IT_HEALING" + Buy: 10000 + Sell: 1500 + Weight: 128 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 605 + BindOnEquip: false + BuyingStore: true + Delay: 250 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,100; + "> +}, +{ + Id: 606 + AegisName: "ConcPotion" + Name: "Concentration Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 650 + Weight: 25 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 606 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bAspd,50; + "> +}, +{ + Id: 607 + AegisName: "IronPotion" + Name: "Iron Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 650 + Weight: 40 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 606 + BindOnEquip: false + BuyingStore: true + Delay: 500 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bStr,5; + "> +}, +{ Id: 700 AegisName: "SmallTentacles" Name: "Small Tentacles" @@ -2629,8 +2989,8 @@ item_db: ( Buy: 10000 Sell: 400 Weight: 50 - Atk: 0 - Matk: 0 + Atk: 5 + Matk: 25 Def: 0 Range: 0 Slots: 1 @@ -2640,7 +3000,7 @@ item_db: ( Gender: "SEX_ANY" Loc: "EQP_ACC_L" WeaponLv: 0 - EquipLv: 1 + EquipLv: 10 Refine: false ViewSprite: 1000 BindOnEquip: false @@ -2906,6 +3266,54 @@ item_db: ( "> }, { + Id: 1308 + AegisName: "FineDress" + Name: "Fine Dress" + Type: "IT_ARMOR" + Buy: 12000 + Sell: 2600 + Weight: 240 + Atk: 0 + Matk: 170 + Def: 250 + Range: 0 + Slots: 1 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_MID" + WeaponLv: 0 + EquipLv: 15 + Refine: false + ViewSprite: 1308 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 + AllowCards: { + id5003: 1 + id5004: 1 + id5005: 1 + id5006: 1 + id5007: 1 + id5008: 1 + id5009: 1 + id5010: 1 + id5011: 1 + id5012: 1 + id5013: 1 + id5014: 1 + id5015: 1 + id5016: 1 + id5017: 1 + id5018: 1 + id5019: 1 + id5020: 1 + id5021: 1 + } +}, +{ Id: 1800 AegisName: "LousyMoccasins" Name: "Lousy Moccasins" @@ -2933,6 +3341,55 @@ item_db: ( Sprite: 0 }, { + Id: 1801 + AegisName: "CottonBoots" + Name: "Cotton Boots" + Type: "IT_ARMOR" + Buy: 2600 + Sell: 420 + Weight: 35 + Atk: 0 + Matk: 0 + Def: 120 + Range: 0 + Slots: 1 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_SHOES" + WeaponLv: 0 + EquipLv: 12 + Refine: false + ViewSprite: 1801 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 + AllowCards: { + id5003: 1 + id5004: 1 + id5005: 1 + id5006: 1 + id5007: 1 + id5008: 1 + id5009: 1 + id5010: 1 + id5011: 1 + id5012: 1 + id5013: 1 + id5014: 1 + id5015: 1 + id5016: 1 + id5017: 1 + id5018: 1 + id5019: 1 + id5020: 1 + id5021: 1 + } +}, + +{ Id: 2000 AegisName: "Armbands" Name: "Armbands" @@ -3014,6 +3471,81 @@ item_db: ( Sprite: 0 }, { + Id: 2003 + AegisName: "CottonGloves" + Name: "Cotton Gloves" + Type: "IT_ARMOR" + Buy: 3000 + Sell: 250 + Weight: 60 + Atk: 0 + Matk: 0 + Def: 10 + Range: 0 + Slots: 1 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_GARMENT" + WeaponLv: 0 + EquipLv: 10 + Refine: false + ViewSprite: 2003 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 + AllowCards: { + id5003: 1 + id5004: 1 + id5005: 1 + id5006: 1 + id5007: 1 + id5008: 1 + id5009: 1 + id5010: 1 + id5011: 1 + id5012: 1 + id5013: 1 + id5014: 1 + id5015: 1 + id5016: 1 + id5017: 1 + id5018: 1 + id5019: 1 + id5020: 1 + id5021: 1 + } +}, +{ + Id: 2004 + AegisName: "LeatherGloves" + Name: "Leather Gloves" + Type: "IT_ARMOR" + Buy: 3500 + Sell: 500 + Weight: 140 + Atk: 0 + Matk: 0 + Def: 20 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_GARMENT" + WeaponLv: 0 + EquipLv: 20 + Refine: false + ViewSprite: 2004 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ Id: 2200 AegisName: "CreasedShorts" Name: "Creased Shorts" @@ -3068,6 +3600,140 @@ item_db: ( Sprite: 0 }, { + Id: 2202 + AegisName: "JeansChaps" + Name: "Jeans Chaps" + Type: "IT_ARMOR" + Buy: 2500 + Sell: 500 + Weight: 360 + Atk: 0 + Matk: -100 + Def: 240 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_LOW" + WeaponLv: 0 + EquipLv: 12 + Refine: false + ViewSprite: 2202 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2203 + AegisName: "SilkPants" + Name: "Silk Pants" + Type: "IT_ARMOR" + Buy: 5000 + Sell: 1000 + Weight: 20 + Atk: 0 + Matk: 0 + Def: 80 + Range: 0 + Slots: 1 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_LOW" + WeaponLv: 0 + EquipLv: 17 + Refine: false + ViewSprite: 2203 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 + AllowCards: { + id5000: 1 + id5001: 1 + id5002: 1 + } +}, +{ + Id: 2204 + AegisName: "CottonSkirt" + Name: "Cotton Skirt" + Type: "IT_ARMOR" + Buy: 3000 + Sell: 600 + Weight: 15 + Atk: 0 + Matk: 0 + Def: 20 + Range: 0 + Slots: 1 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_LOW" + WeaponLv: 0 + EquipLv: 5 + Refine: false + ViewSprite: 2204 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 + AllowCards: { + id5003: 1 + id5004: 1 + id5005: 1 + id5006: 1 + id5007: 1 + id5008: 1 + id5009: 1 + id5010: 1 + id5011: 1 + id5012: 1 + id5013: 1 + id5014: 1 + id5015: 1 + id5016: 1 + id5017: 1 + id5018: 1 + id5019: 1 + id5020: 1 + id5021: 1 + } +}, +{ + Id: 2205 + AegisName: "LeatherTrousers" + Name: "Leather Trousers" + Type: "IT_ARMOR" + Buy: 9500 + Sell: 2100 + Weight: 280 + Atk: 0 + Matk: 0 + Def: 160 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_LOW" + WeaponLv: 0 + EquipLv: 15 + Refine: false + ViewSprite: 2205 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ Id: 2700 AegisName: "Barrel" Name: "Barrel" @@ -3123,6 +3789,53 @@ item_db: ( "> }, { + Id: 2702 + AegisName: "WoodenShield" + Name: "Wooden Shield" + Type: "IT_ARMOR" + Buy: 5000 + Sell: 750 + Weight: 2450 + Def: 72 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HAND_L" + EquipLv: 12 + Refine: false + ViewSprite: 0 + BindOnEquip: false + BuyingStore: true + OnEquipScript: <" + bonus bAtkRange, -1; + "> +}, +{ + Id: 2703 + AegisName: "SteelShield" + Name: "Steel Shield" + Type: "IT_ARMOR" + Buy: 25000 + Sell: 2630 + Weight: 5500 + Def: 200 + Matk: -200 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HAND_L" + EquipLv: 20 + Refine: false + ViewSprite: 2701 + BindOnEquip: false + BuyingStore: true + OnEquipScript: <" + bonus bAtkRange, -1; + "> +}, +{ Id: 2900 AegisName: "Bandana" Name: "Bandana" @@ -3274,11 +3987,255 @@ item_db: ( All: true } Gender: "SEX_ANY" + Loc: "EQP_HEAD_LOW" + WeaponLv: 0 + EquipLv: 1 + Refine: false + ViewSprite: 2200 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, + +{ + Id: 2906 + AegisName: "InfantryHelmet" + Name: "Infantry Helmet" + Type: "IT_ARMOR" + Buy: 1600 + Sell: 300 + Weight: 400 + Atk: 0 + Matk: -50 + Def: 160 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" Loc: "EQP_HEAD_TOP" WeaponLv: 0 - EquipLv: 8 + EquipLv: 12 + Refine: false + ViewSprite: 2906 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2907 + AegisName: "CandleHelmet" + Name: "Candle Helmet" + Type: "IT_ARMOR" + Buy: 4500 + Sell: 650 + Weight: 500 + Atk: 0 + Matk: -25 + Def: 180 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 16 + Refine: false + ViewSprite: 2907 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2908 + AegisName: "WarlordHelmet" + Name: "Warlord Helmet" + Type: "IT_ARMOR" + Buy: 13500 + Sell: 3200 + Weight: 1000 + Atk: 0 + Matk: -300 + Def: 340 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 24 + Refine: false + ViewSprite: 2908 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2909 + AegisName: "AxeHat" + Name: "Axe Hat" + Type: "IT_ARMOR" + Buy: 3500 + Sell: 750 + Weight: 50 + Atk: 0 + Matk: 25 + Def: 12 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 5 Refine: false - ViewSprite: 2905 + ViewSprite: 2909 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2910 + AegisName: "PinkieHat" + Name: "Pinkie Hat" + Type: "IT_ARMOR" + Buy: 12600 + Sell: 3500 + Weight: 5 + Atk: 0 + Matk: 7 + Def: 7 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 10 + Refine: false + ViewSprite: 2910 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2911 + AegisName: "TopHat" + Name: "Top Hat" + Type: "IT_ARMOR" + Buy: 50000 + Sell: 12500 + Weight: 40 + Atk: 0 + Matk: 0 + Def: 50 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 17 + Refine: false + ViewSprite: 2911 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2912 + AegisName: "BowlerHat" + Name: "Bowler Hat" + Type: "IT_ARMOR" + Buy: 17355 + Sell: 4300 + Weight: 30 + Atk: 0 + Matk: 0 + Def: 40 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 15 + Refine: false + ViewSprite: 2912 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2913 + AegisName: "FairyHat" + Name: "Fairy Hat" + Type: "IT_ARMOR" + Buy: 6300 + Sell: 1200 + Weight: 5 + Atk: 0 + Matk: 0 + Def: 25 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 10 + Refine: false + ViewSprite: 2913 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 2914 + AegisName: "NohMask" + Name: "Noh Mask" + Type: "IT_ARMOR" + Buy: 25000 + Sell: 5200 + Weight: 150 + Atk: 0 + Matk: 0 + Def: 20 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HEAD_TOP" + WeaponLv: 0 + EquipLv: 15 + Refine: false + ViewSprite: 2914 BindOnEquip: false BuyingStore: true Delay: 0 @@ -3323,7 +4280,7 @@ item_db: ( Gender: "SEX_ANY" Loc: "EQP_HAND_R" WeaponLv: 1 - EquipLv: 1 + EquipLv: 15 Refine: false Subtype: "W_DAGGER" ViewSprite: 1 @@ -3521,7 +4478,7 @@ item_db: ( Gender: "SEX_ANY" Loc: ["EQP_HAND_R","EQP_HAND_L"] WeaponLv: 1 - EquipLv: 15 + EquipLv: 12 Refine: false Subtype: "W_2HSPEAR" BindOnEquip: false @@ -3530,6 +4487,62 @@ item_db: ( Sprite: 0 }, { + Id: 3508 + AegisName: "Dagger" + Name: "Dagger" + Type: "IT_WEAPON" + Buy: 2500 + Sell: 500 + Weight: 350 + Atk: 100 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HAND_R" + WeaponLv: 1 + EquipLv: 15 + Refine: false + Subtype: "W_DAGGER" + ViewSprite: 1 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ + Id: 3509 + AegisName: "Setzer" + Name: "Setzer" + Type: "IT_WEAPON" + Buy: 25000 + Sell: 5000 + Weight: 250 + Atk: 600 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: "EQP_HAND_R" + WeaponLv: 1 + EquipLv: 1 + Refine: false + Subtype: "W_DAGGER" + ViewSprite: 1 + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ Id: 3510 AegisName: "Pickaxe" Name: "Pickaxe" @@ -3537,7 +4550,7 @@ item_db: ( Buy: 17500 Sell: 3700 Weight: 250 - Atk: 50 + Atk: 200 Matk: 0 Def: 0 Range: 0 @@ -3546,7 +4559,7 @@ item_db: ( All: true } Gender: "SEX_ANY" - Loc: ["EQP_HAND_R", "EQP_HAND_L"] + Loc: ["EQP_HAND_R","EQP_HAND_L"] WeaponLv: 1 EquipLv: 15 Refine: false @@ -3557,6 +4570,33 @@ item_db: ( Sprite: 0 }, { + Id: 3511 + AegisName: "Torch" + Name: "Torch" + Type: "IT_WEAPON" + Buy: 2500 + Sell: 500 + Weight: 100 + Atk: 150 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + Loc: ["EQP_HAND_R","EQP_HAND_L"] + WeaponLv: 1 + EquipLv: 10 + Refine: false + Subtype: "W_DAGGER" + BindOnEquip: false + BuyingStore: true + Delay: 0 + Sprite: 0 +}, +{ Id: 4000 AegisName: "PiouEgg" Name: "Piou egg" @@ -3575,7 +4615,7 @@ item_db: ( Type: "IT_CARD" Buy: 2000 Sell: 80 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_HEAD_LOW"] }, { Id: 5001 @@ -3584,7 +4624,7 @@ item_db: ( Type: "IT_CARD" Buy: 2000 Sell: 80 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_HEAD_LOW"] }, { Id: 5002 @@ -3593,7 +4633,7 @@ item_db: ( Type: "IT_CARD" Buy: 2000 Sell: 80 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_HEAD_LOW"] }, { Id: 5003 @@ -3602,7 +4642,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5004 @@ -3611,7 +4651,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5005 @@ -3620,7 +4660,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5006 @@ -3629,7 +4669,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5007 @@ -3638,7 +4678,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5008 @@ -3647,7 +4687,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5009 @@ -3656,7 +4696,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5010 @@ -3665,7 +4705,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5011 @@ -3674,7 +4714,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5012 @@ -3683,7 +4723,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5013 @@ -3692,7 +4732,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5014 @@ -3701,7 +4741,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5015 @@ -3710,7 +4750,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5016 @@ -3719,7 +4759,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5017 @@ -3728,7 +4768,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5018 @@ -3737,7 +4777,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5019 @@ -3746,7 +4786,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5020 @@ -3755,7 +4795,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5021 @@ -3764,7 +4804,7 @@ item_db: ( Type: "IT_CARD" Buy: 1200 Sell: 70 - Loc: "EQP_HEAD_MID" + Loc: ["EQP_HEAD_MID","EQP_SHOES","EQP_GARMENT","EQP_HEAD_LOW"] }, { Id: 5022 @@ -3832,7 +4872,7 @@ item_db: ( bonus bLuk, 2; bonus bDex, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 5029 @@ -3846,7 +4886,7 @@ item_db: ( bonus bStr, 2; bonus bAgi, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 5030 @@ -3860,7 +4900,7 @@ item_db: ( bonus bDex, 2; bonus bVit, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 5031 @@ -3874,7 +4914,7 @@ item_db: ( bonus bInt, 2; bonus bVit, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 5032 @@ -3888,7 +4928,7 @@ item_db: ( bonus bVit, 2; bonus bLuk, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 5033 @@ -3902,7 +4942,7 @@ item_db: ( bonus bAgi, 2; bonus bStr, -1; "> - Loc: "EQP_ACC" + Loc: ["EQP_ACC_L"] }, { Id: 6000 @@ -3913,7 +4953,7 @@ item_db: ( Sell: 52 Weight: 12 Atk: 150 - Range: 7 + Range: 4 MinRange: 3 Loc: ["EQP_HAND_R", "EQP_HAND_L"] WeaponLv: 1 @@ -3924,6 +4964,44 @@ item_db: ( } }, { + Id: 6001 + AegisName: "ShortBow" + Name: "Short Bow" + Type: "IT_WEAPON" + Buy: 1200 + Sell: 250 + Weight: 260 + Atk: 100 + Range: 5 + MinRange: 3 + Loc: ["EQP_HAND_R", "EQP_HAND_L"] + WeaponLv: 1 + EquipLv: 15 + Subtype: "W_BOW" + AllowAmmo: { + Id6500: 1 + } +}, +{ + Id: 6002 + AegisName: "ForestBow" + Name: "Forest Bow" + Type: "IT_WEAPON" + Buy: 7500 + Sell: 1250 + Weight: 480 + Atk: 150 + Range: 6 + MinRange: 3 + Loc: ["EQP_HAND_R", "EQP_HAND_L"] + WeaponLv: 1 + EquipLv: 20 + Subtype: "W_BOW" + AllowAmmo: { + Id6500: 1 + } +}, +{ Id: 6500 AegisName: "TrainingArrow" Name: "Training Arrow" diff --git a/db/re/job_db.conf b/db/re/job_db.conf index e461e991..7e3365af 100644 --- a/db/re/job_db.conf +++ b/db/re/job_db.conf @@ -66,6 +66,7 @@ Human: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -116,6 +117,7 @@ Ukar: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -166,6 +168,7 @@ Demon: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -216,6 +219,7 @@ Elven: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -266,6 +270,7 @@ Orc: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -316,6 +321,7 @@ Raijin: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 @@ -366,6 +372,7 @@ Tritan: { Rod: 65 TwoHandRod: 65 Shield: 10 + Bow: 80 } HPTable:[ 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, // 1 - 10 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, // 11 - 20 diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index c172b76e..1d43ef6d 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -1904,7 +1904,7 @@ mob_db: ( SpriteName: "DiamondVein" Name: "Diamond Vein" Lv: 1 - Hp: 1 + Hp: 20 Sp: 0 Exp: 1 JExp: 0 @@ -1932,6 +1932,8 @@ mob_db: ( AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 + SpawnCollisionSize: 0 + SpawnCollisionMask: "CELLS_NOPLAYER" Drops: { DiamondShard: 500 CrudeDiamond: 100 @@ -1974,8 +1976,10 @@ mob_db: ( AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 + SpawnCollisionSize: 0 + SpawnCollisionMask: "CELLS_NOPLAYER" Drops: { - GoldNuggets: 500 + GoldNuggets: 1000 } WeaponAttacks: { All: 0 @@ -1987,7 +1991,7 @@ mob_db: ( SpriteName: "IronVein" Name: "Iron Vein" Lv: 1 - Hp: 15 + Hp: 10 Sp: 0 Exp: 1 JExp: 0 @@ -2015,8 +2019,10 @@ mob_db: ( AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 + SpawnCollisionSize: 0 + SpawnCollisionMask: "CELLS_NOPLAYER" Drops: { - IronOre: 1500 + IronOre: 2500 } WeaponAttacks: { All: 0 @@ -2028,7 +2034,7 @@ mob_db: ( SpriteName: "CoalVein" Name: "Coal Vein" Lv: 1 - Hp: 15 + Hp: 7 Sp: 0 Exp: 1 JExp: 0 @@ -2056,8 +2062,10 @@ mob_db: ( AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 + SpawnCollisionSize: 0 + SpawnCollisionMask: "CELLS_NOPLAYER" Drops: { - Coal: 2000 + Coal: 5000 } WeaponAttacks: { All: 0 @@ -2148,6 +2156,253 @@ mob_db: ( } }, { + Id: 1051 + SpriteName: "RubyVein" + Name: "Ruby Vein" + Lv: 1 + Hp: 20 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 0 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 1 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + RubyShard: 500 + CrudeRuby: 100 + } + WeaponAttacks: { + All: 0 + 2HMaces: 10000 + } +}, +{ + Id: 1052 + SpriteName: "EmeraldVein" + Name: "Emerald Vein" + Lv: 1 + Hp: 20 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 0 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 1 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + EmeraldShard: 500 + CrudeEmerald: 100 + } + WeaponAttacks: { + All: 0 + 2HMaces: 10000 + } +}, +{ + Id: 1053 + SpriteName: "SapphireVein" + Name: "Sapphire Vein" + Lv: 1 + Hp: 25 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 0 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 1 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + SapphireShard: 450 + CrudeSapphire: 95 + } + WeaponAttacks: { + All: 0 + 2HMaces: 10000 + } +}, +{ + Id: 1054 + SpriteName: "TopazVein" + Name: "Topaz Vein" + Lv: 1 + Hp: 20 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 0 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 1 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + TopazShard: 500 + CrudeTopaz: 100 + } + WeaponAttacks: { + All: 0 + 2HMaces: 10000 + } +}, +{ + Id: 1055 + SpriteName: "AmethystVein" + Name: "Amethyst Vein" + Lv: 1 + Hp: 22 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 0 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 1 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + AmethystShard: 475 + CrudeAmethyst: 98 + } + WeaponAttacks: { + All: 0 + 2HMaces: 10000 + } +}, +{ + Id: 1056 + SpriteName: "Beehive" + Name: "Beehive" + Lv: 1 + Hp: 10 + Sp: 0 + Exp: 1 + JExp: 0 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 1 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 5 + ChaseRange: 15 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + Plant: true + } + MoveSpeed: 1 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: { + BugLeg: 5000 + } +}, +{ Id: 1100 SpriteName: "PoisonSkull" Name: "Poison Skull" diff --git a/db/re/mob_skill_db.conf b/db/re/mob_skill_db.conf index 8eaf5ea8..6c60c207 100644 --- a/db/re/mob_skill_db.conf +++ b/db/re/mob_skill_db.conf @@ -212,6 +212,17 @@ mob_skill_db:( val0: 1025 } } + Beehive: { + NPC_SUMMONMONSTER: { + SkillState: "MSS_DEAD" + SkillLevel: 5 + Rate: 10000 + SkillTarget: "MST_SELF" + CastCondition: "MSC_ALWAYS" + ConditionData: 15 + val0: 1029 + } + } PoisonSkull: { NPC_POISON: { SkillState: "MSS_BERSERK" diff --git a/db/stylist_db.conf b/db/stylist_db.conf index e857df97..193bba6c 100644 --- a/db/stylist_db.conf +++ b/db/stylist_db.conf @@ -40,6 +40,7 @@ stylist_db: ( Zeny: zeny (int, defaults to 0) ItemID: ItemID (int, defaults to 0) BoxItemID: BoxItemID (int, defaults to 0) + AllowDoram: true/false (boolean, defaults to false) }, **************************************************************************/ { diff --git a/langs/lang_ca.txt b/langs/lang_ca.txt index ab58eeb3..f4708ce4 100644 --- a/langs/lang_ca.txt +++ b/langs/lang_ca.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2015 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2015 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2015 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2015 Evol Online - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2015 Evol Online -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2015 Evol Online ... and 1 @@. ... i 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2015 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2015 Evol Online A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Una galeta! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaaahhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Els mariners a bord estan tractant de comunicar-se amb tu. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ Després de triar la teva arma, també has de saber com utilitzar-la. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ I ara et vull veure córrer! And now I'm a sailor, as you can see! I ara soc mariner, com pots veure! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? I després que va passar? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ I tu? Com va al teu cantó? And you? How's it yaying on your side? I tu? Com et yaying va al teu canto? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? Alguna pista d'on pot estar l'Astapolos? @@ -1040,6 +1160,9 @@ Artis és clar! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Abans... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Les galetes et proporcionen força, vida i bellesa. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! ET SENS MILLOR?! @@ -2081,6 +2279,9 @@ El Dan fa silenci des de l'última pregunta. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia No li donis la contrasenya de la teva habitació a ningú! Guarda-la en secret i no provis d'utilitzar la mateixa contrasenya en cap altre lloc en el futur. +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Tens alguna altra cosa per a mi? Do you have anything for me today? Tens alguna cosa per a mi avui? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Vols que vagi a veure-la en lloc teu? +Do you want to continue? + + Do you want to cut this @@? Vols tallar això @@? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Torna'm el plat, podrit mentider!#1 Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Ves i agafa'n un. Un bon ganivet t'ajudarà a caçar criatures de l'illa. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? Agradable de veure't! Que puc fer paer a tu avui? @@ -3065,6 +3347,9 @@ Perfecte, quin menjar tens per a mi avui?#1 Green Cotton Dye +Green Slime + + Greetings traveler.#0 Salutacions viatgera.#0 @@ -3221,6 +3506,9 @@ Half Croconut Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? Has vist alguna cosa perillosa? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. Necessita més menjar. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Jaja! @@ -3572,6 +3869,9 @@ Hmmm... Deixa'm mirar, agafa aquest! Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm,hm... *cof*,*cof*,*burp*,*cof*. Que... Que es això?!...*cof*,*burp*... Maleït Gado... *cof* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... No obstant això... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! TAMBÉ EVITO ALS ANIMALS PERILLOSOS! @@ -3794,9 +4100,6 @@ No puc recordar res.#1 I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! Si hagués *hic* vist qui eres... *hic* No t'hagués ajudat! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ En efecte, tot sembla anar perfectament sota el teu mandat. En Nard ha fet una b In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. En efecte... Les coses que podria explicar... Però ens hem quedat sense espai... Siguis raonable i bes a casa. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Knife Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Viure en un vaixell està bé, però de vegades necessitem una mica d'aire lliure. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magic Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ No. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, MIRA AQUÃ! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Una vegada que el monstre es mort, clica en els objectes deixats anar per afegir-los al teu inventari. També pots utilitzar la tecla "Z" i si està s a prop els agafarà . @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Pabaies Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds +Pumpkin Juice -Pumpkish +Pumpkin Seeds -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Ella es una bona amiga meva... Ens volÃem casar unes setmanes després de que tingues l'accident, però... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Carallot yeye... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! ES UN NOM MACO! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Agafa la teva recompensa de la capsa a prop del meu escriptori! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Grà cies per l'ajuda! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! Està bé escoltar això! +That's not the question + + That's perfect, yoiis.#0 Això es perfecte, yoiis.#0 @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ El capità t'està esperant! Donat manya! The captain wants: El capità vol: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ La por de veure-la dormint en aquest tranquil i solitari llit s'està convertint The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. La primera cosa que has de fer es avaluar l'enemic. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! L'usurpador ha set castigat! Es un gran dia! Agafa aquesta recompensa per la teva lleialtat al antic comandant! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Els seus lÃders van arribar a la conclusió que una aliança era l'única manera de poder sobreviure. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Això es un @@, una lleugera fruita de mar. Estan molt buscades a l'arxipèlag. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Per obrir el teu inventari, utilitza la tecla F3 o utilitza el teu ratolà per seleccionar-lo al menú superior del client. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Veu de tritó Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Uhm, adéu. Uhm... Your story seems... Hm... La teva història sembla... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Entès, t'ajudaré. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! Que? Aquest tritó es el pitjor gandul amb qui m'he topat mai! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Quan beguis alguna cosa que sembla més un bug que del joc, reporta-ho a http://bugs.evolonline.org o intenta contactar un contribuïdor del joc. @@ -9470,6 +10109,9 @@ A qui he de buscar? Who's this Julia? Qui es la Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Per que gavatx? És Rus!#0 @@ -9512,6 +10154,9 @@ Per què? Why? And who should you bring it back to? Per què? I qui li has de tornar a portar? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Wow, sembla que tothom sap el meu nom! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ Està s en un rai, a la deriva. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! No pots anar allà ! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban diff --git a/langs/lang_de.old b/langs/lang_de.old index 2eda5789..c6d4d32f 100644 --- a/langs/lang_de.old +++ b/langs/lang_de.old @@ -19,6 +19,9 @@ her - 2 @@ - 2 @@ +- unbinds your global chat from its attached channel (if binded) +- entkoppelt deinen global Chat von seinen verknüpften Channels (falls vorhanden) + ... ... @@ -556,6 +559,9 @@ Elfen Stimme Emo Emo +Enora asks to kill fluffys +Enora bittet dich, Fluffies zu töten + Enora from the Legion of Aemil has been warned that you were aboard. Enora von der Legion von Aemil wurde ob deiner Anwesenheit an Bord unterrichtet. @@ -844,6 +850,9 @@ Ich bitte dich, Bitte, Biiiiiitte... I came to retrieve a package for Enora. Ich bin hier, um ein Päckchen für Enora abzuholen. +I can't use the shovel here. +Ich kann die Schaufel hier nicht benutzen. + I don't need any help right now, come back later. Ich brauche deine Hilfe jetzt nicht. Komm später wieder. @@ -1750,6 +1759,9 @@ Piousbeinchen Please don't tell people that you've seen me. I don't want to be thrown in the sea as food for sharks or decapitated. At least not again! Bitte erzähl ihnen nicht, dass du mich gesehen hast. Ich möchte nicht den Haien zum Fraß vorgeworfen oder geköpft werden. Nicht schon wieder! +Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Bitte eine Position und eine Anzahl eingeben (usage: @refine <equip position> <+/- amount>). + Please find the small chest, buried somewhere on Artis Hill. Bitte finde eine kleine Kiste, die irgendwo in den Artis Bergen vergraben ist. @@ -1771,6 +1783,12 @@ Ziehen! Pumpkin Seeds Kürbissamen +Pumpkish +Pumpkish + +Pumpkish Juice +Pumpkish Saft + Punk Punk @@ -1975,6 +1993,9 @@ Nimm ein Kopftuch Take a nap Ein Nickerchen machen +Talk to FightNPCName and he'll show you the ropes. +Rede mit FightNPCName, er wird dich einweisen. + Talk with Lloyd the Banker in the Merchant Guild, it's a big building at the northern part of Artis, at the top of the small hill. Sprich mit Lloyd dem Bänker in der Handelsgilde. Es ist ein großes Gebäude auf dem kleinen Hügel im Norden von Artis. @@ -2071,9 +2092,18 @@ Diese Gilde ist verantwortlich für die monetäre Regulierung innerhalb von Arti The hidden person doesn't answer. Die versteckte Person antwortet nicht. +The item (%d: '%s') is not equipable. +Der Gegenstand (%d: '%s') ist nicht ausrüstbar. + +The item is not equipable. +Der Gegenstand ist nicht ausrüstbar. + The market is located at the south-east of Artis, it is known as Merchant Guild's exhibit. Der Markt befindet sich im Südosten von Artis. Er ist bekannt als "Ausstellung" der Händlergilde. +The name of the book is @@. +Das Buch trägt den Titel @@. + The sailor chugs his beer Der Matrose hebt sein Bier @@ -2569,6 +2599,9 @@ Du brauchst eins von diesen: You need to walk north!! Sie müssen nach Norden gehen! +You open a book named @@. +Du öffnest ein Buch mit dem Titel @@. + You open the treasure chest. Du öffnest die Schatztruhe. diff --git a/langs/lang_de.txt b/langs/lang_de.txt index 10c7f4b5..7f0660c3 100644 --- a/langs/lang_de.txt +++ b/langs/lang_de.txt @@ -110,6 +110,42 @@ und %d Sekunden "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void %d - leer @@ -164,6 +200,9 @@ und %d Sekunden %d results found. %d Ergebnisse gefunden. +%d%% + + %d: Body Armor %d: Brust Panzer @@ -194,6 +233,15 @@ und %d Sekunden %d: Top Headgear %d: Kopfbedeckung +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s %s :Main: %s @@ -371,8 +419,8 @@ und %d Sekunden - unbans everyone from <channel name> - entsperrt alle für <channel name> -- unbinds your global chat from its attached channel (if binded) -- entkoppelt deinen global Chat von seinen verknüpften Channels (falls vorhanden) +- unbinds your global chat from its attached channel (if bound) + -- %s -- %s @@ -419,6 +467,15 @@ und %d Sekunden -- Available options -- Verfügbare Optionen +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches -- Angezeigt wird die erste %d von %d Partien. @@ -458,6 +515,9 @@ und %d Sekunden ... and 1 @@. ... und 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! Ich spreche von einem Baumstamm! Aus Holz! @@ -515,6 +575,18 @@ Ich spreche von einem Baumstamm! Aus Holz! 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. 7. ##BMehrfach-Logins are untersagt.##b Es ist nicht erlaubt, an Kämpfen teilzunehmen, wenn mehr als ein Charkater gesteuert wird. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ @@ -548,6 +620,9 @@ Ich spreche von einem Baumstamm! Aus Holz! A GM has discharged you from jail. Ein GM hat Dich aus dem Gefängnis entlassen. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Ein Keks! @@ -557,6 +632,9 @@ An der Küste von Aemil entstand eine großartige Stadt, die einmal die Städte A headache hits you and you lose your concentration. Du hast einen Migräneanfall und verlierst die Konzentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! Ein Häschen! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. An Bord stehen Matrosen. Sie versuchen, mit dir zu kommunizieren. Abort Abbrechen +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. Ehrlich gesagt weiß ich nicht viel über die Legion von Aemil. @@ -623,6 +707,9 @@ Neue Zeile hinzufügen Aemil was once a magnificent land unknown to us all. Aemil war damals ein unbekanntes Land voll wilder Schönheit. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop Aesop @@ -641,9 +728,15 @@ Nachdem du deine Waffe gewählt hast, solltest du auch wissen wie man sie benutz After that, stay still and be patient, but also alert! Sei danach ruhig und geduldig, aber trotzdem wachsam! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? Nach dieser kurzen Führung durch Artis, was hältst du von unserer Stadt? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! Alle Charaktere wiederbelebt! @@ -743,6 +842,9 @@ Alle aktiven Spieler der %s Gruppe wurden zu deiner Position gerufen. All players have been kicked! Alle Spieler wurden herausgeworfen! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. Alle Fähigkeiten wurden zu deinem Fähigkeitenbaum hinzugefügt. @@ -815,6 +917,12 @@ Allerdings musst du wissen, je stärker du wirst, desto mehr Plushrooms wirst du Although, if you want to visit a place nearby, we could take you there. Falls du jedoch etwas anderes sehen willst, können wir dich vielleicht dort hinbringen. +Amethyst + + +Amethyst Shard + + Amount? Menge? @@ -839,12 +947,21 @@ Und nun will ich dich rennen sehen! And now I'm a sailor, as you can see! Und jetzt bin ich ein Seemann, wie man sehen kann! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! Immerhin hat die Händlergilde mir dabei geholfen, dieses Appartment zu bekommen. Ich kann mich also nicht beklagen. And then what happened? Und dann passierte was? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? Was könntest du mir im Tausch für diese Information anbieten? @@ -872,6 +989,9 @@ Und du? Wie geht es dir? And you? How's it yaying on your side? Und du? Wie gürülüt es auf deiner Seite? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? Irgendeine Ahnung, so Astapolos versteckt sein könnte? @@ -1040,6 +1160,9 @@ Artis natürlich! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! Als Capt'n dieses Schiffes nenne ich dieses neu entdeckte Land die ##BDrasil Insel##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. Wie du vielleicht weißt, sind wir weitreisende Entdecker. Unsere deckschrubbenden Seemänner müssen genung Nahrung lagern, um zu überleben. Du hast keine Ahnung, wie gefährlich das Leben auf See sein kann. @@ -1079,6 +1202,9 @@ Atropos Mischung Auction is disabled Auktion ist abgeschaltet. +Auto loot item are disabled on this map. + + Autoloot is now off. Autoloot abgeschaltet. @@ -1322,9 +1448,15 @@ Weil ich ein Kralog bin, soll ich solche Dinge nicht lesen können? Das ist Quat Because of the dense foliage, you need to go up close to the trees so you don't miss him. Wegen des dichten Laubwerkes musst du nahe der Bäume nach oben gehen, damit du ihn nicht verpasst. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. Weil du von einigen Maps nicht warpen darfst, wurden %d Spieler nicht hergerufen. +Bee + + Before I joined Nard, I used to be a thief. Bevor ich Nard's Crew beitrat, war ich ein Dieb. @@ -1340,6 +1472,9 @@ Vor dem ... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. Hinter mir? Das ist die Schmiede, die berühmteste von ganz Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. Nebenbei halte ich hier nach Dieben Ausschau, während die La Johanne im Hafen liegt. @@ -1418,6 +1553,9 @@ Braune Baumwoll Farbe Brown Trousers Braune Hose +Bug Leg + + Bury. Begraben. @@ -1526,6 +1664,9 @@ Aber... wenn er Gedächnisverlust erlitten hat, wie Julia sagt... müssen wir un But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 Aber... wenn sie Gedächnisverlust erlitten hat, wie Julia sagt... müssen wir uns um sie keine Sorgen machen. Zumindest noch nicht. +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. Ãœbrigens, mein Name ist Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Die Katze hat deine Zunge? Catching a piou Fang das Piou +Cave Maggot + + Ch 1 — Fishing apparatus Ch 1 - Angelausrüstung @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | Clouds2 | +Clover Patch + + Clown Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. Farbstoffe sind nicht die yeyeesten Farben. Einige tragen sich im Licht schnell ab, andere sehen klasse aus, beeinflussen aber das itai-itai, und wieder andere werden fleckig oder waschen sich heraus. @@ -1919,6 +2078,9 @@ Abgeschlossen - Julia hat gewonnen (Gift wurde zurückgebracht) Completed, got reward Abgeschlossen, Belohnung erhalten +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. Glückwunsch! Du bist nun ein Teil der Mannschaft. Danke nochmal für deine Hilfe. @@ -1946,6 +2108,9 @@ Kekse liefern dir Stärke, Gesundheit und Niedlichkeit. Copper Armbands Kupfer Armschienen +Copper Necklace + + Coral Koralle @@ -2045,6 +2210,24 @@ CroconutMob Crocotree Croctree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom Curpilz +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! FÃœHLST DU DICH BESSER?! @@ -2081,6 +2279,9 @@ Die Bemerkung scheint Dan verstummen zu lassen. Dan#000-2-1 Dan#000-2-1 +Dance for me + + Dancer Tänzer @@ -2096,6 +2297,9 @@ Dunkelrote Baumwoll Farbe Darlin Darlin +Database erased. + + Day Mode Activated. Tag Modus aktiviert. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. Treffsicherheit (dexterity, dex) erhöht den Schaden mit Bögen und die Genauigkeit. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? Hast du meinen Bruder gefunden? @@ -2216,6 +2429,9 @@ Gib das Kennwort für dein Zimmer keinesfalls weiter! Halte es geheim und versuc Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Gib das Kennwort für dein Zimmer keinesfalls weiter! Halte es geheim und versuche nicht, dasselbe Kennwort in Zukunft in einem anderen Raum zu nutzen. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing Nichts tun @@ -2237,6 +2453,9 @@ Hast Du irgend etwas anderes für mich? Do you have anything for me today? Hast du für mich heute irgendwas? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? Weißt du, wie du dich mit den Leuten in deiner Umgebung unterhältst? @@ -2279,9 +2498,15 @@ Möchtest du etwas trinken? Do you want me to go see her instead of you? Willst du, das ich gehe um sie zu sehen, statt deiner? +Do you want to continue? + + Do you want to cut this @@? Willst Du dies zerschneiden @@? +Do you want to enter in sewer? + + Do you want to go somewhere? Möchtest du irgendwo hingehen? @@ -2336,6 +2561,9 @@ Don ist im ganzen Land für seine Schmiedekünste berühmt. Und er arbeitet hier Don#001-2-27 Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. Mach mich nicht runter. Meine Arbeit verdient die höchste Anerkennung. @@ -2396,6 +2624,9 @@ Drag-and-drop einen Gegenstand aus deinem Inventar. Drasil Island. Drasil +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. Duell: Kann %s nicht im Duell benutzen. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable Aktivieren @@ -2534,8 +2780,8 @@ Genieße die Brüderlichkeit und erlebe aufregende Abenteuer mit deiner zukünft Enjoy your new style. Viel Spaß mit deinem neuen Style. -Enora asks to kill fluffys -Enora bittet dich, Fluffies zu töten +Enora asks to kill fluffies + Enora asks to visit Chelios Enora bittet dich, Chelios zu besuchen @@ -2705,6 +2951,9 @@ Datei nicht gefunden. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. Datei gelöscht. Achtung: Mapflags und Monster, die direkt erschaffen wurden, wurden nicht entfernt. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. Such dir einen gemütlichen, trockenen Platz an der Küste, von wo aus du leicht das tiefe Wasser erreichen kannst. @@ -2810,6 +3059,12 @@ Anfänger können sich im Trainingsraum aufwärmen und etwas üben For what kind of tissue? Für welche Art von Stoff? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ gefunden, exp erhalten @@ -2825,6 +3080,9 @@ Vier Schlösser Fourteen Castles Vierzehn Schlösser +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! Frisch aus dem Meer, und günstig! @@ -2837,6 +3095,12 @@ Freund entfernt. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. Nach alldem, was ich weiß, braucht mein Bruder Gugli die Hilfe von so vielen Menschen wie möglich. Er muß große Mengen netter Sachen sammeln, die auf der Insel zu finden sind. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana Frostiana @@ -2876,6 +3140,12 @@ Erhaltene Zeny werden nun angezeigt. Gained zeny will not be shown. Erhaltene Zeny werden nicht mehr angezeigt. +Gamboge Herb + + +Gamboge Plant + + Game introduction Einleitung @@ -2939,6 +3209,9 @@ Gib mir den Teller zurück, du dreckiger Lügner! Give me some space. Gib mir etwas Zeit. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Geh hin und nimm dir eins. Ein gutes Messer wird dir beim Jagen der Monster auf dieser Insel helfen. @@ -2966,6 +3239,12 @@ Geh in den ersten Stock, wenn du dein Zimmer suchst oder es wechseln möchtest. Go on. Weiter. +Gold Nuggets + + +Gold Vein + + Good day miss. Guten Tag, Fräulein. @@ -3044,6 +3323,9 @@ Quest erhalten Grass Carp Graskarpfen +Grass Snake + + Great to see you! What can I do for you today? Großartig Dich zu sehen! Was kann ich heute für Dich tun? @@ -3065,6 +3347,9 @@ Großartig, welche Lebensmittel hast du heute für mich? Green Cotton Dye Grüne Baumwoll Farbe +Green Slime + + Greetings traveler.#0 Sei gegrüßt Reisende! @@ -3221,6 +3506,9 @@ Halbe Krokosnuss Half Eggshell Halbe Eierschale +Hard Spike + + Hard work always pays off! Harte Arbeit macht sich immer bezahlt! @@ -3248,6 +3536,9 @@ Hast du Fexil gesehen? Have you seen anything dangerous? Hast du etwas gefährliches gesehen? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... Er fragte nach einem Kredit, und einem Ort, um sein Geschäft zu eröffnen... Ich glaube, er dachte an einen Platz auf dem Marktplatz im Südwesten der Stadt. @@ -3281,6 +3572,9 @@ Er hat vielleicht nicht alle Tassen im Schrank, aber vergiß eines nicht: He needs more food. Er braucht mehr Nahrung. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. Er wollte den höchsten Hügel in Artis erklimmen. Das ist gar nicht weit von hier. @@ -3302,6 +3596,9 @@ Hör mir *hicks* äh, wie auch immer. Wasauchimmer du *hicks* hier her... her... Heard conversation Unterhaltung mitgehört +Hearing these words the Piou felt great joy, + + Hehe! Hehe! @@ -3572,6 +3869,9 @@ Hmm... Mal schauen, nimm das. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *hust*, *hust*, *rülps*, *hust*. Was... Was ist das?!... *hust*, *hust*...Verdammter Gado... *hust* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): Humunkulus Status erhöht (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, Kollege Langfinger? Howdy? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Wie auch immer... @@ -3665,6 +3968,9 @@ Beeil dich! Hurry, hurry! We need to check its teeth! Beeilung, schnell! Wir müssen seine Zähne überprüfen! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! ICH MUSS DIE GEFÄHRLICHEN TIERE AUCH MEIDEN! @@ -3794,9 +4100,6 @@ Ich kann mich an nichts erinnern. I can't stay here and talk all day. I have a job to do. Ich kann nicht den ganzen Tag hier rumstehen und reden. Ich habe einen Job zu erledigen. -I can't use the shovel here. -Ich kann die Schaufel hier nicht benutzen. - I can't wait all day! Ich kann hier nicht den ganzen Tag warten! @@ -4433,9 +4736,15 @@ Wenn Enora ihr Schwert sofort will, muß ich dich um Hilfe bitten. If I saw *hic* who you were... *hic* Would not have helped you! Wenn ich *hicks* gesehen hätte wer du bist *hips* hätte ich dir nicht geholfen! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... Falls das der Fall ist, hoffe ich, er hat es dir nicht allzu schwer gemacht. Manchmal steht er mit dem linken Fuß zuerst auf, und dann verwandelt er sich in einen verbitterten, grantigen alten Mann... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. Wenn yoiis etwas über die Verwendung der Karten sehen will, kann yeye zu Resa im Geschäft für leiche Rüstung gehen und nach einer Funktionsbeschreibung der Style-Karten fragen. @@ -4451,6 +4760,9 @@ Wenn du das geflüchtete Piou zurück bringst, gebe ich dir 90% Rabatt auf ein P If you continue there will be none left! Wenn du weitermachst, werden keine übrigbleiben! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! Wenn du jemals dazu kommst, schau dir Esperia an. Es ist die großartigste Stadt in ganz Gasaron! @@ -4535,6 +4847,12 @@ Unter deiner Führung läuft offensichtlich alles perfekt. Nard hat die richtige In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. In Wahrheit... ach, was ich dir alles erzählen könnte... Aber hier ist nicht der Ort dafür... sei vernünftig und geh nach Hause. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. Name/ID nicht korrekt, oder kein Mitglied der Gilde online. @@ -4640,6 +4958,9 @@ Ungültige Zeit für ban Befehl. Invalid time for jail command. Ungültige Zeit für Gefängnis Befehl. +Invalid! + + Invisible: Off Unsichtbarkeit: aus. @@ -4649,9 +4970,15 @@ Unsichtbarkeit: an. Iron Armbands Eisen Armschienen +Iron Ore + + Iron Shovel Eisenschaufel +Iron Vein + + Is it possible to go back to Drasil Island? Ist es möglich zurück nach Drasil zu gehen? @@ -4676,6 +5003,9 @@ Ist das für dich, oder für jemand anderen? Du mußt nämlich registriert sein, Is this some kind of joke?! Soll das ein Witz sein?! +It doesn't reply. + + It escaped! Es ist geflüchtet! @@ -4826,6 +5156,9 @@ Es ist noch zu jung, um weite Strecken zu fliegen, also zieht es in der nahen Um It's the big building in northern Artis, at the top of a small hill. Es ist das große Gebäude im Norden von Artis, oben auf dem kleinen Hügel. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! Es ist westlich, du deiner Linken. Geh einfach durch die Tür vor den Treppen und dann nach links.. kannst es nicht verfehlen! @@ -4949,6 +5282,9 @@ Sieh dir einfach meine Waren an! Frisches Obst und Gemüse wurde erst heute morg Just look at that water! There's a whole bunch of fish down there. Schau einfach raus aufs Meer! Es gibt noch unendlich viel Fisch da draußen. +Just say something sparkling + + Kagerou Kagerou @@ -4973,6 +5309,9 @@ Geh weiter, Mädchen.#0 Keep the sword and the jacket, you deserved them! Behalte das Schwert und die Scheide, du hast es dir verdient! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye Khaki Baumwoll Farbe @@ -4988,12 +5327,18 @@ Messer Knight Ritter +Know that every flatterer, + + Kralog Voice Kralog-Stimme Lachesis Brew Lachesis Gebräu +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 Als ich dich das letzte Mal getroffen hatte, warst du auf deinem Floß in Seenot. @@ -5129,9 +5474,18 @@ Lindgrüne Baumwoll Farbe Line @@ has been removed. Zeile @@ wurde entfernt. +List the commands + + Little Blub Kleines Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Das Leben in einem Schiff ist großartig, aber manchmal brauchen wir etwas frische Luft. @@ -5153,6 +5507,9 @@ Lloyd der Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. Logik ist der Anfang der Weißheit, nicht das Ende. @@ -5234,6 +5591,12 @@ MOTD konfigurieren MVP Monster: '%s'/'%s'/'%s' (%d) MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magic Arpan @@ -5252,6 +5615,12 @@ Macht Sinn. Meinst du, wir sollten den Käpt'n informieren? Male Männlich +Mana Bug + + +Mana Torch + + Manana Manana @@ -5264,6 +5633,9 @@ Aktuelle Ankündigung manuell auslösen Map not found. Karte nicht gefunden. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d Karte: %s (Zone:%s) | Spieler: %d | NPCs: %d | Chats: %d | Verkäufe: %d @@ -5273,9 +5645,21 @@ Marktplatz Marriage failed. Hochzeit fehlgeschlagen. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye Malve Baumwoll Farbe +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Am gebräuchlichsten sind in der Anglerwelt @@ und @@-Stückchen. Mostly manuals and tutorials but you won't find out until you open one! Hauptsächlich Handbücher, Anleitungen und Ãœbungshefte. Du wirst es aber erst wissen, wenn du sie dir ansiehst! +Mouboo + + Mouboo#Artis0 Mouboo#Artis0 @@ -5642,6 +6029,12 @@ Spioniert nicht mehr in der %s Gilde. No longer spying on the %s party. Spioniert nicht mehr in der %s Party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. Egal, was die Menschen dir weiß machen wollen. Worte und Ideen können die Welt verändern. @@ -5702,6 +6095,9 @@ Nein. No. Sorry. Nein. Sorry. +NoAutoloot | + + NoBaseEXP | NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, GUCK MAL DA! OK, let's trade. Ok, lass uns handeln. +Oak + + Oboro Oboro @@ -6005,6 +6404,9 @@ Du musst immer noch @@ Fluffies töten. Oh noes! Oh nein! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? Oh oh... wie ich sehe, ist deine Gruppe so groß geworden, daß du eine noch größere Gemeinschaft gründen willst? @@ -6227,9 +6629,15 @@ Alte Zeile: On An +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. Einerseits sind Fernkampfwaffen schwächer als Nahkampfwaffen, aber du kannst von einer sicheren Position aus angreifen. Andererseits können Nahkampfwaffen abhängig vom Level der Waffe schneller töten. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Sobalt ein Monster tot ist, klicke auf die gedroppte Items um sie dein Inventar aufzunehmen. Du kannst auch die Taste 'Z' benutzen um die Drops einzusammeln. @@ -6305,6 +6713,9 @@ Unsere Mama hat uns verboten, dahin zu gehen, weil es gefährlich ist, aber er h Our only wish to eat a plush, so juicy sweet... Unser einziger Wunsch ist, einen Plush zu essen, so fruchtig süß... +Over lovers under a starry night + + Ow-oh! Oh-oh! @@ -6371,15 +6782,33 @@ Pibeeren Piberries Infusion Pibeerentee +Pickaxe + + Pikpik Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Pink Blobime Pink Cotton Dye Pinke Baumwoll Farbe +Pink Flower + + +Pink Petal + + +Pinkie + + Piou Piou @@ -6398,11 +6827,11 @@ Piou und das Fluffy Piou egg Piou Ei -Piousse -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse +Piousse Player '%s' (session #%d) | Location: %d,%d Spieler '%' (Sitzung #%d) | Standort: %d,%d @@ -6605,8 +7034,8 @@ Bitte Spielernamen eingeben (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). Bitte Spielernamen eingeben (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). -Bitte eine Position und eine Anzahl eingeben (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). + Please enter a quest skill ID. Bitte gib eine Questfähigkeiten ID ein. @@ -6758,6 +7187,9 @@ Wähle ein Kapitel aus: Please select a quest: Bitte wähle eine Quest: +Please select an option: + + Please select the interval: Bitte wähle das Intervall: @@ -6770,6 +7202,9 @@ Bitte nimm diese @@ für deine Hilfe. Please try to figure out what went wrong with this order and bring me those potions. Bitte versuche, herauszufinden, was mit der Bestellung schief ging, und bring mir diese Tränke. +Please write the following sentence: + + Please, have a seat. Bitte, setz dich. @@ -6794,6 +7229,12 @@ Plushrooms sagst du? Poem about Poems Gedicht über Gedichte +Poem is making the words dance + + +Poison Skull + + Poisoned Dish Vergiftetes Gericht @@ -6815,6 +7256,12 @@ Priester Princess Slayer Prinzessinen Mörder +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor Professor @@ -6830,14 +7277,14 @@ Kürbis Pumpkin Hat Kürbishut +Pumpkin Juice + + Pumpkin Seeds Kürbiskerne -Pumpkish -Pumpkish +PumpkinMob -Pumpkish Juice -Pumpkish Saft Purple Blobime Lila Blobime @@ -6896,6 +7343,9 @@ Quest Debug Quest state: @@ Quest Status: @@ +Quest state: @@, @@ + + Quit Beenden @@ -6941,6 +7391,9 @@ RattosController RattosControl#001-2-23 RattosControl#001-2-23 +Raw Log + + Read it. Lies es. @@ -7091,6 +7544,12 @@ Königsgardist T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. Rumly versteckt sich hinter einem Baum. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Angesetzte Ankündigungen Scheduled broadcasts - Create new Angesetzte Ankündigungen - neu erstellen +Scorpion + + Script could not be loaded. Skript konnte nicht geladen werden. @@ -7154,6 +7625,9 @@ Skript geladen. Scripts have been reloaded. Skripte wurden neu geladen. +Scythe + + Sea Drops Meerestropfen @@ -7289,6 +7763,9 @@ Schattenjäger Shadow Chaser T Schattenjäger T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Sie ist ein gute Freundin von mir ... Wir wollten ein paar Wochen vor ihrem Unfall heiraten, aber ... @@ -7385,6 +7862,15 @@ Schild#001-1-s-Handelsgilde Sign#001-1-s-warehouse Schild#001-1-s-Lagerhalle +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye Silberne Baumwoll Farbe @@ -7439,6 +7925,9 @@ Fähigkeiten wurden auf dieser Karte aktiviert. Slave clone spawned. Sklavenklon erschaffen. +Sleep well my angel but don't follow along + + Small Tentacles Kleine Tentakeln @@ -7475,6 +7964,9 @@ Darum wollten wir dich warnen. Vielleicht kommt er aus dieser Gilde. Zumindest w So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 Darum wollten wir dich warnen. Vielleicht kommt sie aus dieser Gilde. Zumindest war das Zeichen auf seinem Floß. +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 Du glaubst also, stark zu sein? Ein Krieger muss aber ebenso loyal und freundlich sein. @@ -7664,6 +8156,12 @@ Geschwindigkeit wieder normal. Spend it wisely this time. Nutze es dieses Mal weise. +Spider + + +Spiky Mushroom + + Spying on the %s guild. Spioniert in der %s Gilde. @@ -7673,6 +8171,9 @@ Spioniert in der %s Gruppe. Squichy Claws Squichyklauen +Squirrel + + Stalker Stalker @@ -7766,6 +8267,9 @@ Stärke (Str) erhöht den Schaden, den du anrichtest, speziell mit Nahkampfwaffe Stupid yeye... Blöder yeye... +Styling Shop + + Subquests: Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman Schwertkämpfer +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! DAS IST EIN SCHÖNER NAME! @@ -7844,8 +8351,8 @@ Nimm dieses Geld, als Belohnung für deine weise Entscheidung. Versuch es aber n Take your reward from the box next to my desk! Nimm deine Belohnung aus der Kiste neben meinem Tisch! -Talk to FightNPCName and he'll show you the ropes. -Rede mit FightNPCName, er wird dich einweisen. +Talk to Hector and he'll show you the ropes. + Talk to you later! Spreche dich später! @@ -7961,6 +8468,9 @@ Danke für die Hilfe! Thanks! Danke! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. Dieser Teil der Stadt wird Gildenberg genannt. Hier hat unter anderem die Händlergilde ihr Hauptquartier. @@ -7982,6 +8492,9 @@ Das ist genau, was ich gebraucht habe! That's good to hear! Das ist schön zu hören! +That's not the question + + That's perfect, yoiis.#0 Das ist perfekt, yoiis.#0 @@ -8003,6 +8516,9 @@ Das @@ ist ein besonderer Gegenstand. Du kannst es benutzen, sooft du willst, a The Book of Laws Das Grundgesetz +The Fluffy seized it and said: + + The Legion needs some potions. Die Legion braucht ein paar Tränke. @@ -8018,9 +8534,24 @@ Die Legion von Gasaron ist für die Innere Sicherheit in unseren Städten verant The Legion? Die Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. Die Raijin aus der Bücherei hat vor einer Weile mit mir angebandelt, genau wie Enora von der Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. Die Antwort ist ein einzelnes Wort ohne Konjugation. @@ -8039,9 +8570,15 @@ Der Käpt'n wartet auf dich! Beeil dich. The captain wants: Der Käptain will: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! Die Kontrolle und Regierungshoheit der Städte ändert sich von Zeit zu Zeit. Anstatt uns könntest du zum Beispiel mal den Mana-Orden oder die Bruderschaft im Rathaus sehen. +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. Die Detailtreue und die Handwerkskunst, die dieses Schwert aufweist, kann nur von den erfahrensten Schmieden erreicht werden. @@ -8060,12 +8597,18 @@ Die Furcht davor, sie schlafend auf diesem einsamen Bett zu sehen, fast wie tot, The fee is of @@ E. So, do you want to register? Es kostet nur @@E. Also, willst du dich registrieren? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. Auf der ersten Seite stehen die allgemeingültigen Regeln, die überall auf den Kontinenten gelten. The first thing you should do is to evaluate your enemy. Das Erste was du tun solltest, ist deinen Feind zu beurteilen. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. Der Nebel ist verschwunden @@ -8090,11 +8633,11 @@ Der Hügel befindet sich im Nordosten von Artis. The holy messenger has given judgement. Der heilige Richter hat sein Urteil gefällt. -The item (%d: '%s') is not equipable. -Der Gegenstand (%d: '%s') ist nicht ausrüstbar. +The item (%d: '%s') is not equippable. + + +The item is not equippable. -The item is not equipable. -Der Gegenstand ist nicht ausrüstbar. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. Der leichte Rüstungsshop wird von Resa betrieben. Sie ist Mitglied der Handelsgilde von Artis. @@ -8117,12 +8660,21 @@ Das Wunder ist: Je mehr wir teilen, desto mehr haben wir. The monster/egg name/ID doesn't exist. Das Monster/Der Ei-name/Die ID existiert nicht. -The name of the book is @@. -Das Buch trägt den Titel @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". + The newly created Fleet of Ancea travelled so far that they were never heard from again. Die neu entstandene Flotte von Ancea segelte weit fort. Niemand hat je wieder von ihnen gehört. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia Die nächste Seite behandelt die komplexen Handelsregulierungen in der Stadt Esperia. @@ -8171,12 +8723,18 @@ Der blinde Passagier antwortet nicht. The travel was fine for you? It was terrible for me, I was sea-sick. Hat dir die Reise gefallen? Mir nicht; Ich bin seekrank geworden. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. Die beiden können nicht heiraten, da ein Partner entweder bereits verheiratet, oder ein Baby ist. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! Der Eindringling wurde bestraft! Das ist ein großartiger Tag! Nimm diese Belohnung als ein Zeichen für deine Loyalität dem alten Kommander gegenüber! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Ihre Anführer einigten sich dann darauf, dass eine Allianz der einzige Weg war, um zu überleben. @@ -8306,6 +8864,12 @@ Sie sind sooo lecker, wenn man sie zusammen mit einigen @@ kocht. Also lass ja k They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. Nach vielen Mühen und Entbehrungen fanden sie schließlich ein neues Land. Sie nannten es Aurora, benannt nach dem wunderschönen Sonnenuntergang. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. Sie segelten von Hurnscald nach Tulimshar und schließlich nach Nivalis, der abgelegensten der menschlichen Siedlungen. @@ -8342,6 +8906,9 @@ Dieser NPC existiert nicht. This action can't be performed at the moment. Please try again later. Diese Aktion kann momentan noch nicht ausgeführt werden. Bitte versuche es später nochmal. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! Dieses Buch enthält alles, was du darüber wissen solltest. Nimm es! @@ -8387,6 +8954,9 @@ Dies ist die Drasilinsel. Sie wurde nach einem sagenumwobenen mystischen Baum be This is a harsh word to use, you are never alone in the beautiful place of Artis. Das sind harte Worte. Du bist niemals allein, in dem wunderschönen Ort von Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Dies ist eine @@, eine hellblaue Seefrucht. Diese sind in den Archipelen heiß begehrt. @@ -8414,6 +8984,9 @@ Dieses Item kannst du nicht tauschen. This item cannot be used as bait here. Dieser Gegenstand kann hier nicht als Köder verwendet werden. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ Auf solche Reden solltest du nicht allzuviel geben, aber ich stimme zu und bedau This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 Auf solche Reden solltest du nicht allzuviel geben, aber ich stimme zu und bedaure meine eigene Skepsis. Behalt ihn einfach im Auge. +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. Dieses Menü erlaubt es, deine Fähigkeiten zu ändern. @@ -8492,6 +9068,9 @@ Dieser Spieler ist nicht im Gefängnis. This player is now Dieser Spieler ist nun +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. Diese Fähigkeitennummer existiert nicht, oder es ist keine Quest Fähigkeit. @@ -8504,6 +9083,9 @@ Das wird dein Auferstehungspunkt bleiben, bis du ihn woanders platzierst. Three Castles Drei Burgen +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ Nutze diesen Befehl zur Änderung deines Job-Levels: To change your stats, use these commands: Benutze diese Befehle zur Änderung deiner Statuspunkte: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. Um mit dem Angeln zu beginnen, braucht es zwei Dinge: Eine Angel und einen Köder. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Um dein Inventar zu öffnen, drücke die F3-Taste oder nutze die Maus, um es im oberen Menü deines Clients auszuwählen. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ Um einen Fisch erfolgreich zu fangen, musst du die Angel durch Klicken anschlage To thank you, accept my old fishing rod. Als Belohnung möchte ich dir meine alte Angel geben. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Zu schade. Ich bin nicht hungrig genug für deine Art von Keksen. Vielleicht kom Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. Oooh schade... Komm wieder wenn zu ausgesuchtes Essen für mich hast. *magenknurr*... *grummel*... *râler*...*brumm*. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. Zu riskant, ich könnte im Knast landen. Mach das gefälligst selbst. +Topaz + + +Topaz Shard + + Toppy Blub Toppy Blub @@ -8618,6 +9233,9 @@ Handel Training Arrow Trainingspfeil +Training Wand + + TrainingGladius ÃœbungsKurzschwert @@ -8627,12 +9245,18 @@ Verwandlung in ein Monster ist im Gildenkampf nicht erlaubt. Treasure Chest Schatzkiste +Tree Control Panel + + Tritan Voice Tritan-Stimme Trozz#001-2-40 Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 Stimmt, aber jetzt sieht er ziemlich gesund aus! Stimmts? @@ -8693,6 +9317,9 @@ Hm, tschüß. Uhm... Your story seems... Mhh... Deine Geschichte scheint... +Unable to Teleport in this area + + Unable to decrease the number/value. Der Wert kann nicht verringert werden. @@ -8705,6 +9332,9 @@ Nicht in der Lage, bösen Klon zu spawnen. Unable to spawn slave clone. Nicht in der Lage Sklavenklon zu spawnen. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Verstanden, ich werde dir helfen. @@ -9377,9 +10007,18 @@ Was? Warum? Sie sind nicht attraktiver als ich, warum willst du sie sehen? What?! This tritan is the worse shirker I ever met! Was?! Dieser tritan ist der schlimmste Drückeberger, den ich jemals getroffen habe. +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. Wenn du dich einem Einwohner näherst, siehst du eine Sprechblase über ihm. Dann kannst du mit ihm reden, indem du "T" drückst. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Wenn du etwas siehst, das mehr wie ein Fehler statt einer Funktion aussieht, berichte es auf http://bugs.evolonline.org oder versuche einen Mitwirkenden vom Spiel zu kontaktieren. @@ -9470,6 +10109,9 @@ Nach wem soll ich suchen? Who's this Julia? Wer ist diese Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Warum Franzose? Er ist ein Russe! @@ -9512,6 +10154,9 @@ Warum? Why? And who should you bring it back to? Warum? Und wem solltest du es zurückbringen? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... Wind und Gras sind freundlich und kühl, so fruchtig süß... @@ -9521,12 +10166,18 @@ Mit Hunger, Durst und Schlaf als eine einzigen Verbündeten kommt dir auf einmal With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. Mit gutem Training kann ein Piou ein guter Freund und treuer Begleiter auf deinen Abenteuern werden. With script Mit Script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. MIt der Hilfe der Behörden und der Legion von Aemil organisieren wir Auktionen und helfen ortsansässigen Händlern, ihr Geschäft zum Laufen zu bringen. @@ -9542,6 +10193,21 @@ Holzbogen Wooden Sword Holzschwert +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Wow, ich glaube jeder kennt meinen Namen! @@ -9731,6 +10397,9 @@ Du bist schon registriert. Warte bitte auf deinen Partner... You already took a @@, please put this one back in the box. Du hast bereits ein @@ genommen, leg dieses bitte zurück in die Kiste. +You are a handsome and good looking bird! + + You are already mounting something else Du reitest bereits etwas anderes. @@ -9758,6 +10427,12 @@ Du bist im Haus des Schmieds, bei Jove! You are just sitting on the shadow of your store. Du sitzt nur im Schatten deines Geschäftes. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 Du bist neu in der Gegend, nicht wahr? @@ -9818,6 +10493,9 @@ Du erwachst auf einem Floß, abgetrieben, auf dem Meer. You are on the human resource wing of the Town Hall. Du bist im Personalflügel des Rathauses. +You are the Phoenix of this forest." + + You are unable to change your job. Du kannst deinen Job nicht ändern. @@ -9959,6 +10637,9 @@ Du kannst auf dieser Karte keine Gegenstände fallenlassen. You can't go there! Dort kannst du nicht hingehen! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. Du kannst ins Kampfgeschehen verwickelte Gilden nicht verlassen. @@ -9977,12 +10658,21 @@ Du kannst auf dieser Karte nicht handeln You can't use commands while dead. Du kannst keine Befehle benutzen, während du tot bist. +You can't use the shovel here. +Du kannst die Schaufel hier nicht benutzen. + You can't withdraw that much money Du kannst nicht soviel Geld abheben. You cannot autotrade when dead. Du kannst nicht auto-handeln, während du tot bist. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. Du kannst die Gildenleiter auf dieser Karte nicht ändern. @@ -10295,8 +10985,8 @@ Du entdeckst einen kleinen Jungen, der auf einem der höchsten Äste des Baumes You now also have access to the Legion building. Good job, you earned it. Du hast nun auch Zugang zum Gebäude der Legion. Gute Arbeit, das hast du dir verdient. -You open a book named @@. -Du öffnest ein Buch mit dem Titel @@. +You open a book named "%s". + You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. Du öffnest das Buch, aber es sieht durch das Meerwasser sehr mitgenommen aus. Einige Seiten sind überhaupt nicht mehr lesbar. Andere fehlen komplett. @@ -10346,6 +11036,9 @@ Du siehst ein verstaubtes Buch hinten im Regal... You see a raijin boy, sitting on the edge of the dock. Du siehst einen Raijin Jungen, der an der Ecke des Docks sitzt. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. Du siest ein junges Elfenmädchen mit schmerzverzerrtem Gesicht. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data data @@ @@ @@ data @@ -10859,6 +11555,9 @@ Füße, fisherman Angler +foo %2$s bar %1$s baz + + garment, Gewand, @@ -10949,18 +11648,51 @@ rechte Hand, skill %d: %s (%s) Fähigkeit %d: %s (%s) +test + + +test %s + + test @@ test @@ +test#0 + + +test#1 + + test1 test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 Test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, Kopfbedeckung, +tricked thus again. + + unban entsperren diff --git a/langs/lang_en.old b/langs/lang_en.old index 96e8a212..bf96c173 100644 --- a/langs/lang_en.old +++ b/langs/lang_en.old @@ -46,6 +46,9 @@ - QMuller - QMuller +- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if binded) + . . @@ -1168,6 +1171,9 @@ Elven Voice Emo Emo +Enora asks to kill fluffys +Enora asks to kill fluffys + Enora from the Legion of Aemil has been warned that you were aboard. Enora from the Legion of Aemil has been warned that you were aboard. @@ -1852,6 +1858,9 @@ I can't really help you to find them myself, I've been checking the... Hmm... La I can't remember anything. I can't remember anything. +I can't use the shovel here. +I can't use the shovel here. + I cannot find the word to express my gratitude for your hard work. I cannot find the word to express my gratitude for your hard work. @@ -3664,6 +3673,9 @@ Piou Slayer Pious legs Pious legs +Planting not implemented. +Planting not implemented. + Please bring me some @@ so I can pull out these spikes from my foot. Please bring me some @@ so I can pull out these spikes from my foot. @@ -3673,6 +3685,9 @@ Please don't tell people that you've seen me. I don't want to be thrown in the s Please don't tell people you saw me. I don't want to be decapitated or get thrown into the sea as food for sharks, at least not again! Please don't tell people you saw me. I don't want to be decapitated or get thrown into the sea as food for sharks, at least not again! +Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). + Please find the small chest, buried somewhere on Artis Hill. Please find the small chest, buried somewhere on Artis Hill. @@ -3718,6 +3733,12 @@ Pull! Pumpkin Seeds Pumpkin Seeds +Pumpkish +Pumpkish + +Pumpkish Juice +Pumpkish Juice + Punk Punk @@ -4174,6 +4195,9 @@ Take this money for your wise choice. But do not try it again. Water has been me Take this money for your wise choise. But do not try it again. Water has been mercifull with you once...Do not tempt fate twice! Take this money for your wise choise. But do not try it again. Water has been mercifull with you once...Do not tempt fate twice! +Talk to FightNPCName and he'll show you the ropes. +Talk to FightNPCName and he'll show you the ropes. + Talk with Lloyd the Banker in the Merchant Guild, it's a big building at the northern part of Artis, at the top of the small hill. Talk with Lloyd the Banker in the Merchant Guild, it's a big building at the northern part of Artis, at the top of the small hill. @@ -4381,6 +4405,12 @@ The guild is in charge of the commerce regularization throughout Artis and its s The hidden person doesn't answer. The hidden person doesn't answer. +The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equipable. + +The item is not equipable. +The item is not equipable. + The market is located at the south-east of Artis, it is known as Merchant Guild's exhibit. The market is located at the south-east of Artis, it is known as Merchant Guild's exhibit. @@ -4396,6 +4426,9 @@ The miracle is this: the more we share the more we have. The music of the trees floats through the breeze The music of the trees floats through the breeze +The name of the book is @@. +The name of the book is @@. + The piou costs @@E The piou costs @@E @@ -5638,6 +5671,9 @@ You need to be a member of the Merchant Guild to have a stand there. You need to walk north!! You need to walk north!! +You open a book named @@. +You open a book named @@. + You open the treasure chest. You open the treasure chest. diff --git a/langs/lang_en.txt b/langs/lang_en.txt index d7ff2593..f7dd80d4 100644 --- a/langs/lang_en.txt +++ b/langs/lang_en.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. +"Mister Piou, good day to you. + +"My good Sir, +"My good Sir, + +##BWARNING:##b you are about to permanently empty the quote database. +##BWARNING:##b you are about to permanently empty the quote database. + +% 10s +% 10s + +% 5d +% 5d + +%% +%% + +%+5d +%+5d + +%-10s +%-10s + +%-5d +%-5d + +%05d +%05d + +%10s +%10s + +%5d +%5d + %d - void %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. %d results found. +%d%% +%d%% + %d: Body Armor %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear %d: Top Headgear +%s +%s + +%s %d %s +%s %d %s + +%s %s %s +%s %s %s + %s :Main: %s %s :Main: %s @@ -371,8 +419,8 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) +- unbinds your global chat from its attached channel (if bound) -- %s -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options -- Available options +-- Continues on Volume II -- +-- Continues on Volume II -- + +-- Continues on Volume III -- +-- Continues on Volume III -- + +-- Continues on Volume IV -- +-- Continues on Volume IV -- + -- Displaying first %d partial matches -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. ... and 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + ...I mean log! Made of log! ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> +<MSG>2949</MSG> + +<MSG>2950</MSG> +<MSG>2950</MSG> + +<MSG>3455</MSG> +<MSG>3455</MSG> + +<MSG>3456,%d</MSG> +<MSG>3456,%d</MSG> + @@ @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2014 Evol Online A GM has discharged you from jail. A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + A cookie! A cookie! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + A rabbit! A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem +Able to write a poem + Aboard stand sailors trying to communicate with you. Aboard stand sailors trying to communicate with you. Abort Abort +Abort! +Abort! + About the Legion of Aemil, I'm not sure about them, frankly. About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + Aesop Aesop @@ -641,9 +728,15 @@ After choosing your weapon, you also need to know how to use it. After that, stay still and be patient, but also alert! After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + After this small overview of Artis, what do you think of our city? After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + Agi: %d (%d~%d) Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis AligeTrigger#Artis +Alizarin Herb +Alizarin Herb + +Alizarin Plant +Alizarin Plant + All characters recalled! All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + All skills have been added to your skill tree. All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. Although, if you want to visit a place nearby, we could take you there. +Amethyst +Amethyst + +Amethyst Shard +Amethyst Shard + Amount? Amount? @@ -839,12 +947,21 @@ And now I want to see you run! And now I'm a sailor, as you can see! And now I'm a sailor, as you can see! +And rhyming is not too +And rhyming is not too + And so far, the Merchant Guild helped me find this appartment so I can't complain! And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? And then what happened? +And to demonstrate his beautiful voice, +And to demonstrate his beautiful voice, + +And tried to attract him thus. +And tried to attract him thus. + And what would you give me in exchange for that information? And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ And you? How's it going on your side? And you? How's it yaying on your side? And you? How's it yaying on your side? +Animals Protection Agency of Aemil +Animals Protection Agency of Aemil + Any clue on where Astapolos may be hidden? Any clue on where Astapolos may be hidden? @@ -1040,6 +1160,9 @@ Artis of course! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer +As on anvil strikes the hammer + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled Auction is disabled +Auto loot item are disabled on this map. +Auto loot item are disabled on this map. + Autoloot is now off. Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song +Because the voices of death sing a sweet song + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee +Bee + Before I joined Nard, I used to be a thief. Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Before... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum +Bent trees whistling with the beat of the drum + Besides, I need to be here to watch out for thieves while La Johanne is docked. Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers Brown Trousers +Bug Leg +Bug Leg + Bury. Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet. +Butterfly +Butterfly + By the way, I'm Lozerk. Lieutenant Lozerk. By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou Catching a piou +Cave Maggot +Cave Maggot + Ch 1 — Fishing apparatus Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | Clouds2 | +Clover Patch +Clover Patch + Clown Clown +Coal +Coal + +Coal Vein +Coal Vein + +Cobalt Herb +Cobalt Herb + +Cobalt Plant +Cobalt Plant + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward Completed, got reward +Confused Tree +Confused Tree + Congrats, you are now part of the crew. Thanks again for your help. Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Cookies provide you strength, health and cuteness. Copper Armbands Copper Armbands +Copper Necklace +Copper Necklace + Coral Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree Crocotree +Crude Amethyst +Crude Amethyst + +Crude Diamond +Crude Diamond + +Crude Emerald +Crude Emerald + +Crude Ruby +Crude Ruby + +Crude Sapphire +Crude Sapphire + +Crude Topaz +Crude Topaz + Crusader Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom Curshroom +CvC ON | +CvC ON | + +CvC is already Off. +CvC is already Off. + +CvC is already On. +CvC is already On. + +CvC: Off +CvC: Off + +CvC: On +CvC: On + DO YOU FEEL BETTER?! DO YOU FEEL BETTER?! @@ -2081,6 +2279,9 @@ Dan keeps silent since your last question. Dan#000-2-1 Dan#000-2-1 +Dance for me +Dance for me + Dancer Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Darlin +Database erased. +Database erased. + Day Mode Activated. Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. Dexterity increases your bow damage and your accuracy. +Diamond +Diamond + +Diamond Shard +Diamond Shard + +Diamond Vein +Diamond Vein + Did you find my brother? Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + Do nothing Do nothing @@ -2237,6 +2453,9 @@ Do you have anything else for me? Do you have anything for me today? Do you have anything for me today? +Do you know anything about the recent robberies? +Do you know anything about the recent robberies? + Do you know how to speak with people around you? Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Do you want me to go see her instead of you? +Do you want to continue? +Do you want to continue? + Do you want to cut this @@? Do you want to cut this @@? +Do you want to enter in sewer? +Do you want to enter in sewer? + Do you want to go somewhere? Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 Don#001-2-27 +Don't be shy, you are nice +Don't be shy, you are nice + Don't belittle me, my work is deserving of the highest esteem. Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + Duel| Can't use %s in duel. Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors Elmo#sailors +Emerald +Emerald + +Emerald Shard +Emerald Shard + +Empty Bottle +Empty Bottle + +Empty Mug +Empty Mug + +Empty the quote DB +Empty the quote DB + Enable Enable @@ -2534,8 +2780,8 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. Enjoy your new style. -Enora asks to kill fluffys -Enora asks to kill fluffys +Enora asks to kill fluffies +Enora asks to kill fluffies Enora asks to visit Chelios Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them +Find an order with them + Find yourself a nice dry spot on a coast where you can easily reach into deep water. Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? For what kind of tissue? +Forest Armor +Forest Armor + +Forest Maggot +Forest Maggot + Found @@, got exp Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + Fresh from the sea and cheap! Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice +From your mind, break the ice + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + Frostiana Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. Gained zeny will not be shown. +Gamboge Herb +Gamboge Herb + +Gamboge Plant +Gamboge Plant + Game introduction Game introduction @@ -2939,6 +3209,9 @@ Give me back this dish, you dirty liar! Give me some space. Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. Go on. +Gold Nuggets +Gold Nuggets + +Gold Vein +Gold Vein + Good day miss. Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp Grass Carp +Grass Snake +Grass Snake + Great to see you! What can I do for you today? Great to see you! What can I do for you today? @@ -3065,6 +3347,9 @@ Great, what food do you have for me today? Green Cotton Dye Green Cotton Dye +Green Slime +Green Slime + Greetings traveler.#0 Greetings traveler. @@ -3221,6 +3506,9 @@ Half Croconut Half Eggshell Half Eggshell +Hard Spike +Hard Spike + Hard work always pays off! Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? Have you seen anything dangerous? +Have you seen anything strange lately? +Have you seen anything strange lately? + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. He needs more food. +He opened his mouth wide and let drop his prey. +He opened his mouth wide and let drop his prey. + He said he is going to climb the highest hill in Artis, which is not far from here. He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation Heard conversation +Hearing these words the Piou felt great joy, +Hearing these words the Piou felt great joy, + Hehe! Hehe! @@ -3572,6 +3869,9 @@ Hmm... Let's see, take this one. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* +Holding a cheese in his beak. +Holding a cheese in his beak. + Homunculus growth stats (Lv %d %s): Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + However... However... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods +Hush now and hear the chorus of the woods + I ALSO AVOID THE DANGEROUS ANIMALS! I ALSO AVOID THE DANGEROUS ANIMALS! @@ -3794,9 +4100,6 @@ I can't remember anything. I can't stay here and talk all day. I have a job to do. I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. -I can't use the shovel here. - I can't wait all day! I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! If I saw *hic* who you were... *hic* Would not have helped you! +If not, how could CrazyKatiektch +If not, how could CrazyKatiektch + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm +If words beat in rhythm + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! If you continue there will be none left! +If you don't like to +If you don't like to + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ In fact, everything seems to work perfectly under your guidance. Nard has made t In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + +In truth, if your song is as beautiful as your plumage, +In truth, if your song is as beautiful as your plumage, + Incorrect name/ID, or no one from the specified guild is online. Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. Invalid time for jail command. +Invalid! +Invalid! + Invisible: Off Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands Iron Armbands +Iron Ore +Iron Ore + Iron Shovel Iron Shovel +Iron Vein +Iron Vein + Is it possible to go back to Drasil Island? Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! Is this some kind of joke?! +It doesn't reply. +It doesn't reply. + It escaped! It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! +It's the good one and, ahem! + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling +Just say something sparkling + Kagerou Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl. Keep the sword and the jacket, you deserved them! Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + Khaki Cotton Dye Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Knife Knight Knight +Know that every flatterer, +Know that every flatterer, + Kralog Voice Kralog Voice Lachesis Brew Lachesis Brew +Last seen: +Last seen: + Last time I saw you, you were lost at sea on your raft.#0 Last time I saw you, you were lost at sea on your raft. @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. Line @@ has been removed. +List the commands +List the commands + Little Blub Little Blub +Little Green Slime +Little Green Slime + +Lives at the expense of those who take him seriously: +Lives at the expense of those who take him seriously: + Living inside a ship is great, but we sometimes need some fresh air. Living inside a ship is great, but we sometimes need some fresh air. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. Locked. +Log Head +Log Head + Logic is the beginning of wisdom, not the end. Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot +Maggot + +Maggot Slime +Maggot Slime + Magic Arpan Magic Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male Male +Mana Bug +Mana Bug + +Mana Torch +Mana Torch + Manana Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. Map not found. +Map or anchor not found: %s +Map or anchor not found: %s + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. Marriage failed. +Master Fluffy was attracted by the odour, +Master Fluffy was attracted by the odour, + +Master Piou sat on a tree, +Master Piou sat on a tree, + Mauve Cotton Dye Mauve Cotton Dye +Mauve Herb +Mauve Herb + +Mauve Plant +Mauve Plant + Max HP: %d (%d~%d) Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! Mostly manuals and tutorials but you won't find out until you open one! +Mouboo +Mouboo + Mouboo#Artis0 Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. No longer spying on the %s party. +No matter the grammar +No matter the grammar + +No matter the spelling +No matter the spelling + No matter what people tell you, words and ideas can change the world. No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ No. No. Sorry. No. Sorry. +NoAutoloot | +NoAutoloot | + NoBaseEXP | NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, LOOK THERE! OK, let's trade. OK, let's trade. +Oak +Oak + Oboro Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! Oh noes! +Oh noes! You found my secret backdoor! +Oh noes! You found my secret backdoor! + Oh oh... I see, your party became so big that you want to create an even larger structure? Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night +Over lovers under a starry night + Ow-oh! Ow-oh! @@ -6371,15 +6782,33 @@ Piberries Piberries Infusion Piberries Infusion +Pickaxe +Pickaxe + Pikpik Pikpik +Pile Of Ash +Pile Of Ash + +Pink Antennae +Pink Antennae + Pink Blobime Pink Blobime Pink Cotton Dye Pink Cotton Dye +Pink Flower +Pink Flower + +Pink Petal +Pink Petal + +Pinkie +Pinkie + Piou Piou @@ -6398,12 +6827,12 @@ Piou and The Fluffy Piou egg Piou egg +Pious must keep a strict diet composed of Piberries. +Pious must keep a strict diet composed of Piberries. + Piousse Piousse -Planting not implemented. -Planting not implemented. - Player '%s' (session #%d) | Location: %d,%d Player '%s' (session #%d) | Location: %d,%d @@ -6605,8 +7034,8 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: Please select a quest: +Please select an option: +Please select an option: + Please select the interval: Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: +Please write the following sentence: + Please, have a seat. Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems Poem about Poems +Poem is making the words dance +Poem is making the words dance + +Poison Skull +Poison Skull + Poisoned Dish Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer Princess Slayer +PrivateAirshipEndable | +PrivateAirshipEndable | + +PrivateAirshipStartable | +PrivateAirshipStartable | + Professor Professor @@ -6830,14 +7277,14 @@ Pumpkin Pumpkin Hat Pumpkin Hat +Pumpkin Juice +Pumpkin Juice + Pumpkin Seeds Pumpkin Seeds -Pumpkish -Pumpkish - -Pumpkish Juice -Pumpkish Juice +PumpkinMob +PumpkinMob Purple Blobime Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ Quest state: @@ +Quest state: @@, @@ +Quest state: @@, @@ + Quit Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 RattosControl#001-2-23 +Raw Log +Raw Log + Read it. Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby +Ruby + +Ruby Shard +Ruby Shard + Rumly is hiding behind the tree. Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire +Sapphire + +Sapphire Shard +Sapphire Shard + +Say her love to glamourous Gliktch? +Say her love to glamourous Gliktch? + Scheduled broadcasts Scheduled broadcasts Scheduled broadcasts - Create new Scheduled broadcasts - Create new +Scorpion +Scorpion + Script could not be loaded. Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. Scripts have been reloaded. +Scythe +Scythe + Sea Drops Sea Drops @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T Shadow Chaser T +Share your mind is your mission +Share your mind is your mission + She is a good friend of mine... We wanted to marry a few weeks before her accident but... She is a good friend of mine... We wanted to marry a few weeks before her accident but... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse Sign#001-1-s-warehouse +Silk Cocoon +Silk Cocoon + +Silk Robe +Silk Robe + +Silkworm +Silkworm + Silver Cotton Dye Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. Slave clone spawned. +Sleep well my angel but don't follow along +Sleep well my angel but don't follow along + Small Tentacles Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft. +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + So you think you're tough? A warrior must also be loyal and patient.#0 So you think you're tough? A warrior must also be loyal and patient. @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. Spend it wisely this time. +Spider +Spider + +Spiky Mushroom +Spiky Mushroom + Spying on the %s guild. Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws Squichy Claws +Squirrel +Squirrel + Stalker Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Stupid yeye... +Styling Shop +Styling Shop + Subquests: Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman Swordsman +Swore, though somewhat later, that he would never be +Swore, though somewhat later, that he would never be + THAT'S A NICE NAME! THAT'S A NICE NAME! @@ -7844,8 +8351,8 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Take your reward from the box next to my desk! -Talk to FightNPCName and he'll show you the ropes. -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! Talk to you later! @@ -7961,6 +8468,9 @@ Thanks for the help! Thanks! Thanks! +That makes everybody +That makes everybody + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! That's good to hear! +That's not the question +That's not the question + That's perfect, yoiis.#0 That's perfect, yoiis. @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws The Book of Laws +The Fluffy seized it and said: +The Fluffy seized it and said: + The Legion needs some potions. The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + +The Piou, embarrassed and confused, +The Piou, embarrassed and confused, + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + +The Ukar Historical Association on Aemil +The Ukar Historical Association on Aemil + The answer is a single word, without conjugation. The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ The captain is waiting for you! Hurry up. The captain wants: The captain wants: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ The fear to see her sleeping on this quiet and lonely bed is becoming more and m The fee is of @@ E. So, do you want to register? The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + The first page contains the universal rules that have been agreed upon throughout the land. The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. The first thing you should do is to evaluate your enemy. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + The fog has gone. The fog has gone. @@ -8090,11 +8633,11 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. +The item (%d: '%s') is not equippable. -The item is not equipable. -The item is not equipable. +The item is not equippable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. The monster/egg name/ID doesn't exist. -The name of the book is @@. -The name of the book is @@. +The music of the trees floats through the breeze +The music of the trees floats through the breeze + +The name of the book is "%s". +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + The next page begins to list the complex trading laws of the City of Esperia The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + The two cannot wed because one is either a baby or already married. The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + Their leaders then came to the conclusion that an alliance was the only way they could survive. Their leaders then came to the conclusion that an alliance was the only way they could survive. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + This book contains everything you should know about it, take it! This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." +This is a lesson that is worth a cheese no doubt." + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. This is an @@, a light blue sea fruit. They're highly desired in the archipelago. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. This item cannot be used as bait here. +This item cannot be used within this area. +This item cannot be used within this area. + This job has no alternate body styles. This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him. +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + This menu allows you to change your skills. This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now This player is now +This skill cannot be used within this area. +This skill cannot be used within this area. + This skill number doesn't exist or isn't a quest skill. This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + Tibbo Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: To change your stats, use these commands: +To de-trust a player: +To de-trust a player: + +To get a quote: +To get a quote: + To get started with fishing, you'll need two things: a fishing rod and a bait. To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: To get the current rate: +To grab a quote: +To grab a quote: + +To ignore a player: +To ignore a player: + To move between characters that are on different accounts, you have to use the Trade function. To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + +To remove a quote: +To remove a quote: + To reset back to normal: To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. To thank you, accept my old fishing rod. +To trust a player: +To trust a player: + +To unignore a player: +To unignore a player: + ToFightRoom#001-2-32 ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. +Too lazy. + Too risky, I might end up in jail. Do it yourself. Too risky, I might end up in jail. Do it yourself. +Topaz +Topaz + +Topaz Shard +Topaz Shard + Toppy Blub Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow Training Arrow +Training Wand +Training Wand + TrainingGladius TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest Treasure Chest +Tree Control Panel +Tree Control Panel + Tritan Voice Tritan Voice Trozz#001-2-40 Trozz#001-2-40 +True be or not true be +True be or not true be + True but now he seems pretty fine! Am I right?#1 True but now he seems pretty fine! Am I right? @@ -8693,6 +9317,9 @@ Uhm, bye. Uhm... Your story seems... Uhm... Your story seems... +Unable to Teleport in this area +Unable to Teleport in this area + Unable to decrease the number/value. Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + Understood, I will help you. Understood, I will help you. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! What?! This tritan is the worse shirker I ever met! +Whatever inside can be +Whatever inside can be + +Whatever your idea +Whatever your idea + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. @@ -9470,6 +10109,9 @@ Who should I search for? Who's this Julia? Who's this Julia? +Whose eyes listen under Moonlight +Whose eyes listen under Moonlight + Why Frenchy? It's a Russian!#0 Why Frenchy? It's a Russian! @@ -9512,6 +10154,9 @@ Why? Why? And who should you bring it back to? Why? And who should you bring it back to? +Wicked Mushroom +Wicked Mushroom + Wind and grass is nice and cool, so juicy sweet... Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung +With no choir master nor voice to be sung + With proper training, a piou can become a good friend and faithful companion in your adventures. With proper training, a piou can become a good friend and faithful companion in your adventures. With script With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword Wooden Sword +Words become music and glance +Words become music and glance + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + Wow, it seems everyone knows my name! Wow, it seems everyone knows my name! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! +You are a handsome and good looking bird! + You are already mounting something else You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 +You are lucky there are no mental faculty requirements to join the Legion! + +You are lucky there are no mental faculty requirements to join the Legion!#1 +You are lucky there are no mental faculty requirements to join the Legion! + You are new around here, right?#0 You are new around here, right? @@ -9818,6 +10493,9 @@ You are on a raft, adrift in the sea. You are on the human resource wing of the Town Hall. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." +You are the Phoenix of this forest." + You are unable to change your job. You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! You can't go there! +You can't join in a clan if you're in a guild. +You can't join in a clan if you're in a guild. + You can't leave battleground guilds. You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. You can't use commands while dead. +You can't use the shovel here. +You can't use the shovel here. + You can't withdraw that much money You can't withdraw that much money You cannot autotrade when dead. You cannot autotrade when dead. +You cannot bury this item! +You cannot bury this item! + +You cannot bury under a NPC! +You cannot bury under a NPC! + You cannot change guild leaders in this map. You cannot change guild leaders in this map. @@ -10295,8 +10985,8 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. -You open a book named @@. +You open a book named "%s". +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. You see a raijin boy, sitting on the edge of the dock. +You see a tree. +You see a tree. + You see a young elven girl, with a strong sense of pain in her face. You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt conf/import/msg_conf.txt +data %s %s %s data +data %s %s %s data + data @@ @@ @@ data data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman fisherman +foo %2$s bar %1$s baz +foo %2$s bar %1$s baz + garment, garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) skill %d: %s (%s) +test +test + +test %s +test %s + test @@ test @@ +test#0 +test + +test#1 +test + test1 test1 +test1 %s#0 +test1 %s + +test1 @@#0 +test1 @@ + +test1#0 +test1 + test2 test2 +test2 %s#1 +test2 %s + +test2 @@#1 +test2 @@ + +test2#1 +test2 + top head, top head, +tricked thus again. +tricked thus again. + unban unban diff --git a/langs/lang_es.old b/langs/lang_es.old index d6d5416b..bb673a05 100644 --- a/langs/lang_es.old +++ b/langs/lang_es.old @@ -28,6 +28,9 @@ hace años - 2 @@ - 2 @@ +- unbinds your global chat from its attached channel (if binded) +- desenlaza tu chat global del canal al que esté fijado (si está enlazado) + . . @@ -538,6 +541,9 @@ Elmo#sailors Elven Voice Voz de Elven +Enora asks to kill fluffys +Enora pide matar peluches + Enora from the Legion of Aemil has been warned that you were aboard. Enora, de la Legión de Aemil, ha sido informada de que estuviste a bordo. @@ -820,6 +826,9 @@ Te lo ruego, por favor, por favoooooooor... I can't help you to be on my list, nor can I give you a cookie for free. No te puedo ayudar a estar en mi lista, ni tampoco puedo darte una galleta gratis. +I can't use the shovel here. +No puedo usar la pala aquÃ. + I do not want to point my finger on someone. I just put my trust in you. I am sure you will be able to judge and solve this annoying problem. No quiero apuntar mi dedo sobre nadie. Sólo deposito mi confianza en ti. Estoy seguro de que serás capaz de juzgar y resolver este molesto problema. @@ -1600,6 +1609,9 @@ Por favor no le digas a la gente que me has visto, No quiero que me arrojen al m Please don't tell people you saw me. I don't want to be decapitated or get thrown into the sea as food for sharks, at least not again! Por favor, no le digas a la gente que me viste. No quiero ser decapitado o lanzado al mar como comida de tiburones, ¡al menos no de nuevo! +Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Por favor introduzca una posición y una cantidad (uso: @refine <equip position> <+/- amount>). + Please, don't tell people that you've seen me, I don't want to be thrown to sea as food for sharks or decapitated, not again! Por favor, no le digas a la gente que me has visto. No quiero ser lanzado al mar como comida para tiburones, o decapitado, ¡no de nuevo! @@ -1612,6 +1624,12 @@ Caja de Plushroom Pumpkin Seeds Semillas de Calabaza +Pumpkish +Pumpkish + +Pumpkish Juice +Zumo de calabaza + Purple Blobime Purple Blobime @@ -1897,6 +1915,15 @@ El gremio se encarga de regular el comercio a lo largo de Artis y sus alrededore The hidden person doesn't answer. La persona escondida no responde. +The item (%d: '%s') is not equipable. +El artÃculo (%d: '%s') no puede equiparse. + +The item is not equipable. +El artÃculo no puede equiparse. + +The name of the book is @@. +El nombre del libro es @@. + The piou costs @@E. El piou cuesta @@E. @@ -2374,6 +2401,9 @@ Te gustan, ¿no? Sólo habla con Peter, entonces. Él está en la segunda cubier You mentioned the quality of your wine HabÃas mencionado la calidad de tu vino. +You open a book named @@. +Abre un libro llamado @@. + You open the treasure chest. Abres el cofre del tesoro. diff --git a/langs/lang_es.txt b/langs/lang_es.txt index f7503b08..e50b61f9 100644 --- a/langs/lang_es.txt +++ b/langs/lang_es.txt @@ -110,6 +110,42 @@ ArtÃculos MVP: "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void %d - vacÃo @@ -164,6 +200,9 @@ ArtÃculos MVP: %d results found. %d resultados encontrados. +%d%% + + %d: Body Armor %d: Armadura Corporal @@ -194,6 +233,15 @@ ArtÃculos MVP: %d: Top Headgear %d: Equipo para parte Superior de la Cabeza +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s %s :Principal: %s @@ -371,8 +419,8 @@ Atributos de '%s': - unbans everyone from <channel name> - desbloquea a todos del canal <channel name> -- unbinds your global chat from its attached channel (if binded) -- desenlaza tu chat global del canal al que esté fijado (si está enlazado) +- unbinds your global chat from its attached channel (if bound) + -- %s -- %s @@ -419,6 +467,15 @@ Atributos de '%s': -- Available options -- Opciones disponibles +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches -- Mostrando las primeras %d correspondencias parciales @@ -458,6 +515,9 @@ Atributos de '%s': ... and 1 @@. ... y 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! ¡...quiero decir leño! ¡Hecho de leño! @@ -515,6 +575,18 @@ Atributos de '%s': 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. 7. ##BNo hacer multibox.##b No se permite entrar en combate controlando más de un personaje al mismo tiempo. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ @@ -548,6 +620,9 @@ Atributos de '%s': A GM has discharged you from jail. Un GM te ha liberado de la cárcel. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! ¡Una galleta! @@ -557,6 +632,9 @@ Una gran ciudad, al fin más grande que las ciudades de Ancea, rosa de la costa A headache hits you and you lose your concentration. Tienes un dolor de cabeza y pierdes la concentración. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! ¡Un conejo! @@ -581,12 +659,18 @@ Ataque: %d - At. Mágico: %d~%d Aaaaaahhhhhh! ¡Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Los marineros a bordo están de pie intentando comunicarse contigo. Abort Abortar +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. Sobre la Legión de Aemil, no estóy seguro acerca de ellos, francamente. @@ -623,6 +707,9 @@ Añadir una nueva lÃnea Aemil was once a magnificent land unknown to us all. Aemil fue una vez una tierra magnÃfica desconocida para todos nosotros. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop Aesop @@ -641,9 +728,15 @@ Después de elegir tu arma, también necesitas saber cómo usarla. After that, stay still and be patient, but also alert! Después de eso, quédate quieto y sé paciente, ¡pero permanece también alerta! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? Tras esta pequeña visión de Artis, ¿qué opina de nuestra ciudad? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) Agilidad: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! ¡Todos los personajes han sido traÃdos! @@ -743,6 +842,9 @@ Todos los personajes conectados del grupo %s han sido traÃdos a tu posición. All players have been kicked! ¡Todos los jugadores han sido expulsados! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. Todas las habilidades han sido agregadas a tu árbol de habilidades. @@ -815,6 +917,12 @@ Aunque cuanto más poderoso sea usted, más habitaciones de lujo necesitará. Although, if you want to visit a place nearby, we could take you there. Aunque, si quiere visitar un lugar cercano, podrÃamos llevarle allÃ. +Amethyst + + +Amethyst Shard + + Amount? ¿Cantidad? @@ -839,12 +947,21 @@ And now I want to see you run! And now I'm a sailor, as you can see! Y como puedes ver, ¡ahora soy un marinero! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! Y hasta aquÃ, el Gremio de Mercaderes me ayudó a encontrar este apartamento, ¡asà que no puedo quejarme! And then what happened? ¿Y entonces qué pasó? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? ¿Y qué me darÃa a cambio de esa información? @@ -872,6 +989,9 @@ And you? How's it going on your side? And you? How's it yaying on your side? ¿Y a ti? ¿Cómo te yaying de tu lado? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? ¿Alguna pista de en dónde podrÃa estar escondido Astapolos? @@ -1040,6 +1160,9 @@ Artis of course! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! Como capitán de este barco, nombro oficialmente a esta recientemente descubierta tierra de ##BIsta Drasil##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. Como quizás ya sepas, somos exploradores en un viaje de larga distancia y nuestros marineros de capa y espada necesitan almacenar suficiente comida para sobrevivir. No sabes cuán peligrosa puede ser la vida en el mar. @@ -1079,6 +1202,9 @@ Mezcla de Atropos Auction is disabled La subasta está deshabilitada +Auto loot item are disabled on this map. + + Autoloot is now off. El saqueo automático ahora está apagado. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. Por el denso follaje, necesita acercarse más a los árboles para no perderle. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. Porque no está autorizado a girar desde algunos mapas, %d jugador(es) no han sido recordados. +Bee + + Before I joined Nard, I used to be a thief. Antes de unirme a Nard, yo era un ladrón. @@ -1340,6 +1472,9 @@ Antes... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. ¿Detrás de mÃ? Eso es la Casa del Herrero, el más prestigioso de todo Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. Además, necesito estar aquà para estar atento a los ladrones mientras La Johanne se cierra. @@ -1418,6 +1553,9 @@ Tinte de algodón marrón Brown Trousers Pantalones marrones +Bug Leg + + Bury. Enterrar. @@ -1526,6 +1664,9 @@ Pero... Si era amnesia como Julia dice... No tenemos que preocuparnos por él. A But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 Pero... Si era amnesia como Julia dice... No tenemos que preocuparnos por él. Al menos no todavÃa.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. Por cierto, soy Lozerk. Teniente Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou Capturando un piou +Cave Maggot + + Ch 1 — Fishing apparatus Ch 1 — Aparatos de pesca @@ -1853,9 +1997,24 @@ Nubes | Clouds2 | Nubes2 | +Clover Patch + + Clown Payaso +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. El colorante no es el color. Alguno agotado del claro, otros parecen buenos pero inflijen itai-itai, y otros se hacen punteados o limpios. @@ -1919,6 +2078,9 @@ Completado, Julia gana (vuelta a la posición) Completed, got reward Completado, obtuvo la recompensa +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. Felicidades, ahora eres parte de la tripulación. Gracias de nuevo por tu ayuda. @@ -1946,6 +2108,9 @@ Las Galletas te proporcionan fuerza, salud y ternura. Copper Armbands Brazaletes de cobre +Copper Necklace + + Coral Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader Cruzado @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! ¡¿TE SIENTES MEJOR?! @@ -2081,6 +2279,9 @@ Dan se queda en silencio desde tu última pregunta. Dan#000-2-1 Dan#000-2-1 +Dance for me + + Dancer BailarÃn @@ -2096,6 +2297,9 @@ Tinte de algodón rojo oscuro Darlin Darlin +Database erased. + + Day Mode Activated. Modo de DÃa Activado. @@ -2168,6 +2372,15 @@ Destreza: %d (%d~%d) Dexterity increases your bow damage and your accuracy. La Destreza incremente el daño que haces con el arco y tu precisión. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? ¿Ha encontrado a mi hermano? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia ¡No le des la contraseña de tu habitación a nadie! Mantenla en secreto y, en el futuro, intenta no usar la misma en ninguna otra habitación. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing No haga nada @@ -2237,6 +2453,9 @@ Do you have anything else for me? Do you have anything for me today? ¿Tienes algo para mà el dÃa de hoy? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? ¿Sabe cómo hablar con la gente de su alrededor? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? ¿Quieres que vaya a verla en tu lugar? +Do you want to continue? + + Do you want to cut this @@? ¿Quieres cortar este @@? +Do you want to enter in sewer? + + Do you want to go somewhere? ¿Quieres ir a algún sitio? @@ -2336,6 +2561,9 @@ Don es conocido por toda la tierra de Aemil por sus habilidades de herrerÃa, y Don#001-2-27 Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. No me subestime, mi trabajo es digno de la mayor consideración. @@ -2396,6 +2624,9 @@ Arrastra y suelta un artÃculo de tu inventario. Drasil Island. Isla Drasil. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. Duelo| No puede utilizar %s en duelo. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable Habilitar @@ -2534,8 +2780,8 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. Disfrute de su nuevo estilo. -Enora asks to kill fluffys -Enora pide matar peluches +Enora asks to kill fluffies + Enora asks to visit Chelios Enora pide visitar a Chelios @@ -2705,6 +2951,9 @@ Archivo no encontrado. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. Archivo descargado. Sepa que las banderas de mapa y los monstruos engendrados directamente no se eliminan. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. Encuentra un buen punto seco en una costa en la que pueda alcanzar fácilmente aguas profundas. @@ -2810,6 +3059,12 @@ Para principiantes, probablemente deberÃas hacer algunos estiramientos y practi For what kind of tissue? ¿Para qué tipo de tejido? +Forest Armor + + +Forest Maggot + + Found @@, got exp Encontrado @@, obtuvo experiencia @@ -2825,6 +3080,9 @@ Cuatro Castillos Fourteen Castles Catorce Castillos +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! ¡Fresco del mar y barato! @@ -2837,6 +3095,12 @@ Amigo quitado. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. Por lo que he oÃdo, mi hermano Gugli necesita la ayuda de tanta gente como sea posible para recolectar un montón de cosas geniales que pueden encontrarse en esta isla. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana Frostiana @@ -2876,6 +3140,12 @@ El zeny obtenido se muestra ahora. Gained zeny will not be shown. El zeny obtenido no se mostrará. +Gamboge Herb + + +Gamboge Plant + + Game introduction Introducción al juego @@ -2939,6 +3209,9 @@ Give me back this dish, you dirty liar!#1 Give me some space. Deme espacio. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Ve y agarra uno de ellos. Un buen cuchillo te ayudará en tu cacerÃa de las criaturas de esta isla. @@ -2966,6 +3239,12 @@ Vaya al nivel superior si quiere cambiar su habitación o para utilizarla. Go on. Partir. +Gold Nuggets + + +Gold Vein + + Good day miss. Buen dÃa, señorita. @@ -3044,6 +3323,9 @@ Obtuvo la misión Grass Carp Carpa herbÃvora +Grass Snake + + Great to see you! What can I do for you today? ¡Me alegro de verte! ¿Qué puedo hacer hoy por ti? @@ -3065,6 +3347,9 @@ Genial, ¿Qué comida tiene para mà hoy?#1 Green Cotton Dye Tinte de algodón verde +Green Slime + + Greetings traveler.#0 Saludos, viajero.#0 @@ -3221,6 +3506,9 @@ Medio Croconut Half Eggshell Media cáscara de huevo +Hard Spike + + Hard work always pays off! ¡El trabajo duro siempre compensa! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? ¿No has visto nada peligroso? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... Pidió prestar algún dinero y un lugar para abrir su tienda, creo que pidió un lugar en las plazas de mercado al suroeste de la ciudad... @@ -3281,6 +3572,9 @@ Puede que él no tenga todo su buen juicio pero tenga en mente una cosa: He needs more food. Él necesita más comida. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. Dijo que va a escalar la colina más alta de Artis, que no está lejos de aquÃ. @@ -3302,6 +3596,9 @@ Escúchame *hic* bien, ¡¿de qué... acerca 'e qué vas a hablar?! Lo que viste Heard conversation Escuchar conversación +Hearing these words the Piou felt great joy, + + Hehe! ¡Jeje! @@ -3572,6 +3869,9 @@ Hmm... Déjame ver, toma ésta. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *tos*, *tos*, *eructo*, *tos*. ¡¿Qué... Qué es eso?!... *tos*, *eructo*... Maldición Gado... *tos* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): EstadÃsticas de crecimiento del homúnculo (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? ¿Qué tal? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Sin embargo... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! ¡Rápido, rápido! ¡Necesitamos revisar sus dientes! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! ¡TAMBIÉN EVITO LOS ANIMALES PELIGROSOS! @@ -3794,9 +4100,6 @@ No puedo recordar nada.#1 I can't stay here and talk all day. I have a job to do. No puedo quedarme aquà y hablar todo el dÃa. Tengo trabajo que hacer. -I can't use the shovel here. -No puedo usar la pala aquÃ. - I can't wait all day! ¡No puedo esperar todo el dÃa! @@ -4433,9 +4736,15 @@ Si Enora quiere su espada ahora, necesito pedirle a usted que me ayude. If I saw *hic* who you were... *hic* Would not have helped you! Si hubiese visto *hic* quién eras... *hic* ¡No te habrÃa ayudado! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. Si Yoiis quiere ver un uso diferente para las tarjetas puede dirigirse a Resa a la tienda de armaduras ligeras para una descripción de las tarjetas de diseño. @@ -4451,6 +4760,9 @@ Si capturas al piou que escapó y lo traes de regreso, te daré un 90% de descue If you continue there will be none left! ¡Si continúa ahà no dejará ninguna! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ De hecho, todo parece funcionar perfectamente bajo su guia. Nard ha tomado la de In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. De hecho... Oh, las cosas que podrÃa contar... Pero me quedo sin tiempo para esto... Sea razonable y vaya a casa. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. Nombre/ID incorrecto, o nadie del gremio especificado está en lÃnea. @@ -4640,6 +4958,9 @@ Momento inválido para prohibir comando. Invalid time for jail command. Momento inválido para encerrar comando. +Invalid! + + Invisible: Off Invisible: Apagado @@ -4649,9 +4970,15 @@ Invisible: Encendido Iron Armbands Brazaletes de Hierro +Iron Ore + + Iron Shovel Pala de Hierro +Iron Vein + + Is it possible to go back to Drasil Island? ¿Es posible volver a la isla Drasil? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! ¡¿Es algún tipo de broma?! +It doesn't reply. + + It escaped! ¡Escapé! @@ -4826,6 +5156,9 @@ Aún es demasiado joven para echar a volar tan lejos, a sà que sólo va en cÃr It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou Kagerou @@ -4973,6 +5309,9 @@ Sigue moviéndote, chica.#0 Keep the sword and the jacket, you deserved them! Guarda la espada y la chamarra, ¡Los mereces! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye Tinte de algodón caquà @@ -4988,12 +5327,18 @@ Cuchillo Knight Caballero +Know that every flatterer, + + Kralog Voice Lachesis Brew Infusión de lachesis +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 La última vez que le vi, estaba perdida en el mar en su balsa.#0 @@ -5129,9 +5474,18 @@ Tinte de algodón limón Line @@ has been removed. La lÃnea @@ se ha eliminado. +List the commands + + Little Blub Blub Pequeño +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Vivir dentro del barco es estupendo, pero a veces necesitamos algo de aire fresco, @@ -5153,6 +5507,9 @@ Lloyd el Banquero Locked. +Log Head + + Logic is the beginning of wisdom, not the end. La lógica es el principio de la sabidurÃa, no el final. @@ -5234,6 +5591,12 @@ Configuración de MOTD MVP Monster: '%s'/'%s'/'%s' (%d) Monstruo MVP: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magic Arpan @@ -5252,6 +5615,12 @@ Tiene sentido. ¿Cree que deberÃamos informar al capitán sobre eso? Male Varón +Mana Bug + + +Mana Torch + + Manana Mañana @@ -5264,6 +5633,9 @@ Desatar manualmente la transmisión actual Map not found. Mapa no encontrado. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d Mapa: %s (Zone:%s) | Jugadores: %d | NPCs: %d | Chats: %d | Ventas: %d @@ -5273,9 +5645,21 @@ Mercado Marriage failed. El matrimonio falló. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye Tinte de algodón malva +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) HP máximos: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! ¡Muchos manuales y tutoriales pero no descubrirá hasta que abra uno! +Mouboo + + Mouboo#Artis0 Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No espiar más al gremio %s. No longer spying on the %s party. No espiar más al grupo %s. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. No importa lo que la gente le diga, las palabras e ideas pueden cambiar el mundo. @@ -5702,6 +6095,9 @@ No. No. Sorry. No. Lo siento. +NoAutoloot | + + NoBaseEXP | NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, LOOK THERE! OK, let's trade. De acuerdo, comerciemos. +Oak + + Oboro Oboro @@ -6005,6 +6404,9 @@ Oh no, ahún le quedan @@ Fluffies por matar. Oh noes! ¡Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? Oh, oh... Ya veo, ¿su grupo se ha hecho tan grande que quiere crear una estructura mayor? @@ -6227,9 +6629,15 @@ LÃnea vieja: On Encendido +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. Por un lado, las armas de largo alcance, generalmente, son más débiles que las de cuerpo a cuerpo, pero atacas desde una posición segura. Por el otro lado, dependiendo del nivel del arma, las de cuerpo a cuerpo potencialmente pueden producir muertes más rápidas. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Una vez que el mostruo esté muerto, dale clic en los artÃculos que suelta para agregarlos a tu inventario. También puedes usar la tecla 'Z' para reclamar lo que se le caiga. @@ -6305,6 +6713,9 @@ Nuestra mamá no nos permite ir allÃ, porque es peligroso. ¡Pero él no escuch Our only wish to eat a plush, so juicy sweet... Sólo deseamos comer un jugoso caramelo... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Pibayas Piberries Infusion Infusión de Pibayas +Pickaxe + + Pikpik Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Blobime Rosa Pink Cotton Dye Tinte de algodón rosa +Pink Flower + + +Pink Petal + + +Pinkie + + Piou Piou @@ -6398,11 +6827,11 @@ El Piou y el Peluche Piou egg Huevo de Piou -Piousse -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse +Piousse Player '%s' (session #%d) | Location: %d,%d Jugador '%s' (sesión #%d) | Ubicación: %d,%d @@ -6605,8 +7034,8 @@ Por favor introduzca un nombre de jugador (uso: @unmute <char name>). Please enter a player name (usage: @where <char name>). Por favor introduzca un nombre de jugador (uso: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). -Por favor introduzca una posición y una cantidad (uso: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). + Please enter a quest skill ID. Por favor introduzca una ID de misión. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: Por favor selecione una misión: +Please select an option: + + Please select the interval: Por favor seleccione el intervalo: @@ -6770,6 +7202,9 @@ Por favor coja este @@ por su ayuda. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. Por favor, siéntese. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems Poema sobre Poemas +Poem is making the words dance + + +Poison Skull + + Poisoned Dish Plato envenenado @@ -6815,6 +7256,12 @@ Sacerdote Princess Slayer Princesa Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor Profesor @@ -6830,14 +7277,14 @@ Calabaza Pumpkin Hat Sombrero de calabaza +Pumpkin Juice + + Pumpkin Seeds Semillas de calabaza -Pumpkish -Pumpkish +PumpkinMob -Pumpkish Juice -Zumo de calabaza Purple Blobime Blobime púrpura @@ -6896,6 +7343,9 @@ Limpieza de misión Quest state: @@ Estado de la misión: @@ +Quest state: @@, @@ + + Quit Salir @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 RattosControl#001-2-23 +Raw Log + + Read it. Léalo. @@ -7091,6 +7544,12 @@ Guardia Real T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. Rumly se está escondiendo detrás del árbol. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Emisiones programadas Scheduled broadcasts - Create new Emisiones programadas - Crear nueva +Scorpion + + Script could not be loaded. El script no ha podido cargarse. @@ -7154,6 +7625,9 @@ Script cargado. Scripts have been reloaded. El scripts se ha recargado. +Scythe + + Sea Drops CaÃdas en el Mar @@ -7289,6 +7763,9 @@ Cazador de sombra Shadow Chaser T Cazador de sombra T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Ella es una buena amiga mÃa... QuerÃamos casarnos unas semanas antes de su accidente, pero... @@ -7385,6 +7862,15 @@ Señal#001-1-s-merchantg Sign#001-1-s-warehouse Señal#001-1-s-almacén +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye Tinte de algodón plateado @@ -7439,6 +7925,9 @@ Las habilidades se han habilitado en este mapa. Slave clone spawned. Clon esclavo engendrado. +Sleep well my angel but don't follow along + + Small Tentacles Tentáculos Pequeños @@ -7475,6 +7964,9 @@ Por eso querÃamos avisarle, quizá él viene desde ese gremio, como esa señal So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 Por eso querÃamos avisarle, quizá él viene desde ese gremio, como esa señal que habÃa en la balsa.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 ¿Asà que se cre dura? Un guerrero debe ser también leal y paciente.#0 @@ -7664,6 +8156,12 @@ La velocidad volvió a normal. Spend it wisely this time. Gástelo sabiamente esta vez. +Spider + + +Spiky Mushroom + + Spying on the %s guild. Espiando al gremio %s. @@ -7673,6 +8171,9 @@ Espiando al grupo %s. Squichy Claws Garras de Squichy +Squirrel + + Stalker Acechador @@ -7766,6 +8267,9 @@ La Fuerza multiplica el daño de tus golpes, especialmente en combates cuerpo a Stupid yeye... Estúpido yeye... +Styling Shop + + Subquests: Submisiones: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman EspadachÃn +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! ¡ESE ES UN BONITO NOMBRE! @@ -7844,7 +8351,7 @@ Ten este dinero por su sabia elección. Pero no lo intentes de nuevo. El mar abi Take your reward from the box next to my desk! ¡Recoge tu recompensa, que está la caja junto a mi escritorio! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Thanks for the help! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! ¡Es bueno escuchar eso! +That's not the question + + That's perfect, yoiis.#0 Eso es perfecto, yoiis. @@ -8003,6 +8516,9 @@ El @@ es un artÃculo de una vez, puede usarlo todas las veces que quiera, ¡per The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. La Legión necesita algunas pociones. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? ¿La Legión? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. La respuesta es una única palabra, sin conjugación. @@ -8039,9 +8570,15 @@ The captain is waiting for you! Hurry up. The captain wants: El capitán quiere: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. El detalle y destreza puestos en esta espada sólo puede lograrse por el más experto de los herreros. @@ -8060,12 +8597,18 @@ El miedo a verla dormir en esta cama silenciosa y tranquila se está volviendo m The fee is of @@ E. So, do you want to register? La couta es de @@ E. Asà que, ¿quiere registrarse? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. La primera cosa que debes hacer es evaluar a tu enemigo. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. La niebla se ha ido. @@ -8090,11 +8633,11 @@ La colina se ubica al nordeste de Artis. The holy messenger has given judgement. El santo mesnsajero ha sido juzgado. -The item (%d: '%s') is not equipable. -El artÃculo (%d: '%s') no puede equiparse. +The item (%d: '%s') is not equippable. + + +The item is not equippable. -The item is not equipable. -El artÃculo no puede equiparse. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. La tienda de armaduras ligeras es dirigida por Resa, ella es parte del Gremio Mercantil. @@ -8117,12 +8660,21 @@ El milagro es este: cuanto más compartimos, más tenemos. The monster/egg name/ID doesn't exist. El nombre/ID de monstruo/huevo no existe. -The name of the book is @@. -El nombre del libro es @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". + The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ El polizón no responde. The travel was fine for you? It was terrible for me, I was sea-sick. ¿Fue bien el viaje para usted? Fue terrible para mÃ, estaba mareado. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. Ninguno de los dos pudo casarse porque uno es un bebé o ya está casado. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! ¡El usurpador ha sido castigado! ¡Éste es un gran dÃa! ¡Ten esta recompensa como premio por tu lealtad al viejo comandante! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Sus lÃderes entonces llegaron a la conclusión de que una alianza era la única manera en que ellos podrÃas sobrevivir. @@ -8306,6 +8864,12 @@ Son muy sabrosos cuando se cocinan con @@. ¡Que no se le caiga ninguno! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ Este NPC no exista. This action can't be performed at the moment. Please try again later. Esta acción no puede cumplirse por ahora. Por favor vuelva a intentarlo más tarde. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! Este libro contiene todo lo que deberÃa saber sobre eso, ¡cójalo! @@ -8387,6 +8954,9 @@ Esta es la isla Drasil. La llamé asà tras un antiguo árbol mÃstico. This is a harsh word to use, you are never alone in the beautiful place of Artis. Esa es una palabra dura, usted nunca está solo en el bello palacio de Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Esto es un @@, una fruta azul ligera. Ellas son altamente deseadas en el archipiélago. @@ -8414,6 +8984,9 @@ No se puede comerciar con este artÃcuo. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ Este tipo de charla deberÃa tomarse con una pizca de sal, pero estoy de acuerdo This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 Este tipo de charla deberÃa tomarse con una pizca de sal, pero estoy de acuerdo y admito que yo también soy escéptico, asà que no le quitéis el ojo de encima.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. Este menú le permite cambiar sus habilidades. @@ -8492,6 +9068,9 @@ Este jugador no está en la cárcel. This player is now Ahora este jugador es +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. Este número de habilidad no existe o no es una habilidad de misión. @@ -8504,6 +9083,9 @@ Esto mantendrá su punto de reaparición hasta que se ubique en otra parte. Three Castles Tres Castillos +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ Para cambiar su nivel de oficio, use este comando: To change your stats, use these commands: Para cambiar sus estadÃsticas, use estos comandos: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Para abrir tu inventario, usa la tecla F3 o usa el ratón para seleccionarlo en el menú de arriba del cliente. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 ASalaDeLucha#001-2-32 @@ -8585,9 +9191,18 @@ Demasiado malo. No tengo suficiente hambre para estas galletas suyas. Quizá vue Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. Demasiado malo... Vuelva cuando tenga buena comida para mÃ. Gruñido... refunfuño... refunfuño. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. Demasiado arriesgado, puedo acabar en la cárcel. Hágalo usted mismo. +Topaz + + +Topaz Shard + + Toppy Blub Toppy Blub @@ -8618,6 +9233,9 @@ Comercio Training Arrow Flecha de Entrenamiento +Training Wand + + TrainingGladius Gladius de Entrenamiento @@ -8627,12 +9245,18 @@ No se permite transformarse en monstruo en Guerras de Gremio. Treasure Chest Cofre del tesoro +Tree Control Panel + + Tritan Voice Voz de Tritan Trozz#001-2-40 Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 ¡Es cierto, pero ahora se ve mucho mejor! ¿Estoy en lo cierto? @@ -8693,6 +9317,9 @@ Uhm, adiós. Uhm... Your story seems... Uhm... Tu historia parece... +Unable to Teleport in this area + + Unable to decrease the number/value. Incapaz de bajar el número/valor. @@ -8705,6 +9332,9 @@ Incapaz de generar clon maligno. Unable to spawn slave clone. Incapaz de generar clon esclavo. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Entendido. Te ayudaré. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! ¿¡Qué!? ¡Este tritan es el peor haragán que he conocido en la vida! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Cuando veas algo que parece más un error que una caracterÃstica, repórtalo en http://bugs.evolonline.org o intenta contactar a un colaborador del juego. @@ -9470,6 +10109,9 @@ Who should I search for? Who's this Julia? ¿Quién es Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 ¿Por qué gabacha? ¡Es una rusa!#0 @@ -9512,6 +10154,9 @@ Why? Why? And who should you bring it back to? ¿Por qué? ¿Y a quién se lo regresarÃas? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... Viento y hierba es bueno y fresco, un dulce tan jugoso... @@ -9521,12 +10166,18 @@ Con hambre, sed, y sueño como únicos compañeros, tiene la inquietante compren With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. Con el entrenamiento adecuado, un piou puede llegar a ser un buen amigo y un fiel compañero en tus aventuras. With script Con guión +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Arco de madera Wooden Sword Espada de madera +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! ¡Wow, parece que todo el mundo sabe mi nombre! @@ -9731,6 +10397,9 @@ Ya se ha registrado. Esperando a su pareja... You already took a @@, please put this one back in the box. Ya ha cogido un @@, por favor devuelva este a la caja. +You are a handsome and good looking bird! + + You are already mounting something else Ya estás montando algo más @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. Está sentado justo en la sombra de su tienda. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 Usted es nueva por aquÃ, ¿verdad?#0 @@ -9818,6 +10493,9 @@ Estás en una balsa, a la deriva en el mar. You are on the human resource wing of the Town Hall. Está en el ala de recursos humanos del Recibidor de la Ciudad. +You are the Phoenix of this forest." + + You are unable to change your job. No puede cambiar su oficio. @@ -9959,6 +10637,9 @@ No puedes arrojar artÃculos en este mapa You can't go there! ¡No puedes ir allá! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. No puede dejar los gremios en campo de batalla. @@ -9977,12 +10658,21 @@ No puede comerciar en este mapa You can't use commands while dead. No puede utilizar comandos estando muerto. +You can't use the shovel here. + + You can't withdraw that much money No puede retirar tanto dinero You cannot autotrade when dead. No puede autocomerciar estando muerto. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. No puede cambiar los lÃderes de gremio en este mapa. @@ -10295,8 +10985,8 @@ Usted ve a un joven sentado en una de las ramas más altas del árbol. You now also have access to the Legion building. Good job, you earned it. Ahora también tiene acceso al edificio de la Legión. Buen trabajo, lo ha conseguido. -You open a book named @@. -Abre un libro llamado @@. +You open a book named "%s". + You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. Abres el libro, pero parece que el agua marina y el paso del tiempo lo han dañado severamente. Algunas páginas ya no son legibles. Y otras simplemente están perdidas. @@ -10346,6 +11036,9 @@ Ves un libro cubiero de polvo en el estante... You see a raijin boy, sitting on the edge of the dock. Ve a un niño raijin, sentado al borde del muelle. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. Ve a una joven elfa, con un intenso dolor en su faz. @@ -10844,6 +11537,9 @@ cambiar el sexo de conf/import/msg_conf.txt conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data información @@ @@ @@ información @@ -10859,6 +11555,9 @@ pies, fisherman pescador +foo %2$s bar %1$s baz + + garment, prenda, @@ -10949,18 +11648,51 @@ mano derecha, skill %d: %s (%s) habilidad %d: %s (%s) +test + + +test %s + + test @@ test @@ +test#0 + + +test#1 + + test1 test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, cabeza superior, +tricked thus again. + + unban quitar proscripción diff --git a/langs/lang_fr.old b/langs/lang_fr.old index 2888d92c..c773ba2b 100644 --- a/langs/lang_fr.old +++ b/langs/lang_fr.old @@ -34,6 +34,9 @@ passé - QMuller - QMuller +- unbinds your global chat from its attached channel (if binded) +- délie ta conversation globale des canaux (si liés) + . . @@ -640,6 +643,9 @@ Voix d'Elfe Emo Gothique +Enora asks to kill fluffys +Énora a demandé de tuer des pluches + Enter the amount that you want to deposit. Entre la quantité que tu veux déposer. @@ -973,6 +979,9 @@ Je t'en supplie, s'il te plait, s'il te plaiiittttt... I can't help you to be on my list, nor can I give you a cookie for free. Je ne peux pas t'aider pour que tu sois sur ma liste, et je ne peux non plus pas te donner un cookie gratuitement. +I can't use the shovel here. +Je ne peux pas utiliser la pelle ici. + I do not want to point my finger on someone. I just put my trust in you. I am sure you will be able to judge and solve this annoying problem. Je ne veux viser personne. Je mets juste ma confiance en toi. Je suis certain que tu seras capable de juger et résoudre cet ennuyeux problème. @@ -1930,6 +1939,9 @@ Je t'en supplie, ne dis à personne que tu m'as vu. Je ne veux pas être jeté à Please don't tell people you saw me. I don't want to be decapitated or get thrown into the sea as food for sharks, at least not again! Je t'en prie, ne dis à personne que tu m'as vu. Je ne veux pas finir décapité ou jeté à la mer comme nourriture pour requins, du moins pas une nouvelle fois ! +Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Entre s'il-te-plaît une position et une quantité (utilisation : @refine <position d'équipement> <+/- quantité>). + Please take this lollypop for your help. Mum says they are bad for my teeth anyway (FIXME) Prends au moins cette sucette pour ton aide. Ma mère me dit toujours que c'est mauvais pour mes dents de toute façon. (À CORRIGER) @@ -1954,6 +1966,12 @@ Tirer ! Pumpkin Seeds Graines de Citrouille +Pumpkish +Citrouche + +Pumpkish Juice +Jus de Citrouche + Punk Punk @@ -2185,6 +2203,9 @@ Faire un somme Take this money for your wise choice. But do not try it again. Water has been merciful with you once... Do not tempt fate once more! Prends cet argent pour ton sage choix. Mais n'essaye pas de nouveau. L'eau a eu pitié de toi cette seule fois... Ne tente pas le destin une fois de plus ! +Talk to FightNPCName and he'll show you the ropes. +Parle à FightNPCName et il te montrera les cordes. + Talk with Lloyd the Banker in the Merchant Guild, it's a big building at the northern part of Artis, at the top of the small hill. Parle au Banquier Lloyd dans la Guilde des Marchands, c'est un grand bâtiment sur la partie nord d'Artis, en haut de la petite colline. @@ -2287,9 +2308,18 @@ La guide est responsable de la régularisation du commerce à travers Artis et s The hidden person doesn't answer. Pas de réponse. +The item (%d: '%s') is not equipable. +L'objet (%d: '%s') n'est pas équipable. + +The item is not equipable. +L'objet ne peut pas être équipé. + The market is located at the south-east of Artis, it is known as Merchant Guild's exhibit. Le marché se situe au sud-est d'Artis, il connu pour être l'exposition de la Guilde des Marchands. +The name of the book is @@. +Le nom du livre est @@. + The sailor chugs his beer Le marin siffle sa bière @@ -2923,6 +2953,9 @@ Tu as besoin d'au moins d'un de ceux-ci : You need to walk north!! Tu dois marcher vers le nord. +You open a book named @@. +Tu ouvres un livre appelé @@. + You open the treasure chest. Tu ouvres le coffre au trésor. diff --git a/langs/lang_fr.txt b/langs/lang_fr.txt index 14dcf4d1..19c627e5 100644 --- a/langs/lang_fr.txt +++ b/langs/lang_fr.txt @@ -110,6 +110,42 @@ et %d secondes "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void %d - vide @@ -164,6 +200,9 @@ et %d secondes %d results found. %d résultats trouvés +%d%% + + %d: Body Armor %d: Plastron @@ -194,6 +233,15 @@ et %d secondes %d: Top Headgear %d : Équipement de tête haute +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s %s : Général : %s @@ -371,8 +419,8 @@ et %d secondes - unbans everyone from <channel name> - enlève tous les bannissements du canal <nom du canal> -- unbinds your global chat from its attached channel (if binded) -- délie ta conversation globale des canaux (si liés) +- unbinds your global chat from its attached channel (if bound) + -- %s -- %s @@ -419,6 +467,15 @@ et %d secondes -- Available options -- Options disponibles +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches -- Affiche les premiers %d matchs partiels @@ -458,6 +515,9 @@ et %d secondes ... and 1 @@. ... et 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! ...Je veux dire bûche ! Fait de bûches ! @@ -515,6 +575,18 @@ et %d secondes 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. 7. ##BNe multibox pas.##b Tu n'as pas le droit d'engager le combat lorsque tu contrôles plus d'un personnage en même temps. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ @@ -548,6 +620,9 @@ et %d secondes A GM has discharged you from jail. Un MJ t'a libéré de prison. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Un cookie ! @@ -557,6 +632,9 @@ Une ville incroyable, qui deviendra éventuellement plus grande que les villes d A headache hits you and you lose your concentration. Un mal de tête te frappe et tu perds ta concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! Un lapin ! @@ -581,12 +659,18 @@ ATT : %d - MATT : %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh ! +Able to write a poem + + Aboard stand sailors trying to communicate with you. À bord se trouvent des marins essayant de communiquer avec toi. Abort Abandonner +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. Concernant la Légion d'Aemil, je ne suis pas certain d'eux, honnêtement. @@ -623,6 +707,9 @@ Ajouter une nouvelle ligne Aemil was once a magnificent land unknown to us all. Aemil était autrefois une terre incroyable inconnue de tous. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop Aesop @@ -641,9 +728,15 @@ Après avoir choisi ton arme, tu dois aussi savoir comment l'utiliser. After that, stay still and be patient, but also alert! Après ça, ne bouge pas et patiente, mais aussi à l'affut ! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? Après ce bref aperçu d'Artis, que penses-tu de notre ville ? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) Agi : %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! Tous les personnages rappelés ! @@ -743,6 +842,9 @@ Tous les personnages en ligne du groupe %s ont été rappelés à ta position. All players have been kicked! Tous les joueurs ont été éjectés. +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. Toutes les compétences ont été ajoutées à ton arbre de compétences. @@ -815,6 +917,12 @@ Cependant, le plus fort deviens, le plus de peluchignons tu auras besoin. Although, if you want to visit a place nearby, we could take you there. Cependant, si tu veux visiter un endroit pas très loin, on peut t'y emmener. +Amethyst + + +Amethyst Shard + + Amount? Combien ? @@ -839,12 +947,21 @@ Et maintenant, je veux te voir courir ! And now I'm a sailor, as you can see! Et maintenant je suis un marin, comme tu peux le voir. +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! Et jusqu'ici, la Guilde des Marchands m'a aidé à trouver cet appartement, je ne peux donc pas me plaindre ! And then what happened? Et après, qu'est-il arrivé ? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? Et que me donnerais-tu en échange de cette information ? @@ -872,6 +989,9 @@ Et toi ? Comment ça va de ton côté ? And you? How's it yaying on your side? Et toi ? Comment ça va de ton côté ? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? Aucun indice d'où Astapolos pourrait se cacher ? @@ -1040,6 +1160,9 @@ Artis pardi ! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! En tant que capitaine de ce navire, je nomme officiellement cette nouvelle terre l'##BÃŽle Drasil##b ! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. Comme tu pourrais peut-être le savoir, nous sommes des explorateurs sur un voyage de longue distance et nos marins de cape et d'épée ont besoin de stocker suffisamment de nourriture pour survivre. Tu ne sais pas à quel point la vie en pleine mer peut être dangereuse. @@ -1079,6 +1202,9 @@ Mixture d'Atropos Auction is disabled L'enchère est désactivée. +Auto loot item are disabled on this map. + + Autoloot is now off. Le ramassage automatique est maintenant désactivé. @@ -1322,9 +1448,15 @@ C'est parce que je suis un kralog que je ne peux pas lire de telles choses ? Fou Because of the dense foliage, you need to go up close to the trees so you don't miss him. En raison du feuillage très dense, tu as besoin de te rapprocher au plus près des arbres pour ne pas le rater. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. Parce que tu n'es pas autorisé à te téléporter depuis certaines cartes, %d joueurs n'ont pas été rappelés. +Bee + + Before I joined Nard, I used to be a thief. Avant de rejoindre Nard, j'étais un voleur. @@ -1340,6 +1472,9 @@ Avant... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. Derrière moi ? C'est la maison des forgerons, la plus réputée à travers tout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. Par ailleurs, je dois rester ici pour garder un Å“il contre les voleurs pendant que La Johanne est amarrée. @@ -1418,6 +1553,9 @@ Teinture Coton Marron Brown Trousers Pantalon Marron +Bug Leg + + Bury. Enterrer. @@ -1526,6 +1664,9 @@ Mais... S'il est amnésique comme Julia le dit... Nous n'avons pas besoin de nou But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 Mais... Si elle est amnésique comme Julia le dit... Nous n'avons pas besoin de nous préoccuper d'elle. Du moins pas maintenant. +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. À propos, je m'appelle Lozerk. Lieutement Lozerk. @@ -1646,6 +1787,9 @@ Tu as perdu ta langue au chat ? Catching a piou Attraper un piou +Cave Maggot + + Ch 1 — Fishing apparatus Ch 1 — Accessoires de pêche @@ -1853,9 +1997,24 @@ Nuages | Clouds2 | Nuages2 | +Clover Patch + + Clown Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. Les colorants ne sont pas les yeyeures couleurs. Certains s'effacent lorsqu'ils sont exposés au soleil, d'autres sont superbes mais grattes et enfin d'autres encore laissent des trasses au lavage. @@ -1919,6 +2078,9 @@ Terminé, Julia gagne (poison refusé) Completed, got reward Terminé, récompense reçue +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. Félicitation, tu fais maintenant parti de l'équipage. Merci encore pour ton aide. @@ -1946,6 +2108,9 @@ Les cookies te donnent de la force, de la vie et du charme. Copper Armbands Brassards Cuivrés +Copper Necklace + + Coral Corail @@ -2045,6 +2210,24 @@ MonstreCroconut Crocotree Crocotier +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader Croisé @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom Malédichamp +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! TE SENS-TU MIEUX ?! @@ -2081,6 +2279,9 @@ Dan devient silencieux suite à cette dernière réplique. Dan#000-2-1 Dan#000-2-1 +Dance for me + + Dancer Danseur @@ -2096,6 +2297,9 @@ Teinture Coton Rouge Foncé Darlin Darlin +Database erased. + + Day Mode Activated. Mode Jour Activé. @@ -2168,6 +2372,15 @@ Dex : %d (%d~%d) Dexterity increases your bow damage and your accuracy. La dextérité augmente tes dégâts à l'arc ainsi que ta précision. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? As-tu trouvé mon frère ? @@ -2216,6 +2429,9 @@ Ne donne jamais le mot de passe de ta chambre à quiconque ! Garde-le secrèteme Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Ne donne le mot de passe de ta chambre à personne ! Garde-le secret et essaye de ne pas utiliser le même mot de passe pour d'autres chambres dans le futur. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing Ne rien faire @@ -2237,6 +2453,9 @@ As-tu quelque chose d'autre pour moi ? Do you have anything for me today? As-tu quelque chose pour moi aujourd'hui ? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? Sais-tu comment parler aux gens autour de toi ? @@ -2279,9 +2498,15 @@ Veux-tu un verre ? Do you want me to go see her instead of you? Veux-tu que j'aille la voir à ta place ? +Do you want to continue? + + Do you want to cut this @@? Veux-tu couper cette @@ ? +Do you want to enter in sewer? + + Do you want to go somewhere? Veux-tu aller quelque part ? @@ -2336,6 +2561,9 @@ Don est connu à travers les terres d'Aemil pour ses talents de forgeron et il e Don#001-2-27 Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. Ne me ridiculise pas, mon travail mérite la plus grande estime. @@ -2396,6 +2624,9 @@ Glisse et dépose un item de ton inventaire. Drasil Island. ÃŽle Drasil. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. Duel| Ne peut pas utiliser %s en duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors Elmo#marins +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable Activer @@ -2534,8 +2780,8 @@ Profite de la fraternité et de l'excitement de ta future guilde ! Enjoy your new style. Profite de ton nouveau style ! -Enora asks to kill fluffys -Énora a demandé de tuer des pluches +Enora asks to kill fluffies + Enora asks to visit Chelios Énora a demandé de rendre visite à Chelios @@ -2705,6 +2951,9 @@ Fichier introuvable. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. Fichier déchargé. Sache que les mapflags et les monstres qui apparaissent directement ne sont pas supprimés. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. Trouve-toi un endroit au sec sur la côte où tu peux aisément atteindre le fond de l'eau. @@ -2810,6 +3059,12 @@ Pour commencer, tu devrais probablement t'étirer et t'entraîner sur des manneq For what kind of tissue? Pour quel type de tissus ? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ trouvé, exp reçu @@ -2825,6 +3080,9 @@ Quatre Châteaux Fourteen Castles Quatorze Châteaux +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! Fraichement pêchés dans la mer, et bon marché ! @@ -2837,6 +3095,12 @@ L'ami a été supprimé. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. D'après ce que j'ai entendu, mon frère Gugli a besoin de l'aide d'un maximum de gens pour récupérer un grand nombre de chouettes choses qui peuvent être trouvées sur l'île. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana Frostiana @@ -2876,6 +3140,12 @@ Les zeny gagnés ne sont pas affichés. Gained zeny will not be shown. Les zeny gagnés ne seront pas affichés. +Gamboge Herb + + +Gamboge Plant + + Game introduction Introduction du jeu @@ -2939,6 +3209,9 @@ Redonne-moi ce plat, vilain petit menteur ! Give me some space. Donne-moi de l'espace. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Va en prendre un. Un bon couteau t'aidera à chasser les créatures de cette île. @@ -2966,6 +3239,12 @@ Va au niveau supérieur si tu veux changer de chambre ou bien l'utiliser. Go on. Continue. +Gold Nuggets + + +Gold Vein + + Good day miss. Bonjour mademoiselle. @@ -3044,6 +3323,9 @@ Quête reçue Grass Carp Carpe des Roseaux +Grass Snake + + Great to see you! What can I do for you today? Content de te voir ! Que puis-je pour toi aujourd'hui ? @@ -3065,6 +3347,9 @@ Génial, quelle nourriture m'as-tu apporté aujourd'hui ? Green Cotton Dye Teinture Coton Vert +Green Slime + + Greetings traveler.#0 Salutations voyageuse. @@ -3221,6 +3506,9 @@ Demi Noix de Croco Half Eggshell Demi Coquille d'Å’uf +Hard Spike + + Hard work always pays off! Le travail paie toujours ! @@ -3248,6 +3536,9 @@ As-tu vu Fexil ? Have you seen anything dangerous? As-tu vu quelque chose de dangereux ? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... Il a demandé d'emprunter de l'argent et un endroit pour ouvrir son échoppe, je pense qu'il a demandé une place sur la place des marchands au sud-ouest de la ville... @@ -3281,6 +3572,9 @@ Il n'a sûrement pas tout ses esprits mais garde une chose en tête : He needs more food. Il a besoin de plus de nourriture. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. Il a dit qu'il escaladerai la plus haute colline d'Artis, qui ne se situe pas très loin d'ici. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation A entendu la conversation +Hearing these words the Piou felt great joy, + + Hehe! Hehe ! @@ -3572,6 +3869,9 @@ Hm... Voyons voir, prends celle-ci. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *tousse*, *tousse*, *burp*, *tousse*. Quoi... Qu'est ce que c'est ?!... *tousse*, *burp*... Fichu Gado... *tousse* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): Les statistiques d'évolution de l'homoncule (Niv %d %s) : @@ -3647,6 +3947,9 @@ Comment vas-tu, partenaire dans le crime ? Howdy? Comment vas-tu ? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Cependant... @@ -3665,6 +3968,9 @@ Dépêche-toi ! Hurry, hurry! We need to check its teeth! Dépêche, dépêche ! On doit regarder ses dents ! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! J'ÉVITE AUSSI LES ANIMAUX DANGEREUX ! @@ -3794,9 +4100,6 @@ Je n'arrive à me souvenir de rien. I can't stay here and talk all day. I have a job to do. Je ne peux pas rester ici à te parler toute la journée. J'ai un travail à faire. -I can't use the shovel here. -Je ne peux pas utiliser la pelle ici. - I can't wait all day! Je ne peux pas attendre toute la journée ! @@ -4433,9 +4736,15 @@ Si Énora veut son épée maintenant, j'ai besoin de te demander ton aide. If I saw *hic* who you were... *hic* Would not have helped you! Si je t'avais *hic* reconnus... *hic* Je ne t'aurais pas aidé ! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... Si c'est le cas, j'espère qu'il ne t'a pas fait passer un moment trop dur, parfois il se lève du mauvais pied et ça le transforme en un vieil homme aigri et ronchon... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. Si yoiis veut voir une utilisation différente pour les cartes, il peut yeyander à Resa à la boutique d'armure légère pour une description des cartes de style. @@ -4451,6 +4760,9 @@ Si tu attrapes le piou qui s'est échappé et que tu me le rapportes, je te fera If you continue there will be none left! Si tu continues, il n'y en aura plus du tout ! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! Si jamais tu en trouves le temps, va à Esperia, c'est la plus grande ville de ton Gasaron ! @@ -4535,6 +4847,12 @@ En fait, tout semble fonctionner parfaitement sous ton commandement. Nard a fait In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. En fait... Oh, les choses que je pourrais dire... Mais je n'ai plus de place sur ce... Sois juste raisonnable et rentre à la maison. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. Nom/ID incorrect, ou personne de la guilde spécifiée n'est en ligne. @@ -4640,6 +4958,9 @@ Temps invalide pour la commande de bannissement. Invalid time for jail command. Temps invalide pour la commande d'emprisonnement. +Invalid! + + Invisible: Off Invisible : Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands Brassards en Fer +Iron Ore + + Iron Shovel Pelle en Fer +Iron Vein + + Is it possible to go back to Drasil Island? Est-ce possible de retourner sur l'ÃŽle Drasil ? @@ -4676,6 +5003,9 @@ Est-ce pour toi ou quelqu'un d'autre ? Parce que tu as besoin d'être enregistrà Is this some kind of joke?! C'est une blague ? +It doesn't reply. + + It escaped! Il a échappé ! @@ -4826,6 +5156,9 @@ Il est encore trop jeune pour s'envoler, alors il fait des cercles aux alentours It's the big building in northern Artis, at the top of a small hill. C'est le grand bâtiment au nord d'Artis, en haut d'une petite colline. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! C'est à l'ouest, sur ton côté gauche. Passe cette porte avant les escaliers puis tourne à gauche. Impossible de la rater ! @@ -4949,6 +5282,9 @@ Regarde juste à mes biens qui sont en vente ! Des fruits et légumes frais ont Just look at that water! There's a whole bunch of fish down there. Regarde juste cette eau ! Il y a encore un tas de poissons en dessous. +Just say something sparkling + + Kagerou Kagerou @@ -4973,6 +5309,9 @@ Continue de marcher fillette. Keep the sword and the jacket, you deserved them! Garde l'épée et la veste, tu les as bien méritées. +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye Teinture Coton Khaki @@ -4988,12 +5327,18 @@ Couteau Knight Chevalier +Know that every flatterer, + + Kralog Voice Voix de Kralog Lachesis Brew Brassage de Lachésis +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 La dernière fois que je t'ai vue, tu étais perdue en mer sur ton radeau. @@ -5129,9 +5474,18 @@ Teinture Coton Citron Line @@ has been removed. La ligne @@ a été supprimée. +List the commands + + Little Blub Petit Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Vivre à l'intérieur d'un navire, c'est génial, mais nous avons parfois besoin d'air frais. @@ -5153,6 +5507,9 @@ Lloyd le Banquier Locked. +Log Head + + Logic is the beginning of wisdom, not the end. La logique est le début de la sagesse, non pas sa fin. @@ -5234,6 +5591,12 @@ Configuration de MOTD MVP Monster: '%s'/'%s'/'%s' (%d) MVP Monstre : '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Arpan Magique @@ -5252,6 +5615,12 @@ Cela fait sens. Penses-tu que nous devrions en informer le cap'taine ? Male Masculin +Mana Bug + + +Mana Torch + + Manana Manana @@ -5264,6 +5633,9 @@ Déclencher manuellement l'annonce actuelle Map not found. Carte introuvable. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d Carte : %s (Zone : %s) | Joueurs : %d | PNJs : %d | Conversations : %d | Ventes : %d @@ -5273,9 +5645,21 @@ Place du Marché Marriage failed. Le marriage a échoué. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye Teinture Coton Mauve +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) PV Max : %d (%d~%d) @@ -5426,6 +5810,9 @@ Le poisson le plus commun et répandu dans le monde du poisson c'est la @@ et pa Mostly manuals and tutorials but you won't find out until you open one! Le plus souvent des manuels et des tutoriels mais tu ne le sauras pas jusqu'à ce que tu en ouvres un ! +Mouboo + + Mouboo#Artis0 Mouboo#Artis0 @@ -5642,6 +6029,12 @@ Plus d'espionnage sur la guilde %s. No longer spying on the %s party. Plus d'espionnage sur le groupe %s. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. Peu importe ce que les gens te disent, les mots et les idées peuvent changer le monde. @@ -5702,6 +6095,9 @@ Non. No. Sorry. Non. Désolé. +NoAutoloot | + + NoBaseEXP | PasBaseEXP | @@ -5912,6 +6308,9 @@ OH, REGARDE ! OK, let's trade. D'accord, faisons un échange. +Oak + + Oboro Oboro @@ -6005,6 +6404,9 @@ Oh non, tu dois encore tuer @@ Pluches. Oh noes! Oh nooon ! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? Oh oh... Je vois, ton groupe est devenu tellement grand que tu voudrais créer une structure encore plus grande ? @@ -6227,9 +6629,15 @@ Ancienne ligne : On On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. D'une côté, les armes à distance sont en général moins puissantes que celles de mélée, mais tu attaques d'une position plus en sécurité. D'un autre côté, dépendant du niveau requis de l'arme, les armes de mélée peuvent potentiellement garantir des mises à mort bien plus rapides. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Une fois le monstre tué, clique sur ses objets abandonnés pour les ajouter dans ton inventaire. Tu peux aussi utiliser la touche 'Z' pour les ramasser. @@ -6305,6 +6713,9 @@ Notre mère nous défend d'y aller car c'est dangereux. Mais il n'écoute jamais Our only wish to eat a plush, so juicy sweet... Notre seul vÅ“ux est de manger une peluche, si douce et juteuse... +Over lovers under a starry night + + Ow-oh! Ow-oh! @@ -6371,15 +6782,33 @@ Baies Pi Piberries Infusion Infusion de Baies Pi +Pickaxe + + Pikpik Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Blobime Rose Pink Cotton Dye Teinture Coton Rose +Pink Flower + + +Pink Petal + + +Pinkie + + Piou Piou @@ -6398,11 +6827,11 @@ Piou et le Pluche Piou egg Å’uf de Piou -Piousse -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse +Piousse Player '%s' (session #%d) | Location: %d,%d Joueur '%s' (session #%d) | Position : %d,%d @@ -6605,8 +7034,8 @@ Entre s'il-te-plaît un nom de joueur (utilisation : @unmute <nom du joueur>). Please enter a player name (usage: @where <char name>). Entre s'il-te-plaît un nom de joueur (utilisation : @where <nom du joueur>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). -Entre s'il-te-plaît une position et une quantité (utilisation : @refine <position d'équipement> <+/- quantité>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). + Please enter a quest skill ID. Entre s'il-te-plaît une ID de compétence de quête. @@ -6758,6 +7187,9 @@ Sélectionne un chapitre : Please select a quest: Sélectionne une quête : +Please select an option: + + Please select the interval: Sélectionne un intervalle : @@ -6770,6 +7202,9 @@ Prends donc cette @@ pour ton aide. Please try to figure out what went wrong with this order and bring me those potions. Essaye de découvrir ce qu'il s'est mal passé avec cette commande et apporte-moi ces potions. +Please write the following sentence: + + Please, have a seat. Prends place s'il-te-plaît. @@ -6794,6 +7229,12 @@ Des peluchignons tu dis ? Poem about Poems Poème de Poèmes +Poem is making the words dance + + +Poison Skull + + Poisoned Dish Plat Empoisonné @@ -6815,6 +7256,12 @@ Prêtre Princess Slayer Tueur de Princesses +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor Professeur @@ -6830,14 +7277,14 @@ Citrouille Pumpkin Hat Chapeau Citrouille +Pumpkin Juice + + Pumpkin Seeds Graînes de Citrouille -Pumpkish -Citrouche +PumpkinMob -Pumpkish Juice -Jus de Citrouche Purple Blobime Blobime Violet @@ -6896,6 +7343,9 @@ Débogage de quête Quest state: @@ État de la quête : @@ +Quest state: @@, @@ + + Quit Quitter @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 ContrôleDeRattos#001-2-23 +Raw Log + + Read it. La lire. @@ -7091,6 +7544,12 @@ Garde Royale T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. Rumly se cache derrière un arbre. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Annonces prévues Scheduled broadcasts - Create new Annonces prévues - Créer une nouvelle +Scorpion + + Script could not be loaded. Le script n'a pas pu être chargé. @@ -7154,6 +7625,9 @@ Script chargé. Scripts have been reloaded. Le script a été rechargé. +Scythe + + Sea Drops Gouttes d'Eau de Mer @@ -7289,6 +7763,9 @@ Chasseur de Fantômes Shadow Chaser T Chasseur de Fantômes T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... C'est une bonne amie à moi. On voulait se marier quelques semaines avant son accident mais... @@ -7385,6 +7862,15 @@ Signe#001-1-s-gmarchands Sign#001-1-s-warehouse Signe#001-1-s-entrepôt +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye Teinture Coton Argenté @@ -7439,6 +7925,9 @@ Les compétences ont été activées dans cette carte. Slave clone spawned. Le clone esclave est apparu. +Sleep well my angel but don't follow along + + Small Tentacles Petites Tentacules @@ -7475,6 +7964,9 @@ C'est pour cela que nous voulions t'avertir, peut-être qu'il vient de cette gui So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 C'est pour cela que nous voulions t'avertir, peut-être qu'elle vient de cette guilde, en raison du signe sur son radeau. +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 Alors tu penses être une dure ? Une guerrière doit aussi être loyale et patiente. @@ -7664,6 +8156,12 @@ Vitesse retournée à la normale. Spend it wisely this time. Dépense-le avec sagesse maintenant. +Spider + + +Spiky Mushroom + + Spying on the %s guild. Espionnage de la guilde %s. @@ -7673,6 +8171,9 @@ Espionnage du groupe %s. Squichy Claws Griffes de Squichy +Squirrel + + Stalker Rôdeur @@ -7766,6 +8267,9 @@ La force multiplie les dégâts de tes coups, en particulier ceux de mélée. Tu Stupid yeye... Que tu es stupide... +Styling Shop + + Subquests: Sous-quêtes : @@ -7811,6 +8315,9 @@ Surprends-moi ! Swordsman Épéiste +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! ÇA, C'EST UN BEAU NOM ! @@ -7844,8 +8351,8 @@ Prends cet argent pour ton sage choix. Mais ne le refais plus. La grande mer a à Take your reward from the box next to my desk! Prends ta récompense depuis la caisse à côté de mon bureau. -Talk to FightNPCName and he'll show you the ropes. -Parle à FightNPCName et il te montrera les cordes. +Talk to Hector and he'll show you the ropes. + Talk to you later! Je te parle plus tard! @@ -7961,6 +8468,9 @@ Merci pour l'aide ! Thanks! Merci ! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. Cette partie de la ville est surnommée la Colline Dorée, c'est aussi l'endroit où la Guilde des Marchands a son quartier général. @@ -7982,6 +8492,9 @@ C'est exactement ce dont j'avais besoin ! That's good to hear! C'est bon à entendre ! +That's not the question + + That's perfect, yoiis.#0 C'est parfait, yoiise. @@ -8003,6 +8516,9 @@ La @@ est un objet d'une seule fois, tu peux l'utiliser autant de fois que le so The Book of Laws Le Livre des Lois +The Fluffy seized it and said: + + The Legion needs some potions. La Légion a besoin de potions. @@ -8018,9 +8534,24 @@ La Légion de Gasaron est responsable de la sécurité des parties intramuros de The Legion? La Légion ? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. Le Raijin de la bibliothèque a flirté avec moi il à un moment, tout comme Énora de la Légion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. La réponse est en un seul mot, sans conugaison. @@ -8039,9 +8570,15 @@ Le capitaine t'attends. Dépêches-toi ! The captain wants: Le capitaine veut : +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! Le contrôle et l'administration de ces villes passe à travers différentes mains parfois. L'Ordre de Mana ou la Fraternité peut prendre les rênes plutôt que nous à certains moments. +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. Les détails et la main d'Å“uvre qui se trouvent dans cette épée ne peuvent être accomplis que par les forgerons avec le plus d'expérience. @@ -8060,12 +8597,18 @@ La peur de la voir dormir sur ce lit si tranquille, mise à l'écart, devient de The fee is of @@ E. So, do you want to register? Les frais s'élèvent à @@ E. Alors, veut-tu t'enregistrer ? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. La première page contient les règles universelles qui ont été acceptées à travers l'intégralité de la terre. The first thing you should do is to evaluate your enemy. La première chose que tu devrais faire c'est évaluer ton ennemi. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. Le brouillard a disparu. @@ -8090,11 +8633,11 @@ La colline se situe au nord-est d'Artis. The holy messenger has given judgement. Le saint messager a donné son jugement. -The item (%d: '%s') is not equipable. -L'objet (%d: '%s') n'est pas équipable. +The item (%d: '%s') is not equippable. + + +The item is not equippable. -The item is not equipable. -L'objet ne peut pas être équipé. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. La boutique des armures légères est dirigée par Resa, elle fait partie de la Guilde des Marchands d'Artis. @@ -8117,12 +8660,21 @@ Voici le miracle : le plus on partage, le plus on possède. The monster/egg name/ID doesn't exist. Le monstre/nom d'Å“uf/ID n'existe pas. -The name of the book is @@. -Le nom du livre est @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". + The newly created Fleet of Ancea travelled so far that they were never heard from again. La toute nouvelle Flotte d'Ancea a voyagé si loin que personne n'en a plus jamais eu de nouvelle. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia La page suivante commence à faire la liste des lois d'échange compliquées de la Cité d'Esperia. @@ -8171,12 +8723,18 @@ Le passager clandestin de répond pas. The travel was fine for you? It was terrible for me, I was sea-sick. Le voyage s'est bien passé ? C'était horrible pour moi, j'ai le mal de mer. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. Les deux ne peuvent pas se marrier car l'un d'entre eux est soit un bébé ou soit déjà marrié. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! L'usurpateur a été puni ! C'est un grand jour ! Prends cette récompense comme prix de ta loyauté au vieux commandant ! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Leur chefs arrivèrent ensuite à la conclusion qu'une alliance était la seule façon de survivre. @@ -8306,6 +8864,12 @@ Ils sont tellement goûtus lorsqu'ils sont cuisinés avec des @@. N'en fais tomb They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. Ils ont éventuellement trouvé une nouvelle terre après un grand nombre d'épreuves, ils l'ont nommée Aurora, suite à son levé de soleil magnifique. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. Ils ont navigué d'Hurnscald à Tulimshar puis à Nivalis, la dernière colonie des humains. @@ -8342,6 +8906,9 @@ Ce PNJ n'existe pas. This action can't be performed at the moment. Please try again later. Cette action ne peut pas être accomplie pour le moment. Merci de réessayer plus tard. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! Ce livre contient tout ce dont tu as besoin de savoir à son sujet, prends-le ! @@ -8387,6 +8954,9 @@ Voici l'ÃŽle Drasil, je me suis inspiré d'un ancien arbre mythologique. This is a harsh word to use, you are never alone in the beautiful place of Artis. C'est un mot très fort que tu utilises, tu n'es jamais tout seul dans de si beaux lieux à Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Ceci est une @@, un fruit de mer bleu clair. Elles sont très désirées dans l'archipel. @@ -8414,6 +8984,9 @@ Cet objet ne peut pas être échangé. This item cannot be used as bait here. Cet objet ne peut pas être utilisé comme appât ici. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ Cette sorte de discours devrait être pris avec un grain de sel, mais je suis d' This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 Cette sorte de discours devrait être pris avec un grain de sel, mais je suis d'accord et j'admet être aussi susceptible, alors garde un Å“il sur lui. +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. Ce menu te permet de changer tes compétences. @@ -8492,6 +9068,9 @@ Ce joueur n'est pas en prison. This player is now Ce joueur est maintenant +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. Ce numéro de compétence n'existe pas ou n'est pas une compétence de quête. @@ -8504,6 +9083,9 @@ Ceci restera ton point de réapparition jusqu'à ce qu'il soit établi ailleurs. Three Castles Trois Châteaux +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ Pour changer ton niveau de métier, utilise cette commande : To change your stats, use these commands: Pour changer tes compétences, utilise ces commandes : +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. Pour commencer la pêche, tu as besoin de deux choses : une canne à pêche et un appât. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Pour ouvrir ton inventaire, utilises la touche F3 ou bien ta souris pour le sélectionner dans le menu en haut de ton client. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ Pour réussir à attraper un poisson, tu dois tirer ton hameçon en cliquant des To thank you, accept my old fishing rod. Accepte ma vieille canne à pêche comme remerciement. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 ÀPièceDeCombat#001-2-32 @@ -8585,9 +9191,18 @@ Dommage. Je n'ai pas assez faim pour tes cookies. Mais je reviendrai plus tard. Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. Dommage... Reviens quand tu auras de la bonne nourriture pour moi. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. Trop risqué, je finirai peut-être en prison. Fais-le toi-même. +Topaz + + +Topaz Shard + + Toppy Blub Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow Flèche d'Entraînement +Training Wand + + TrainingGladius Glaived'Entraînement @@ -8627,12 +9245,18 @@ Se transformer en un monstre n'est pas autorisé pendant les Guerres des Guildes Treasure Chest Coffre au Trésor +Tree Control Panel + + Tritan Voice Voix d'un Tritan Trozz#001-2-40 Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 C'est vrai, mais il semble bien se porter ! Pas vrai ? @@ -8693,6 +9317,9 @@ Hmm, au revoir. Uhm... Your story seems... Euh... Ton histoire semble être... +Unable to Teleport in this area + + Unable to decrease the number/value. Impossible de descendre le nombre/la valeur. @@ -8705,6 +9332,9 @@ Impossible de faire apparaître un clone maléfique. Unable to spawn slave clone. Impossible de faire apparaître un clone esclave. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Compris, je t'aiderai. @@ -9377,9 +10007,18 @@ Quoi ? Pourquoi ? Ils ne sont pas plus attirants que moi, pourquoi veux-tu les v What?! This tritan is the worse shirker I ever met! Quoi ?! Ce tritan est le pire tire-au-flanc que j'ai jamais rencontrée ! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. Lorsque tu t'approches de villageois, tu peux apercevoir une bulle de conversation au dessus d'eux et tu peux donc leur parler en appuyant sur la touche [T]. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Lorsque tu vois quelque chose qui a plus l'air d'un bug qu'autre chose, fais un rapport sur http://bugs.evolonline.org ou essaye de contacter un développeur de ce jeu. @@ -9470,6 +10109,9 @@ Qui devrais-je chercher ? Who's this Julia? Qui est cette Julia ? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Pourquoi française ? C'est une russe ! @@ -9512,6 +10154,9 @@ Pourquoi ? Why? And who should you bring it back to? Pourquoi ? Et ensuite, à qui devras-tu le rapporter ? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... Le vent et l'herbe, c'est si sympa et cool à la fois, tellement juteux et doux. @@ -9521,12 +10166,18 @@ Avec la faim, la soif et le sommeil comme seuls compagnons, tu as la réalisatio With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. Avec un entraînement approprié, un piou peut devenir un très bon ami et un fidèle compagnon dans tes aventures. With script Avec script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. Avec l'aide de l'hôtel de ville et la Légion d'Aemil, nous organisons une vente aux enchères et nous aidons les marchands locaux à démarrer leurs affaires. @@ -9542,6 +10193,21 @@ Arc en Bois Wooden Sword Épée en Bois +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Wow, il semblerait que tout le monde connaisse mon nom ! @@ -9731,6 +10397,9 @@ Tu es déjà enregistré. En attente de ton partenaire. You already took a @@, please put this one back in the box. Tu as déjà pris un @@, remets celui-là à sa place dans la boîte. +You are a handsome and good looking bird! + + You are already mounting something else Tu es déjà en train de chevaucher autre chose. @@ -9758,6 +10427,12 @@ Tu es dans la maison des Forgerons, par Jove ! You are just sitting on the shadow of your store. Tu t'asseois juste en dessous de l'ombre de ton magasin. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 Tu es nouvelle par ici, pas vrai ? @@ -9818,6 +10493,9 @@ Tu es sur un radeau à la dérive en pleine mer. You are on the human resource wing of the Town Hall. Tu es sur l'aile des ressources humaines de l'Hôtel de Ville. +You are the Phoenix of this forest." + + You are unable to change your job. Tu ne peux pas changer ton métier. @@ -9959,6 +10637,9 @@ Tu ne peux pas abandonner d'objet sur cette carte. You can't go there! Tu ne peux pas y aller ! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. Tu ne peux pas quitter le terrain de combat des guildes. @@ -9977,12 +10658,21 @@ Tu ne peux pas effectuer des échanges sur cette carte. You can't use commands while dead. Tu ne peux pas utiliser des commandes si tu es mort. +You can't use the shovel here. +Tu ne peux pas utiliser la pelle ici. + You can't withdraw that much money Tu ne peux pas retirer cette quantité d'argent You cannot autotrade when dead. Tu ne peux pas échanter automatiquement lorsque tu es mort. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. Tu ne peux pas changer de chef de guilde sur cette carte. @@ -10295,8 +10985,8 @@ Tu remarques un jeune homme assis sur l'une des plus hautes branches de l'arbre. You now also have access to the Legion building. Good job, you earned it. Tu as maintenant aussi accès au bâtiment de la Légion. Beau travail, tu l'as mérité. -You open a book named @@. -Tu ouvres un livre appelé @@. +You open a book named "%s". + You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. Tu ouvres le livre, mais il semblerait que l'eau de mer l'ai endommagé sévèrement. Plusieurs pages ne sont plus lisibles. D'autres sont simplement manquantes. @@ -10346,6 +11036,9 @@ Tu vois un livre recouvert de poussière sur l'étagère... You see a raijin boy, sitting on the edge of the dock. Tu vois un garçon raijin, assis sur le bord du ponton. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. Tu vois une jeune fille elfe, avec une forte sensation de douleur sur son visage. @@ -10844,6 +11537,9 @@ changer le sexe de conf/import/msg_conf.txt conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data données @@ @@ @@ données @@ -10859,6 +11555,9 @@ pieds, fisherman pêcheur +foo %2$s bar %1$s baz + + garment, vêtement, @@ -10949,18 +11648,51 @@ main droite, skill %d: %s (%s) compétence %d : %s (%s) +test + + +test %s + + test @@ test @@ +test#0 + + +test#1 + + test1 test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, tête haute, +tricked thus again. + + unban débannir diff --git a/langs/lang_it.txt b/langs/lang_it.txt index 861c7f29..55460c27 100644 --- a/langs/lang_it.txt +++ b/langs/lang_it.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. ... e 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2014 Evol Online A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Un biscotto! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. A bordo dei marinai sono in piedi. Cercano di parlarti. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ Dopo aver scelto la tua arma, e' bene tu sappia anche come usarla. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ E adesso voglio vederti correre! And now I'm a sailor, as you can see! E ora sono un marinaio, come vedi. +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? E dopo cos'e' successo? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ E tu? Come va? And you? How's it yaying on your side? E tu? Come andare? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? Qualche idea su dove possa essere Astapolos? @@ -1040,6 +1160,9 @@ Artis ovviamente! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Prima... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ I biscotti ti danno forza, salute e bellezza. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! TI SENTI MEGLIO?! @@ -2081,6 +2279,9 @@ Dan rimane in silenzio dopo la tua domanda. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Non dare la chiave di accesso della tua stanza a nessuno! Tienila segreta e non usare la stessa per altre stanze in futuro. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Hai qualcosaltro per me? Do you have anything for me today? Hai qualcosa per me? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Vuoi che la vada a trovare io? +Do you want to continue? + + Do you want to cut this @@? Vuoi tagliare questo @@?? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Ridammi subito quel piatto lurido traditore! Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? Abbiamo provato a ripulirli ma l'acqua marina li ha praticamente distrutti. Ecco perchè ti abbiamo fornito dei nuovi vestiti. Non sono particolarmente accattivanti, ma e' tutto quello che ti possiamo dare. @@ -3065,6 +3347,9 @@ Ottimo! Cosa mi hai portato di buono oggi? Green Cotton Dye +Green Slime + + Greetings traveler.#0 Piacere viaggiatrice. @@ -3221,6 +3506,9 @@ Mezzo Croconut Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? Hai visto niente di pericoloso? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. Ha bisogno di piu' cibo. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Hehe! @@ -3572,6 +3869,9 @@ Hmm... Vediamo, prendi questo. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *cough*, *cough*, *burp*, *cough*. Cosa... Che succede?!... *cough*, *burp*... Maledetto Gado... *cough* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Tuttavia... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! CERCO ANCHE DI EVITARE GLI ANIMALI PERICOLOSI! @@ -3794,9 +4100,6 @@ Non riesco a ricordarmi nulla. I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! Se avessi visto chi *hick* chi eeeeeriiii... Non ti avrei *hic* aiutato! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ Vero, tutto sembra funzionare a dovere sotto la tua guida esperta. Nard ha scelt In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Coltello Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. La vita a bordo e' un'esperienza unica, ma ogni tanto abbiamo bisogno di aria fresca. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magico Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ No. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, GUARDA LA! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Una volta che il nemico muore, clicca col mouse sugli oggetti che ha lasciato cadere per aggiungerli al tuo inventario. Puoi anche usare il tasto 'Z' della tastiera per raccoglierli piu' velocemente. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Pibacche Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Blobime Rosa Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds -Semi di Zucca +Pumpkin Juice -Pumpkish +Pumpkin Seeds +Semi di Zucca -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Rrrr pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops Goccia d'Acqua marina @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... È una mia buona... amica... Volevamo sposarci poche settimane prima del suo incidente ma... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Stupido yeye... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! È UN BEL NOME! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Prendi la tua ricompensa dalla cassa accanto al mio tavolo! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Grazie per l'aiuto! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! Questa e' un'ottima notizia! +That's not the question + + That's perfect, yoiis.#0 Perfetto, yoiss. @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ Il capitano ti sta aspettando! Sbrigati. The captain wants: Il capitano vuole: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ La paura di vederla dormire in questo letto qui in silenzio sta diventando sempr The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. La prima cosa che devi imparare e' valutare chi ti trovi davanti. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! L'usurpatrice e' stata punita! Questo e' un gran giorno, prendi questa ricompensa come prezzo per la tua lealta' al vecchio comandante! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. I loro comandanti infine vennero alla conclusione che un'alleanza era l'unica via affinche' i popoli sopravvivessero. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Questo e' un @@, un frutto di mare azzurro. Sono ricercatissimi in tutto l'arcipelago. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Per aprire l'Inventario, premi il tasto F3 oppure selezionalo dal menu' principale. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Voce di Tritan Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Mmmh, ciao. Uhm... Your story seems... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Capito, ti aiuterò. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! Cosa? Quel tritan è il peggiore scansafatiche abbia mai conosciuto. +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. @@ -9470,6 +10109,9 @@ Chi dovrei cercare? Who's this Julia? Chi è Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Perchè Frenchy? E' russa! @@ -9512,6 +10154,9 @@ Perché? Why? And who should you bring it back to? Perche'? E a chi la dovresti portare indietro? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Wow, sembra che tutti conoscano il mio nome! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ Sei su una zattera. In mezzo al mare. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Non puoi andare la! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban diff --git a/langs/lang_nl_BE.txt b/langs/lang_nl_BE.txt index 93fa65ae..b01e4782 100644 --- a/langs/lang_nl_BE.txt +++ b/langs/lang_nl_BE.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Hallo schat! A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Aan boord staan een groep zeelui. Ze proberen met je te praten. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ After choosing your weapon, you also need to know how to use it. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ And now I want to see you run! And now I'm a sailor, as you can see! En nu ben ik een zeeman zoals je kan zien. +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ En jij? Hoe gajat het met jou? And you? How's it yaying on your side? En jij? Hoe gajat het met jou? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? @@ -1040,6 +1160,9 @@ Artis natuurlijk! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Voor... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Cookies provide you strength, health and cuteness. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! @@ -2081,6 +2279,9 @@ Dan spreekt niet meer sinds je laatste vraag. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Geef niemand het wachtwoord van je kamer! Houd het geheim en gebruik ze ook niet voor andere kamers in de toekoemst. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Do you have anything else for me? Do you have anything for me today? Heb je vandaag iets voor me? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Wil je dat ik haar in jouw plaats ga opzoeken? +Do you want to continue? + + Do you want to cut this @@? Wil je deze @@ snijden? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Give me back this dish, you dirty liar!#1 Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? Geweldig jou te zien. Wat kan ik vandaag voor je betekenen? @@ -3065,6 +3347,9 @@ Geweldig, wat voor eten heb je vandaag voor me? Green Cotton Dye +Green Slime + + Greetings traveler.#0 Gegroet reiziger. @@ -3221,6 +3506,9 @@ Halve Krokosnoot Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? Heb je iets gevaarlijks gezien? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. Hij heeft meer voedsel nodig. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Haha! @@ -3572,6 +3869,9 @@ Hmm... Let's see, take this one. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Alhoewel... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! @@ -3794,9 +4100,6 @@ Ik kan me niks herinneren. I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! Als ik had *hik* gezien wieeee... *hips* je was had ik je niet geholpen! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ In fact, everything seems to work perfectly under your guidance. Nard has made t In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Mes Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magische Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ Neen. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, KIJK DAAR! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Pibessen Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Roze Blobime Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds +Pumpkin Juice -Pumpkish +Pumpkin Seeds -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops Zeedruppels @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Ze is een goede vriendin van me... We zouden gaan trouwen een paar weken voor haar ongeluk, maar ... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Stomme jeje... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! DAT IS EEN MOOIE NAAM! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Bedankt voor je hulp! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! +That's not the question + + That's perfect, yoiis.#0 @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ De kapitein wacht op je! Haast je. The captain wants: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ De angst om haar te zien slapen in dat stil een eenzaam bed wordt steeds meer on The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Hun leiders kwamen tot de conclussie dat een verdrag de enige manier was om te overleven. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Dit is een @@, een lichtblauwe zeevrucht. Ze zijn enorm geliefd in de eilandengroep. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Als je je voorraadvenster wil openen gebruik de 'F3' toets of klik met je muis op 'INV' in het menu bovenaan op je scherm. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Trtitan Stem Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Euh, daag. Uhm... Your story seems... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Begrepen, ik zal je helpen. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. @@ -9470,6 +10109,9 @@ Who should I search for? Who's this Julia? Wie is deze Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Waarom Fransoos? Het is een Russische! @@ -9512,6 +10154,9 @@ Waarom? Why? And who should you bring it back to? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ Je zit op een vlot, op drift op zee. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Je mag daar niet komen! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban diff --git a/langs/lang_pl.txt b/langs/lang_pl.txt index 6515673d..5d3acd92 100644 --- a/langs/lang_pl.txt +++ b/langs/lang_pl.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Apostolos - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Apostolos -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Apostolos ... and 1 @@. ... i 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Apostolos 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Witaj kochany!#1 A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Ciasteczko! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Å»eglarze na pokÅ‚adzie próbujÄ… siÄ™ z tobÄ… porozumieć. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ Po wyborze broni, musisz też wiedzieć jak niÄ… wÅ‚adać. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ A teraz chciaÅ‚bym widziec jak uciekasz! And now I'm a sailor, as you can see! A teraz jestem żeglarzem, jak widzisz! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? I wtedy co siÄ™ staÅ‚o ? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ A Ty? Jak tam po Twojej stronie? And you? How's it yaying on your side? A Ty? Co tam bubli po Twojej stronie? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? JakieÅ› pomysÅ‚y gdzie Astapolos może siÄ™ ukrywać ? @@ -1040,6 +1160,9 @@ Artis oczywiÅ›cie! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Przedtem... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Ciastka dajÄ… ci siÅ‚Ä™, zdrowie i bystrość. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! CZY CZUJESZ SIĘ LEPIEJ?! @@ -2081,6 +2279,9 @@ Dan pozostaje cichy od czasu twego ostatniego pytania. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Nie udostepniaj nikomu hasÅ‚a do Twojego pokoju! Zachowaj je w tajemnicy i postaraj siÄ™ nie używać go w żadnym innym pokoju. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Masz dla mnie coÅ› jeszcze ? Do you have anything for me today? Masz coÅ› dla mnie? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Chcesz, abym poszedÅ‚ jÄ… zobaczyć? +Do you want to continue? + + Do you want to cut this @@? Chcesz Å›ciąć ten @@? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Oddawaj mi ten posiÅ‚ek, ty brudny kÅ‚amco! #1 Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? CieszÄ™ siÄ™, że CiÄ™ widzÄ™! Co mogÄ™ dla Ciebie zrobić? @@ -3065,6 +3347,9 @@ Wspaniale, jakie pożywienie masz dla mnie dzisiaj? Green Cotton Dye +Green Slime + + Greetings traveler.#0 Witaj wÄ™drowniczko. @@ -3221,6 +3506,9 @@ Pół Krokosa Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? WidziaÅ‚eÅ› cokolwiek niebezpiecznego? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. On potrzebuje wiÄ™cej pożywienia. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Hehe! @@ -3572,6 +3869,9 @@ Hmm... zobaczmy, wezmÄ™ ten. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmmm mhh *kaszle". *kaszle*. Co... Co to jest?!... *kaszle*... Cholerny Gado... *kaszle* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Jednakże... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! RÓWNIEÅ» UNIKAM GROŹNYCH ZWIERZÄ„T! @@ -3794,9 +4100,6 @@ Niczego nie pamiÄ™tam. I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! JeÅ›li wiedziaÅ‚bym *hik* kim byÅ‚eÅ›... *hik* to nie pomagaÅ‚bym tobie! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ W zasadzie, wszystko dziaÅ‚a doskonale pod Twoim przewodnictwem. Nard dokonaÅ‚ s In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Nóż Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Å»ycie na statku jest super, ale czasem potrzeba Å›wieżego powietrza. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magiczny Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ Nie. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, PATRZ TAM! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Jak tylko potwór umrze, kliknij na upuszczony przez niego przedmiot lub naciÅ›nij Z aby dodać go do inwentarza. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ JagódeÅ‚ki Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Różowy Blobim Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds -Pestki Dyni +Pumpkin Juice -Pumpkish +Pumpkin Seeds +Pestki Dyni -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapatran +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops Morskie Krople. @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Jest mojÄ… dobrÄ… przyjaciółkÄ…... ChcieliÅ›my siÄ™ pobrać na kilka tygodni przed wypadkiem, ale... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... GÅ‚upi blub blub... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! TO ÅADNE IMIĘ! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Weź sobie nagrodÄ™ z kufra obok mojego biurka! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ DziÄ™kujÄ™ za pomoc! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! Dobrze to sÅ‚yszeć! +That's not the question + + That's perfect, yoiis.#0 To doskonale, yoiis.#0 @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ Kapitan na Ciebie czeka! Pospiesz siÄ™. The captain wants: Kapitan chce: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ Strach ujrzenia jej Å›piÄ…cej na tym cichym i samotnym łóżku staje siÄ™ coraz The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. PierwszÄ… rzeczÄ… jakÄ… powinieneÅ› zrobić, to ocenić wroga. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! Uzurpator zostaÅ‚ ukarany! To wielki dzieÅ„! Weź tÄ… nagrodÄ™ jako uhonorowanie twej lojalnoÅ›ci wobec starego dowódcy! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Ich dowódcy wreszcie doszli do wniosku, że alians jest jedynÄ… opcjÄ… zapewniajÄ…cÄ… przetrwanie. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. To jest @@, jasnoniebieski morski owoc. SÄ… bardzo porzÄ…dane w archipelagu. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo. @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Jeżeli chcesz otworzyć ekwipunek naciÅ›nij F3 lub kursorem kliknij w powyższym menu klienta. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice GÅ‚os Trytana Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Mmm, do zobaczenia. Uhm... Your story seems... Uhm... Twoja opowieść wydaje siÄ™.... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Zrozumiano, pomogÄ™ Ci. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! Co? Ten trytan to najgorszy nierób, jakiego znam. +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Kiedy widzisz coÅ› co wyglÄ…da bardziej jak bÅ‚Ä…d niż jak funkcja, zgÅ‚oÅ› to tutaj http://bugs.evolonline.org albo spróbuj\nskontaktować siÄ™ z współautorami gry. @@ -9470,6 +10109,9 @@ Kogo powinienem sprawdzić ? Who's this Julia? Kto to jest ta Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Czemu Francuz? To przecież Rosjanka! @@ -9512,6 +10154,9 @@ Dlaczego? Why? And who should you bring it back to? Dlaczego? I komu powinieneÅ› to odnieść? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! ÅaÅ‚. WyglÄ…da na to że wszyscy wiedzÄ… jak siÄ™ nazywam. @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ JesteÅ› na tratwie dryfujÄ…cej po morzu. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Nie możesz tam pójść! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban diff --git a/langs/lang_pt_BR.txt b/langs/lang_pt_BR.txt index 5ee3abc3..b0b6d8b0 100644 --- a/langs/lang_pt_BR.txt +++ b/langs/lang_pt_BR.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. ... e 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2014 Evol Online A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Um biscoito! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. A bordo estão marinheiros tentando se comunicar com você. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ Após escolher sua arma, você também vai precisar saber como usá-la. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ E agora eu quero ver você correr! And now I'm a sailor, as you can see! E agora eu sou um marinheiro, como você pode ver! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? E então o que aconteceu? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ E você? Como as coisas estão indo no seu lado? And you? How's it yaying on your side? E você? Como as coisas estão yayando no seu lado? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? Alguma dica de onde Astapolos está escondido? @@ -1040,6 +1160,9 @@ Artis é claro! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Antes... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Biscoitos fornecem-lhe força, vida e fofura. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! VOCÊ SE SENTE MELHOR? @@ -2081,6 +2279,9 @@ Dan se mantém em silêncio desde sua última pergunta. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Não diga a senha de seu quarto para ninguém! Mantenha segredo e tente não usar a mesma senha em outros quartos no futuro. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Você tem algo para mim hoje? Do you have anything for me today? Você tem algo para mim hoje? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Você quer que eu vá até ela ao invés de você? +Do you want to continue? + + Do you want to cut this @@? Você quer cortar este @@? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Devolva-me este prato agora, seu mentiroso sujo! Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? Que bom te ver! O que posso fazer por você hoje? @@ -3065,6 +3347,9 @@ Great, what food do you have for me today?#1 Green Cotton Dye +Green Slime + + Greetings traveler.#0 Saudações viajante! @@ -3221,6 +3506,9 @@ Croconozes partido Half Eggshell +Hard Spike + + Hard work always pays off! O trabalho duro sempre compensa! @@ -3248,6 +3536,9 @@ Você já viu Fexil? Have you seen anything dangerous? Você viu alguma coisa perigosa? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. Ele precisa de mais comida. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Hehe! @@ -3572,6 +3869,9 @@ Hmm... Vamos ver, pegue este. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Hmmm, hm... *cough*, *cough*, *burp*, *cough*. O que... O que é isso?!... *cough*, *burp*... Maldito Gado... *cough* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... No entanto... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! Eu também evito animais perigosos! @@ -3794,9 +4100,6 @@ Eu não lembro de nada. I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! Se eu tivesse visto *hic* quem você era... *hic* Não teria te ajudado! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ Na verdade, tudo parece funcionar perfeitamente sob sua orientação. Nard fez a In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Faca Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Viver em um navio é incrÃvel, mas à s vezes precisamos de ar fresco. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Arpan Mágico @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ Não. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, OLHA LÃ! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Uma vez que o monstro esteja morto, clique nos itens que caÃram para adicioná-los ao seu inventário. Você também pode usar a tecla "Z" para pegar os itens. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Piberries Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Blobime Rosa Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds -Sementes de Abóbora +Pumpkin Juice -Pumpkish +Pumpkin Seeds +Sementes de Abóbora -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops Gotas do mar @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Ela é uma boa amiga... Nós queriamos nos casar algumas semanas antes do seu acidente mas... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Estúpido yeye... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! NOME LEGAL! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Pegue sua recompensa da caixa próxima à minha mesa! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Obrigado pela ajuda! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! É bom ouvir isso! +That's not the question + + That's perfect, yoiis.#0 Isso é perfeito, yoiis. @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ O capitão está te esperando! Ande logo. The captain wants: O capitão quer: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ O medo de vê-la dormindo nesta cama quieta e solitária está se tornando insup The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. A primeira coisa que você deve fazer é avaliar seu inimigo. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! O usurpador foi punido! Este é um grande dia! Tome esta recompensa como prêmio por sua lealdade ao antigo comandante! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Seus lÃderes então chegaram à conclusão de que uma aliança era o único modo de sobreviver. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Isto é um @@, uma fruta marÃtima azul clara. Eles são altamente desejados no arquipelago. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Para abrir seu inventário, use a tecla F3 ou use o mouse no menu acima. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Voz de Tritão Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Uhm, tchau. Uhm... Your story seems... Uhm... Sua história parece... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. Entendido, eu vou te ajudar. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! O que?! Este tritão é o pior mandrião que eu já conheci! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. Se você ver algo que se parece mais com um bug do que com uma caracterÃstica, reporte em http://bugs.evolonline.org ou tente entrar em contato com um contribuidor do jogo. @@ -9470,6 +10109,9 @@ Quem eu devo procurar? Who's this Julia? Quem é essa Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Francesinha? É uma russa! @@ -9512,6 +10154,9 @@ Por quê? Why? And who should you bring it back to? Porque? E para quem você deveria levá-lo de volta? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Wow, parece que todo mundo sabe meu nome! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ Você está em uma jangada, à deriva em alto mar. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Você não pode entrar aÃ! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ mudar o sexo de conf/import/msg_conf.txt conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ pés, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ mão direita, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban desbanir diff --git a/langs/lang_ru.txt b/langs/lang_ru.txt index c6d1c035..cb183956 100644 --- a/langs/lang_ru.txt +++ b/langs/lang_ru.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. %d результатов найдено. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> - разбан вÑех из <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options -- ДоÑтупные опции +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches -- Показывать первые %d чаÑтичные ÑÐ¾Ð²Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. ...И 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. 7. ##BÐе иÑпользуйте "мультибокÑ".##b Вам запрещено принимать учаÑтие в Ñражении, управлÑÑ Ð±Ð¾Ð»ÐµÐµ чем одним перÑонажем одновременно. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2014 Evol Online A GM has discharged you from jail. ГМ оÑвободил Ð²Ð°Ñ Ð¸Ð· тюрьмы. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! Печеньку! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. Внезапный приÑтуп головной боли заÑтавил Ð²Ð°Ñ Ð¿Ð¾Ñ‚ÐµÑ€ÑÑ‚ÑŒ концентрацию. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! ЗаÑц! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! Ðааааааааааа! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Ðа борту ÑтоÑÑ‚ морÑки, пытающиеÑÑ Ð³Ð¾Ð²Ð¾Ñ€Ð¸Ñ‚ÑŒ Ñ Ñ‚Ð¾Ð±Ð¾Ð¹. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop Ðзоп @@ -641,9 +728,15 @@ After choosing your weapon, you also need to know how to use it. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? Теперь, немного оÑмотревшиÑÑŒ в ÐртиÑе, что Ñ‚Ñ‹ думаешь о нашем городе? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! Ð’Ñе игроки были выкинуты! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. Ð’Ñе навыки добавлены в ваше дерево навыков. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? Сколько? @@ -839,12 +947,21 @@ And now I want to see you run! And now I'm a sailor, as you can see! И теперь Ñ Ð¼Ð¾Ñ€Ñк, как видишь! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? И что ÑлучилоÑÑŒ потом? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? И что Ñ Ð¿Ð¾Ð»ÑƒÑ‡Ñƒ взамен за Ñту информацию? @@ -872,6 +989,9 @@ And you? How's it going on your side? And you? How's it yaying on your side? Ð Ñ‚Ñ‹? Как йейтÑÑ Ñƒ тебÑ? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? ЕÑÑ‚ÑŒ идеи где ÐÑÑ‚Ð°Ð¿Ð¾Ð»Ð¾Ñ Ð¼Ð¾Ð¶ÐµÑ‚ прÑтатьÑÑ? @@ -1040,6 +1160,9 @@ Artis of course! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. Как Ñ‚Ñ‹, возможно, понÑл, мы — иÑÑледователи, Ñовершающие дальние плаваниÑ, и наши удалые морÑки должны запаÑти доÑтаточно продовольÑтвиÑ, чтобы выжить. Ты не предÑтавлÑешь, наÑколько опаÑна жизнь морÑка. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. До того, как Ñ Ð¿Ñ€Ð¸ÑоединилÑÑ Ðº Ðарду, Ñ Ð±Ñ‹Ð» вором. @@ -1340,6 +1472,9 @@ Before... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. Закопать. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 Ðо... ЕÑли у неё амнезиÑ, как Ñказала ДжулиÑ... Ðам не Ñледует беÑпокоитьÑÑ Ð¾ ней. По крайней мере пока. +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | Облака2 | +Clover Patch + + Clown Клоун +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. ПоздравлÑÑŽ, теперь Ñ‚Ñ‹ чаÑÑ‚ÑŒ команды. Ещё раз ÑпаÑибо за помощь. @@ -1946,6 +2108,9 @@ Cookies provide you strength, health and cuteness. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree Крокодерево +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader КреÑтоноÑец @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! ТЕБЕ СТÐЛО ЛУЧШЕ?! @@ -2081,6 +2279,9 @@ Dan keeps silent since your last question. Dan#000-2-1 +Dance for me + + Dancer Танцор @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin Дарлин +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. ЛовкоÑÑ‚ÑŒ (dex) увеличивает урон при Ñтрельбе из лука и вашу точноÑÑ‚ÑŒ. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia Ðе давай пароль от Ñвоей комнаты никому! Держи его в Ñекрете и поÑтарайÑÑ Ð½Ðµ иÑпользовать такой же пароль в какой-либо другой комнате в будущем. - ДжулиÑ. +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Do you have anything else for me? Do you have anything for me today? У Ñ‚ÐµÐ±Ñ ÐµÑÑ‚ÑŒ что-нибудь Ð´Ð»Ñ Ð¼ÐµÐ½Ñ? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? Хочешь чтобы Ñ Ð¿Ð¾ÑˆÐµÐ» проведать ее вмеÑто тебÑ? +Do you want to continue? + + Do you want to cut this @@? Ты хочешь раÑколоть Ñтот @@? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors Ðлмо#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana ФроÑтиана @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Give me back this dish, you dirty liar!#1 Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. Пойди и возьми один из них. Хороший нож поможет тебе в охоте на ÑущеÑтв Ñтого оÑтрова. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. Хороший день, миÑÑ. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? Рад видеть тебÑ! Что Ñ Ð¼Ð¾Ð³Ñƒ Ñделать Ð´Ð»Ñ Ñ‚ÐµÐ±Ñ ÑегоднÑ? @@ -3065,6 +3347,9 @@ Great, what food do you have for me today?#1 Green Cotton Dye +Green Slime + + Greetings traveler.#0 ПриветÑтвую путешеÑтвенница. @@ -3221,6 +3506,9 @@ Half Croconut Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? Видел ли Ñ‚Ñ‹ что-нибудь опаÑное? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. Ему нужно больше еды. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! Хехе! @@ -3572,6 +3869,9 @@ Hmm... Let's see, take this one. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* Хм, хм... *кашель*, *кашель*, *урп*, *кашель*. Что... Что Ñто?!... *кашель*, *урп*... Чёртов Гадо... *кашель* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... Однако... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! Я ТÐК ЖЕ ПРЕДУПРЕЖДÐЮ ОБ ОПÐСÐЫХ ЖИВОТÐЫХ! @@ -3794,9 +4100,6 @@ I can't remember anything.#1 I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! ЕÑли бы Ñ Ð²Ð¸Ð´ÐµÐ» *ик* кем Ñ‚Ñ‹ был... *ик* бы тебе не помог! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ In fact, everything seems to work perfectly under your guidance. Nard has made t In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. Ðа Ñамом деле... О, Ñ Ð¼Ð¾Ð³ бы такое раÑÑказать... Ðо должен оÑтановитьÑÑ Ð½Ð° Ñтом... ПроÑто будь благоразумным и иди домой. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Knife Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 ПоÑледний раз Ñ Ð²Ð¸Ð´ÐµÐ» тебÑ, потерÑвшейÑÑ Ð² море на Ñвоём плоту. @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub Мелкий блаб +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. Жизнь на корабле - Ñто здорово, но нам иногда нужен Ñвежий воздух. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Маг Ðрпан @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ No. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, LOOK THERE! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. С одной Ñтороны оружие дальнего Ð±Ð¾Ñ Ð¾Ð±Ñ‹Ñ‡Ð½Ð¾ Ñлабее, чем ближнего, за то Ñ‚Ñ‹ атакуешь Ñ Ð±Ð¾Ð»ÐµÐµ безопаÑной позиции. С другой Ñтороны, в завиÑимоÑти от ÑƒÑ€Ð¾Ð²Ð½Ñ Ð¾Ñ€ÑƒÐ¶Ð¸Ñ, оружие ближнего Ð±Ð¾Ñ Ð¿Ð¾Ñ‚ÐµÐ½Ñ†Ð¸Ð°Ð»ÑŒÐ½Ð¾ убивает быÑтрее. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. Когда монÑÑ‚Ñ€ умрёт, выпадет предмет. Чтобы добавить его в инвентарь - кликните на нём. Ð’Ñ‹ так же можете иÑпользовать клавишу "Z", чтобы подобрать выпавшие предметы. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Piberries Piberries Infusion +Pickaxe + + Pikpik Пикпик +Pile Of Ash + + +Pink Antennae + + Pink Blobime Розовый Слизеком Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou Пию @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds -Семена Тыквы +Pumpkin Juice -Pumpkish +Pumpkin Seeds +Семена Тыквы -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... Хррр... Пшшшш... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan Сапартан +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops Капли морÑкой воды @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... Она мой лучший друг... Мы хотели поженитьÑÑ Ð·Ð° неÑколько недель до неÑчаÑтного ÑлучаÑ, но... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 Вот почему мы хотели предупредить тебÑ, возможно она из той гильдии, знак которой был на плоту. +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... Тупой йейе... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! МИЛЕÐЬКОЕ ИМЯ! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! Возьми Ñвою награду из Ñщика, Ñ€Ñдом Ñ Ð¼Ð¾Ð¸Ð¼ Ñтолом. -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Thanks for the help! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! Рад Ñлышать! +That's not the question + + That's perfect, yoiis.#0 Ðто отлично, йойиÑ. @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ The captain is waiting for you! Hurry up. The captain wants: Капитан хочет: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ The fear to see her sleeping on this quiet and lonely bed is becoming more and m The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. Сперва Ñ‚Ñ‹ должен оценить противника. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! Узурпатор был повержен! Ðто великий день! Прими Ñту награду, как выÑокую оценку твоей лоÑльноÑти Ñтарому командиру! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. Их лидеры пришли к выводу, что альÑÐ½Ñ Ð±Ñ‹Ð» единÑтвенным ÑпоÑобом выжить. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. Ðто @@, Ñветло-голубой морÑкой фрукт. Они выÑоко ценÑÑ‚ÑÑ Ð½Ð° архипелаге. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 К такому разговору Ñледует отноÑитьÑÑ Ñ Ð½ÐµÐ´Ð¾Ð²ÐµÑ€Ð¸ÐµÐ¼, однако Ñ ÑоглаÑен и признаю, что Ñ Ñ‚Ð¾Ð¶Ðµ наÑтроен ÑкептичеÑки, так что надо приÑмотреть за ним. +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now Ðтот игрок ÑÐµÐ¹Ñ‡Ð°Ñ +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo Тиббо @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. Чтобы открыть инвентарь иÑпользуйте клавишу F3 или иÑпользуйте мышь, чтобы выбрать его в верхнем меню вашего клиента. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub Топпи Блаб @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Ð“Ð¾Ð»Ð¾Ñ Ñ‚Ñ€Ð¸Ñ‚Ð°Ð½Ð° Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 Точно, но ÑÐµÐ¹Ñ‡Ð°Ñ Ð¾Ð½ прекраÑно выглÑдит! Я прав? @@ -8693,6 +9317,9 @@ Uhm, bye. Uhm... Your story seems... Ðм... Ð¢Ð²Ð¾Ñ Ð¸ÑториÑ... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. ПонÑтно, Ñ Ñ‚ÐµÐ±Ðµ помогу. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! Что?! Ðтот тритан - худший бездельник, которого Ñ ÐºÐ¾Ð³Ð´Ð° либо вÑтречал! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. ЕÑли вы увидите что-нибудь, что выглÑдит больше как "баг", чем как "фича", Ñообщите об Ñтом на http://bugs.evolonline.org или попробуйте ÑвÑзатьÑÑ Ñ ÐºÐµÐ¼-нибудь из Ñоздателей игры. @@ -9470,6 +10109,9 @@ Who should I search for? Who's this Julia? Кто Ñта ДжулиÑ? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Почему француженка? Она руÑÑкаÑ! @@ -9512,6 +10154,9 @@ Why? Why? And who should you bring it back to? Почему? И кто Ñказал тебе вернуть Ñто? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script Со ÑÑ†ÐµÐ½Ð°Ñ€Ð¸Ñ +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! Вау, похоже на то, что вÑе знают моё имÑ! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ You are on a raft, adrift in the sea. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Ты не можешь здеÑÑŒ находитьÑÑ! +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, одежда, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban Разбан diff --git a/langs/lang_vls.txt b/langs/lang_vls.txt index 33afc6f2..e58cd84d 100644 --- a/langs/lang_vls.txt +++ b/langs/lang_vls.txt @@ -110,6 +110,42 @@ Copyright (C) 2010-2014 Evol Online "@alootid reset" will clear your autolootitem list. +"Mister Piou, good day to you. + + +"My good Sir, + + +##BWARNING:##b you are about to permanently empty the quote database. + + +% 10s + + +% 5d + + +%% + + +%+5d + + +%-10s + + +%-5d + + +%05d + + +%10s + + +%5d + + %d - void @@ -164,6 +200,9 @@ Copyright (C) 2010-2014 Evol Online %d results found. +%d%% + + %d: Body Armor @@ -194,6 +233,15 @@ Copyright (C) 2010-2014 Evol Online %d: Top Headgear +%s + + +%s %d %s + + +%s %s %s + + %s :Main: %s @@ -371,7 +419,7 @@ Copyright (C) 2010-2014 Evol Online - unbans everyone from <channel name> -- unbinds your global chat from its attached channel (if binded) +- unbinds your global chat from its attached channel (if bound) -- %s @@ -419,6 +467,15 @@ Copyright (C) 2010-2014 Evol Online -- Available options +-- Continues on Volume II -- + + +-- Continues on Volume III -- + + +-- Continues on Volume IV -- + + -- Displaying first %d partial matches @@ -458,6 +515,9 @@ Copyright (C) 2010-2014 Evol Online ... and 1 @@. +...And if you're still trying to check your pet stats, just hover it with your mouse. Thanks. + + ...I mean log! Made of log! @@ -515,6 +575,18 @@ Copyright (C) 2010-2014 Evol Online 7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time. +<MSG>2949</MSG> + + +<MSG>2950</MSG> + + +<MSG>3455</MSG> + + +<MSG>3456,%d</MSG> + + @@ @@ -548,6 +620,9 @@ Copyright (C) 2010-2014 Evol Online A GM has discharged you from jail. +A band of adventurers formed in Argaes from those who had lost their homes and families. They visited the three permanent human settlements: Tulimshar, Hurnscald and Nivalis. + + A cookie! @@ -557,6 +632,9 @@ A great city, eventually to become larger than the cities of Ancea, rose on the A headache hits you and you lose your concentration. +A large tree was found in a deep cave underneath the island of Candor. Despise the darkness of the cave and absence of leaves, the tree grew strong. It gave light off itself and its energy empowered the wizards. + + A rabbit! @@ -581,12 +659,18 @@ ATK: %d - MATK: %d~%d Aaaaaahhhhhh! +Able to write a poem + + Aboard stand sailors trying to communicate with you. Abort +Abort! + + About the Legion of Aemil, I'm not sure about them, frankly. @@ -623,6 +707,9 @@ Add a new line Aemil was once a magnificent land unknown to us all. +Aemilean Era. Tulimshar, Hurnscald and Nivalis held power of their surrounding lands, except for the Land Of Fire and Keshlam City. + + Aesop @@ -641,9 +728,15 @@ After choosing your weapon, you also need to know how to use it. After that, stay still and be patient, but also alert! +After the Mana War, the Ancea continent was mostly destroyed. It would take years to nature start repairing the damage of the event. + + After this small overview of Artis, what do you think of our city? +After this war, the Raijin race was born. A race born of Magic. Humans encapsulated in a Mana storm and altered forever. + + Agi: %d (%d~%d) @@ -707,6 +800,12 @@ AligeTrigger AligeTrigger#Artis +Alizarin Herb + + +Alizarin Plant + + All characters recalled! @@ -743,6 +842,9 @@ All online characters of the %s party have been recalled to your position. All players have been kicked! +All races were in peace until the Humans set forth to discover the Source of Magic, based on Ukar scholars studies. + + All skills have been added to your skill tree. @@ -815,6 +917,12 @@ Although the more powerful you are, the more plushrooms you will need. Although, if you want to visit a place nearby, we could take you there. +Amethyst + + +Amethyst Shard + + Amount? @@ -839,12 +947,21 @@ And now I want to see you run! And now I'm a sailor, as you can see! +And rhyming is not too + + And so far, the Merchant Guild helped me find this appartment so I can't complain! And then what happened? +And to demonstrate his beautiful voice, + + +And tried to attract him thus. + + And what would you give me in exchange for that information? @@ -872,6 +989,9 @@ And you? How's it going on your side? And you? How's it yaying on your side? +Animals Protection Agency of Aemil + + Any clue on where Astapolos may be hidden? @@ -1040,6 +1160,9 @@ Artis of course! As captain of this ship, I officially name this newly discovered land the ##BDrasil Island##b! +As on anvil strikes the hammer + + As you may know, we are explorers on a long distance voyage, and our swashbuckling mariners need to store enough food to survive. You don't know how dangerous the sea life can be. @@ -1079,6 +1202,9 @@ Atropos Mixture Auction is disabled +Auto loot item are disabled on this map. + + Autoloot is now off. @@ -1322,9 +1448,15 @@ Because I am a Kralog I can't read such things? That's rubbish. Because of the dense foliage, you need to go up close to the trees so you don't miss him. +Because the voices of death sing a sweet song + + Because you are not authorized to warp from some maps, %d player(s) have not been recalled. +Bee + + Before I joined Nard, I used to be a thief. @@ -1340,6 +1472,9 @@ Before... Behind me? It's the Blacksmith House, the most renowned throughout Aemil. +Bent trees whistling with the beat of the drum + + Besides, I need to be here to watch out for thieves while La Johanne is docked. @@ -1418,6 +1553,9 @@ Brown Cotton Dye Brown Trousers +Bug Leg + + Bury. @@ -1526,6 +1664,9 @@ But... If he has amnesia like Julia said... We don't need to worry about him. At But... If she has amnesia like Julia said... We don't need to worry about her. At least not yet.#0 +Butterfly + + By the way, I'm Lozerk. Lieutenant Lozerk. @@ -1646,6 +1787,9 @@ Cat got your tongue? Catching a piou +Cave Maggot + + Ch 1 — Fishing apparatus @@ -1853,9 +1997,24 @@ Clouds | Clouds2 | +Clover Patch + + Clown +Coal + + +Coal Vein + + +Cobalt Herb + + +Cobalt Plant + + Colorant is not the yeying color. Some wear out from light, others look great but inflict itai-itai, and others become spotty or wash-away. @@ -1919,6 +2078,9 @@ Completed, Julia wins (returned poison) Completed, got reward +Confused Tree + + Congrats, you are now part of the crew. Thanks again for your help. @@ -1946,6 +2108,9 @@ Cookies provide you strength, health and cuteness. Copper Armbands +Copper Necklace + + Coral @@ -2045,6 +2210,24 @@ CroconutMob Crocotree +Crude Amethyst + + +Crude Diamond + + +Crude Emerald + + +Crude Ruby + + +Crude Sapphire + + +Crude Topaz + + Crusader @@ -2063,6 +2246,21 @@ Current exp rate is set to @@%, and will reset to @@% (default value) in @@. Curshroom +CvC ON | + + +CvC is already Off. + + +CvC is already On. + + +CvC: Off + + +CvC: On + + DO YOU FEEL BETTER?! @@ -2081,6 +2279,9 @@ Dan keeps silent since your last question. Dan#000-2-1 +Dance for me + + Dancer @@ -2096,6 +2297,9 @@ Dark Red Cotton Dye Darlin +Database erased. + + Day Mode Activated. @@ -2168,6 +2372,15 @@ Dex: %d (%d~%d) Dexterity increases your bow damage and your accuracy. +Diamond + + +Diamond Shard + + +Diamond Vein + + Did you find my brother? @@ -2216,6 +2429,9 @@ Do not give the password of your room to anybody! Keep it secret and try not to Do not give the password of your room to anybody! Keep it secret and try not to use the same one in any other room in the future. - Julia +Do not let intimacy and hunger get to zero. If any of those get to zero, it'll leave you forever. + + Do nothing @@ -2237,6 +2453,9 @@ Do you have anything else for me? Do you have anything for me today? È j' entwadde veur ik vandoage? +Do you know anything about the recent robberies? + + Do you know how to speak with people around you? @@ -2279,9 +2498,15 @@ Do you want a drink? Do you want me to go see her instead of you? +Do you want to continue? + + Do you want to cut this @@? +Do you want to enter in sewer? + + Do you want to go somewhere? @@ -2336,6 +2561,9 @@ Don is renowned throughout the entire land of Aemil for his blacksmithing skills Don#001-2-27 +Don't be shy, you are nice + + Don't belittle me, my work is deserving of the highest esteem. @@ -2396,6 +2624,9 @@ Drag and drop an item from your inventory. Drasil Island. +Due to neglect with day-to-day administration, which she delegated to her council, and uncontrolled expenses, the kingdom faced its first economic crisis. + + Duel| Can't use %s in duel. @@ -2519,6 +2750,21 @@ Elmo#001-1 Elmo#sailors +Emerald + + +Emerald Shard + + +Empty Bottle + + +Empty Mug + + +Empty the quote DB + + Enable @@ -2534,7 +2780,7 @@ Enjoy the fraternity and excitement of your future guild! Enjoy your new style. -Enora asks to kill fluffys +Enora asks to kill fluffies Enora asks to visit Chelios @@ -2705,6 +2951,9 @@ File not found. File unloaded. Be aware that mapflags and monsters spawned directly are not removed. +Find an order with them + + Find yourself a nice dry spot on a coast where you can easily reach into deep water. @@ -2810,6 +3059,12 @@ For starters, you should probably do some stretching and practice on some dummie For what kind of tissue? +Forest Armor + + +Forest Maggot + + Found @@, got exp @@ -2825,6 +3080,9 @@ Four Castles Fourteen Castles +Free Mana travels in many directions, and this search took several years before the expedition finally found the right direction to follow. + + Fresh from the sea and cheap! @@ -2837,6 +3095,12 @@ Friend removed. From what I heard, my brother Gugli needs the help of as many people as possible in order to collect a lot of neat things that can be found on this island. +From your mind, break the ice + + +Frost held the title of Lord Prince of the Republic for eighteen months, when the council deposed him and declared itself head of the state. + + Frostiana @@ -2876,6 +3140,12 @@ Gained zeny is now shown. Gained zeny will not be shown. +Gamboge Herb + + +Gamboge Plant + + Game introduction @@ -2939,6 +3209,9 @@ Give me back this dish, you dirty liar!#1 Give me some space. +Give your pet a nice name, and keep it healthy, and you'll be a successful pet owner! + + Go and grab one of them. A good knife will help with your hunting the creatures of this island. @@ -2966,6 +3239,12 @@ Go on the upper level if you want to change your room or to use it. Go on. +Gold Nuggets + + +Gold Vein + + Good day miss. @@ -3044,6 +3323,9 @@ Got the quest Grass Carp +Grass Snake + + Great to see you! What can I do for you today? @@ -3065,6 +3347,9 @@ Great, what food do you have for me today?#1 Green Cotton Dye +Green Slime + + Greetings traveler.#0 @@ -3221,6 +3506,9 @@ Half Croconut Half Eggshell +Hard Spike + + Hard work always pays off! @@ -3248,6 +3536,9 @@ Have you seen Fexil? Have you seen anything dangerous? +Have you seen anything strange lately? + + He asked to lend some money and a place to open his store, I think that he asked for a place on the merchant squares on the south-west of the city... @@ -3281,6 +3572,9 @@ He may not have all of his wits but keep in mind one thing: He needs more food. +He opened his mouth wide and let drop his prey. + + He said he is going to climb the highest hill in Artis, which is not far from here. @@ -3302,6 +3596,9 @@ Hear me *hic* well, what ever, whatididever you will *hic* said ab... uhm... out Heard conversation +Hearing these words the Piou felt great joy, + + Hehe! @@ -3572,6 +3869,9 @@ Hmm... Let's see, take this one. Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough* +Holding a cheese in his beak. + + Homunculus growth stats (Lv %d %s): @@ -3647,6 +3947,9 @@ Howdy, partner in crime? Howdy? +However, you should only give food when it's hungry, otherwise it'll believe you're a bad owner and intimacy will decrease. + + However... @@ -3665,6 +3968,9 @@ Hurry up! Hurry, hurry! We need to check its teeth! +Hush now and hear the chorus of the woods + + I ALSO AVOID THE DANGEROUS ANIMALS! @@ -3794,9 +4100,6 @@ I can't remember anything.#1 I can't stay here and talk all day. I have a job to do. -I can't use the shovel here. - - I can't wait all day! @@ -4433,9 +4736,15 @@ If Enora wants her sword now, I need to ask for your help. If I saw *hic* who you were... *hic* Would not have helped you! +If not, how could CrazyKatiektch + + If so, I hope that he didn't give you any hard time, sometimes he can get up on the wrong side of the bed he becomes an embittered and grumpy old man... +If words beat in rhythm + + If yoiis wants to see a different use for the cards he can yeye for Resa at the light armor shop for a description of the styling cards. @@ -4451,6 +4760,9 @@ If you catch the escaped piou and bring it back, I will give you a 90% discount If you continue there will be none left! +If you don't like to + + If you ever find the time, pass by Esperia, it's the greatest city in all of Gasaron! @@ -4535,6 +4847,12 @@ In fact, everything seems to work perfectly under your guidance. Nard has made t In fact... Oh, the things that I could tell... But ran out of space on this... Just be reasonable and go home. +In hopes of one day reconnect with the people of Ancea and establish a trade between the two continents, The City of Artis was founded. The Aemil Continent has then grown without contact with the people of Ancea. + + +In truth, if your song is as beautiful as your plumage, + + Incorrect name/ID, or no one from the specified guild is online. @@ -4640,6 +4958,9 @@ Invalid time for ban command. Invalid time for jail command. +Invalid! + + Invisible: Off @@ -4649,9 +4970,15 @@ Invisible: On Iron Armbands +Iron Ore + + Iron Shovel +Iron Vein + + Is it possible to go back to Drasil Island? @@ -4676,6 +5003,9 @@ Is this for you or somebody else? Because you need to be registered to obtain th Is this some kind of joke?! +It doesn't reply. + + It escaped! @@ -4826,6 +5156,9 @@ It's still too young to fly too far away, so it just circles nearby. It's the big building in northern Artis, at the top of a small hill. +It's the good one and, ahem! + + It's to the west, on your left side. Just go through this door before the stairs and turn left afterwards. Can't miss it! @@ -4949,6 +5282,9 @@ Just look at my goods for sale! Fresh fruits and vegetables were shipped only th Just look at that water! There's a whole bunch of fish down there. +Just say something sparkling + + Kagerou @@ -4973,6 +5309,9 @@ Keep moving girl.#0 Keep the sword and the jacket, you deserved them! +Keshlam expanded rapidly under the rule of King Janeb the Founder, and soon annexed the whole Ancea continent - excluding solely the Land Of Fire - to its domains, creating the Platinum Kingdom. + + Khaki Cotton Dye @@ -4988,12 +5327,18 @@ Knife Knight +Know that every flatterer, + + Kralog Voice Lachesis Brew +Last seen: + + Last time I saw you, you were lost at sea on your raft.#0 @@ -5129,9 +5474,18 @@ Lime Cotton Dye Line @@ has been removed. +List the commands + + Little Blub +Little Green Slime + + +Lives at the expense of those who take him seriously: + + Living inside a ship is great, but we sometimes need some fresh air. @@ -5153,6 +5507,9 @@ Lloyd the Banker Locked. +Log Head + + Logic is the beginning of wisdom, not the end. @@ -5234,6 +5591,12 @@ MOTD Config MVP Monster: '%s'/'%s'/'%s' (%d) +Maggot + + +Maggot Slime + + Magic Arpan Magisch'n Arpan @@ -5252,6 +5615,12 @@ Makes sense. Do you think we should inform the capt'n about it? Male +Mana Bug + + +Mana Torch + + Manana @@ -5264,6 +5633,9 @@ Manually trigger the current broadcast Map not found. +Map or anchor not found: %s + + Map: %s (Zone:%s) | Players: %d | NPCs: %d | Chats: %d | Vendings: %d @@ -5273,9 +5645,21 @@ Market Place Marriage failed. +Master Fluffy was attracted by the odour, + + +Master Piou sat on a tree, + + Mauve Cotton Dye +Mauve Herb + + +Mauve Plant + + Max HP: %d (%d~%d) @@ -5426,6 +5810,9 @@ Most common and widely popular in the fish realm are @@ and pieces of @@. Mostly manuals and tutorials but you won't find out until you open one! +Mouboo + + Mouboo#Artis0 @@ -5642,6 +6029,12 @@ No longer spying on the %s guild. No longer spying on the %s party. +No matter the grammar + + +No matter the spelling + + No matter what people tell you, words and ideas can change the world. @@ -5702,6 +6095,9 @@ Nen'k. No. Sorry. +NoAutoloot | + + NoBaseEXP | @@ -5912,6 +6308,9 @@ OH, LOOK THERE! OK, let's trade. +Oak + + Oboro @@ -6005,6 +6404,9 @@ Oh no, you still have @@ Fluffies to kill. Oh noes! +Oh noes! You found my secret backdoor! + + Oh oh... I see, your party became so big that you want to create an even larger structure? @@ -6227,9 +6629,15 @@ Old line: On +On March 213CCE, Chancellor Benjamin Frost, with support of the council, proclaimed the Republic of Ancea. This event would become known as the Blue Revolution. + + On one hand, ranged weapons are generally weaker than melee ones, but you attack from a safer position. On the other hand, depending on the level of the weapon, melee ones potentially can yeild quicker kills. +On the year 206CCE, after a long crisis of succession, a minor noble only known as Queen Platyna the Red came to inherit the Platinum Crown. + + Once the monster is dead, click on the dropped items to add them to your inventory. You can also use the 'Z' key to claim the drops. @@ -6305,6 +6713,9 @@ Our mommy doesn't allow us to go there, because it's dangerous. But he doesn't l Our only wish to eat a plush, so juicy sweet... +Over lovers under a starry night + + Ow-oh! @@ -6371,15 +6782,33 @@ Piberries Piberries Infusion +Pickaxe + + Pikpik +Pile Of Ash + + +Pink Antennae + + Pink Blobime Pink Cotton Dye +Pink Flower + + +Pink Petal + + +Pinkie + + Piou @@ -6398,10 +6827,10 @@ Piou and The Fluffy Piou egg -Piousse +Pious must keep a strict diet composed of Piberries. -Planting not implemented. +Piousse Player '%s' (session #%d) | Location: %d,%d @@ -6605,7 +7034,7 @@ Please enter a player name (usage: @unmute <char name>). Please enter a player name (usage: @where <char name>). -Please enter a position and an amount (usage: @refine <equip position> <+/- amount>). +Please enter a position bitmask and an amount (usage: @refine <equip position> <+/- amount>). Please enter a quest skill ID. @@ -6758,6 +7187,9 @@ Please select a chapter: Please select a quest: +Please select an option: + + Please select the interval: @@ -6770,6 +7202,9 @@ Please take this @@ for your help. Please try to figure out what went wrong with this order and bring me those potions. +Please write the following sentence: + + Please, have a seat. @@ -6794,6 +7229,12 @@ Plushrooms you say? Poem about Poems +Poem is making the words dance + + +Poison Skull + + Poisoned Dish @@ -6815,6 +7256,12 @@ Priest Princess Slayer +PrivateAirshipEndable | + + +PrivateAirshipStartable | + + Professor @@ -6830,13 +7277,13 @@ Pumpkin Pumpkin Hat -Pumpkin Seeds +Pumpkin Juice -Pumpkish +Pumpkin Seeds -Pumpkish Juice +PumpkinMob Purple Blobime @@ -6896,6 +7343,9 @@ Quest debug Quest state: @@ +Quest state: @@, @@ + + Quit @@ -6941,6 +7391,9 @@ RattosControl RattosControl#001-2-23 +Raw Log + + Read it. @@ -7091,6 +7544,12 @@ Royal Guard T Rrrr... Pchhhh... +Ruby + + +Ruby Shard + + Rumly is hiding behind the tree. @@ -7139,12 +7598,24 @@ Samantha Sapartan +Sapphire + + +Sapphire Shard + + +Say her love to glamourous Gliktch? + + Scheduled broadcasts Scheduled broadcasts - Create new +Scorpion + + Script could not be loaded. @@ -7154,6 +7625,9 @@ Script loaded. Scripts have been reloaded. +Scythe + + Sea Drops @@ -7289,6 +7763,9 @@ Shadow Chaser Shadow Chaser T +Share your mind is your mission + + She is a good friend of mine... We wanted to marry a few weeks before her accident but... @@ -7385,6 +7862,15 @@ Sign#001-1-s-merchantg Sign#001-1-s-warehouse +Silk Cocoon + + +Silk Robe + + +Silkworm + + Silver Cotton Dye @@ -7439,6 +7925,9 @@ Skills have been enabled in this map. Slave clone spawned. +Sleep well my angel but don't follow along + + Small Tentacles @@ -7475,6 +7964,9 @@ So that's why we wanted to warn you, maybe he comes from that guild, as that sig So that's why we wanted to warn you, maybe she comes from that guild, as that sign was on her raft.#0 +So you have now a pet, who is loyal to you. It'll follow you everywhere, but there are two things you must know. + + So you think you're tough? A warrior must also be loyal and patient.#0 @@ -7664,6 +8156,12 @@ Speed returned to normal. Spend it wisely this time. +Spider + + +Spiky Mushroom + + Spying on the %s guild. @@ -7673,6 +8171,9 @@ Spying on the %s party. Squichy Claws +Squirrel + + Stalker @@ -7766,6 +8267,9 @@ Strength multiplies the damage of your hits, especially melee ones. You will als Stupid yeye... +Styling Shop + + Subquests: @@ -7811,6 +8315,9 @@ Surprise me! Swordsman +Swore, though somewhat later, that he would never be + + THAT'S A NICE NAME! @@ -7844,7 +8351,7 @@ Take this money for your wise choice. But do not try it again. The open sea has Take your reward from the box next to my desk! -Talk to FightNPCName and he'll show you the ropes. +Talk to Hector and he'll show you the ropes. Talk to you later! @@ -7961,6 +8468,9 @@ Thanks for the help! Thanks! +That makes everybody + + That part of the town is called the Gilded Hill, it's also where the Merchant Guild has its headquarters. @@ -7982,6 +8492,9 @@ That's exactly what I needed! That's good to hear! +That's not the question + + That's perfect, yoiis.#0 @@ -8003,6 +8516,9 @@ The @@ is a one time item, you can use it as many times as you want, but you can The Book of Laws +The Fluffy seized it and said: + + The Legion needs some potions. @@ -8018,9 +8534,24 @@ The Legion of Gasaron is in charge of the security of the intramural part of our The Legion? +The Mana Tree was lost, the caves entrances destroyed, and the Wizard Order was split in two: One part was on Candor, and other at the Magic Tower. + + +The Piou, embarrassed and confused, + + +The Platinum Kingdom grew and prospered, and drew most of the human population to the safety of the walls of Keshlam, Tulimshar, Hurnscald and Nivalis. + + The Raijin from the library flirted with me a while ago, so has Enora from the Legion. +The Republic of Ancea ceased to exist officially in August 216CCE, when the cities of Tulimshar, Hurnscald and Nivalis installed their own independent governments. + + +The Ukar Historical Association on Aemil + + The answer is a single word, without conjugation. @@ -8039,9 +8570,15 @@ The captain is waiting for you! Hurry up. The captain wants: +The collection of four books entitled “World Story For Dummies†is based on the uncessable work from the Ukar scholars, thanks to whom this wouldn't be possible. + + The control and administration of the cities passes hands sometimes. You may find the Mana Order or the Brotherhood in charge instead of us at some point! +The council, however, neglected day-to-day administration duties, and focused their efforts in regaining control of the rest of Ancea. + + The detail and craftsmanship that went into this sword can only be accomplished by the most practiced of blacksmiths. @@ -8060,12 +8597,18 @@ The fear to see her sleeping on this quiet and lonely bed is becoming more and m The fee is of @@ E. So, do you want to register? +The first human settlement to develop an advanced political structure and to become a city-state was Keshlam. + + The first page contains the universal rules that have been agreed upon throughout the land. The first thing you should do is to evaluate your enemy. +The first village build was named Esperia. Aurora region was very fertile, and for this reason they moved towards countryside and built farms. + + The fog has gone. @@ -8090,10 +8633,10 @@ The hill is located on the north-east of Artis. The holy messenger has given judgement. -The item (%d: '%s') is not equipable. +The item (%d: '%s') is not equippable. -The item is not equipable. +The item is not equippable. The light armor shop is ran by Resa, she is part of the Merchant Guild of Artis. @@ -8117,12 +8660,21 @@ The miracle is this: the more we share, the more we have. The monster/egg name/ID doesn't exist. -The name of the book is @@. +The music of the trees floats through the breeze + + +The name of the book is "%s". The newly created Fleet of Ancea travelled so far that they were never heard from again. +The newly created Fleet of Ancea travelled so far that they were never heard from again. They found a continent, present on legends of explorers who never came back. + + +The next and final battle happened at Candor. Wizards attacks from both sides near the Mana Tree provoked a Mana Storm. A Great Quake shook the earth of Ancea and the land began to split. Geography changed, and Keshlan vanished from the map. + + The next page begins to list the complex trading laws of the City of Esperia @@ -8171,12 +8723,18 @@ The stowaway doesn't answer. The travel was fine for you? It was terrible for me, I was sea-sick. +The tree was entitled The Mana Tree, and the Wizard Order took control over Candor Island. They learnt to control the mana flow, and limited its use, claiming Magic to be too dangerous for public use. + + The two cannot wed because one is either a baby or already married. The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander! +The “Ancean Era†is a term used to defined the time period between the beginning of recorded history and the events at the Mana Tree, and thanks to Ukar scholars, this is widely accepted as year 1 on all Gasaron. + + Their leaders then came to the conclusion that an alliance was the only way they could survive. @@ -8306,6 +8864,12 @@ They are so tasty when cooked with some @@. Don't drop any of them! They eventually found a new land after much hardship and named it Aurora, after its beautiful sunrise. +They gathered merchants and warriors to join them in a journey to find new lands to live in. Tulimshar's merchant lords gave them ships to sail east. + + +They named this continent as Aemil, in honour of one of such explorers. The area they docked in was called Aurora, after its beautiful sunrise. + + They sailed from Hurnscald to Tulimshar and then Nivalis, the last permanent settlements of humans. @@ -8342,6 +8906,9 @@ This NPC doesn't exist. This action can't be performed at the moment. Please try again later. +This action was met with widespread opposition from all races, and a war broke. The tritans led the offensive, in attempts to keep the tree untouched and mana available for all. + + This book contains everything you should know about it, take it! @@ -8387,6 +8954,9 @@ This is Drasil Island, I named it after an ancient mythical tree. This is a harsh word to use, you are never alone in the beautiful place of Artis. +This is a lesson that is worth a cheese no doubt." + + This is an @@, a light blue sea fruit. They're highly desired in the archipelago. @@ -8414,6 +8984,9 @@ This item cannot be traded. This item cannot be used as bait here. +This item cannot be used within this area. + + This job has no alternate body styles. @@ -8423,6 +8996,9 @@ This kind of talk should be taken with a grain of salt, but I agree and admit th This kind of talk should be taken with a grain of salt, but I agree and admit that I too am skeptical, so keep an eye on him.#1 +This led Keshlam into rapid decline and its citizen began to emigrate to the other Cities. By the end of the Ancean Era, Keshlam City was a quarter of the original size. + + This menu allows you to change your skills. @@ -8492,6 +9068,9 @@ This player is not in jail. This player is now +This skill cannot be used within this area. + + This skill number doesn't exist or isn't a quest skill. @@ -8504,6 +9083,9 @@ This will remain your respawn point until set elsewhere. Three Castles +Three cities developed on the eastern side of Ancea: Tulimshar, Hurnscald and Nivalis. + + Tibbo @@ -8540,18 +9122,36 @@ To change your job level, use this command: To change your stats, use these commands: +To de-trust a player: + + +To get a quote: + + To get started with fishing, you'll need two things: a fishing rod and a bait. To get the current rate: +To grab a quote: + + +To ignore a player: + + To move between characters that are on different accounts, you have to use the Trade function. To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client. +To perform most actions, like feeding and renaming, just right-click it. You can even put it back on the egg if its following gets too annoying. + + +To remove a quote: + + To reset back to normal: @@ -8564,6 +9164,12 @@ To successfully catch a fish, you need to pull up your hook by clicking it, righ To thank you, accept my old fishing rod. +To trust a player: + + +To unignore a player: + + ToFightRoom#001-2-32 @@ -8585,9 +9191,18 @@ Too bad. I'm not hungry enough for these cookies of yours. Maybe I'll come back Too bad... Come back when you'll have some nice food for me. Growl... grumble... grumble. +Too lazy. + + Too risky, I might end up in jail. Do it yourself. +Topaz + + +Topaz Shard + + Toppy Blub @@ -8618,6 +9233,9 @@ Trade Training Arrow +Training Wand + + TrainingGladius @@ -8627,12 +9245,18 @@ Transforming into monster is not allowed in Guild Wars. Treasure Chest +Tree Control Panel + + Tritan Voice Tritan Stemme Trozz#001-2-40 +True be or not true be + + True but now he seems pretty fine! Am I right?#1 @@ -8693,6 +9317,9 @@ Uhm, bye. Uhm... Your story seems... +Unable to Teleport in this area + + Unable to decrease the number/value. @@ -8705,6 +9332,9 @@ Unable to spawn evil clone. Unable to spawn slave clone. +Unable to win, the tritans attacked Hurnscald. While human troops moved in attempts to avoid its fall, the Kralog and Ukar joined the tritans and they took the city. + + Understood, I will help you. @@ -9377,9 +10007,18 @@ What? Why? They aren't more attractive than me, why do you want to see them? What?! This tritan is the worse shirker I ever met! +Whatever inside can be + + +Whatever your idea + + When you go near villagers, you can see a speech bubble above them, you can then talk to them by pressing the [T] key. +When you intimacy is high, it'll increase your stats and who knows, might even help you in combat! + + When you see something that looks more like a bug than a feature, report it on http://bugs.evolonline.org or try to contact a game contributor. @@ -9470,6 +10109,9 @@ Who should I search for? Who's this Julia? +Whose eyes listen under Moonlight + + Why Frenchy? It's a Russian!#0 Vowa Frenchy? 't ès en Russische! @@ -9512,6 +10154,9 @@ Why? Why? And who should you bring it back to? +Wicked Mushroom + + Wind and grass is nice and cool, so juicy sweet... @@ -9521,12 +10166,18 @@ With hunger, thirst, and sleep as your only companions, you have the disturbing With it, you can safely move items and funds between your characters. +With no choir master nor voice to be sung + + With proper training, a piou can become a good friend and faithful companion in your adventures. With script +With the growth of the Kingdom halted, slow maintenance, and two great famines which killed over half the human population, the council decided to seize power and depose Platyna the Red. + + With the help of the town hall and the Legion of Aemil we organize some auction and we help local merchants to launch their businesses. @@ -9542,6 +10193,21 @@ Wooden Bow Wooden Sword +Words become music and glance + + +World Story For Dummies, Vol I - Ancean Era: From Keshlam to an Empire + + +World Story For Dummies, Vol II - Ancean Era: Revolutions and Independence + + +World Story For Dummies, Vol III - Aemilean Era: The Mana Tree and The Mana War + + +World Story For Dummies, Vol IV - Aemilean Era: The Fleet of Ancea + + Wow, it seems everyone knows my name! @@ -9731,6 +10397,9 @@ You already registered. Waiting for your partner... You already took a @@, please put this one back in the box. +You are a handsome and good looking bird! + + You are already mounting something else @@ -9758,6 +10427,12 @@ You are in the Blacksmith's house, by Jove! You are just sitting on the shadow of your store. +You are lucky there are no mental faculty requirements to join the Legion!#0 + + +You are lucky there are no mental faculty requirements to join the Legion!#1 + + You are new around here, right?#0 @@ -9818,6 +10493,9 @@ Ge zit ip en vlot, an't ronddrijven in de zee. You are on the human resource wing of the Town Hall. +You are the Phoenix of this forest." + + You are unable to change your job. @@ -9959,6 +10637,9 @@ You can't drop items in this map You can't go there! Ge kunt 'ier nie passer'n +You can't join in a clan if you're in a guild. + + You can't leave battleground guilds. @@ -9977,12 +10658,21 @@ You can't trade in this map You can't use commands while dead. +You can't use the shovel here. + + You can't withdraw that much money You cannot autotrade when dead. +You cannot bury this item! + + +You cannot bury under a NPC! + + You cannot change guild leaders in this map. @@ -10295,7 +10985,7 @@ You notice a young boy sitting on one of the highest branches of the tree. You now also have access to the Legion building. Good job, you earned it. -You open a book named @@. +You open a book named "%s". You open the book, but it looks like the sea water and time damaged it severely. Some pages are not readable anymore. Some others are simply missing. @@ -10346,6 +11036,9 @@ You see a dust covered book on the shelf... You see a raijin boy, sitting on the edge of the dock. +You see a tree. + + You see a young elven girl, with a strong sense of pain in her face. @@ -10844,6 +11537,9 @@ change the sex of conf/import/msg_conf.txt +data %s %s %s data + + data @@ @@ @@ data @@ -10859,6 +11555,9 @@ feet, fisherman +foo %2$s bar %1$s baz + + garment, @@ -10949,18 +11648,51 @@ right hand, skill %d: %s (%s) +test + + +test %s + + test @@ +test#0 + + +test#1 + + test1 +test1 %s#0 + + +test1 @@#0 + + +test1#0 + + test2 +test2 %s#1 + + +test2 @@#1 + + +test2#1 + + top head, +tricked thus again. + + unban diff --git a/maps/re/001-3-0.mcache b/maps/re/001-3-0.mcache Binary files differindex e3f99124..7dd92e07 100644 --- a/maps/re/001-3-0.mcache +++ b/maps/re/001-3-0.mcache diff --git a/maps/re/008-1-1.mcache b/maps/re/008-1-1.mcache Binary files differindex 6365fa18..5a8705a2 100644 --- a/maps/re/008-1-1.mcache +++ b/maps/re/008-1-1.mcache diff --git a/maps/re/008-1.mcache b/maps/re/008-1.mcache Binary files differindex e8534b08..2c416411 100644 --- a/maps/re/008-1.mcache +++ b/maps/re/008-1.mcache diff --git a/maps/re/008-2-2.mcache b/maps/re/008-2-2.mcache Binary files differindex b98e0800..439b9b7c 100644 --- a/maps/re/008-2-2.mcache +++ b/maps/re/008-2-2.mcache diff --git a/maps/re/008-3-0.mcache b/maps/re/008-3-0.mcache Binary files differnew file mode 100644 index 00000000..d39f9fae --- /dev/null +++ b/maps/re/008-3-0.mcache diff --git a/maps/re/008-3-1.mcache b/maps/re/008-3-1.mcache Binary files differindex 6dbdd57c..e34f7676 100644 --- a/maps/re/008-3-1.mcache +++ b/maps/re/008-3-1.mcache diff --git a/npc/000-1/chest.txt b/npc/000-1/chest.txt index 46f626a3..511023e0 100644 --- a/npc/000-1/chest.txt +++ b/npc/000-1/chest.txt @@ -25,7 +25,7 @@ getitem OldBook, 1; } - specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid(0)); // closed ? opening : closing + specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid()); // closed ? opening : closing .dir = .dir == 0 ? 2 : 6; // closed ? opening : closing .busy = true; // lock until available again initnpctimer; @@ -53,7 +53,7 @@ OnUnTouch: OnTimer30000: .busy = true; .dir = 6; // closing - specialeffect(25, AREA, getnpcid(0)); // closing + specialeffect(25, AREA, getnpcid()); // closing setnpctimer 0; OnTouch: end; diff --git a/npc/000-2-1/chest.txt b/npc/000-2-1/chest.txt index 3f565521..f9ec2742 100644 --- a/npc/000-2-1/chest.txt +++ b/npc/000-2-1/chest.txt @@ -33,7 +33,7 @@ npctalk3 l("You take the clothes from the chest."); } - specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid(0)); // closed ? opening : closing + specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid()); // closed ? opening : closing .dir = .dir == 0 ? 2 : 6; // closed ? opening : closing .busy = true; // lock the animation initnpctimer; @@ -61,7 +61,7 @@ OnUnTouch: OnTimer30000: .busy = true; .dir = 6; // closing - specialeffect(25, AREA, getnpcid(0)); // closing + specialeffect(25, AREA, getnpcid()); // closing setnpctimer 0; OnTouch: end; diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index eb522c73..1b748d55 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -18,6 +18,7 @@ "npc/001-1/harbours.txt", "npc/001-1/juscare.txt", "npc/001-1/katja.txt", +"npc/001-1/koga.txt", "npc/001-1/lucas.txt", "npc/001-1/manhole.txt", "npc/001-1/mapflags.txt", @@ -28,10 +29,12 @@ "npc/001-1/pious.txt", "npc/001-1/qonan.txt", "npc/001-1/qpid.txt", +"npc/001-1/rowboat.txt", "npc/001-1/rumly.txt", "npc/001-1/salem.txt", "npc/001-1/shop.txt", "npc/001-1/sign.txt", +"npc/001-1/sophialla.txt", "npc/001-1/taree.txt", "npc/001-1/treeleaf.txt", "npc/001-1/trees.txt", diff --git a/npc/001-1/koga.txt b/npc/001-1/koga.txt new file mode 100644 index 00000000..3aecb09a --- /dev/null +++ b/npc/001-1/koga.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The Koga in Artis, only accessable via Rowboat. +// THIS IS A PLACEHOLDER! + +001-1,225,59,0 script Koga#001-1 NPC_KOGA,{ + speech + l("Ah, whom did you bring here?"), + l("Isnt that the one Nard found on a float in the sea, with the sign of the Legion on his chest?"); + l("I hope they know what they are doing. So, come on board. I am looking forward to go back to Woodland, haven't been there for a while."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 4; + end; +} diff --git a/npc/001-1/rowboat.txt b/npc/001-1/rowboat.txt new file mode 100644 index 00000000..8682ba0e --- /dev/null +++ b/npc/001-1/rowboat.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The rowboat, picking up the player on small beach in order to bring it to Koga. +// THIS IS A PLACEHOLDER! + +001-1,203,64,0 script Rowboat NPC_ROWBOAT_STAND_WE,{ + speech + l("Oh, hi."), + l("In case you don't have a commendatory letter from you-know-whom, I am just sitting here and observe the whales."); + l("Perhaps, and only perhaps, if you bring me the latter, I can bring you to a ship that will perhaps, and only perhaps, be able to bring you to Woodland."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} diff --git a/npc/001-1/sophialla.txt b/npc/001-1/sophialla.txt new file mode 100644 index 00000000..ad4d508a --- /dev/null +++ b/npc/001-1/sophialla.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Sophialla, the connection between Artis and the Brotherhood in Hurns. +// THIS IS A PLACEHOLDER! + +001-1,73,40,0 script Sophialla#001-1 NPC_SOPHIALLA,{ + speech + l("Hello."), + l("Can't you see I am reading? If you need something, tell me the secret password."); + lg("If you don't know it, just go, please."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/001-2-14/_warps.txt b/npc/001-2-14/_warps.txt index 92dff892..4ae630aa 100644 --- a/npc/001-2-14/_warps.txt +++ b/npc/001-2-14/_warps.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-14: Basement warps -001-2-14,26,29,0 warp #001-2-14_26_27 1,0,001-2-12,30,28 +001-2-14,26,27,0 warp #001-2-14_26_27 1,0,001-2-12,30,28 diff --git a/npc/001-2-19/_warps.txt b/npc/001-2-19/_warps.txt index fa091719..cb48d355 100644 --- a/npc/001-2-19/_warps.txt +++ b/npc/001-2-19/_warps.txt @@ -25,7 +25,7 @@ OnInit: } 001-2-19,33,38,0 warp #001-2-19_33_38 0,0,001-1,101,37 -001-2-19,41,57,0 warp #001-2-19_41_55 0,0,001-2-20,29,27 +001-2-19,41,55,0 warp #001-2-19_41_55 0,0,001-2-20,29,27 001-2-19,41,47,0 script #001-2-19_41_47_h NPC_HIDDEN,0,0,{ OnTouch: warp "001-1", 104, 42; diff --git a/npc/001-2-22/chest.txt b/npc/001-2-22/chest.txt index 010f5a79..69e8a8af 100644 --- a/npc/001-2-22/chest.txt +++ b/npc/001-2-22/chest.txt @@ -10,7 +10,7 @@ if (.busy == false) { - specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid(0)); // closed ? opening : closing + specialeffect(.dir == 0 ? 24 : 25, AREA, getnpcid()); // closed ? opening : closing .dir = .dir == 0 ? 2 : 6; // closed ? opening : closing .busy = true; // lock until available again initnpctimer; @@ -38,7 +38,7 @@ OnUnTouch: OnTimer30000: .busy = true; .dir = 6; // closing - specialeffect(25, AREA, getnpcid(0)); // closing + specialeffect(25, AREA, getnpcid()); // closing setnpctimer 0; OnTouch: end; diff --git a/npc/001-2-27/_warps.txt b/npc/001-2-27/_warps.txt index 60537f04..e69b24d1 100644 --- a/npc/001-2-27/_warps.txt +++ b/npc/001-2-27/_warps.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-27: Blacksmith Shop warps -001-2-27,35,39,0 warp #001-2-27_35_35 0,0,001-1,101,108 +001-2-27,35,35,0 warp #001-2-27_35_35 0,0,001-1,101,108 diff --git a/npc/001-2-33/_warps.txt b/npc/001-2-33/_warps.txt index 0f913422..73adf059 100644 --- a/npc/001-2-33/_warps.txt +++ b/npc/001-2-33/_warps.txt @@ -46,8 +46,8 @@ OnInit: doorInit; } -001-2-33,45,28,0 warp #001-2-33_45_28 0,0,001-2-38,24,28 -001-2-33,23,28,0 warp #001-2-33_23_28 0,0,001-2-37,36,28 -001-2-33,25,44,0 warp #001-2-33_25_40 2,0,001-2-40,27,46 +001-2-33,45,30,0 warp #001-2-33_45_30 0,0,001-2-38,24,28 +001-2-33,23,30,0 warp #001-2-33_23_30 0,0,001-2-37,36,28 +001-2-33,25,40,0 warp #001-2-33_25_40 2,0,001-2-40,27,46 001-2-33,43,40,0 warp #001-2-33_43_40 2,0,001-2-40,45,46 001-2-33,34,46,0 warp #001-2-33_34_46 0,0,001-1,57,42 diff --git a/npc/001-2-36/_warps.txt b/npc/001-2-36/_warps.txt index 9e9c6c70..530050a7 100644 --- a/npc/001-2-36/_warps.txt +++ b/npc/001-2-36/_warps.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-36: unnamed warps -001-2-36,37,30,0 warp #001-2-36_37_29 0,0,001-2-34,24,29 +001-2-36,37,30,0 warp #001-2-36_37_30 0,0,001-2-34,24,29 diff --git a/npc/001-2-4/_warps.txt b/npc/001-2-4/_warps.txt index dc331e97..73e39877 100644 --- a/npc/001-2-4/_warps.txt +++ b/npc/001-2-4/_warps.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-4: Library warps 001-2-4,48,41,0 warp #001-2-4_48_41 0,0,001-1,51,81 -001-2-4,57,29,0 warp #001-2-4_57_26 3,0,001-2-6,57,36 +001-2-4,57,27,0 warp #001-2-4_57_27 3,0,001-2-6,57,36 001-2-4,52,27,0 script #001-2-4_52_27_h NPC_HIDDEN,0,0,{ OnTouch: warp "001-2-5", 28, 37; diff --git a/npc/001-2-40/_warps.txt b/npc/001-2-40/_warps.txt index 83550f10..89c5c721 100644 --- a/npc/001-2-40/_warps.txt +++ b/npc/001-2-40/_warps.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-40: unnamed warps 001-2-40,45,44,0 warp #001-2-40_45_44 2,0,001-2-33,43,39 -001-2-40,27,47,0 warp #001-2-40_27_44 2,0,001-2-33,25,39 +001-2-40,27,44,0 warp #001-2-40_27_44 2,0,001-2-33,25,39 diff --git a/npc/001-2-42/_warps.txt b/npc/001-2-42/_warps.txt index 508aae1b..d8b06045 100644 --- a/npc/001-2-42/_warps.txt +++ b/npc/001-2-42/_warps.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-2-42: Docks Warehouse Second Level warps -001-2-42,39,38,0 warp #001-2-42_39_37 2,0,001-2-18,39,28 +001-2-42,39,37,0 warp #001-2-42_39_37 2,0,001-2-18,39,28 diff --git a/npc/001-3-0/_import.txt b/npc/001-3-0/_import.txt index 320f28ce..5ead6439 100644 --- a/npc/001-3-0/_import.txt +++ b/npc/001-3-0/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/001-3-0/_mobs.txt", "npc/001-3-0/_warps.txt", +"npc/001-3-0/mundane.txt", diff --git a/npc/001-3-0/_mobs.txt b/npc/001-3-0/_mobs.txt index 18967b07..88caa962 100644 --- a/npc/001-3-0/_mobs.txt +++ b/npc/001-3-0/_mobs.txt @@ -15,7 +15,7 @@ 001-3-0,175,50,0,4 monster Ratto 1005,2,60000,30000 001-3-0,175,64,3,2 monster Cave Maggot 1027,4,5000,15000 001-3-0,104,75,48,43 monster Cave Maggot 1027,25,500,2000 -001-3-0,91,67,3,5 monster Cave Maggot 1027,3,500,2000 +001-3-0,90,67,2,5 monster Cave Maggot 1027,3,500,2000 001-3-0,128,86,3,5 monster Green Slime 1024,3,500,2000 001-3-0,42,103,3,5 monster Green Slime 1024,3,500,2000 001-3-0,120,85,7,2 monster Little Green Slime 1025,2,500,2000 diff --git a/npc/001-3-0/_warps.txt b/npc/001-3-0/_warps.txt index a2d4e9e2..d192e4ef 100644 --- a/npc/001-3-0/_warps.txt +++ b/npc/001-3-0/_warps.txt @@ -3,6 +3,6 @@ 001-3-0,196,35,0 warp #001-3-0_196_35 0,0,001-1,197,35 001-3-0,172,41,0 warp #001-3-0_172_41 0,0,001-3-1,34,58 001-3-0,162,40,0 warp #001-3-0_162_40 0,0,001-3-1,23,57 -001-3-0,198,59,0 warp #001-3-0_198_59 0,0,001-1,199,61 +001-3-0,198,60,0 warp #001-3-0_198_60 0,0,001-1,199,61 001-3-0,152,55,0 warp #001-3-0_152_55 0,0,001-1,152,51 001-3-0,85,130,0 warp #001-3-0_85_130 0,0,001-1,86,130 diff --git a/npc/001-3-0/mundane.txt b/npc/001-3-0/mundane.txt new file mode 100644 index 00000000..51ffb1bd --- /dev/null +++ b/npc/001-3-0/mundane.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Mundane, Monas dad, lost in sewers. +// THIS IS A PLACEHOLDER! + +001-3-0,97,66,0 script Mundane#001-3-0 NPC_MUNDANE,{ + speech + l("Oh, Hi."), + l("I didn't expect someone coming here. I need help."); + lg("Do you know the way out of here? My daughter Mona may worry already."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-1-1/_import.txt b/npc/008-1-1/_import.txt index 7063c99e..b6807450 100644 --- a/npc/008-1-1/_import.txt +++ b/npc/008-1-1/_import.txt @@ -1,2 +1,5 @@ // Map 008-1-1: Woodland // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/008-1-1/_mobs.txt", +"npc/008-1-1/_warps.txt", +"npc/008-1-1/koga.txt", diff --git a/npc/008-1-1/_mobs.txt b/npc/008-1-1/_mobs.txt new file mode 100644 index 00000000..8fc5e8ff --- /dev/null +++ b/npc/008-1-1/_mobs.txt @@ -0,0 +1,23 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-1-1: Woodland mobs +008-1-1,173,86,25,5 monster Forest Maggot 1028,12,500,2500 +008-1-1,132,56,7,5 monster Forest Maggot 1028,5,500,2500 +008-1-1,144,91,11,16 monster Butterfly 1032,8,10000,10000 +008-1-1,63,73,11,5 monster Maggot 1026,7,500,10000 +008-1-1,206,87,6,4 monster Mouboo 1023,3,30000,60000 +008-1-1,131,45,0,0 monster Beehive 1056,1,30000,100000 +008-1-1,156,51,10,4 monster Alizarin Plant 1037,3,1000,25000 +008-1-1,167,61,2,2 monster Pink Flower 1034,1,100,10000 +008-1-1,153,176,9,7 monster Silkworm 1040,4,3000,6000 +008-1-1,96,47,3,2 monster Mauve Plant 1036,3,1000,2000 +008-1-1,162,78,6,3 monster Gamboge Plant 1038,2,1000,10000 +008-1-1,197,67,7,5 monster Cobalt Plant 1039,2,1000,30000 +008-1-1,165,109,2,2 monster Pink Flower 1034,1,100,10000 +008-1-1,217,62,2,2 monster Pink Flower 1034,1,100,10000 +008-1-1,119,66,2,2 monster Pink Flower 1034,1,100,10000 +008-1-1,112,75,2,2 monster Pink Flower 1034,1,100,10000 +008-1-1,110,46,3,2 monster Mauve Plant 1036,3,1000,2000 +008-1-1,159,93,9,7 monster Silkworm 1040,4,3000,6000 +008-1-1,68,29,7,7 monster Mouboo 1023,3,30000,60000 +008-1-1,126,45,0,0 monster Beehive 1056,1,30000,100000 +008-1-1,121,45,0,0 monster Beehive 1056,1,30000,100000 diff --git a/npc/008-1-1/_warps.txt b/npc/008-1-1/_warps.txt new file mode 100644 index 00000000..56d9cc3f --- /dev/null +++ b/npc/008-1-1/_warps.txt @@ -0,0 +1,4 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-1-1: Woodland warps +008-1-1,247,85,0 warp #008-1-1_247_85 0,1,008-1,21,85 +008-1-1,202,47,0 warp #008-1-1_202_47 0,0,008-3-0,129,112 diff --git a/npc/008-1-1/koga.txt b/npc/008-1-1/koga.txt new file mode 100644 index 00000000..f32e953c --- /dev/null +++ b/npc/008-1-1/koga.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The Koga in Artis, only accessable via Rowboat. +// THIS IS A PLACEHOLDER! + +008-1-1,30,60,0 script Koga#008-1-1 NPC_KOGA,{ + speech + l("So, finally, we are here."), + l("Do you want to go back to Artis? You really should be afraid of the Legion there, now that you have been here in Woodland. They somehow smell the odor of the Brotherhood."); + l("Better you stay here for a while. Come back when you are stronger."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 4; + end; +} diff --git a/npc/008-1/_import.txt b/npc/008-1/_import.txt index b7797bf0..31bb5966 100644 --- a/npc/008-1/_import.txt +++ b/npc/008-1/_import.txt @@ -2,7 +2,19 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-1/_mobs.txt", "npc/008-1/_warps.txt", +"npc/008-1/auldsbel.txt", +"npc/008-1/banu.txt", "npc/008-1/confused-tree.txt", -"npc/008-1/doors.txt", +"npc/008-1/hinnak.txt", +"npc/008-1/jack.txt", "npc/008-1/mapflags.txt", +"npc/008-1/mikhail.txt", +"npc/008-1/milly.txt", +"npc/008-1/old-man.txt", +"npc/008-1/old-woman.txt", +"npc/008-1/oscar.txt", +"npc/008-1/sabine.txt", +"npc/008-1/snarfles.txt", +"npc/008-1/soul-menhir.txt", +"npc/008-1/voltain.txt", "npc/008-1/wateranimation.txt", diff --git a/npc/008-1/_warps.txt b/npc/008-1/_warps.txt index ab1728ed..46e9891d 100644 --- a/npc/008-1/_warps.txt +++ b/npc/008-1/_warps.txt @@ -24,3 +24,4 @@ 008-1,257,130,0 warp #008-1_257_130 0,0,008-2-28,25,31 008-1,233,131,0 warp #008-1_233_131 0,0,008-2-29,36,24 008-1,287,133,0 warp #008-1_287_133 0,0,008-2-30,52,39 +008-1,20,85,0 warp #008-1_20_85 0,1,008-1-1,246,85 diff --git a/npc/008-1/auldsbel.txt b/npc/008-1/auldsbel.txt new file mode 100644 index 00000000..cf4cd16e --- /dev/null +++ b/npc/008-1/auldsbel.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Auldsbel the Magician. +// THIS IS A PLACEHOLDER! + +008-1,119,114,0 script Auldsbel#008-1 NPC_WIZARD,{ + speech + l("Hello."), + l("Oh, you look more interested in magic.. the brotherhood did forbid most of the interesting paths of magic, but boring baby spells are still allowed."), + lg("If you come back later, I may teach you something. But psst, practising magic is quite dangerous these days."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-1/banu.txt b/npc/008-1/banu.txt new file mode 100644 index 00000000..d8040153 --- /dev/null +++ b/npc/008-1/banu.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Banu, the old lady. +// THIS IS A PLACEHOLDER! + +008-1,244,88,0 script Banu#008-1 NPC_OLD_LADY,{ + speech + l("Hello."), + l("You don't have a scythe, by chance? I am too old to mew this field all alone."), + l("I asked Hinnak, but he wants at least a beer in exchange for his scythe."), + lg("But I hate alcohol, so thats not an option for me."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-1/doors.txt b/npc/008-1/doors.txt deleted file mode 100644 index de8ed1d8..00000000 --- a/npc/008-1/doors.txt +++ /dev/null @@ -1,6 +0,0 @@ -008-1,104,27,0 script CottageDoor NPC_WARP,0,0,{ - end; - -OnTouch: - dispbottom(l("Locked.")); -} diff --git a/npc/008-1/hinnak.txt b/npc/008-1/hinnak.txt new file mode 100644 index 00000000..08b6242a --- /dev/null +++ b/npc/008-1/hinnak.txt @@ -0,0 +1,354 @@ +// Evol scripts. +// Author: +// gumi, Micksha +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - hinnak asked for help +// [1] 3 - helped hinnak +// [2] kill counter +// Description: + +// Hinnak needs help to get rid of the same stuff than ever. + +008-1,270,74,0 script Hinnak#008-1 NPC_HINNAK,{ + + if (BaseLevel < .min_level) + { + npctalk3 generic(1 | 16 | 64); + end; + } + + function hinn_new_player + { + if(getequipid(EQI_HEAD_TOP) == .bad_hat) + { + narrator 4, + l("The farmer lunges at you with a farming implement."); + heal -50, 0; + + selectd + l("I'm out of here."), + l("Whoa, what are you doing?"); + + if (@menu == 1) + { + return; + } + + speech 4 | 1, + l("Sorry, you look like a pinkie."), + l("They've been destroying my fields, and I guess I got a bit worked up."); + } + + else + { + speech 4, + l("Argh!"), + l("I hate them!"), + l("I @#$% hate them!"), + l("I @#$% hate these @#$% pinkies!"); + + selectd + l("You need some anger control therapy."), + l("Why do you hate them?"); + + if (@menu == 1) + { + return; + } + + speech 4 | 1, + l("These @#$% beasts are jumping around in my fields destroying all my harvest."), + l("But they are too fast."), + l("I can't catch them."); + } + + selectd + l("Want me to help you?"); + + speech 4 | 1, + l("Yes, you look quite fast."), + l("Maybe you can catch some of them."), + l("That will pay them a lesson."), + l("Slay some of them and bring me %d of their antennae.", .drop_count); + + setq .quest, 2, 0; + + selectd + l("How much is this worth to you?"); + + speech 1, + l("Well, I can't offer you much."), + l("But I got an old scythe laying around."), + l("Maybe you can use it as a weapon."); + + close; + } + + function hinn_help + { + if (getequipid(EQI_HEAD_TOP) == .bad_hat) + { + narrator 4, + l("The farmer glares at your hat."); + } + + speech 4, + l("Have you got the %d antennae?", .drop_count); + + selectd + l("Not yet, but I am working on it."), + rif(countitem(.monster_drop) >= .drop_count, l("Sure, here they are!")); + + if (@menu == 1) + { + return; + } + + if (getq2(.quest) < .kill_count) + { + speech 1, + l("Don't try to fool me!"), + l("I know you didn't kill them yourself!"), + l("Kill at least %d pinkies and come back.", .kill_count); + close; + } + + speech 1, + l("Thank you very much"), + l("As promised, here's my old scythe."), + l("Maybe you can use it as a weapon."), + l("It is a bit cumbersome but its strikes are deadly."); + + if (countitem(.monster_drop) >= .drop_count) + { + delitem .monster_drop, .drop_count; + getitem .reward_item, 1; + Zeny += .reward_money; + //getexp .reward_exp, 0; + setq .quest, 3; + } + close; + } + + function hinn_thanks + { + if (getequipid(EQI_HEAD_TOP) == .bad_hat) + { + speech 4, + l("That better be a trophy on your head."); + + selectd + l("It is."); + + speech 4 | 1, + l("Good then."), + l("Thanks for your help with the pinkies."); + } + + else + { + speech 4, + l("Good to see you again."), + l("Thanks again for helping me with the pinkies!"); + } + + selectd + l("Sure, any time!"), + l("Anything else you want me to do?"), + l("You're welcome. Bye!"); + + if (@menu == 3) + { + return; + } + + speech 4 | 1, + l("Actually, it's been a long day."), + l("If it's no trouble, could you get me a %s?", + getitemlink(.drink_item)); + + selectd + rif(countitem(.drink_item) >= 1, l("Here you are.")), + l("Sure, I'll go get one. Bye!"), + l("You shouldn't drink while working!"); + + do + { + switch (@menu) + { + case 2: return; + case 3: + speech 1, + l("Well, I'm done for the day, and I'm quite old enough to decide when I can have a %s, thank you!", + getitemname(.drink_item)); + selectd + rif(countitem(.drink_item) >= 1, l("Sorry... here you are.")), + l("I don't have any."); + break; + default: + if (countitem(.drink_item) < 1) + { + return; + } + delitem .drink_item, 1; + + narrator 4 | 8 | 2 | 1, + l("%s takes a sip.", .name$); + + speech 4, + l("Aaah!"), + l("Nothing like a well-deserved %s after a long day of tending the crops!", + getitemname(.drink_item)), + l("Thanks, that was very kind of you!"); + + narrator 4 | 8 | 1 | 2, + l("He takes another sip."); + + speech 4, + l("Thanks!"), + l("You know, I had the strangest thing happen to me."), + l("I had this patch of ground that was really clumpy; lots of clay, you see."), + l("Right over there."), + // TODO: move cam to the spot + l("Looks much better now, doesn't it?"), + // TODO: restore cam + l("But how I got there is kind of scary..."), + l("I'd been trying to break it up for a while, but that kind of work is a pain."), + l("So my wife said that I should go and see the witch, just in case she knows something."), + l("And sure enough I ask the witch, and she has a look at it."), + l("“Nothing I can doâ€, she says, “but I can ask a friendâ€."), + l("So the next day another witch shows up."), + l("Gorgeous woman, but when she looked at me, the scares went scuttling down my spine..."), + l("First thing she asked was if I'm a farmer."), + l("Said her friend had told her that I needed help."), + l("I show her what the problem is, and she tells me to go inside and wait."); + + narrator 4 | 8 | 1 | 2, + l("%s drains his mug in one long sip, then hesitates.", .name$); + + speech 4, + l("So I go inside."), + l("I'm barely in when it starts raining outside, pouring cats and mouboos!"), + l("Not so weird, perhaps, except that it was been bright and sunny just a second before!"), + l("So I rush out, my wife telling me to leave the witch alone, and I see her standing there in the middle of the rain..."), + l("None of the raindrops touched her, as if they were afraid!"), + l("Then she yells out some gobbledygook word, and out of the ground there comes a swarm of maggots, crawling and digging and climbing over each other's backs..."), + // XXX: maybe here insert a reference to SUSAN? + l("And then she turns to me!"), + l("Seeing her gaze, for a moment there I thought she would turn me into a pinkie, for sure..."), + l("But all she says is, “had you stayed inside, you wouldn't be wet nowâ€."); + + selectd + l("Hahaha!"), + l("Whoah, scary..."), + l("What was that gobbledygook word?"), + l("I better go now. Bye."); + + switch (@menu) + { + case 1: + speech 1, + l("Yeah, funny now..."), + l("But you should've seen that gaze!"), + l("Ah, well, never mind."); + close; + case 2: + speech 1, + l("Yeah, you could say that..."); + close; + case 3: + speech 1, + l("Oh, I can't be sure..."), + l("But something like “Nanaj princinoâ€, I think."); // this is "Dwarven Princess" translated to Esperanto + close; + } + return; + } + } while(true); + } + + // OnTalk: + + if (getq(.quest_inspector) == 11) + { + selectd + l("Did you see anyone in a mask come by here at night?"), + l("Did you see anyone with a large satchel come by here at night?"), + l("Hello."); + + switch (@menu) + { + case 1: + speech + l("No."), + l("It tends to be too dark to see a mask."); + close; + + case 2: + speech + l("Yes, I saw someone with a large sack on their back go to the mining camp."); + close; + } + } + + switch (getq(.quest)) + { + case 0: + case 1: hinn_new_player; break; + case 2: hinn_help; break; + default: hinn_thanks; + } + + closeclientdialog(); + close; + +OnNPCKillEvent: + // XXX: maybe have a OnTakeScript on the pinky antena item so we count pickups instead of kills + if (killedrid == .monster_id && getq(.quest) == 2 && + getq2(.quest) < .kill_count && strcharinfo(PC_MAP) == .map$) + { + setq .quest, 2, getq2(.quest) + 1; + } + end; + +OnPCLoginEvent: +OnPCBaseLvUpEvent: + if (BaseLevel >= .min_level && getq(.quest) < 1) + { + setq .quest, 1; // allow the player to do the quest + dispbottom l("New quest available: %s (level %d+)", + getquestlink(.quest), .min_level); // XXX: requires new manaplus versions, maybe show a different message for old versions? + } + end; + +OnInit: + .min_level = 15; // min level to do the quest + .monster_id = Pinkie; // monster to kill + .monster_drop = PinkAntennae; // monster drop to collect + .drop_count = 10; // amount of that drop needed + .kill_count = 10; // min number of kills + .reward_item = Scythe; // reward item + .reward_money = 0; // reward money + .reward_exp = 0; // reward exp + .bad_hat = PinkieHat; // hinnak attacks you when you wear this hat + .drink_item = Beer; // the item hinnak asks to drink + + .quest = HurnscaldQuests_Hinnak; + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} + diff --git a/npc/008-1/jack.txt b/npc/008-1/jack.txt new file mode 100644 index 00000000..d8f1ff2d --- /dev/null +++ b/npc/008-1/jack.txt @@ -0,0 +1,314 @@ +// Evol scripts. +// Author: +// gumi +// Quest states (forest bow): +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - alan wants to ask jack +// [1] 3 - jack explained problem +// [1] 4 - alan asks to find wood +// [1] 5 - found perfect wood +// [1] 6 - got the bow +// [2] unused +// [3] unused +// [t] unused +// Quest states (wooden shield): +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - jack proposes shield +// [1] 3 - player accepted quest +// [1] 4 - got the shield +// [2] unused +// [3] unused +// [t] unused +// Description: +// Jack Lumber, the handsome lumberjack + + +008-1,241,116,0 script Jack NPC_LUMBERJACK,{ + + function bow_intro { + speech(4, + l("Why not?!"), + l("I value my life, that's why!")); + + selectd(l("What do you mean?")); + + speech(4, + l("A week ago, I was going to chop down one of those twigleaf trees in the forest to the southwest."), + l("These twigleafs are the trees that give me the living wood you speak of."), // XXX: were Log Heads named "Twigleaf" at some point in the past? + l("I was just chopping away with my axe, and guess what happened?"), + l("One of its branches hit me!"), + l("At first, I thought it fell down or the wind blew it, but it hurt!"), + l("After I shook it off and struck the tree again with my axe, another branch hit me!"), + l("I got angry and started to chop off all the low-hanging branches so this couldn't happen anymore."), + l("Even after all that though, I still can't believe what happened next.")); + + selectd(l("What happened?")); + + speech(4, + l("You'll think I'm insane if I tell you...")); + + selectd(l("I won't. I promise.")); + + speech(4, + l("Alright, well..."), + l("After I chopped off a few branches, the whole tree started to move!"), + l("Its roots tore out of the earth, all the branches started to wave around, and a face appeared on the trunk."), + l("The whole tree CAME TO LIFE! It was mad!")); + + selectd(l("Did you run away?"), l("Did you fight it?")); + + speech(4, + l("I fought it, of course!"), + l("I took my axe and attacked the beast!"), + l("It hit me here *points at a bruise on his shoulder*, here *lifts his trouser leg to show another bruise*, and here *lifts his shirt and reveals even worse bruises*."), // XXX: that's kinda dirty imho... maybe we could use the narrator? + l("But I didn't give up!"), + l("I chopped away at it, branch after branch, and in the end I chopped off its roots, and it fell to the ground, motionless.")); + + selectd(l("So you beat the monster? Then why are you so scared?")); + + speech(4, + l("Well, I was exhausted and had to rest."), + l("A few minutes passed, and suddenly I was practically surrounded by a dozen or more of these living trees!")); + + selectd(l("Did you fight them too?")); + + speech(4, + l("Are you crazy?"), + l("I barely destroyed one of those beasts."), + l("I was in no shape to fight again!"), + l("I ran away as fast as I could, and lucky for me the monsters aren't that fast on their tiny root legs, Ha!")); + + selectd(l("So, I guess you aren't chopping down trees anymore?")); + + speech(4, + l("I still do; it's my job."), + l("But I'll no longer chop those twigleafs, I'll tell you that."), + l("I know the bow master wants some twigleaf wood, but I don't care."), + l("I won't risk MY life for a few gold pieces!"), + l("If you really want to, just go to the southwest, but I can't help you."), + l("I won't go there ever again.")); + + selectd(l("Southwest you say? OK, thank you.")); + + speech(l("Don't say I didn't warn you!")); + + // What a huge text wall, I feel sorry for the players + + close2; + setq(.quest_bow, 3); + end; + } + + function bow_good_luck { + if (getq(.quest_inspector) == 2) + { + speech(4, + l("Good luck hunting those tree monsters – you'll need it.")); + + selectd(l("Have you seen anything that might be connected to the recent robberies in town?")); + + speech(l("Sorry, no.")); + close; + } + + npctalk3(l("Good luck hunting those tree monsters – you'll need it.")); + end; + } + + function shield_intro { + speech(4, + l("I have an idea."), + l("What would you say about a new shield?")); + + setq(.quest_shield, 2); + + selectd( + l("No thanks."), + l("Yes, please!"), + rif(getq(.quest_inspector) == 2, l("Have you seen anything that might be connected to the recent robberies in town?"))); + + switch (@menu) + { + case 1: closeclientdialog(); close; + case 2: + speech( + l("All I need is %d %s.", .logs_amount, getitemlink(.logs_item)), + l("This needn't be high quality wood; pretty much any log you can find should work."), + l("Oh, and I'll also need %s E for other materials.", format_number(.shield_cost))); + + close2; + setq(.quest_shield, 3); + end; + case 3: speech(l("Sorry, no.")); close; + } + } + + function bow_congrats { + speech(4, + l("You've finally found that perfect piece of living wood that Alan needs to make a Forest Bow, haven't you?")); + + selectd( + l("I couldn't afford the bow, though..."), + l("No, I'm still looking."), + l("Yes, I've got the Forest bow now."), + l("I'm a melee warrior, I don't need bows."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything that might be connected to the recent robberies in town?"))); + + switch (@menu) + { + case 3: + if (getq(.quest_bow) <= 5) + { + speech(4, + l("Hrmph."), + l("I'm someone who respects those speaking the truth.")); + } + // fallthrough + case 1: + case 4: + speech(4, + l("You no doubt remember how I struggled with those beasts, fighting for my life."), + l("Scared me, those seven-branched little stumps did!"), + l("Never since that day have I strayed near them, and yet there you are, cutting them down one by one."), + l("I'm proud of you – to dare to fight those trunks is admirable indeed."), + l("You're as strong as if you were my own child!")); + + shield_intro; + break; + case 2: speech(l("You should go talk to Alan again.")); close; + case 5: speech(l("Sorry, no.")); close; + } + } + + function shield_make { + speech(4, + l("Do you have the %d %s and %s E for the shield?", + .logs_amount, getitemlink(.logs_item), format_number(.shield_cost))); + + selectd( + rif(countitem(.logs_item) >= .logs_amount && Zeny >= .shield_cost, + l("Here it is.")), + l("I'll come back later.")); + + if (@menu != 1) { + closeclientdialog(); + close; + } + + speech(4, + l("Have a seat.")); + + narrator(4, + l("Jack saws the logs into pieces and then sands them until they are smooth to the touch."), + l("Applying some strong-smelling liquid, he tans them to a darker hue."), + l("Grabbing one of two leftover pieces, he begins to carve it into a round shape, then repeats this with the second piece – shield handles from what you can tell."), + l("Meanwhile, the sun has dried the other pieces."), + l("Jack places them next to each other, adds a frame, and nails everything together."), + l("The resulting shield looks usable already, but Jack applies another liquid to it and leaves it to dry for a few moments."), + l("Finally, he hands the shield to you.")); + + if (checkweight(.shield_item, 1) != true) + { + speech( + l("It seems you can't carry the %s.", getitemlink(.shield_item)), + l("Come back when you do.")); + close; + } + + if (Zeny < .shield_cost || countitem(.logs_item) < .logs_amount) + close; // double-check + + setq(.quest_shield, 4); + delitem(.logs_item, .logs_amount); + getitem(.shield_item, 1); + Zeny -= .shield_cost; + getexp(.shield_exp, 0); + + speech( + l("Enjoy your new shield!")); + + close; + } + + function wood_daily { + speech(4, + l("I hope that my shield will serve you well!")); + + selectd( + l("Me too."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything that might be connected to the recent robberies in town?"))); + + switch (@menu) + { + case 2: speech(l("Sorry, no.")); close; + } + + closeclientdialog(); // TODO: daily quest (needs the generic daily quest script) + close; + } + + // OnTalk: + switch (getq(.quest_shield)) + { + case 2: shield_intro; break; + case 3: shield_make; break; + case 4: wood_daily; break; + } + + switch (getq(.quest_bow)) + { + case 3: + case 4: bow_good_luck; break; + case 5: + case 6: bow_congrats; break; + } + + // initial intro + { + speech(4, + l("Hello there!"), + l("My name is Jack Lumber, the enemy of all trees."), + l("If you need some firewood, just let me know.")); + + selectd( + l("I'll keep that in mind."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything that might be connected to the recent robberies in town?")), + rif(getq(.quest_bow) == 2, l("I heard you aren't delivering any more living wood. Why not?"))); + + switch (@menu) + { + case 2: speech(l("Sorry, no.")); close; + case 3: bow_intro; break; + } + + } + + closeclientdialog(); + close; + +OnInit: + .logs_item = RawLog; + .logs_amount = 40; // XXX: maybe nlogn? + .shield_cost = 5000; // XXX: maybe nlogn? + .shield_exp = 2500; + .shield_item = WoodenShield; + + .quest_bow = HurnscaldQuests_ForestBow; + .quest_shield = HurnscaldQuests_WoodenShield; + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_bow; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/mikhail.txt b/npc/008-1/mikhail.txt new file mode 100644 index 00000000..3e442499 --- /dev/null +++ b/npc/008-1/mikhail.txt @@ -0,0 +1,131 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - bernard wants roasted maggot +// [1] 3 - brought maggot +// [1] 4 - bernard wants maggot slime +// [1] 5 - brought maggot slime +// [1] 6 - mikhail needs maggot slime +// [1] 7 - brought maggot slime +// [2] unused +// [3] unused +// [t] unused +// Description: +// takes part in the slime soup quest (Bernard) + +008-1,298,95,0 script Mikhail NPC_MIKHAIL,{ + + function soup_scared { + speech 4, + l("Hello..."), + l("I'm supposed to be helping Bernard from the Inn but..."); + + narrator 4, + l("His eyes grow wide"); + + speech 4, + l("Eeekkk another one."); + + narrator + l("It seems that the boy would like to say more, but seems too terrified at the moment."), + l("Maybe you should help someone else first, so that he sees your intentions are good."); + + close; + } + + function soup_intro2 { + speech 4, + l("Bernard sent me to get %d %s from the %s in the fields, but they scare me so bad!", + .third_item_qty, getitemlink(.third_item), getmonsterlink(.third_item_mob)), + l("You look like a nice person."), + l("Would you go get them for me?"); + + selectd + l("Of course, I'll go get them for you."); + + speech + l("Thank you so much!"), + l("I'll wait for you here."); + + setq .quest, 6; + close; + } + + function soup_reminder_slime2 { + speech + l("Did you bring me the %d %s I need?", + .third_item_qty, getitemlink(.third_item)), + l("It doesn't look like you have them all..."); + close; + } + + function soup_reward_slime2 { + speech + l("Did you bring me the %d %s I need?", + .third_item_qty, getitemlink(.third_item)), + l("Ooh!"), + l("Thank you so much!"), + l("I can get back to Bernard now!"); + + if (countitem(.third_item) < .third_item_qty) + close; // double-check + + delitem .third_item, .third_item_qty; + setq .quest, 7; + getexp .third_reward_exp, 0; + close; + } + + function soup_thanks_slime2 { + speech + l("Thanks again for helping me!") + " %%Q"; + + close; + } + + switch(getq(.quest)) + { + + case 0: + case 1: + case 2: + case 3: + case 4: soup_scared; break; + case 5: soup_intro2; break; + case 6: + if (countitem(.third_item) < .third_item_qty) + soup_reminder_slime2; + else + soup_reward_slime2; + break; + default: soup_thanks_slime2; + } + + closeclientdialog(); + close; + +OnInit: + .third_item = MaggotSlime; + .third_item_qty = 5; + .third_item_mob = Maggot; + + .third_reward_exp = 100; + + .quest = HurnscaldQuests_Soup; + .quest_debug = .quest; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/milly.txt b/npc/008-1/milly.txt new file mode 100644 index 00000000..0ea17a1c --- /dev/null +++ b/npc/008-1/milly.txt @@ -0,0 +1,109 @@ +// Evol scripts. +// Author: +// gumi +// Quest states (inspector): +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-1,282,114,0 script Milly NPC_GIRL_MILLY,{ + + // TODO: make the actual beanie copter quest after those are finished: + // [X] Inspector quest + // [ ] Bone knife quest + // [ ] Setzer quest + // [ ] Rossy quest + // [ ] Cindy quest + + .@q_inspector = getq(.quest_inspector); + + speech(4, + l("Hello traveler, welcome to Hurnscald."), + l("Have you met Kfahr yet?"), + l("He is the greatest hero that ever walked the land of Hurnscald!")); + + selectd( + l("Hi! No, I haven't seen him yet."), + l("Where can I find him?"), + l("Mh, I don't care for heroes."), + l("Hello, yes I have met him."), + rif(.@q_inspector == 2, l("Have you seen anything strange lately?")), + rif(.@q_inspector == 2, l("Do you know anything about the recent robberies?"))); + + switch (@menu) + { + case 3: + speech(4, + l("What?"), + l("Surely you do not appreciate what a hero he is!"), + l("Mh, or perhaps honor is dead in you; for you to be so slow to comprehend the good that his exploits have wrought for us."), // XXX: this sentence seems too complicated to come from a child's mouth + l("Put on your thinking cap and be propelled into high adventure!"), + l("Go to Kfahr, and listen to his stories."), + l("You can't have met him."), + l("No one who has met him would say such silly things.")); + // fallthrough + + case 1: + speech(4, + l("I highly recommend you seek him out!")); + // fallthrough + + case 2: + speech( + l("He is a regular at the inn, located in the north-west part of town."), + l("If you are lucky he might tell you a story about his adventures.")); + break; + + case 4: + speech( + l("Oh, I hope you stayed and listened to his stories about his adventures.")); + break; + + case 5: + speech( + l("I haven't seen anything strange.")); + break; + + case 6: + speech( + l("No, sorry.")); + break; + } + + close; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; // TODO: change this to the milly quest debug when it exists + .sex = G_FEMALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/old-man.txt b/npc/008-1/old-man.txt new file mode 100644 index 00000000..c2004a7d --- /dev/null +++ b/npc/008-1/old-man.txt @@ -0,0 +1,90 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-1,290,139,0 script Old Man NPC_OLD_MAN_HURNS,{ + + function oldman_ask { + speech(4, + l("Hi there, need something?")); + + selectd( + l("Have you seen anything strange lately?"), + l("Do you know anything about the recent robberies?")); + + speech( + l("I'm sorry, but I didn't see anything."), + l("You should ask my old woman.")); + close; + } + + function oldman_accuse { + speech(4, + l("Found anything new?")); + + selectd( + l("The leader of the troupe said you hung around them a lot while they were in town.")); + + speech( + l("Yes, I hung around the theater a lot."), + l("I was an actor when I was younger."), + l("But I wasn't there that night."), + l("Me and the wife were at home all night.")); + + close2; + setq(.quest_inspector, 8); + end; + } + + // OnTalk: + switch (getq(.quest_inspector)) + { + case 2: oldman_ask; break; + case 7: oldman_accuse; break; + } + + // initial intro + npctalk3(l("Don't let those monsters get to you.")); + end; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_MALE; + .distance = 1; // this npc has bad hearing + .speed = 2000; // this npc is very old + // TODO: move graph (after the Hurnscald map is finalized) + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/old-woman.txt b/npc/008-1/old-woman.txt new file mode 100644 index 00000000..c6ca467b --- /dev/null +++ b/npc/008-1/old-woman.txt @@ -0,0 +1,137 @@ +/// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// Old Lady in the flower field, Robberies in Hurnscald. + +008-1,231,114,0 script Old Woman NPC_OLD_LADY,{ + + function is_inspector { + return (getequipcardid(EQI_HEAD_MID, 0) == NavyBlueCottonDye /*&& + getequipcardid(EQI_HEAD_LOW, 0) == NavyBlueCottonDye*/); // TODO / FIXME: remove the /* */ whenever we have cotton pants + } + + function oldwoman_ask { + speech(4, + l("Hello deary.")); + + selectd( + l("Have you seen anything strange lately?"), + l("Do you know anything about the recent robberies?")); + + .@q = getq(.quest_inspector); + + if (!is_inspector()) + { + speech(l("Yes, but I'm only talking to the inspector himself!")); + + close2; + if (.@q < 3) + setq(.quest_inspector, 3); + end; + } + + if (.@q == 2 || .@q == 3) + { + speech( + l("I saw someone sneaking around town wearing a theater mask."), + l("It looked like one of the masks used by the troupe that was in town recently.")); + + close2; + setq(.quest_inspector, 4); + } + + else if (.@q == 10) + { + speech( + l("I've remembered something else."), + l("The night the troupe left, I saw someone with a theater mask take a large satchel out of town."), + l("He was heading north.")); + + close2; + setq(.quest_inspector, 11); + } + + end; + } + + function oldwoman_alibi { + speech(4, + l("Hello deary.")); + + selectd( + l("Was your husband with you at home all night the last night that the troupe was in town?")); + + speech( + l("Yes, we were both at home all night.")); + + close2; + setq(.quest_inspector, 9); + end; + } + + function oldwoman_filler { + npctalk3(l("I hope you catch that naughty person!")); + end; + } + + // OnTalk: + switch (getq(.quest_inspector)) + { + case 2: + case 3: oldwoman_ask; break; + case 4: + case 5: + case 6: + case 7: oldwoman_filler; break; + case 8: + case 9: oldwoman_alibi; break; + case 10: oldwoman_ask; break; + } + + // initial intro + if (BaseLevel < 40) + npctalk3(l("Watch out for these flowers. They don't like to be messed with.")); + else + npctalk3(l("Hello deary.")); + end; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_FEMALE; + .distance = 1; // this npc has bad hearing + .speed = 2000; // this npc is very old + // TODO: move graph (after the Hurnscald map is finalized) + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/oscar.txt b/npc/008-1/oscar.txt new file mode 100644 index 00000000..9541da7b --- /dev/null +++ b/npc/008-1/oscar.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Oscar the farmer. +// THIS IS A PLACEHOLDER! + +008-1,160,77,0 script Oscar#008-1 NPC_CAUL,{ + speech + l("Hi, my name is Oscar."), + l("I used to be a farmer, but my magic attempts were banned by the gouvernment."), + lg("Now I remain poor and unemployed."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-1/sabine.txt b/npc/008-1/sabine.txt new file mode 100644 index 00000000..87026efb --- /dev/null +++ b/npc/008-1/sabine.txt @@ -0,0 +1,64 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-1,291,97,0 script Sabine NPC_SABINE,{ + + if (getq(.quest_inspector) != 2) + { + npctalk3(generic(1 | 16)); + end; + } + + speech(4, + l("Isn't this place pretty?"), + l("I love hanging out here!")); + + selectd( + l("Have you seen anything strange lately?"), + l("Do you know anything about the recent robberies?")); + + speech( + l("No, sorry.")); + + close; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_FEMALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/snarfles.txt b/npc/008-1/snarfles.txt new file mode 100644 index 00000000..6ad08867 --- /dev/null +++ b/npc/008-1/snarfles.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Snarfles the mouboo farmer. +// THIS IS A PLACEHOLDER! + +008-1,79,118,0 script Snarfles#008-1 NPC_SNARFLES,{ + speech + l("My Mouboos, my beloved Mouboos!"), + l("Oh, hi, isn't it cool to live among all those Mouboos? I don't understand how some people can eat Mouboo steak."), + lg("Murderers!"); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-1/soul-menhir.txt b/npc/008-1/soul-menhir.txt new file mode 100644 index 00000000..3c295c92 --- /dev/null +++ b/npc/008-1/soul-menhir.txt @@ -0,0 +1,58 @@ +// Evol scripts. +// Author: +// gumi +// Description: +// place of power, mana refills faster when sitting nearby + +008-1,252,111,0 script Soul Menhir#hurnscald NPC_NO_SPRITE,{ + + end; + +OnRefill: + @menhir_lock = false; + getmapxy(.@map$, .@x, .@y, UNITTYPE_PC); + + if (.@map$ != .map$ || distance(.x, .y, .@x, .@y) > .refill_distance || + !(issit())) + end; + + heal(0, .refill_rate); + end; + + +OnTimer500: + .@count = getunits(BL_PC, .@units[0], false, .map$, (.x - .refill_distance), + (.y - .refill_distance), (.x + .refill_distance), (.y + .refill_distance)); + + for (.@i = 0; .@i < .@count; ++.@i) + { + if (.@units[.@i] < 0) continue; // pre-check, just in case + deltimer(.name$ + "::OnRefill", .@units[.@i]); + if (gettimer(TIMER_COUNT, .@units[.@i], .name$ + "::OnRefill") > 0 || + getvariableofpc(@menhir_lock, .@units[.@i])) { + continue; + } + set(getvariableofpc(@menhir_lock, .@units[.@i]), true); + addtimer(rand(.refill_timer), .name$ + "::OnRefill", .@units[.@i]); + } + + initnpctimer(); + end; + +OnInit: + + .refill_rate = 1; // number of SP to give every refill + .refill_distance = 7; // max distance + .refill_timer = 200; // wait rand(X) ms before refill + initnpctimer(); + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-1/voltain.txt b/npc/008-1/voltain.txt new file mode 100644 index 00000000..b5f82db0 --- /dev/null +++ b/npc/008-1/voltain.txt @@ -0,0 +1,19 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Voltain the dark druid. +// THIS IS A PLACEHOLDER! + +008-1,182,155,0 script Voltain#008-1 NPC_DARK_DRUID,{ + speech + l("Go away, I have to think about new evil doings."), + lg("GO AWAY, I SAID!"); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-1/wateranimation.txt b/npc/008-1/wateranimation.txt index 8b66f637..74ff5fd9 100644 --- a/npc/008-1/wateranimation.txt +++ b/npc/008-1/wateranimation.txt @@ -5,5 +5,5 @@ // Description: // Water animations, splash, fishes, etc... -008-1,139,32,0 duplicate(#water_animation0) #water_animation16 NPC_WATER_SPLASH -008-1,140,40,0 duplicate(#water_animation0) #water_animation17 NPC_WATER_SPLASH +008-1,311,97,0 duplicate(#water_animation0) #water_animation16 NPC_WATER_SPLASH +008-1,314,139,0 duplicate(#water_animation0) #water_animation17 NPC_WATER_SPLASH diff --git a/npc/008-2-0/_import.txt b/npc/008-2-0/_import.txt index f2ecc3b8..2cd1023b 100644 --- a/npc/008-2-0/_import.txt +++ b/npc/008-2-0/_import.txt @@ -2,4 +2,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-0/_savepoints.txt", "npc/008-2-0/_warps.txt", +"npc/008-2-0/celestia.txt", "npc/008-2-0/mapflags.txt", diff --git a/npc/008-2-0/celestia.txt b/npc/008-2-0/celestia.txt new file mode 100644 index 00000000..d6ce7bc5 --- /dev/null +++ b/npc/008-2-0/celestia.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Our beloved Princess Celestia. +// THIS IS A PLACEHOLDER! + +008-2-0,30,23,0 script Celestia NPC_CELESTIA,{ + speech + l("Hi!"), + lg("You may remember me, I am Celestia."); + l("Take a cup of tea until something happens here."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-2-1/_import.txt b/npc/008-2-1/_import.txt index 1e5137a7..06ba6d3b 100644 --- a/npc/008-2-1/_import.txt +++ b/npc/008-2-1/_import.txt @@ -2,4 +2,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-1/_savepoints.txt", "npc/008-2-1/_warps.txt", +"npc/008-2-1/generalstore.txt", +"npc/008-2-1/inspector.txt", "npc/008-2-1/mapflags.txt", +"npc/008-2-1/richard.txt", +"npc/008-2-1/selim.txt", diff --git a/npc/008-2-1/generalstore.txt b/npc/008-2-1/generalstore.txt new file mode 100644 index 00000000..73b24a5e --- /dev/null +++ b/npc/008-2-1/generalstore.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// General Store. +// THIS IS A PLACEHOLDER! + +008-2-1,38,35,0 script Generalstore#008-1 NPC_GENERAL_STORE,{ + speech + l("Hi!"), + l("My name is General Store, they still call me this although I left the army a few years ago."); + lg("I have nothing to sell, come back later."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-1/inspector.txt b/npc/008-2-1/inspector.txt new file mode 100644 index 00000000..725f5cbd --- /dev/null +++ b/npc/008-2-1/inspector.txt @@ -0,0 +1,190 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-2-1,30,34,0 script Inspector NPC_INSPECTOR,{ + + if (BaseLevel < .min_level) + { + npctalk3(l("I'm sorry, but I'm busy looking into this string of robberies.")); + end; + } + + // OnTalk: + switch (getq(.quest)) + { + case 0: + case 1: + speech(4, + l("Hmm... what to do.")); + narrator(4, + l("He looks up and into your face.")); + speech(4, + l("You look capable, will you help me solve these robberies?"), + l("I would go myself, but for some reason I'm a non-walking NPC.")); + + if (selectd("Yes", "No") == 2) { + closeclientdialog(); + close; + } + + speech( + l("Ok then."), + l("I'd like you to ask the villagers about the recent string of robberies.")); + + close2; + setq(.quest, 2); + end; + + case 2: + npctalk3(l("Please continue talking to the villagers.")); + end; + + case 3: + speech( + l("Hm..."), + l("I don't know if I trust her eyesight or memory."), + l("See if someone else knows anything.")); + close; + + case 4: + speech( + l("Someone in a theater mask, eh?"), + l("There was a traveling theater troupe in town recently, but they've moved on to Tulimshar."), + l("Please go talk to their leader about this.")); + + close2; + setq(.quest, 5); + end; + + case 5: + npctalk3(l("Please go talk to the leader of the traveling troupe about the theater mask.")); + end; + + case 6: + speech( + l("Hm... an old man?"), + l("Could you interrogate him for me?")); + + close2; + setq(.quest, 7); + end; + + case 7: + npctalk3(l("Have you talked with the old man yet?")); + end; + + case 8: + npctalk3(l("Can you verify that with his wife?")); + end; + + case 9: + speech( + l("Hm... then it couldn't be him."), + l("I'm not sure where to go from here, maybe you can find something else."), + l("Try talking to everyone again.")); + + close2; + setq(.quest, 10); + end; + + case 10: + npctalk3(l("Made any progress yet?")); + end; + + case 11: + npctalk3(l("Then go north and investigate!")); + end; + + case 12: + npctalk3(l("Did you look over the basement?")); + end; + + case 13: + speech( + l("What a strange note."), + l("I'll keep track of this, while you return the mask to the troupe."), + l("I would go myself, but the developers were too lazy to make me walk."), + "...", + l("By the way, stay sharp! I may call upon you again.")); + + close2; + setq(.quest, 14); + end; + + case 14: + npctalk3(l("Please return the mask to the traveling troupe.")); + end; + + case 15: + speech( + l("My men have found all of the stolen items."), + l("They were all in the mining camp."), + l("We still don't know who did it.")); // XXX: feel free to extend this quest beyond this point + + close2; + setq(.quest, 16); + getexp(.reward_exp, 0); + end; + + case 16: + npctalk3(l("Remember to stay sharp. I might need your help on another case.")); + end; + } + + closeclientdialog(); + close; + +OnPCLoginEvent: +OnPCBaseLvUpEvent: + if (BaseLevel >= .min_level && getq(.quest) < 1) + { + setq(.quest, 1); // allow the player to do the quest + dispbottom(l("New quest available: %s (level %d+)", + getquestlink(.quest), .min_level)); // XXX: requires new manaplus versions, maybe show a different message for old versions? + } + end; + +OnInit: + .min_level = 20; // min level to do the quest + + .reward_exp = 2500; + + .quest = HurnscaldQuests_Inspector; + .quest_debug = .quest; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-1/richard.txt b/npc/008-2-1/richard.txt new file mode 100644 index 00000000..958ecab4 --- /dev/null +++ b/npc/008-2-1/richard.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Richard the Hurns storage guy. +// THIS IS A PLACEHOLDER! + +008-2-1,26,35,0 script Richard#008-1 NPC_RICHARD_LEGACY,{ + speech + l("Oh hey!"), + l("I was supposed to act as storagekeeper, but I forgot my key."); + lg("Come back later, perhaps I can find it."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-1/selim.txt b/npc/008-2-1/selim.txt new file mode 100644 index 00000000..c578f6cd --- /dev/null +++ b/npc/008-2-1/selim.txt @@ -0,0 +1,19 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Selim the Dyer. +// THIS IS A PLACEHOLDER! + +008-1,38,40,0 script Selim#008-1 NPC_GUMI_THE_DYER,{ + speech + l("Oh hey!"), + lg("Good you are here, you could be handy for me right now."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-10/_import.txt b/npc/008-2-10/_import.txt index 994726eb..2dd9ec77 100644 --- a/npc/008-2-10/_import.txt +++ b/npc/008-2-10/_import.txt @@ -1,4 +1,5 @@ // Map 008-2-10: Hurnscald City Hall // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-10/_warps.txt", +"npc/008-2-10/airlia.txt", "npc/008-2-10/mapflags.txt", diff --git a/npc/008-2-10/airlia.txt b/npc/008-2-10/airlia.txt new file mode 100644 index 00000000..cb7aced2 --- /dev/null +++ b/npc/008-2-10/airlia.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Airlia, the major's daughter. +// THIS IS A PLACEHOLDER! + +008-2-10,42,29,0 script Airlia#008-2-8 NPC_AIRLIA,{ + speech + l("Hello."), + l("Do you know where the graveyard is?"), + lg("No? Better is that. Its so dangerous there."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-2-12/_import.txt b/npc/008-2-12/_import.txt index 88a854e4..f5f593a2 100644 --- a/npc/008-2-12/_import.txt +++ b/npc/008-2-12/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-12/_warps.txt", "npc/008-2-12/mapflags.txt", +"npc/008-2-12/nurse.txt", diff --git a/npc/008-2-12/nurse.txt b/npc/008-2-12/nurse.txt new file mode 100644 index 00000000..29452258 --- /dev/null +++ b/npc/008-2-12/nurse.txt @@ -0,0 +1,101 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// Hurnscald Nurse. Robberies in Hurnscald. + +008-2-12,28,30,0 script Nurse NPC_NURSE_LEGACY,{ + + speech(4, + l("How can I help you?")); + + // TODO: check for AxeHat when we get it + // XXX: this npc used to teach the resist poison skill, do we still want that? + + selectd( + l("Oooh, these wounds! They hurt so much!"), + l("I don't feel so well, I might be sick."), + l("No, I'm fine."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything out of the ordinary?"))); + + switch (@menu) + { + case 1: + if (BaseLevel > .heal_max_level) + { + speech( + l("I'm sorry but I'm here only to help young people."), // XXX: this sounds cruel towards elderly people + l("Your level is already higher than %d.", .heal_max_level), + l("You can get some rest at the inn near here.")); + close; + } + speech(4, + l("Here, let me heal you.")); + + npcskill(AL_HEAL, .heal_skill_level, .heal_npc_stats, .heal_npc_level); + + speech( + l("There you go, like new.")); + close; + case 2: + speech( + l("Then you should better see the doctor."), + l("He is usually in his office on the 3rd floor.")); + close; + case 3: + speech( + l("Then I would ask you to leave."), + l("There are people who really need our help.")); + close; + case 4: + speech( + l("I'm too busy here to observe the town.")); + close; + } + + + end; + +OnInit: + .heal_max_level = 20; // she will only heal low level players + + .heal_skill_level = 10; // what level of the healing skill to use + .heal_npc_stats = 99; // what stat points the NPC has + .heal_npc_level = 60; // what level the npc has + + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_FEMALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-13/_import.txt b/npc/008-2-13/_import.txt index a4b0330e..ec6a73b7 100644 --- a/npc/008-2-13/_import.txt +++ b/npc/008-2-13/_import.txt @@ -2,4 +2,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-13/_savepoints.txt", "npc/008-2-13/_warps.txt", +"npc/008-2-13/lena.txt", "npc/008-2-13/mapflags.txt", diff --git a/npc/008-2-13/lena.txt b/npc/008-2-13/lena.txt new file mode 100644 index 00000000..df9f38e9 --- /dev/null +++ b/npc/008-2-13/lena.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Lena the Bowwoman. +// THIS IS A PLACEHOLDER! + +008-2-13,27,27,0 script Lena#008-2-13 NPC_LENA,{ + speech + l("Hey."), + l("Did you hear about the Bandit's attacks? They must have a hideout somewhere outside Hurnscald."), + lg("I will inform you when I have more information about all this."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-2-14/_import.txt b/npc/008-2-14/_import.txt index 29a984e8..818ced88 100644 --- a/npc/008-2-14/_import.txt +++ b/npc/008-2-14/_import.txt @@ -2,4 +2,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-14/_savepoints.txt", "npc/008-2-14/_warps.txt", +"npc/008-2-14/doctor.txt", "npc/008-2-14/mapflags.txt", diff --git a/npc/008-2-14/doctor.txt b/npc/008-2-14/doctor.txt new file mode 100644 index 00000000..52c8653c --- /dev/null +++ b/npc/008-2-14/doctor.txt @@ -0,0 +1,80 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// The crazy Hurnscald Doctor. + +008-2-14,27,27,0 script Doctor NPC_DOCTOR_LEGACY,{ + + speech(4, + l("Hello, can I help you?")); + + // TODO: check for AxeHat when we get it + // TODO: check for EyePatch when we get it + + selectd( + l("I think I am sick!"), + l("No, I feel fine."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange in town? Anything that might have to do with the robberies?"))); + + switch (@menu) + { + case 1: + narrator(4, + l("The doctor examines you briefly.")); + // TODO: check for poison or other status conditions currently in use + speech( + l("Nonsense!"), + l("You look fine and dandy to me."), + l("All you need is a bit more exercise and fresh fruit in your diet!")); + close; + case 2: + speech( + l("Then please stop wasting my precious time.")); + close; + case 3: + speech( + l("No, I haven't seen anything.")); + close; + } + + + end; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-17/_import.txt b/npc/008-2-17/_import.txt index d90289e3..854dad03 100644 --- a/npc/008-2-17/_import.txt +++ b/npc/008-2-17/_import.txt @@ -1,3 +1,5 @@ // Map 008-2-17: Mining Camp // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-17/_warps.txt", +"npc/008-2-17/angus.txt", +"npc/008-2-17/caul.txt", diff --git a/npc/008-2-17/_warps.txt b/npc/008-2-17/_warps.txt index 9857c005..1010521a 100644 --- a/npc/008-2-17/_warps.txt +++ b/npc/008-2-17/_warps.txt @@ -1,5 +1,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 008-2-17: Mining Camp warps 008-2-17,52,40,0 warp #008-2-17_52_40 0,0,008-1,236,40 -008-2-17,25,42,0 warp #008-2-17_25_39 1,0,008-2-18,22,24 +008-2-17,25,39,0 warp #008-2-17_25_39 1,0,008-2-18,22,24 008-2-17,24,34,0 warp #008-2-17_24_34 0,0,008-2-19,20,29 diff --git a/npc/008-2-17/angus.txt b/npc/008-2-17/angus.txt new file mode 100644 index 00000000..3efeefb6 --- /dev/null +++ b/npc/008-2-17/angus.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Angus the Smith. +// THIS IS A PLACEHOLDER! + +008-2-17,34,47,0 script Angus#008-2-17 NPC_ANGUS_THE_SMITH,{ + speech + l("Hello."), + l("Do you need your pickaxe or your shovel fixed? Then I am your man."), + lg("If you want to play with unicorns, you better piss off now."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-17/caul.txt b/npc/008-2-17/caul.txt new file mode 100644 index 00000000..41c5488c --- /dev/null +++ b/npc/008-2-17/caul.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Caul the Alchemist. +// THIS IS A PLACEHOLDER! + +008-2-17,40,33,0 script Caul#008-2-17 NPC_CAUL,{ + speech + l("Hi there."), + l("Don't you like the smoke, when there is a nice fire beneath a cauldron?"), + lg("Honestly, sometimes I prefer nice explosions. Better keep back!"); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-18/_import.txt b/npc/008-2-18/_import.txt index 4f791e6f..5035c75c 100644 --- a/npc/008-2-18/_import.txt +++ b/npc/008-2-18/_import.txt @@ -1,3 +1,4 @@ // Map 008-2-18: Mining Camp First Floor // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-18/_warps.txt", +"npc/008-2-18/malik.txt", diff --git a/npc/008-2-18/malik.txt b/npc/008-2-18/malik.txt new file mode 100644 index 00000000..ab95dc92 --- /dev/null +++ b/npc/008-2-18/malik.txt @@ -0,0 +1,65 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald +// TODO: Make Malik prepare Crude Gem from shards, and make him produce Gem Powder later, once the player visited Tulim(dont tell WildX, though) + +008-2-18,32,24,0 script Malik#008-2-18 NPC_MALIK,{ + if (getq(.quest_inspector) == 11) + { + speech(4, + l("Hi, can I help you at all?")); + + selectd( + l("The inspector sent me here to investigate.")); + + speech(4, + l("Yeah, we did hear a commotion."), + l("We thought we heard someone go down to the basement, but we checked the whole place over and didn't see anything out of the ordinary.")); + + close2; + setq(.quest_inspector, 12); + end; + } + + npctalk3(generic(32 | 256)); + end; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-19/_import.txt b/npc/008-2-19/_import.txt index c080bfb8..1d12e589 100644 --- a/npc/008-2-19/_import.txt +++ b/npc/008-2-19/_import.txt @@ -1,3 +1,4 @@ // Map 008-2-19: Mining Camp Basement // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-19/_warps.txt", +"npc/008-2-19/books.txt", diff --git a/npc/008-2-19/books.txt b/npc/008-2-19/books.txt new file mode 100644 index 00000000..81cd4b98 --- /dev/null +++ b/npc/008-2-19/books.txt @@ -0,0 +1,60 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-2-19,33,21,0 script bookcase NPC_NO_SPRITE,{ + + if (getq(.quest_inspector) != 12) + { + dispbottom(l("You see an ordinary bookcase.")); + end; + } + + narrator( + l("You see an ordinary bookcase."), + l("Looking over closely, you find a book that is upside down."), + l("The book has been hollowed out."), + l("Inside is a theater mask and a note that you cannot even begin to read.")); + + close2; + setq(.quest_inspector, 13); + end; + +OnInit: + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .distance = 1; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-2/_import.txt b/npc/008-2-2/_import.txt index 5a896da0..34d628f7 100644 --- a/npc/008-2-2/_import.txt +++ b/npc/008-2-2/_import.txt @@ -1,4 +1,11 @@ // Map 008-2-2: The Rusty Pick // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-2/_warps.txt", +"npc/008-2-2/barron.txt", +"npc/008-2-2/kfahr.txt", +"npc/008-2-2/ledmitz.txt", "npc/008-2-2/mapflags.txt", +"npc/008-2-2/melania.txt", +"npc/008-2-2/melinda.txt", +"npc/008-2-2/note.txt", +"npc/008-2-2/shop.txt", diff --git a/npc/008-2-2/barron.txt b/npc/008-2-2/barron.txt new file mode 100644 index 00000000..c64efa40 --- /dev/null +++ b/npc/008-2-2/barron.txt @@ -0,0 +1,32 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Barron, the bartender of the Rusty Pick. + +008-2-2,43,28,0 script Barron#008-2-2 NPC_GENERAL_STORE,{ +speech S_LAST_NEXT, + l("Hi!"), + l("I am the bartender here, can I provide you with some delicious beverage?"), + l("Or you can take seat and ask Melinda if you need something."); + + switch (select(l("What beverages do you have?"), + l("I'll ask Melinda later"))) + { + case 1: + closeclientdialog; + shop "#Invisible008-2-2"; + close; + case 2: + speech S_FIRST_BLANK_LINE, + l("Make sure to tip her, it will brighten up her day."); + close; + } + + + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} diff --git a/npc/008-2-2/kfahr.txt b/npc/008-2-2/kfahr.txt new file mode 100644 index 00000000..0ffae5df --- /dev/null +++ b/npc/008-2-2/kfahr.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Kfahr the hero. +// THIS IS A PLACEHOLDER! + +008-2-2,44,36,0 script Kfahr#008-2-2 NPC_YOUNG_MAN_KFAHR,{ + speech + l("Oh hey *hicks*"), + l("This waitress *hicks* is great, she never stops to bring beer *hicks."); + lg("When I am less busy *hicks*, I can tell you stories of my heroism."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-2/ledmitz.txt b/npc/008-2-2/ledmitz.txt new file mode 100644 index 00000000..5939428e --- /dev/null +++ b/npc/008-2-2/ledmitz.txt @@ -0,0 +1,55 @@ +// Evol scripts. +// Author: +// gumi + +008-2-2,43,34,0 script Ledd NPC_DRINKER_ROAMINGO,{ + // XXX: ^ I know it should be Led and Mitz but 4144 made names + // shorter than 4 characters illegal + + deltimer("Mitz::OnTalk"); + addtimer(rand(500, 900), "Mitz::OnTalk"); +OnTalk: + npctalk3(l("Ha! I'll drink muuuch mo.. more than you! Im not ooone biiit dr...dr..unk!")); + // TODO: add more sentences + // XXX: maybe instead of making them respond to a click they should just + // shout at each other at regular intervals? + end; + +OnInit: + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} + +008-2-2,46,34,0 script Mitz NPC_DRINKER_MICKSHA,{ + + deltimer("Ledd::OnTalk"); + addtimer(rand(500, 900), "Ledd::OnTalk"); +OnTalk: + npctalk3(l("I can still drink more! Better give up you... you... teelotaler! MORE BEER MELINDA!")); + // TODO: add more sentences + end; + +OnInit: + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-2/melania.txt b/npc/008-2-2/melania.txt new file mode 100644 index 00000000..52efda05 --- /dev/null +++ b/npc/008-2-2/melania.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Receptionist of Rusty Pick. +// THIS IS A PLACEHOLDER! + +008-2-2,28,27,0 script Melania NPC_AIRLIA,{ + speech + l("Hello Sir."), + l("Welcome to the Rusty Pick. Sorry, we have no room left today."), + l("One advice: Don't take the things those drinkers say too serious. They are sitting here and drinking all day."), + l("I wish you a beautiful day."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-2-2/melinda.txt b/npc/008-2-2/melinda.txt new file mode 100644 index 00000000..a418b4e2 --- /dev/null +++ b/npc/008-2-2/melinda.txt @@ -0,0 +1,172 @@ + +// Evol scripts. +// Authors: +// Toams +// Description: +// Melinda, Rusty Pick's waitress + +008-2-2,40,29,0 script Melinda#008-2-2 NPC_MELINDA,1,1,{ + +function StartConversation { + + .@tick = gettimetick(1); + if (.@tick > @Hurns_Rusty_Pick_WaitressTick + 10) + { + setarray .messages$[0], l("Welcome to our inn!"), + l("Welcome to the Rusty Pick."), + l("Please, have a seat."), + l("Lovely day, isn't it?"); + + .@r = rand(getarraysize(.messages$)); + .@msg$ = .messages$[.@r]; + npctalk3 .@msg$; + @Hurns_Rusty_Pick_WaitressTick = .@tick; + } + } + +mes ""; +mesn; +mesq l("Hi, sweetie! Want a fresh beer for 90 Florin?"); +switch (select(l("Sure! [Don't tip]"), + l("Sure! [Tip 5 Florin]"), + l("Sure! [Tip 10 Florin]"), + l("Nah, maybe later."))) +{ + case 1: + if (Zeny < 90) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set Zeny, Zeny - 90; + getitem Beer, 1; + mes ""; + mesn; + mesq l("Pff... Nickel nurser!"); + goto L_Close; + case 2: + if (Zeny < 95) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set Zeny, Zeny - 95; + getitem "Beer", 1; + mes ""; + mesn; + mesq l("Thanks for the tip!"); + goto L_Close; + case 3: + if (Zeny < 100) + goto L_NoMoney; + getinventorylist; + if (@inventorylist_count == 100 && countitem("Beer") == 0) + goto L_TooMany; + set Zeny, Zeny - 100; + getitem "Beer", 1; + mes ""; + mesn; + mesq l("Thank you, sweetie! Want to hear a secret?"); + switch (select(l("What is it, darling?"), + l("Nah, I don't feel like chatting."))) + { + case 1: + mes ""; + mesn; + mesq l("The master bowyer in this village used to construct exceptional bows. When you want one you should go and ask him."); + goto L_Close; + case 2: + goto L_No; + } + goto L_Close; + case 4: + goto L_No; +} + +L_NoMoney: + mes ""; + mesn; + mesq l("You look broke. Don't think that you can dine and dash here!"); + goto L_Close; + +L_No: + mes ""; + mesn; + mesq l("Just call me when you changed your mind."); + goto L_Close; + +L_Close: + initnpctimer; + close; + +L_TooMany: + mes ""; + mesn; + mesq l("You don't have room for a beer!"); + goto L_Close; + +OnTimer1000: + dographmovestep; + +OnTouch: + StartConversation; + end; + +OnInit: + .sex = G_FEMALE; + .distance = 5; + .speed = 300; + initmovegraph "startspot", 40, 29, + "barkeeper", 43, 30, + "kfahr_r", 45, 36, + "kfahr_l", 43, 35, + "l_table_b", 36, 36, + "l_table_r", 38, 33, + "m_table_l", 39, 33, + "m_table_b", 41, 36, + "r_table_r", 46, 33, + "fireplace", 36, 28, + "firewood", 33, 28, + "to_basement", 52, 32, + "basement_entrance", 24, 25, + "basement_cabinet", 30,31, + "cabinet", 42, 28, + "bucket", 46, 30; + + + + setmovegraphcmd "startspot", "firewood", 1, "dir 4; wait 5", + "firewood", "fireplace", 1, "dir 4; wait 3", + "fireplace", "startspot", 1, "dir 0; wait 10", + + "startspot", "l_table_b", 1, "dir 4; wait 3", + "l_table_b", "l_table_r", 1, "dir 2; wait 3", + "l_table_r", "m_table_l", 1, "dir 6; wait 3", + "m_table_l", "m_table_b", 1, "dir 4; wait 3", + "m_table_b", "r_table_r", 1, "dir 2; wait 3", + "r_table_r", "bucket", 1, "dir 4; wait 1; emote 1;" + "wait 15; moveon", + "bucket", "startspot", 1, "dir 0; wait 5", + + "startspot", "kfahr_r", 2, "dir 4; wait 5", + "kfahr_r", "barkeeper", 1, "dir 4; wait 1;" + "say Another round for kfahr's table.;" + "wait 1; say They sure are thirsty today;" + "wait 5; moveon", + "barkeeper", "kfahr_l", 1, "dir 6; wait 3;" + "say Cheers!;" + "wait 3; moveon", + "kfahr_l", "startspot", 1, "dir 0; wait 10", + + "startspot", "to_basement", 1, "dir 4; warp 008-2-5 basement_entrance", + "basement_entrance", "basement_cabinet", 1, "dir 4; wait 5", + "basement_cabinet", "basement_entrance", 1, "dir 4; warp 008-2-2 to_basement", + "to_basement", "cabinet", 1, "dir 4; wait 5", + "cabinet", "startspot", 1, "dir 0; wait 15"; + + + + + firstmove "wait 8"; + initnpctimer; +} diff --git a/npc/008-2-2/note.txt b/npc/008-2-2/note.txt new file mode 100644 index 00000000..2fcce90f --- /dev/null +++ b/npc/008-2-2/note.txt @@ -0,0 +1,28 @@ +// Evol scripts. +// Author: +// gumi + +008-2-2,32,28,0 script Note#Hurnscald:pub NPC_PAPER_NOTE,{ + narrator(8, + l("We refuse service to anyone who:"), + l("• Has a bubblehead"), + l("• Is not properly shaded"), + l("• Can't walk without stopping after every step")); + + // In case you don't get the joke, know that it's a parody on Illutia. + + close; + +OnInit: + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-2/shop.txt b/npc/008-2-2/shop.txt new file mode 100644 index 00000000..861843f7 --- /dev/null +++ b/npc/008-2-2/shop.txt @@ -0,0 +1,45 @@ +// Evol scripts. +// Authors: +// 4144 +// Reid +// Description: +// Inn hidden shop. + +008-2-2,40,30,0 trader #Invisible008-2-2 NPC_HIDDEN,{ + +OnInit: + tradertype(NST_MARKET); + + sellitem Beer, -1, 50; + sellitem Bread, -1, 50; + sellitem RedPlushWine, -1, 50; + sellitem Cheese, -1, 50; + sellitem CherryCake, -1, 50; + sellitem SmallHealing, -1, 50; + + .sex = G_OTHER; + .distance = 10; + end; + +OnClock0000: + restoreshopitem Beer, 20; + restoreshopitem Bread, 20; + restoreshopitem RedPlushWine, 20; + restoreshopitem Cheese, 20; + restoreshopitem CherryCake, 20; + restoreshopitem SmallHealing, 20; +OnClock0800: + restoreshopitem Beer, 20; + restoreshopitem Bread, 20; + restoreshopitem RedPlushWine, 20; + restoreshopitem Cheese, 20; + restoreshopitem CherryCake, 20; + restoreshopitem SmallHealing, 20; +OnClock1600: + restoreshopitem Beer, 20; + restoreshopitem Bread, 20; + restoreshopitem RedPlushWine, 20; + restoreshopitem Cheese, 20; + restoreshopitem CherryCake, 20; + restoreshopitem SmallHealing, 20; +} diff --git a/npc/008-2-21/_warps.txt b/npc/008-2-21/_warps.txt index 90e3be7f..5dd0f6f5 100644 --- a/npc/008-2-21/_warps.txt +++ b/npc/008-2-21/_warps.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 008-2-21: Forsaken Inn Basement warps -008-2-21,34,27,0 warp #008-2-21_34_26 1,0,008-2-20,35,36 +008-2-21,34,26,0 warp #008-2-21_34_26 1,0,008-2-20,35,36 008-2-21,22,43,0 warp #008-2-21_22_43 0,0,008-1,252,212 diff --git a/npc/008-2-24/_import.txt b/npc/008-2-24/_import.txt index e8f862f4..63cfe25c 100644 --- a/npc/008-2-24/_import.txt +++ b/npc/008-2-24/_import.txt @@ -1,3 +1,4 @@ // Map 008-2-24: Dimond's Cove Ground Floor // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-24/_warps.txt", +"npc/008-2-24/troupe-leader.txt", diff --git a/npc/008-2-24/troupe-leader.txt b/npc/008-2-24/troupe-leader.txt new file mode 100644 index 00000000..8b10fed8 --- /dev/null +++ b/npc/008-2-24/troupe-leader.txt @@ -0,0 +1,119 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - talked to inspector (1) <= start +// [1] 3 - talked to old woman (1) +// [1] 4 - talked to old woman (2) +// [1] 5 - talked to inspector (2) +// [1] 6 - talked to troupe leader (1) +// [1] 7 - talked to inspector (3) +// [1] 8 - talked to old man +// [1] 9 - talked to old woman (3) +// [1] 10 - talked to inspector (4) +// [1] 11 - talked to old woman (4) +// [1] 12 - talked to malek +// [1] 13 - searched the bookcase +// [1] 14 - talked to inspector (5) +// [1] 15 - talked to troupe leader (2) <= reward +// [1] 16 - talked to inspector (6) <= reward, end +// [2] unused +// [3] unused +// [t] unused +// Description: +// robberies in hurnscald + +008-2-24,41,39,0 script Troupe Leader NPC_DIMOND,{ + + function nohmask_question { + // XXX: shouldn't the player ask a question before she replies Yes? this feels too abrupt + speech(4, + l("Yes, a mask was stolen from us the last night we were in Hurnscald.")); + + selectd( + l("Any ideas on who might have taken it?"), + l("Are you sure one of your troupe members didn't hide it and commit those robberies?"), + l("Hmm...")); + + switch (@menu) + { + case 1: + speech( + l("Hm..."), + l("I did see an old man hang out near the theater after our last show.")); + close2; + setq(.quest_inspector, 6); + close; + + case 2: + speech( + l("I am absolutely positive."), + l("None of my troupe have left the city since we got here."), + l("Good day!")); + close; + } + + closeclientdialog(); + close; + } + + function nohmask_found { + // XXX: shouldn't the player say "I found your mask" before the npc says thanks? + speech(4, + l("Thank you for finding the mask."), + l("You did such a good job, you should keep it.")); + + if (checkweight(.reward_item, 1) != true) + { + speech(8, + l("It seems you can't carry it right now...")); + close; + } + + setq(.quest_inspector, 15); + getexp(.reward_exp, 0); + getitem(.reward_item, 1); + + speech( + l("We don't need it anymore."), + l("We're doing different shows here.")); + close; + } + + // OnTalk: + switch (getq(.quest_inspector)) + { + case 5: nohmask_question; break; + // XXX: shouldn't it have an in-between state where it says good luck or something? + case 14: nohmask_found; break; + // XXX: shouldn't it have a "completed" state where it says thanks, come back any time? + } + + // initial intro + speech( + l("Hello."), + l("I'm the leader of a traveling theater troupe."), + l("We'll be staying here in Tulimshar for a while.")); + close; + +OnInit: + .reward_item = NohMask; // FIXME: change this when we get NohMask + .reward_exp = 1500; + + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_inspector; + .sex = G_FEMALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-4/_import.txt b/npc/008-2-4/_import.txt index 8ab4d742..826aa135 100644 --- a/npc/008-2-4/_import.txt +++ b/npc/008-2-4/_import.txt @@ -2,4 +2,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-4/_savepoints.txt", "npc/008-2-4/_warps.txt", +"npc/008-2-4/bernard.txt", "npc/008-2-4/mapflags.txt", +"npc/008-2-4/olana.txt", diff --git a/npc/008-2-4/bernard.txt b/npc/008-2-4/bernard.txt new file mode 100644 index 00000000..a528bcc3 --- /dev/null +++ b/npc/008-2-4/bernard.txt @@ -0,0 +1,230 @@ +// Evol scripts. +// Author: +// gumi +// Quest states: +// [1] 0 - cannot do the quest +// [1] 1 - can do the quest +// [1] 2 - bernard wants roasted maggot +// [1] 3 - brought maggot +// [1] 4 - bernard wants maggot slime +// [1] 5 - brought maggot slime +// [1] 6 - mikhail needs maggot slime +// [1] 7 - brought maggot slime +// [2] unused +// [3] unused +// [t] unused +// Description: +// Bernard wants to make a maggot slime soup + +008-2-4,34,29,0 script Bernard NPC_BERNARD,{ + + if (BaseLevel < .min_level) + { + npctalk3 generic(16 | 32); + end; + } + + function soup_intro { + if (rand(2) == 1) + { + speech 4, + l("The fields are crawling with maggots."), + l("Where is Mikhail?"), + l("What is taking them so long?"), + l("Could I ask a favor of you?"); + } + else + { + speech 4, + l("The taste of maggots in soup is... unforgettable."), + l("They taste simply divine!"), + l("I sent someone to kill me some maggots and they have yet to return."), + l("Would you help me kill some?"); + } + + if (selectd(l("Yes."), l("No.")) == 2) + { + return; + } + + if (rand(2) == 1) + { + speech 4, + l("Great!"), + l("I need a %s for my soup.", getitemlink(.first_item)); + } + else + { + speech 4, + l("Bring me a %s.", getitemlink(.first_item)), + l("I'll give you something if you do."); + } + + speech 8, + l("Please bring it to me!"); + + setq .quest, 2; + close; + } + + function soup_reminder_roasted { + speech + l("Oh, please hurry and bring me a %s.", getitemlink(.first_item)), + l("I'm yearning for maggot soup!"); + close; + } + + function soup_no_room { + speech 1 | 8, + "...", + l("It seems you don't have room for my reward."), + l("I'll wait until you do."); + close; + } + + function soup_reward_roasted { + speech 4, + l("Oooh, perfect! It's perfect!"), + l("You brought me my %s!", getitemlink(.first_item)), + l("Here, have some %s for your troubles.", + getitemlink(.first_reward_item)); + + if (checkweight(.first_reward_item, .first_reward_amount) != true) + soup_no_room; + + if (countitem(.first_item) < 1) + close; + + delitem .first_item, 1; + getitem .first_reward_item, .first_reward_amount; + getexp .first_reward_exp, 0; + setq .quest, 3; + + speech 8, + l("Now let's see..."); + close; + } + + function soup_ask_slime { + speech + l("Thank you so much!"), + l("But... something is missing to make the soup creamy."), + l("I need %d %s for that.", + .second_item_qty, getitemlink(.second_item)), + l("Bring them to me, and I'll give you something nice."); + + setq .quest, 4; + close; + } + + function soup_reminder_slime { + speech + l("Please do hurry and bring me %d %s, so I can finish my soup!", + .second_item_qty, getitemlink(.second_item)); + close; + } + + function soup_reward_slime { + speech + l("Nice!"), + l("They're perfect, just perfect!"), + l("You brought me the %d %s!", + .second_item_qty, getitemlink(.second_item)), + l("Here, have some %s as reward.", + getitemlink(.second_reward_item)); + + if (checkweight(.second_reward_item, .second_reward_amount) != true) + soup_no_room; + + if (countitem(.second_item) < .second_item_qty) + close; + + delitem .second_item, .second_item_qty; + getitem .second_reward_item, .second_reward_amount; + getexp .second_reward_exp, 0; + setq .quest, 5; + + close; + } + + function soup_thanks_slime { + speech + l("I didn't mention it before, but I also put beer in my soup."), + l("I hope you like beer as much as I do, because, you see..."), + l("Beer is life!"); + close; + } + + function soup_thanks_mikhail { + speech + l("My help, Mikhail, finally returned with the slimes I needed."), + l("I wonder what took him so long?"); + close; + } + + + // OnTalk: + switch (getq(.quest)) + { + case 0: + case 1: soup_intro; break; + case 2: + if (countitem(.first_item) < 1) + soup_reminder_roasted; + else + soup_reward_roasted; + break; + case 3: soup_ask_slime; break; + case 4: + if (countitem(.second_item) < .second_item_qty) + soup_reminder_slime; + else + soup_reward_slime; + break; + case 5: + case 6: soup_thanks_slime; break; + default: soup_thanks_mikhail; + } + + closeclientdialog(); + close; + +OnPCLoginEvent: +OnPCBaseLvUpEvent: + if (BaseLevel >= .min_level && getq(.quest) < 1) + { + setq .quest, 1; // allow the player to do the quest + dispbottom l("New quest available: %s (level %d+)", + getquestlink(.quest), .min_level); // XXX: requires new manaplus versions, maybe show a different message for old versions? + } + end; + +OnInit: + .min_level = 10; // min level to do the quest + + .first_item = RoastedMaggot; + .first_reward_item = CherryCake; + .first_reward_amount = 5; + .first_reward_exp = 100; + + .second_item = MaggotSlime; + .second_item_qty = 3; + .second_reward_item = Beer; + .second_reward_amount = 3; + .second_reward_exp = 100; + + .quest = HurnscaldQuests_Soup; + .quest_debug = .quest; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-4/olana.txt b/npc/008-2-4/olana.txt new file mode 100644 index 00000000..c16e8887 --- /dev/null +++ b/npc/008-2-4/olana.txt @@ -0,0 +1,21 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Olana, the old woman who is looking for her daughter Rossy. +// THIS IS A PLACEHOLDER! + +008-2-4,30,28,0 script Olana#008-2-4 NPC_OLANA,{ + speech + l("Oh, a traveller. Welcome."), + l("Did you see my daughter Rossy, by chance?"), + l("She wasn't at home for two days now. I worry about her!"), + lg("If you see her, please tell her to come home."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-6/_import.txt b/npc/008-2-6/_import.txt index 4630df43..38c19068 100644 --- a/npc/008-2-6/_import.txt +++ b/npc/008-2-6/_import.txt @@ -1,4 +1,6 @@ // Map 008-2-6: Two Guys One Bed // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-6/_warps.txt", +"npc/008-2-6/alan.txt", +"npc/008-2-6/donald.txt", "npc/008-2-6/mapflags.txt", diff --git a/npc/008-2-6/alan.txt b/npc/008-2-6/alan.txt new file mode 100644 index 00000000..35d75437 --- /dev/null +++ b/npc/008-2-6/alan.txt @@ -0,0 +1,303 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Alan the bow-maker. + +008-2-6,31,26,0 script Alan NPC_YOUNG_MAN_KFAHR,{ + + function bow_intro { + speech(4, + l("When you want to buy something then please speak to my apprentice."), + l("I am only doing special requests.")); + + selectd( + l("OK, thanks."), + rif(BaseLevel >= .min_level, l("Can you make me a really good bow?")), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange recently that might be connected to the robberies?"))); + + switch (@menu) + { + case 1: closeclientdialog(); close; + case 3: speech(l("No.")); close; + } + + speech(4, + l("You mean like one of my legendary forest bows?")); + + selectd( + l("Yes, that would be nice.")); + + speech(4, + l("Sorry, I am not making these anymore.")); + + selectd( + l("Oh, too bad."), + l("What? Why not?")); + + if (@menu == 1) { + closeclientdialog(); + close; + } + + speech(4, + l("The problem is that I am short of material."), + l("My forestbows are not made of regular wood, you know."), + l("They are made of special living wood."), + l("And only the best logs of living wood are good enough for them."), + l("I used to get these logs from Jack, the handsome lumberjack."), + l("But the last time I asked him for a new delivery he said that he would never again get any for me.")); + + selectd( + l("Too bad."), + l("Did you ask him why?")); + + if (@menu == 1) { + closeclientdialog(); + close; + } + + speech(4, + l("Sure I did."), + l("But he just told me to leave him alone."), + l("Maybe you could ask him what's wrong?")); + + selectd( + l("OK, I'll ask him."), + l("I am sure he got his reasons.")); + + setq(.quest_bow, 2); + closeclientdialog(); + close; + } + + function bow_reminder { + if (getq(.quest_inspector) == 2) + { + speech(4, + l("Did you already ask Jack why he won't deliver me any more living wood?")); + + selectd( + l("Have you seen anything strange recently that might be connected to the robberies?")); + + speech(l("No.")); + close; + } + + npctalk3(l("Did you already ask Jack why he won't deliver me any more living wood?")); + end; + } + + function bow_explain { + speech(4, + l("Did you already ask Jack why he won't deliver me any more living wood?")); + + selectd( + l("Yes, I did. He said that the trees turned into dangerous monsters."), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange recently that might be connected to the robberies?"))); + + if (@menu != 1) + { + speech(l("No.")); + close; + } + + speech( + l("Oh, that's really bad news."), + l("Maybe you can do his job?"), + l("If you kill some of these tree monsters and bring me their wood I could take a look at them."), + l("Maybe you will find a piece of wood that is strong enough to become one of my forest bows.")); + + close2; + setq(.quest_bow, 4); + end; + } + + function bow_make { + speech(4, + l("I can make you a really nice forest bow out of this."), + l("I just need %s E for material and work time.", + format_number(.req_esp))); + + selectd( + l("%s??? What a ripoff!", format_number(.req_esp)), + rif(Zeny >= .req_esp, l("Sure, here you go!")), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange recently that might be connected to the robberies?"))); + + switch (@menu) + { + case 1: speech(l("Fine, I'll just hold on to this log should you ever change your mind.")); close; + case 3: speech(l("No.")); close; + } + + // XXX: maybe here we could make the player wait real-world hours for Alan to finish? + + if (checkweight(.reward_item, 1) != true) + { + speech( + l("It seems you can't carry the bow right now."), + l("Go clean up your inventory and come back.")); + close; + } + + if (Zeny < .req_esp) + close; // double-check + + setq(.quest_bow, 6); + Zeny -= .req_esp; + getitem(.reward_item, 1); + getexp(.reward_exp, 0); + + speech( + l("Here you go - have fun with it.")); + close; + } + + function bow_check_wood { + speech(4, + l("How is the hunt going?"), + l("Did you bring me any wood?")); + + selectd( + l("No, sorry."), + rif(countitem(.req_item) >= 1, l("Here, take a look!")), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange recently that might be connected to the robberies?"))); + + switch (@menu) + { + case 1: closeclientdialog(); close; + case 3: speech(l("No.")); close; + } + + .@first = true; + + do { + if (countitem(.req_item) < 1) + break; + + if (.@first == false) + { + narrator(4, + l("You hand him another log.")); + } + + delitem(.req_item, 1); + .@first = false; + + speech(4, + l("Hmmm... looks ok, but is it strong enough?")); + + narrator(4, + l("Alan bends the log over his knee.")); + + if (rand(.success_rate) == 0) + { + narrator(4 | 8, + l("Alan tries as hard as he can but the log won't bend.")); + + speech(4, + l("Aaah!"), + l("Yes!"), + l("That is a really fine piece of wood you brought me."), + l("It will make an excellent bow!")); + + setq(.quest_bow, 5); + setq(.quest_shield, 1); + + narrator(4, + l("He proceeds to further scrutinize the log.")); + + bow_make; + end; + } + + narrator(4 | 8, + l("The log breaks with a loud crack.")); + + speech(4, + l("Sorry, this log was too weak for one of my forest bows."), + l("Now it is junk."), + l("Do you wish to try again?")); + + selectd( + l("Sure, here you go."), + l("Hey! Stop breaking my stuff!")); + + if (@menu != 1) { + closeclientdialog(); + close; + } + + } while (true); + + speech(l("It seems you have no wood left.")); + close; + } + + function bow_done { + speech(4, + l("I hope you are satisfied with your forest bow."), + l("It is one of my best works.")); + + selectd( + l("I am!"), + rif(getq(.quest_inspector) == 2, l("Have you seen anything strange recently that might be connected to the robberies?"))); + + switch (@menu) + { + case 2: speech(l("No.")); close; + default: closeclientdialog(); close; + } + } + + // OnTalk: + switch (getq(.quest_bow)) + { + case 0: + case 1: bow_intro; break; + case 2: bow_reminder; break; + case 3: bow_explain; break; + case 4: bow_check_wood; break; + case 5: bow_make; break; + default: bow_done; break; + } + + closeclientdialog(); + close; + +OnPCLoginEvent: +OnPCBaseLvUpEvent: + if (BaseLevel >= .min_level && getq(.quest_bow) < 1) + { + setq(.quest_bow, 1); // allow the player to do the quest + dispbottom(l("New quest available: %s (level %d+)", + getquestlink(.quest_bow), .min_level)); // XXX: requires new manaplus versions, maybe show a different message for old versions? + } + end; + +OnInit: + .min_level = 25; // min level to do the quest + + .req_item = RawLog; // item required to make the bow + .req_esp = 10000; // amount of Esperin required to make the bow + .reward_item = ForestBow; // quest reward (item) + .reward_exp = 500; // quest reward (exp) + .success_rate = 20; // one in X chances to get a perfect log + + .quest_bow = HurnscaldQuests_ForestBow; + .quest_shield = HurnscaldQuests_WoodenShield; + .quest_inspector = HurnscaldQuests_Inspector; + .quest_debug = .quest_bow; + .sex = G_MALE; + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-6/donald.txt b/npc/008-2-6/donald.txt new file mode 100644 index 00000000..2b3a72f3 --- /dev/null +++ b/npc/008-2-6/donald.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Alan's Apprentice. +// THIS IS A PLACEHOLDER! + +008-2-6,29,27,0 script Donald NPC_YOUNG_MAN_APPRENTICE,{ + speech + l("Hi Sir."), + l("Sorry, we are sold out for today."), + lg("Come back later."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} diff --git a/npc/008-2-7/_import.txt b/npc/008-2-7/_import.txt index 263e5dcf..4cb38df9 100644 --- a/npc/008-2-7/_import.txt +++ b/npc/008-2-7/_import.txt @@ -3,3 +3,4 @@ "npc/008-2-7/_savepoints.txt", "npc/008-2-7/_warps.txt", "npc/008-2-7/mapflags.txt", +"npc/008-2-7/wyara.txt", diff --git a/npc/008-2-7/wyara.txt b/npc/008-2-7/wyara.txt new file mode 100644 index 00000000..a875544a --- /dev/null +++ b/npc/008-2-7/wyara.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Wyara the witch. +// THIS IS A PLACEHOLDER! + +008-2-7,27,28,0 script Wyara#008-2-7 NPC_DARK_DRUID,{ + speech + l("What? Is there someone?"), + l("Please, leave me alone. I have to pixel potions."), + lg("I will sell some when you return a bit later."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} diff --git a/npc/008-2-8/_import.txt b/npc/008-2-8/_import.txt index d3346591..8bb44bb1 100644 --- a/npc/008-2-8/_import.txt +++ b/npc/008-2-8/_import.txt @@ -1,4 +1,6 @@ // Map 008-2-8: Hurnscald Forge // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/008-2-8/_warps.txt", +"npc/008-2-8/macgowan.txt", "npc/008-2-8/mapflags.txt", +"npc/008-2-8/nicholas.txt", diff --git a/npc/008-2-8/macgowan.txt b/npc/008-2-8/macgowan.txt new file mode 100644 index 00000000..efeee33e --- /dev/null +++ b/npc/008-2-8/macgowan.txt @@ -0,0 +1,24 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The Smith's apprentice. +// THIS IS A PLACEHOLDER! + +008-2-8,38,29,0 script Macgowan NPC_YOUNG_MAN_APPRENTICE,{ + npctalk3(l("Hello, I am Macgowan, apprentice to Nicholas.")); + end; + +OnInit: + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-2-8/nicholas.txt b/npc/008-2-8/nicholas.txt new file mode 100644 index 00000000..7b62090d --- /dev/null +++ b/npc/008-2-8/nicholas.txt @@ -0,0 +1,28 @@ +// Evol scripts. +// Author: +// gumi, Micksha +// Description: +// Nicholas the Smith. + +008-2-8,40,27,0 script Nicholas NPC_NICHOLAS,{ + speech( + l("Hello, there!"), + l("I'm an expert blacksmith."), + l("If you get me some Coal and Iron Ingots, I could make you a very valuable shield or helmet.")); + + // TODO: setzer quest + close; + +OnInit: + .distance = 3; + +////////// UNFINISHED ////////// +//////////////////////////////// +// REMOVE THIS CODE WHEN THIS // +// NPC IS NO LONGER A WIP ////// +//////////////////////////////// +//if (!debug) disablenpc(.name$); +///////// UNFINISHED /////////// + + end; +} diff --git a/npc/008-3-0/_import.txt b/npc/008-3-0/_import.txt new file mode 100644 index 00000000..11ecbf2d --- /dev/null +++ b/npc/008-3-0/_import.txt @@ -0,0 +1,4 @@ +// Map 008-3-0: Rossy Cave +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/008-3-0/_mobs.txt", +"npc/008-3-0/_warps.txt", diff --git a/npc/008-3-0/_mobs.txt b/npc/008-3-0/_mobs.txt new file mode 100644 index 00000000..f7062926 --- /dev/null +++ b/npc/008-3-0/_mobs.txt @@ -0,0 +1,22 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-3-0: Rossy Cave mobs +008-3-0,83,62,21,7 monster Cave Maggot 1027,5,500,2000 +008-3-0,101,117,13,7 monster Cave Maggot 1027,5,500,2000 +008-3-0,79,144,10,6 monster Cave Maggot 1027,7,500,2000 +008-3-0,158,87,10,12 monster Cave Maggot 1027,7,500,2000 +008-3-0,34,28,3,4 monster Poison Skull 1100,1,35000,60000 +008-3-0,160,124,5,3 monster Ratto 1005,4,35000,15000 +008-3-0,155,163,1,7 monster Ratto 1005,4,35000,15000 +008-3-0,128,146,5,3 monster Ratto 1005,4,35000,15000 +008-3-0,120,61,5,3 monster Ratto 1005,4,35000,15000 +008-3-0,138,64,10,7 monster Crafty 1018,10,1000,120000 +008-3-0,130,103,9,6 monster Crafty 1018,6,1000,120000 +008-3-0,67,114,10,2 monster Spider 1044,3,4000,8000 +008-3-0,109,145,4,10 monster Spider 1044,5,4000,8000 +008-3-0,68,84,3,7 monster Spider 1044,4,4000,8000 +008-3-0,83,166,0,0 monster Ruby Vein 1051,1,600000,60000 +008-3-0,80,169,0,0 monster Diamond Vein 1045,1,600000,60000 +008-3-0,89,168,0,0 monster Emerald Vein 1052,1,600000,60000 +008-3-0,100,180,0,0 monster Topaz Vein 1054,1,600000,60000 +008-3-0,97,176,0,0 monster Sapphire Vein 1053,1,600000,60000 +008-3-0,94,180,0,0 monster Amethyst Vein 1055,1,600000,60000 diff --git a/npc/008-3-0/_warps.txt b/npc/008-3-0/_warps.txt new file mode 100644 index 00000000..7426d274 --- /dev/null +++ b/npc/008-3-0/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-3-0: Rossy Cave warps +008-3-0,130,113,0 warp #008-3-0_130_113 1,0,008-1-1,202,48 diff --git a/npc/_anchors.txt b/npc/_anchors.txt index 3630ba7e..1ca080cb 100644 --- a/npc/_anchors.txt +++ b/npc/_anchors.txt @@ -16,9 +16,11 @@ OnInit: htput(.ht, "^HARB|^MASTER", "001-2-16 28 32"); htput(.ht, "^HOLD$", "000-2-2 42 31"); htput(.ht, "^HURN", "008-1 250 109"); + htput(.ht, "^LAVA", "008-3-0 35 28"); htput(.ht, "^LEG", "001-2-33 34 42"); htput(.ht, "^LIB", "001-2-4 42 35"); htput(.ht, "^LIGHT", "001-2-0 37 32"); + htput(.ht, "^LUVIA", "008-1 256 206"); htput(.ht, "^MERCH|^BANK", "001-2-19 28 30"); htput(.ht, "^MOON", "001-2-2 40 34"); htput(.ht, "^NARD", "000-2-3 21 28"); @@ -28,10 +30,12 @@ OnInit: htput(.ht, "^NOBLE4$", "001-2-12 34 32"); htput(.ht, "^NOBLE5$", "001-2-15 34 38"); htput(.ht, "^RED|PLUSH|^INN", "001-2-28 30 35"); + htput(.ht, "^ROSSY", "008-3-0 130 108"); htput(.ht, "^SECOND|^DECK2$", "000-2-1 67 32"); htput(.ht, "^SHIP2$", "001-2-21 23 28"); htput(.ht, "^START2$", "000-0-0 26 28"); htput(.ht, "^START3$", "000-0-1 26 28"); htput(.ht, "^START|^BEGIN", "000-0 22 24"); + htput(.ht, "^VEIN", "008-3-0 85 172"); htput(.ht, "^WARE", "001-2-18 37 31"); } diff --git a/npc/_import.txt b/npc/_import.txt index ff79ccb8..fe81168d 100644 --- a/npc/_import.txt +++ b/npc/_import.txt @@ -88,6 +88,7 @@ @include "npc/008-2-7/_import.txt" @include "npc/008-2-8/_import.txt" @include "npc/008-2-9/_import.txt" +@include "npc/008-3-0/_import.txt" @include "npc/008-3-1/_import.txt" @include "npc/test/_import.txt" @include "npc/testbg/_import.txt" diff --git a/npc/commands/debug-quest.txt b/npc/commands/debug-quest.txt index 2c590a2d..468e5af2 100644 --- a/npc/commands/debug-quest.txt +++ b/npc/commands/debug-quest.txt @@ -90,6 +90,31 @@ function script GlobalQuestDebug { } while (1); } + function qDebugHurnscald { + do + { + clear; + setnpcdialogtitle l("Quest debug") + " - Hurnscald"; + mes l("This menu gives access to quest debug menus for @@ quests.", "Hurnscald"); + next; + mes l("Please select a quest:"); + + menuint + menuimage("actions/back", l("Go back")), -1, + "Hinnak", HurnscaldQuests_Hinnak, + l("Maggot soup"), HurnscaldQuests_Soup, + l("Inspector"), HurnscaldQuests_Inspector, + l("Forest bow"), HurnscaldQuests_ForestBow, + l("Wooden shield"), HurnscaldQuests_WoodenShield; + + switch (@menuret) + { + case -1: return; + default: callfunc "QuestDebug" + @menuret; + } + } while (1); + } + function qDebugGeneral { do { @@ -125,6 +150,7 @@ function script GlobalQuestDebug { select l("Prologue"), "Artis", + "Hurnscald", l("Other"), rif(getarg(0,0), menuimage("actions/back", l("Return to Debug menu"))); @@ -132,8 +158,9 @@ function script GlobalQuestDebug { { case 1: qDebugShip; break; case 2: qDebugArtis; break; - case 3: qDebugGeneral; break; - case 4: return; + case 3: qDebugHurnscald; break; + case 4: qDebugGeneral; break; + case 5: return; } } while (1); } diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index f1782f3e..dcf4ac02 100644 --- a/npc/functions/fishing.txt +++ b/npc/functions/fishing.txt @@ -183,7 +183,7 @@ function script fishing { .@fish_id = relative_array_random(getvariableofnpc(.fish_ids[0], .@npc$)); // RNG to obtain a fish - if (rand(gettimetick(0) - @fishing_tick) <= .@pull_rand_max + (100 * @FISHING_BOOSTER[getnpcid(0)])) + if (rand(gettimetick(0) - @fishing_tick) <= .@pull_rand_max + (100 * @FISHING_BOOSTER[getnpcid()])) { specialeffect(.@success_fx, SELF, playerattached()); // event success @@ -244,7 +244,7 @@ function script fishing { if (getvariableofnpc(.bait_ids[.@i], .@npc$) == .@bait) { .@bait_c = true; - @FISHING_BOOSTER[getnpcid(0)] = getvariableofnpc(.bait_ids[.@i + 1], .@npc$); + @FISHING_BOOSTER[getnpcid()] = getvariableofnpc(.bait_ids[.@i + 1], .@npc$); break; } } diff --git a/npc/functions/generic-text.txt b/npc/functions/generic-text.txt new file mode 100644 index 00000000..ede6e954 --- /dev/null +++ b/npc/functions/generic-text.txt @@ -0,0 +1,120 @@ +// Evol functions. +// Authors: +// gumi +// Description: +// text register + +function script generic { + .@flags = getarg(0, 1); + + .@villager = (1 << 0); + .@old = (1 << 1); + .@kid = (1 << 2); + .@sailor = (1 << 3); + .@busy = (1 << 4); + .@tired = (1 << 5); + .@angry = (1 << 6); + .@legion = (1 << 7); + .@crazy = (1 << 8); + + if (.@flags == 0) + return l("I'm sorry, I can't talk right now."); + + if (.@flags & .@villager) + { + setarray(.@array$[.@count], + l("It is a sunny day, don't you think?"), + l("I just want to live my life in peace."), + l("Isn't this place pretty? I love hanging out here!")); + + .@count += 3; + } + + if (.@flags & .@old) + { + setarray(.@array$[.@count], + l("Come closer dear, I can't hear you."), + l("Hmm... where did I put it again?"), + l("I miss the good old days.")); + + .@count += 3; + } + + if (.@flags & .@kid) + { + setarray(.@array$[.@count], + l("Mommy doesn't want me to talk to strangers.")); + + .@count += 1; + } + + if (.@flags & .@sailor) + { + setarray(.@array$[.@count], + l("So finally someone has came to visit me?"), + l("A-hoy matey!")); + + .@count += 2; + } + + if (.@flags & .@busy) + { + setarray(.@array$[.@count], + l("Can't talk right now."), + l("Can't you see I'm busy?"), + l("Come back later."), + l("I'm a little busy right now.")); + + .@count += 4; + } + + if (.@flags & .@tired) + { + setarray(.@array$[.@count], + l("I had a long day, come back tomorrow."), + l("I need to rest."), + l("*snores*")); + + .@count += 3; + } + + if (.@flags & .@angry) + { + setarray(.@array$[.@count], + l("Go pester someone else."), + l("I don't feel like talking to you."), + l("Stop wasting my time."), + l("Go fly a kite"), + l("Not in the mood to chat."), + l("Give me some space."), + l("Can you please go away?")); + + .@count += 7; + } + + if (.@flags & .@legion) + { + setarray(.@array$[.@count], + l("My breath smells bad."), + l("Don't distract me, I have to stay alert."), + l("Can't talk right now, I'm on patrol duty."), + l("I can't stay here and talk all day. I have a job to do."), + l("Keep moving."), + l("So you think you're tough? A warrior must also be loyal and patient."), + l("Practice! There are no secrets to becoming a warrior."), + l("There is no honor in fighting a weak opponent.")); + + .@count += 8; + } + + if (.@flags & .@crazy) + { + setarray(.@array$[.@count], + l("Do I look like a tree? I feel like one."), + l("What're you looking at?!")); + + .@count += 2; + } + + return .@array$[rand(.@count)]; +} diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 97c34702..b620be0c 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -183,9 +183,9 @@ function script npctalkonce { set(getvariableofnpc(.talk_lock, strnpcinfo(NPC_NAME_UNIQUE)), gettimetick(2) + getarg(1, 1)); break; default: - if (gettimetick(2) <= @NPC_TALK_LOCK[getnpcid(0)]) + if (gettimetick(2) <= @NPC_TALK_LOCK[getnpcid()]) return false; - @NPC_TALK_LOCK[getnpcid(0)] = gettimetick(2) + getarg(1, 1); + @NPC_TALK_LOCK[getnpcid()] = gettimetick(2) + getarg(1, 1); } // talk mechanism diff --git a/npc/functions/npcmove.txt b/npc/functions/npcmove.txt index eb6acded..612ab036 100644 --- a/npc/functions/npcmove.txt +++ b/npc/functions/npcmove.txt @@ -47,7 +47,7 @@ function script domoveaction { } else if (.@cmd$ == "emote") { - unitemote getnpcid(0), getvariableofnpc(.movepathx[.@pos], strnpcinfo(3)); + unitemote getnpcid(), getvariableofnpc(.movepathx[.@pos], strnpcinfo(3)); return 2; } else if (.@cmd$ == "class") diff --git a/npc/functions/npcmovegraph.txt b/npc/functions/npcmovegraph.txt index b26f9a16..d03f15c5 100644 --- a/npc/functions/npcmovegraph.txt +++ b/npc/functions/npcmovegraph.txt @@ -115,7 +115,7 @@ function script execmovecmd { } else if (.@cmd$[0] == "emote") { - unitemote getnpcid(0), atoi(.@cmd$[1]); + unitemote getnpcid(), atoi(.@cmd$[1]); } else if (.@cmd$[0] == "class") { @@ -137,7 +137,7 @@ function script execmovecmd { .@x = getvariableofnpc(.movepos_x1[.@pos], strnpcinfo(3)); .@y = getvariableofnpc(.movepos_y1[.@pos], strnpcinfo(3)); if (getstrlen(.@map$) > 0) - unitwarp getnpcid(0), .@map$, .@x, .@y; + unitwarp getnpcid(), .@map$, .@x, .@y; else movenpc strnpcinfo(3), .@x, .@y; set getvariableofnpc(.movepos, strnpcinfo(3)), .@pos; diff --git a/npc/functions/quest-debug/036-HurnscaldQuests_Hinnak.txt b/npc/functions/quest-debug/036-HurnscaldQuests_Hinnak.txt new file mode 100644 index 00000000..61dc294e --- /dev/null +++ b/npc/functions/quest-debug/036-HurnscaldQuests_Hinnak.txt @@ -0,0 +1,32 @@ +// Hinnak quest debug +// Author: +// gumi + +function script QuestDebug36 { + do + { + clear; + setnpcdialogtitle l("Quest debug"); + mes "HurnscaldQuests_Hinnak"; + mes "---"; + mes l("Quest state: @@, @@", + getq(HurnscaldQuests_Hinnak), + getq2(HurnscaldQuests_Hinnak)); + next; + + GenericQuestDebug HurnscaldQuests_Hinnak, + l("Cannot do the quest"), 0, + l("Can do the quest"), 1, + l("Hinnak asked for help"), 2, + l("Helped Hinnak"), 3; + + switch (@menuret) + { + case 0: + case 1: + case 2: setq HurnscaldQuests_Hinnak, getq(HurnscaldQuests_Hinnak), 0; break; + default: if (@menuret < 0) return; + } + + } while (1); +} diff --git a/npc/functions/quest-debug/037-HurnscaldQuests_Soup.txt b/npc/functions/quest-debug/037-HurnscaldQuests_Soup.txt new file mode 100644 index 00000000..43eba0d6 --- /dev/null +++ b/npc/functions/quest-debug/037-HurnscaldQuests_Soup.txt @@ -0,0 +1,32 @@ +// Mikhail & Bernard quest debug +// Author: +// gumi + +function script QuestDebug37 { + do + { + clear; + setnpcdialogtitle l("Quest debug"); + mes "HurnscaldQuests_Soup"; + mes "---"; + mes l("Quest state: @@", + getq(HurnscaldQuests_Soup)); + next; + + GenericQuestDebug HurnscaldQuests_Soup, + l("Cannot do the quest"), 0, + l("Can do the quest"), 1, + l("Bernard wants roasted maggot"), 2, + l("brought maggot"), 3, + l("Bernard wants maggot slime"), 4, + l("brought maggot slime"), 5, + l("Mikhail needs maggot slime"), 6, + l("brought maggot slime"), 7; + + if (@menuret < 0) + { + return; + } + + } while (1); +} diff --git a/npc/functions/quest-debug/038-HurnscaldQuests_Inspector.txt b/npc/functions/quest-debug/038-HurnscaldQuests_Inspector.txt new file mode 100644 index 00000000..053f085e --- /dev/null +++ b/npc/functions/quest-debug/038-HurnscaldQuests_Inspector.txt @@ -0,0 +1,41 @@ +// Inspector quest debug +// Author: +// gumi + +function script QuestDebug38 { + do + { + clear; + setnpcdialogtitle l("Quest debug"); + mes "HurnscaldQuests_Inspector"; + mes "---"; + mes l("Quest state: @@", + getq(HurnscaldQuests_Inspector)); + next; + + GenericQuestDebug HurnscaldQuests_Inspector, + l("Cannot do the quest"), 0, + l("Can do the quest"), 1, + l("Talked to Inspector (1)"), 2, + l("Talked to Old Woman (1)"), 3, + l("Talked to Old Woman (2)"), 4, + l("Talked to Inspector (2)"), 5, + l("Talked to Troupe Leader (1)"), 6, + l("Talked to Inspector (3)"), 7, + l("Talked to Old Man"), 8, + l("Talked to Old Woman (3)"), 9, + l("Talked to Inspector (4)"), 10, + l("Talked to Old Woman (4)"), 11, + l("Talked to Malek"), 12, + l("Searched the bookcase"), 13, + l("Talked to Inspector (5)"), 14, + l("Talked to Troupe Leader (2)"), 15, + l("Talked to Inspector (6)"), 16; + + if (@menuret < 0) + { + return; + } + + } while (1); +} diff --git a/npc/functions/quest-debug/039-HurnscaldQuests_ForestBow.txt b/npc/functions/quest-debug/039-HurnscaldQuests_ForestBow.txt new file mode 100644 index 00000000..c6a61a1b --- /dev/null +++ b/npc/functions/quest-debug/039-HurnscaldQuests_ForestBow.txt @@ -0,0 +1,42 @@ +// Jack Lumber quest debug +// Author: +// gumi + +function script QuestDebug39 { + do + { + clear; + setnpcdialogtitle l("Quest debug"); + mes "HurnscaldQuests_ForestBow"; + mes "---"; + mes l("Quest state: @@", getq(HurnscaldQuests_ForestBow)); + mes "---"; + mes l("Related quests:"); + mes "HurnscaldQuests_WoodenShield: " + getq(HurnscaldQuests_WoodenShield); + next; + + GenericQuestDebug HurnscaldQuests_ForestBow, + menuimage("actions/manage", l("Debug Wooden Shield")), -1, + l("Cannot do the quest"), 0, + l("Can do the quest"), 1, + l("Alan wants to ask Jack"), 2, + l("Jack explained problem"), 3, + l("Alan asks to find wood"), 4, + l("Found perfect wood"), 5, + l("Got the bow"), 6; + + switch (@menuret) + { + case -1: callfunc "QuestDebug40"; break; + case 0: + case 1: + case 2: + case 3: + case 4: setq(HurnscaldQuests_WoodenShield, 0); break; + case 5: + case 6: setq(HurnscaldQuests_WoodenShield, max(1, getq(HurnscaldQuests_WoodenShield))); break; + default: if (@menuret < 0) return; + } + + } while (1); +} diff --git a/npc/functions/quest-debug/040-HurnscaldQuests_WoodenShield.txt b/npc/functions/quest-debug/040-HurnscaldQuests_WoodenShield.txt new file mode 100644 index 00000000..05d08130 --- /dev/null +++ b/npc/functions/quest-debug/040-HurnscaldQuests_WoodenShield.txt @@ -0,0 +1,37 @@ +// Jack Lumber quest debug +// Author: +// gumi + +function script QuestDebug40 { + do + { + clear; + setnpcdialogtitle l("Quest debug"); + mes "HurnscaldQuests_WoodenShield"; + mes "---"; + mes l("Quest state: @@", getq(HurnscaldQuests_WoodenShield)); + mes "---"; + mes l("Related quests:"); + mes "HurnscaldQuests_ForestBow: " + getq(HurnscaldQuests_ForestBow); + next; + + GenericQuestDebug HurnscaldQuests_WoodenShield, + menuimage("actions/manage", l("Debug Forest Bow")), -1, + l("Cannot do the quest"), 0, + l("Can do the quest"), 1, + l("Jack proposes shield"), 2, + l("Accepted the quest"), 3, + l("Got the shield"), 4; + + switch (@menuret) + { + case -1: callfunc "QuestDebug39"; break; + case 1: + case 2: + case 3: + case 4: setq(HurnscaldQuests_ForestBow, max(5, getq(HurnscaldQuests_ForestBow))); break; + default: if (@menuret < 0) return; + } + + } while (1); +} diff --git a/npc/scripts.conf b/npc/scripts.conf index 3bb929a9..91d5b218 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -39,6 +39,7 @@ "npc/functions/npcmovegraph.txt", "npc/functions/fishing.txt", "npc/functions/mouboofunc.txt", +"npc/functions/generic-text.txt", "npc/functions/asklanguage.txt", "npc/functions/game-rules.txt", "npc/functions/riddle.txt", @@ -56,6 +57,7 @@ "npc/functions/quest-debug/005-ShipQuests_Knife.txt", "npc/functions/quest-debug/006-ShipQuests_ArpanMoney.txt", "npc/functions/quest-debug/007-ShipQuests_Door.txt", +// 008: ??? "npc/functions/quest-debug/009-ShipQuests_TreasureChest.txt", "npc/functions/quest-debug/010-ShipQuests_Ale.txt", "npc/functions/quest-debug/011-ShipQuests_Astapolos.txt", @@ -71,8 +73,8 @@ "npc/functions/quest-debug/021-ArtisQuests_CatchPiou.txt", "npc/functions/quest-debug/022-ArtisQuests_Fishman.txt", "npc/functions/quest-debug/023-ArtisQuests_QOnan.txt", -// 24: quest removed (Halloween_VisitArtis) -// 25: quest removed (Halloween_BarrelQuest) +// 024: removed quest (Halloween_VisitArtis) +// 025: removed quest (Halloween_BarrelQuest) "npc/functions/quest-debug/026-General_Rumly.txt", "npc/functions/quest-debug/027-ArtisQuests_Enora.txt", "npc/functions/quest-debug/028-General_Narrator.txt", @@ -81,6 +83,13 @@ "npc/functions/quest-debug/031-General_Janus.txt", "npc/functions/quest-debug/032-ArtisQuests_MonaDad.txt", "npc/functions/quest-debug/033-Artis_Legion_Progress.txt", +// 034: ??? +// 035: ??? +"npc/functions/quest-debug/036-HurnscaldQuests_Hinnak.txt", +"npc/functions/quest-debug/037-HurnscaldQuests_Soup.txt", +"npc/functions/quest-debug/038-HurnscaldQuests_Inspector.txt", +"npc/functions/quest-debug/039-HurnscaldQuests_ForestBow.txt", +"npc/functions/quest-debug/040-HurnscaldQuests_WoodenShield.txt", // Item functions "npc/items/croconut.txt", @@ -106,5 +115,10 @@ // config script "npc/config/hairstyle_config.txt", +// placeholder scripts +//"npc/placeholder/angus.txt", +//"npc/placeholder/caul.txt", +//"npc/placeholder/receptionist.txt", + // Maps specific scripts @include "npc/_import.txt" diff --git a/npc/test/npc1.txt b/npc/test/npc1.txt index f6777f48..38a03142 100644 --- a/npc/test/npc1.txt +++ b/npc/test/npc1.txt @@ -625,15 +625,15 @@ L_Start: setunitdata(.@npcId, UDT_HAIRCOLOR, 17); break; case 2: - .@npcId = getnpcid(0, "npc4"); + .@npcId = getnpcid("npc4"); setunitdata(.@npcId, UDT_HAIRSTYLE, 0); break; case 3: - .@npcId = getnpcid(0, "npc4"); + .@npcId = getnpcid("npc4"); setunitdata(.@npcId, UDT_HEADTOP, 1301); break; case 4: - .@npcId = getnpcid(0, "npc4"); + .@npcId = getnpcid("npc4"); setunitdata(.@npcId, UDT_HEADTOP, 0); break; case 5: diff --git a/sql-files/main.sql b/sql-files/main.sql index d1c6364c..d918d4a3 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -75,10 +75,10 @@ CREATE TABLE IF NOT EXISTS `auction` ( `type` SMALLINT(6) NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -118,6 +118,28 @@ CREATE TABLE IF NOT EXISTS `autotrade_merchants` ( ) ENGINE=MyISAM; -- +-- Table structure for table `char_achievements` +-- + +CREATE TABLE IF NOT EXISTS `char_achievements` ( + `char_id` INT(11) UNSIGNED NOT NULL, + `ach_id` INT(11) UNSIGNED NOT NULL, + `completed_at` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `rewarded_at` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_0` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_1` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_2` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_3` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_4` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_5` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_6` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_7` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_8` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_9` INT(10) UNSIGNED NOT NULL DEFAULT '0', + PRIMARY KEY (`char_id`, `ach_id`) +) ENGINE=MyISAM; + +-- -- Table structure for table `cart_inventory` -- @@ -130,10 +152,10 @@ CREATE TABLE IF NOT EXISTS `cart_inventory` ( `identify` SMALLINT(6) NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -221,6 +243,7 @@ CREATE TABLE IF NOT EXISTS `char` ( `hotkey_rowshift` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attendance_count` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attendance_timer` BIGINT(20) NULL DEFAULT '0', + `title_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY (`char_id`), UNIQUE KEY `name_key` (`name`), KEY `account_id` (`account_id`), @@ -489,10 +512,10 @@ CREATE TABLE IF NOT EXISTS `guild_storage` ( `identify` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -564,10 +587,10 @@ CREATE TABLE IF NOT EXISTS `inventory` ( `identify` SMALLINT(6) NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -688,10 +711,10 @@ CREATE TABLE IF NOT EXISTS `mail` ( `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', `identify` SMALLINT(6) NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -894,8 +917,12 @@ INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1496588700); -- 2017-06-0 INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1509835214); -- 2017-11-04--10-39.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1519671456); -- 2018-02-26--15-57.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1520654809); -- 2018-03-10--04-06.sql +INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1527964800); -- 2018-06-03--00-10.sql +INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1528026381); -- 2018-06-03--17-16.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1528180320); -- 2018-06-05--12-02.sql INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1532403228); -- 2018-07-24--03-23.sql +INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1535865732); -- 2018-09-01--05-22.sql + -- -- Table structure for table `storage` -- @@ -909,10 +936,10 @@ CREATE TABLE IF NOT EXISTS `storage` ( `identify` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', @@ -939,10 +966,10 @@ CREATE TABLE IF NOT EXISTS `rodex_items` ( `identify` SMALLINT(6) NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', `attribute` TINYINT(4) NOT NULL DEFAULT '0', - `card0` SMALLINT(11) NOT NULL DEFAULT '0', - `card1` SMALLINT(11) NOT NULL DEFAULT '0', - `card2` SMALLINT(11) NOT NULL DEFAULT '0', - `card3` SMALLINT(11) NOT NULL DEFAULT '0', + `card0` INT(11) NOT NULL DEFAULT '0', + `card1` INT(11) NOT NULL DEFAULT '0', + `card2` INT(11) NOT NULL DEFAULT '0', + `card3` INT(11) NOT NULL DEFAULT '0', `opt_idx0` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `opt_val0` SMALLINT(5) NOT NULL DEFAULT '0', `opt_idx1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', diff --git a/sql-files/upgrades/2018-06-03--00-10.sql b/sql-files/upgrades/2018-06-03--00-10.sql new file mode 100644 index 00000000..c7f6ac48 --- /dev/null +++ b/sql-files/upgrades/2018-06-03--00-10.sql @@ -0,0 +1,40 @@ +#1527964800 + +-- This file is part of Hercules. +-- http://herc.ws - http://github.com/HerculesWS/Hercules +-- +-- Copyright (C) 2018 Hercules Dev Team +-- Copyright (C) Smokexyz +-- +-- Hercules 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 <http://www.gnu.org/licenses/>. + +CREATE TABLE `char_achievements` ( + `char_id` INT(11) UNSIGNED NOT NULL, + `ach_id` INT(11) UNSIGNED NOT NULL, + `completed_at` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `rewarded_at` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_0` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_1` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_2` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_3` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_4` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_5` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_6` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_7` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_8` INT(10) UNSIGNED NOT NULL DEFAULT '0', + `obj_9` INT(10) UNSIGNED NOT NULL DEFAULT '0', + PRIMARY KEY (`char_id`, `ach_id`) +) ENGINE=MyISAM; + +INSERT INTO `sql_updates` (`timestamp`, `ignored`) VALUES (1527964800, 'No'); diff --git a/sql-files/upgrades/2018-06-03--17-16.sql b/sql-files/upgrades/2018-06-03--17-16.sql new file mode 100644 index 00000000..e14ca62c --- /dev/null +++ b/sql-files/upgrades/2018-06-03--17-16.sql @@ -0,0 +1,24 @@ +#1528026381 + +-- This file is part of Hercules. +-- http://herc.ws - http://github.com/HerculesWS/Hercules +-- +-- Copyright (C) 2018 Hercules Dev Team +-- Copyright (C) Dastgir +-- +-- Hercules 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 <http://www.gnu.org/licenses/>. + +ALTER TABLE `char` ADD `title_id` INT(11) UNSIGNED NOT NULL DEFAULT '0'; + +INSERT INTO `sql_updates` (`timestamp`, `ignored`) VALUES (1528026381, 'No'); diff --git a/sql-files/upgrades/2018-09-01--05-22.sql b/sql-files/upgrades/2018-09-01--05-22.sql new file mode 100644 index 00000000..7a834edd --- /dev/null +++ b/sql-files/upgrades/2018-09-01--05-22.sql @@ -0,0 +1,63 @@ +#1535865732 + +-- This file is part of Hercules. +-- http://herc.ws - http://github.com/HerculesWS/Hercules +-- +-- Copyright (C) 2018 Hercules Dev Team +-- +-- Hercules 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 <http://www.gnu.org/licenses/>. + +ALTER TABLE `auction` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `cart_inventory` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `guild_storage` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `inventory` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `mail` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `rodex_items` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +ALTER TABLE `storage` + MODIFY `card0` INT(11) NOT NULL DEFAULT '0', + MODIFY `card1` INT(11) NOT NULL DEFAULT '0', + MODIFY `card2` INT(11) NOT NULL DEFAULT '0', + MODIFY `card3` INT(11) NOT NULL DEFAULT '0'; + +INSERT INTO `sql_updates` (`timestamp`, `ignored`) VALUES (1535865732, 'No'); diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt index 1d313a0c..041480c4 100644 --- a/sql-files/upgrades/index.txt +++ b/sql-files/upgrades/index.txt @@ -44,5 +44,8 @@ 2017-11-04--10-39.sql 2018-02-26--15-57.sql 2018-03-10--04-06.sql +2018-06-03--00-10.sql +2018-06-03--17-16.sql 2018-06-05--12-02.sql 2018-07-24--03-23.sql +2018-09-01--05-22.sql |