diff --git a/.dockerignore b/.dockerignore index 811d5e3..e30c0ba 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,9 +10,9 @@ Dockerfile .gitkeep # Compiled quests -gamefiles/locale/english/quest/object/ -gamefiles/locale/english/quest/pre_qc/ -gamefiles/locale/english/quest/qc +gamefiles/data/quest/object/ +gamefiles/data/quest/pre_qc/ +gamefiles/data/quest/qc # Test folder test/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 95f18f9..63d7560 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ FROM ubuntu:22.04 as build WORKDIR /app +# Set up the CMake repository +RUN apt-get update && apt-get install -y ca-certificates gpg wget +RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null +RUN echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null + # Update the system and install various dependencies RUN apt-get update && \ apt-get install -y git cmake ninja-build build-essential tar curl zip unzip pkg-config autoconf python3 \ @@ -35,7 +40,7 @@ COPY --from=build /app/build/src/quest/qc /bin/qc COPY ./gamefiles/ . # Compile the quests -RUN cd /app/locale/english/quest && python2 make.py +RUN cd /app/data/quest && python2 make.py # Symlink the configuration files RUN ln -s "./conf/CMD" "CMD" diff --git a/gamefiles/locale/english/BlueDragon.lua b/gamefiles/data/BlueDragon.lua similarity index 100% rename from gamefiles/locale/english/BlueDragon.lua rename to gamefiles/data/BlueDragon.lua diff --git a/gamefiles/locale/english/blend.txt b/gamefiles/data/blend.txt similarity index 100% rename from gamefiles/locale/english/blend.txt rename to gamefiles/data/blend.txt diff --git a/gamefiles/locale/english/charset.txt b/gamefiles/data/charset.txt similarity index 100% rename from gamefiles/locale/english/charset.txt rename to gamefiles/data/charset.txt diff --git a/gamefiles/locale/english/common_drop_item.txt b/gamefiles/data/common_drop_item.txt similarity index 100% rename from gamefiles/locale/english/common_drop_item.txt rename to gamefiles/data/common_drop_item.txt diff --git a/gamefiles/locale/english/cube.txt b/gamefiles/data/cube.txt similarity index 100% rename from gamefiles/locale/english/cube.txt rename to gamefiles/data/cube.txt diff --git a/gamefiles/locale/english/dragon_soul_table.txt b/gamefiles/data/dragon_soul_table.txt similarity index 100% rename from gamefiles/locale/english/dragon_soul_table.txt rename to gamefiles/data/dragon_soul_table.txt diff --git a/gamefiles/locale/english/drop_item_group.txt b/gamefiles/data/drop_item_group.txt similarity index 100% rename from gamefiles/locale/english/drop_item_group.txt rename to gamefiles/data/drop_item_group.txt diff --git a/gamefiles/locale/english/etc_drop_item.txt b/gamefiles/data/etc_drop_item.txt similarity index 100% rename from gamefiles/locale/english/etc_drop_item.txt rename to gamefiles/data/etc_drop_item.txt diff --git a/gamefiles/locale/english/fishing.txt b/gamefiles/data/fishing.txt similarity index 100% rename from gamefiles/locale/english/fishing.txt rename to gamefiles/data/fishing.txt diff --git a/gamefiles/locale/english/forkedmapindex.txt b/gamefiles/data/forkedmapindex.txt similarity index 100% rename from gamefiles/locale/english/forkedmapindex.txt rename to gamefiles/data/forkedmapindex.txt diff --git a/gamefiles/locale/english/group.txt b/gamefiles/data/group.txt similarity index 100% rename from gamefiles/locale/english/group.txt rename to gamefiles/data/group.txt diff --git a/gamefiles/locale/english/group_group.txt b/gamefiles/data/group_group.txt similarity index 100% rename from gamefiles/locale/english/group_group.txt rename to gamefiles/data/group_group.txt diff --git a/gamefiles/locale/english/insult.txt b/gamefiles/data/insult.txt similarity index 100% rename from gamefiles/locale/english/insult.txt rename to gamefiles/data/insult.txt diff --git a/gamefiles/locale/english/locale_string_cz.txt b/gamefiles/data/locale_string_cz.txt similarity index 100% rename from gamefiles/locale/english/locale_string_cz.txt rename to gamefiles/data/locale_string_cz.txt diff --git a/gamefiles/locale/english/locale_string_de.txt b/gamefiles/data/locale_string_de.txt similarity index 100% rename from gamefiles/locale/english/locale_string_de.txt rename to gamefiles/data/locale_string_de.txt diff --git a/gamefiles/locale/english/locale_string_dk.txt b/gamefiles/data/locale_string_dk.txt similarity index 100% rename from gamefiles/locale/english/locale_string_dk.txt rename to gamefiles/data/locale_string_dk.txt diff --git a/gamefiles/locale/english/locale_string_es.txt b/gamefiles/data/locale_string_es.txt similarity index 100% rename from gamefiles/locale/english/locale_string_es.txt rename to gamefiles/data/locale_string_es.txt diff --git a/gamefiles/locale/english/locale_string_fr.txt b/gamefiles/data/locale_string_fr.txt similarity index 100% rename from gamefiles/locale/english/locale_string_fr.txt rename to gamefiles/data/locale_string_fr.txt diff --git a/gamefiles/locale/english/locale_string_gr.txt b/gamefiles/data/locale_string_gr.txt similarity index 100% rename from gamefiles/locale/english/locale_string_gr.txt rename to gamefiles/data/locale_string_gr.txt diff --git a/gamefiles/locale/english/locale_string_hu.txt b/gamefiles/data/locale_string_hu.txt similarity index 100% rename from gamefiles/locale/english/locale_string_hu.txt rename to gamefiles/data/locale_string_hu.txt diff --git a/gamefiles/locale/english/locale_string_it.txt b/gamefiles/data/locale_string_it.txt similarity index 100% rename from gamefiles/locale/english/locale_string_it.txt rename to gamefiles/data/locale_string_it.txt diff --git a/gamefiles/locale/english/locale_string_kr.txt b/gamefiles/data/locale_string_kr.txt similarity index 100% rename from gamefiles/locale/english/locale_string_kr.txt rename to gamefiles/data/locale_string_kr.txt diff --git a/gamefiles/locale/english/locale_string_nl.txt b/gamefiles/data/locale_string_nl.txt similarity index 100% rename from gamefiles/locale/english/locale_string_nl.txt rename to gamefiles/data/locale_string_nl.txt diff --git a/gamefiles/locale/english/locale_string_pl.txt b/gamefiles/data/locale_string_pl.txt similarity index 100% rename from gamefiles/locale/english/locale_string_pl.txt rename to gamefiles/data/locale_string_pl.txt diff --git a/gamefiles/locale/english/locale_string_pt.txt b/gamefiles/data/locale_string_pt.txt similarity index 100% rename from gamefiles/locale/english/locale_string_pt.txt rename to gamefiles/data/locale_string_pt.txt diff --git a/gamefiles/locale/english/locale_string_ro.txt b/gamefiles/data/locale_string_ro.txt similarity index 100% rename from gamefiles/locale/english/locale_string_ro.txt rename to gamefiles/data/locale_string_ro.txt diff --git a/gamefiles/locale/english/locale_string_ru.txt b/gamefiles/data/locale_string_ru.txt similarity index 100% rename from gamefiles/locale/english/locale_string_ru.txt rename to gamefiles/data/locale_string_ru.txt diff --git a/gamefiles/locale/english/locale_string_tr.txt b/gamefiles/data/locale_string_tr.txt similarity index 100% rename from gamefiles/locale/english/locale_string_tr.txt rename to gamefiles/data/locale_string_tr.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/MapProperty.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/MapProperty.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/MapProperty.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/Setting.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/Setting.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/Setting.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/Town.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/Town.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/Town.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/Town.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/boss.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/boss.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/boss.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/boss.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/npc.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/npc.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/npc.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/npc.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/regen.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/regen.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/regen.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/regen.txt diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/server_attr b/gamefiles/data/map/Metin2_map_CapeDragonHead/server_attr similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/server_attr rename to gamefiles/data/map/Metin2_map_CapeDragonHead/server_attr diff --git a/gamefiles/locale/english/map/Metin2_map_CapeDragonHead/stone.txt b/gamefiles/data/map/Metin2_map_CapeDragonHead/stone.txt similarity index 100% rename from gamefiles/locale/english/map/Metin2_map_CapeDragonHead/stone.txt rename to gamefiles/data/map/Metin2_map_CapeDragonHead/stone.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level10.txt b/gamefiles/data/map/easter/metin_regen_level10.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level10.txt rename to gamefiles/data/map/easter/metin_regen_level10.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level20.txt b/gamefiles/data/map/easter/metin_regen_level20.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level20.txt rename to gamefiles/data/map/easter/metin_regen_level20.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level30.txt b/gamefiles/data/map/easter/metin_regen_level30.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level30.txt rename to gamefiles/data/map/easter/metin_regen_level30.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level40.txt b/gamefiles/data/map/easter/metin_regen_level40.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level40.txt rename to gamefiles/data/map/easter/metin_regen_level40.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level50.txt b/gamefiles/data/map/easter/metin_regen_level50.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level50.txt rename to gamefiles/data/map/easter/metin_regen_level50.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level60.txt b/gamefiles/data/map/easter/metin_regen_level60.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level60.txt rename to gamefiles/data/map/easter/metin_regen_level60.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level70.txt b/gamefiles/data/map/easter/metin_regen_level70.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level70.txt rename to gamefiles/data/map/easter/metin_regen_level70.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level80.txt b/gamefiles/data/map/easter/metin_regen_level80.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level80.txt rename to gamefiles/data/map/easter/metin_regen_level80.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level90.txt b/gamefiles/data/map/easter/metin_regen_level90.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level90.txt rename to gamefiles/data/map/easter/metin_regen_level90.txt diff --git a/gamefiles/locale/english/map/easter/metin_regen_level95.txt b/gamefiles/data/map/easter/metin_regen_level95.txt similarity index 100% rename from gamefiles/locale/english/map/easter/metin_regen_level95.txt rename to gamefiles/data/map/easter/metin_regen_level95.txt diff --git a/gamefiles/locale/english/map/find_map.py b/gamefiles/data/map/find_map.py similarity index 100% rename from gamefiles/locale/english/map/find_map.py rename to gamefiles/data/map/find_map.py diff --git a/gamefiles/locale/english/map/find_map.sh b/gamefiles/data/map/find_map.sh similarity index 100% rename from gamefiles/locale/english/map/find_map.sh rename to gamefiles/data/map/find_map.sh diff --git a/gamefiles/locale/english/map/gm_guild_build/Setting.txt b/gamefiles/data/map/gm_guild_build/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/gm_guild_build/Setting.txt rename to gamefiles/data/map/gm_guild_build/Setting.txt diff --git a/gamefiles/locale/english/map/gm_guild_build/Town.txt b/gamefiles/data/map/gm_guild_build/Town.txt similarity index 100% rename from gamefiles/locale/english/map/gm_guild_build/Town.txt rename to gamefiles/data/map/gm_guild_build/Town.txt diff --git a/gamefiles/locale/english/map/gm_guild_build/npc.txt b/gamefiles/data/map/gm_guild_build/npc.txt similarity index 100% rename from gamefiles/locale/english/map/gm_guild_build/npc.txt rename to gamefiles/data/map/gm_guild_build/npc.txt diff --git a/gamefiles/locale/english/map/gm_guild_build/server_attr b/gamefiles/data/map/gm_guild_build/server_attr similarity index 100% rename from gamefiles/locale/english/map/gm_guild_build/server_attr rename to gamefiles/data/map/gm_guild_build/server_attr diff --git a/gamefiles/locale/english/map/gm_guild_build/server_attr_old b/gamefiles/data/map/gm_guild_build/server_attr_old similarity index 100% rename from gamefiles/locale/english/map/gm_guild_build/server_attr_old rename to gamefiles/data/map/gm_guild_build/server_attr_old diff --git a/gamefiles/locale/english/map/index b/gamefiles/data/map/index similarity index 100% rename from gamefiles/locale/english/map/index rename to gamefiles/data/map/index diff --git a/gamefiles/locale/english/map/map_n_snowm_01/Setting.txt b/gamefiles/data/map/map_n_snowm_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/Setting.txt rename to gamefiles/data/map/map_n_snowm_01/Setting.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_01/Town.txt b/gamefiles/data/map/map_n_snowm_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/Town.txt rename to gamefiles/data/map/map_n_snowm_01/Town.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_01/boss.txt b/gamefiles/data/map/map_n_snowm_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/boss.txt rename to gamefiles/data/map/map_n_snowm_01/boss.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_01/npc.txt b/gamefiles/data/map/map_n_snowm_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/npc.txt rename to gamefiles/data/map/map_n_snowm_01/npc.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_01/regen.txt b/gamefiles/data/map/map_n_snowm_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/regen.txt rename to gamefiles/data/map/map_n_snowm_01/regen.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_01/server_attr b/gamefiles/data/map/map_n_snowm_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/server_attr rename to gamefiles/data/map/map_n_snowm_01/server_attr diff --git a/gamefiles/locale/english/map/map_n_snowm_01/stone.txt b/gamefiles/data/map/map_n_snowm_01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_01/stone.txt rename to gamefiles/data/map/map_n_snowm_01/stone.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/Setting.txt b/gamefiles/data/map/map_n_snowm_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/Setting.txt rename to gamefiles/data/map/map_n_snowm_02/Setting.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/Town.txt b/gamefiles/data/map/map_n_snowm_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/Town.txt rename to gamefiles/data/map/map_n_snowm_02/Town.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/boss.txt b/gamefiles/data/map/map_n_snowm_02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/boss.txt rename to gamefiles/data/map/map_n_snowm_02/boss.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/npc.txt b/gamefiles/data/map/map_n_snowm_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/npc.txt rename to gamefiles/data/map/map_n_snowm_02/npc.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/regen.txt b/gamefiles/data/map/map_n_snowm_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/regen.txt rename to gamefiles/data/map/map_n_snowm_02/regen.txt diff --git a/gamefiles/locale/english/map/map_n_snowm_02/server_attr b/gamefiles/data/map/map_n_snowm_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/server_attr rename to gamefiles/data/map/map_n_snowm_02/server_attr diff --git a/gamefiles/locale/english/map/map_n_snowm_02/stone.txt b/gamefiles/data/map/map_n_snowm_02/stone.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_snowm_02/stone.txt rename to gamefiles/data/map/map_n_snowm_02/stone.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/Setting.txt b/gamefiles/data/map/map_n_threeway/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/Setting.txt rename to gamefiles/data/map/map_n_threeway/Setting.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/Town.txt b/gamefiles/data/map/map_n_threeway/Town.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/Town.txt rename to gamefiles/data/map/map_n_threeway/Town.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/boss.txt b/gamefiles/data/map/map_n_threeway/boss.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/boss.txt rename to gamefiles/data/map/map_n_threeway/boss.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/npc.txt b/gamefiles/data/map/map_n_threeway/npc.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/npc.txt rename to gamefiles/data/map/map_n_threeway/npc.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/regen.txt b/gamefiles/data/map/map_n_threeway/regen.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/regen.txt rename to gamefiles/data/map/map_n_threeway/regen.txt diff --git a/gamefiles/locale/english/map/map_n_threeway/server_attr b/gamefiles/data/map/map_n_threeway/server_attr similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/server_attr rename to gamefiles/data/map/map_n_threeway/server_attr diff --git a/gamefiles/locale/english/map/map_n_threeway/stone.txt b/gamefiles/data/map/map_n_threeway/stone.txt similarity index 100% rename from gamefiles/locale/english/map/map_n_threeway/stone.txt rename to gamefiles/data/map/map_n_threeway/stone.txt diff --git a/gamefiles/locale/english/map/metin2_ad4/Setting.txt b/gamefiles/data/map/metin2_ad4/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_ad4/Setting.txt rename to gamefiles/data/map/metin2_ad4/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_ad4/Town.txt b/gamefiles/data/map/metin2_ad4/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_ad4/Town.txt rename to gamefiles/data/map/metin2_ad4/Town.txt diff --git a/gamefiles/locale/english/map/metin2_ad4/npc.txt b/gamefiles/data/map/metin2_ad4/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_ad4/npc.txt rename to gamefiles/data/map/metin2_ad4/npc.txt diff --git a/gamefiles/locale/english/map/metin2_ad4/regen.txt b/gamefiles/data/map/metin2_ad4/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_ad4/regen.txt rename to gamefiles/data/map/metin2_ad4/regen.txt diff --git a/gamefiles/locale/english/map/metin2_ad4/server_attr b/gamefiles/data/map/metin2_ad4/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_ad4/server_attr rename to gamefiles/data/map/metin2_ad4/server_attr diff --git a/gamefiles/locale/english/map/metin2_guild_village_01/Setting.txt b/gamefiles/data/map/metin2_guild_village_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_01/Setting.txt rename to gamefiles/data/map/metin2_guild_village_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_01/Town.txt b/gamefiles/data/map/metin2_guild_village_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_01/Town.txt rename to gamefiles/data/map/metin2_guild_village_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_01/npc.txt b/gamefiles/data/map/metin2_guild_village_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_01/npc.txt rename to gamefiles/data/map/metin2_guild_village_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_01/server_attr b/gamefiles/data/map/metin2_guild_village_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_01/server_attr rename to gamefiles/data/map/metin2_guild_village_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_guild_village_02/Setting.txt b/gamefiles/data/map/metin2_guild_village_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_02/Setting.txt rename to gamefiles/data/map/metin2_guild_village_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_02/Town.txt b/gamefiles/data/map/metin2_guild_village_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_02/Town.txt rename to gamefiles/data/map/metin2_guild_village_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_02/npc.txt b/gamefiles/data/map/metin2_guild_village_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_02/npc.txt rename to gamefiles/data/map/metin2_guild_village_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_02/server_attr b/gamefiles/data/map/metin2_guild_village_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_02/server_attr rename to gamefiles/data/map/metin2_guild_village_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_guild_village_03/Setting.txt b/gamefiles/data/map/metin2_guild_village_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_03/Setting.txt rename to gamefiles/data/map/metin2_guild_village_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_03/Town.txt b/gamefiles/data/map/metin2_guild_village_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_03/Town.txt rename to gamefiles/data/map/metin2_guild_village_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_03/npc.txt b/gamefiles/data/map/metin2_guild_village_03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_03/npc.txt rename to gamefiles/data/map/metin2_guild_village_03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_guild_village_03/server_attr b/gamefiles/data/map/metin2_guild_village_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_guild_village_03/server_attr rename to gamefiles/data/map/metin2_guild_village_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/MapProperty.txt b/gamefiles/data/map/metin2_map_BayBlackSand/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/MapProperty.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/Setting.txt b/gamefiles/data/map/metin2_map_BayBlackSand/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/Setting.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/Town.txt b/gamefiles/data/map/metin2_map_BayBlackSand/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/Town.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/boss.txt b/gamefiles/data/map/metin2_map_BayBlackSand/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/boss.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/npc.txt b/gamefiles/data/map/metin2_map_BayBlackSand/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/npc.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/regen.txt b/gamefiles/data/map/metin2_map_BayBlackSand/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/regen.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/server_attr b/gamefiles/data/map/metin2_map_BayBlackSand/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/server_attr rename to gamefiles/data/map/metin2_map_BayBlackSand/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_BayBlackSand/stone.txt b/gamefiles/data/map/metin2_map_BayBlackSand/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_BayBlackSand/stone.txt rename to gamefiles/data/map/metin2_map_BayBlackSand/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/MapProperty.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/MapProperty.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/Setting.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/Setting.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/Town.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/Town.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/boss.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/boss.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/npc.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/npc.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/regen.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/regen.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/server_attr b/gamefiles/data/map/metin2_map_Mt_Thunder/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/server_attr rename to gamefiles/data/map/metin2_map_Mt_Thunder/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_Mt_Thunder/stone.txt b/gamefiles/data/map/metin2_map_Mt_Thunder/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_Mt_Thunder/stone.txt rename to gamefiles/data/map/metin2_map_Mt_Thunder/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/MonsterArrange.txt b/gamefiles/data/map/metin2_map_WL_01/MonsterArrange.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/MonsterArrange.txt rename to gamefiles/data/map/metin2_map_WL_01/MonsterArrange.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/Setting.txt b/gamefiles/data/map/metin2_map_WL_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/Setting.txt rename to gamefiles/data/map/metin2_map_WL_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/Town.txt b/gamefiles/data/map/metin2_map_WL_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/Town.txt rename to gamefiles/data/map/metin2_map_WL_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/npc.txt b/gamefiles/data/map/metin2_map_WL_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/npc.txt rename to gamefiles/data/map/metin2_map_WL_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/regen.txt b/gamefiles/data/map/metin2_map_WL_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/regen.txt rename to gamefiles/data/map/metin2_map_WL_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_WL_01/server_attr b/gamefiles/data/map/metin2_map_WL_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_WL_01/server_attr rename to gamefiles/data/map/metin2_map_WL_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_a1/Setting.txt b/gamefiles/data/map/metin2_map_a1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/Setting.txt rename to gamefiles/data/map/metin2_map_a1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_a1/Town.txt b/gamefiles/data/map/metin2_map_a1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/Town.txt rename to gamefiles/data/map/metin2_map_a1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_a1/boss.txt b/gamefiles/data/map/metin2_map_a1/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/boss.txt rename to gamefiles/data/map/metin2_map_a1/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_a1/npc.txt b/gamefiles/data/map/metin2_map_a1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/npc.txt rename to gamefiles/data/map/metin2_map_a1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_a1/regen.txt b/gamefiles/data/map/metin2_map_a1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/regen.txt rename to gamefiles/data/map/metin2_map_a1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_a1/server_attr b/gamefiles/data/map/metin2_map_a1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/server_attr rename to gamefiles/data/map/metin2_map_a1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_a1/stone.txt b/gamefiles/data/map/metin2_map_a1/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a1/stone.txt rename to gamefiles/data/map/metin2_map_a1/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/Setting.txt b/gamefiles/data/map/metin2_map_a2_1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/Setting.txt rename to gamefiles/data/map/metin2_map_a2_1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/Town.txt b/gamefiles/data/map/metin2_map_a2_1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/Town.txt rename to gamefiles/data/map/metin2_map_a2_1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/boss.txt b/gamefiles/data/map/metin2_map_a2_1/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/boss.txt rename to gamefiles/data/map/metin2_map_a2_1/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/npc.txt b/gamefiles/data/map/metin2_map_a2_1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/npc.txt rename to gamefiles/data/map/metin2_map_a2_1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/regen.txt b/gamefiles/data/map/metin2_map_a2_1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/regen.txt rename to gamefiles/data/map/metin2_map_a2_1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/server_attr b/gamefiles/data/map/metin2_map_a2_1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/server_attr rename to gamefiles/data/map/metin2_map_a2_1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_a2_1/stone.txt b/gamefiles/data/map/metin2_map_a2_1/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a2_1/stone.txt rename to gamefiles/data/map/metin2_map_a2_1/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/Setting.txt b/gamefiles/data/map/metin2_map_a3/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/Setting.txt rename to gamefiles/data/map/metin2_map_a3/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/Town.txt b/gamefiles/data/map/metin2_map_a3/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/Town.txt rename to gamefiles/data/map/metin2_map_a3/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/boss.txt b/gamefiles/data/map/metin2_map_a3/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/boss.txt rename to gamefiles/data/map/metin2_map_a3/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/npc.txt b/gamefiles/data/map/metin2_map_a3/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/npc.txt rename to gamefiles/data/map/metin2_map_a3/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/regen.txt b/gamefiles/data/map/metin2_map_a3/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/regen.txt rename to gamefiles/data/map/metin2_map_a3/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_a3/server_attr b/gamefiles/data/map/metin2_map_a3/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/server_attr rename to gamefiles/data/map/metin2_map_a3/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_a3/stone.txt b/gamefiles/data/map/metin2_map_a3/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_a3/stone.txt rename to gamefiles/data/map/metin2_map_a3/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/Setting.txt b/gamefiles/data/map/metin2_map_b1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/Setting.txt rename to gamefiles/data/map/metin2_map_b1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/Town.txt b/gamefiles/data/map/metin2_map_b1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/Town.txt rename to gamefiles/data/map/metin2_map_b1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/boss.txt b/gamefiles/data/map/metin2_map_b1/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/boss.txt rename to gamefiles/data/map/metin2_map_b1/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/npc.txt b/gamefiles/data/map/metin2_map_b1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/npc.txt rename to gamefiles/data/map/metin2_map_b1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/regen.txt b/gamefiles/data/map/metin2_map_b1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/regen.txt rename to gamefiles/data/map/metin2_map_b1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_b1/server_attr b/gamefiles/data/map/metin2_map_b1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/server_attr rename to gamefiles/data/map/metin2_map_b1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_b1/stone.txt b/gamefiles/data/map/metin2_map_b1/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b1/stone.txt rename to gamefiles/data/map/metin2_map_b1/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/Setting.txt b/gamefiles/data/map/metin2_map_b3/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/Setting.txt rename to gamefiles/data/map/metin2_map_b3/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/Town.txt b/gamefiles/data/map/metin2_map_b3/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/Town.txt rename to gamefiles/data/map/metin2_map_b3/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/boss.txt b/gamefiles/data/map/metin2_map_b3/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/boss.txt rename to gamefiles/data/map/metin2_map_b3/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/npc.txt b/gamefiles/data/map/metin2_map_b3/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/npc.txt rename to gamefiles/data/map/metin2_map_b3/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/regen.txt b/gamefiles/data/map/metin2_map_b3/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/regen.txt rename to gamefiles/data/map/metin2_map_b3/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_b3/server_attr b/gamefiles/data/map/metin2_map_b3/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/server_attr rename to gamefiles/data/map/metin2_map_b3/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_b3/stone.txt b/gamefiles/data/map/metin2_map_b3/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_b3/stone.txt rename to gamefiles/data/map/metin2_map_b3/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena01/Setting.txt b/gamefiles/data/map/metin2_map_battlearena01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena01/Setting.txt rename to gamefiles/data/map/metin2_map_battlearena01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena01/Town.txt b/gamefiles/data/map/metin2_map_battlearena01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena01/Town.txt rename to gamefiles/data/map/metin2_map_battlearena01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena01/npc.txt b/gamefiles/data/map/metin2_map_battlearena01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena01/npc.txt rename to gamefiles/data/map/metin2_map_battlearena01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena01/regen00.txt b/gamefiles/data/map/metin2_map_battlearena01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena01/regen00.txt rename to gamefiles/data/map/metin2_map_battlearena01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena01/server_attr b/gamefiles/data/map/metin2_map_battlearena01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena01/server_attr rename to gamefiles/data/map/metin2_map_battlearena01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_battlearena02/Setting.txt b/gamefiles/data/map/metin2_map_battlearena02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena02/Setting.txt rename to gamefiles/data/map/metin2_map_battlearena02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena02/Town.txt b/gamefiles/data/map/metin2_map_battlearena02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena02/Town.txt rename to gamefiles/data/map/metin2_map_battlearena02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena02/npc.txt b/gamefiles/data/map/metin2_map_battlearena02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena02/npc.txt rename to gamefiles/data/map/metin2_map_battlearena02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena02/regen00.txt b/gamefiles/data/map/metin2_map_battlearena02/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena02/regen00.txt rename to gamefiles/data/map/metin2_map_battlearena02/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena02/server_attr b/gamefiles/data/map/metin2_map_battlearena02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena02/server_attr rename to gamefiles/data/map/metin2_map_battlearena02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_battlearena03/Setting.txt b/gamefiles/data/map/metin2_map_battlearena03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena03/Setting.txt rename to gamefiles/data/map/metin2_map_battlearena03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena03/Town.txt b/gamefiles/data/map/metin2_map_battlearena03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena03/Town.txt rename to gamefiles/data/map/metin2_map_battlearena03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena03/npc.txt b/gamefiles/data/map/metin2_map_battlearena03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena03/npc.txt rename to gamefiles/data/map/metin2_map_battlearena03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena03/regen00.txt b/gamefiles/data/map/metin2_map_battlearena03/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena03/regen00.txt rename to gamefiles/data/map/metin2_map_battlearena03/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_battlearena03/server_attr b/gamefiles/data/map/metin2_map_battlearena03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_battlearena03/server_attr rename to gamefiles/data/map/metin2_map_battlearena03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_bf/Setting.txt b/gamefiles/data/map/metin2_map_bf/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf/Setting.txt rename to gamefiles/data/map/metin2_map_bf/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf/Town.txt b/gamefiles/data/map/metin2_map_bf/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf/Town.txt rename to gamefiles/data/map/metin2_map_bf/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf/npc.txt b/gamefiles/data/map/metin2_map_bf/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf/npc.txt rename to gamefiles/data/map/metin2_map_bf/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf/regen.txt b/gamefiles/data/map/metin2_map_bf/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf/regen.txt rename to gamefiles/data/map/metin2_map_bf/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf/server_attr b/gamefiles/data/map/metin2_map_bf/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf/server_attr rename to gamefiles/data/map/metin2_map_bf/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_bf_02/Setting.txt b/gamefiles/data/map/metin2_map_bf_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_02/Setting.txt rename to gamefiles/data/map/metin2_map_bf_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_02/Town.txt b/gamefiles/data/map/metin2_map_bf_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_02/Town.txt rename to gamefiles/data/map/metin2_map_bf_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_02/npc.txt b/gamefiles/data/map/metin2_map_bf_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_02/npc.txt rename to gamefiles/data/map/metin2_map_bf_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_02/regen.txt b/gamefiles/data/map/metin2_map_bf_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_02/regen.txt rename to gamefiles/data/map/metin2_map_bf_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_02/server_attr b/gamefiles/data/map/metin2_map_bf_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_02/server_attr rename to gamefiles/data/map/metin2_map_bf_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_bf_03/Setting.txt b/gamefiles/data/map/metin2_map_bf_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_03/Setting.txt rename to gamefiles/data/map/metin2_map_bf_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_03/Town.txt b/gamefiles/data/map/metin2_map_bf_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_03/Town.txt rename to gamefiles/data/map/metin2_map_bf_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_03/npc.txt b/gamefiles/data/map/metin2_map_bf_03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_03/npc.txt rename to gamefiles/data/map/metin2_map_bf_03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_03/regen.txt b/gamefiles/data/map/metin2_map_bf_03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_03/regen.txt rename to gamefiles/data/map/metin2_map_bf_03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_bf_03/server_attr b/gamefiles/data/map/metin2_map_bf_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_bf_03/server_attr rename to gamefiles/data/map/metin2_map_bf_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_c1/Setting.txt b/gamefiles/data/map/metin2_map_c1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/Setting.txt rename to gamefiles/data/map/metin2_map_c1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_c1/Town.txt b/gamefiles/data/map/metin2_map_c1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/Town.txt rename to gamefiles/data/map/metin2_map_c1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_c1/boss.txt b/gamefiles/data/map/metin2_map_c1/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/boss.txt rename to gamefiles/data/map/metin2_map_c1/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_c1/npc.txt b/gamefiles/data/map/metin2_map_c1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/npc.txt rename to gamefiles/data/map/metin2_map_c1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_c1/regen.txt b/gamefiles/data/map/metin2_map_c1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/regen.txt rename to gamefiles/data/map/metin2_map_c1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_c1/server_attr b/gamefiles/data/map/metin2_map_c1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/server_attr rename to gamefiles/data/map/metin2_map_c1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_c1/stone.txt b/gamefiles/data/map/metin2_map_c1/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c1/stone.txt rename to gamefiles/data/map/metin2_map_c1/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/Setting.txt b/gamefiles/data/map/metin2_map_c3/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/Setting.txt rename to gamefiles/data/map/metin2_map_c3/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/Town.txt b/gamefiles/data/map/metin2_map_c3/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/Town.txt rename to gamefiles/data/map/metin2_map_c3/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/boss.txt b/gamefiles/data/map/metin2_map_c3/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/boss.txt rename to gamefiles/data/map/metin2_map_c3/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/npc.txt b/gamefiles/data/map/metin2_map_c3/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/npc.txt rename to gamefiles/data/map/metin2_map_c3/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/regen.txt b/gamefiles/data/map/metin2_map_c3/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/regen.txt rename to gamefiles/data/map/metin2_map_c3/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_c3/server_attr b/gamefiles/data/map/metin2_map_c3/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/server_attr rename to gamefiles/data/map/metin2_map_c3/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_c3/stone.txt b/gamefiles/data/map/metin2_map_c3/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_c3/stone.txt rename to gamefiles/data/map/metin2_map_c3/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/MapProperty.txt b/gamefiles/data/map/metin2_map_dawnmistwood/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/MapProperty.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/Setting.txt b/gamefiles/data/map/metin2_map_dawnmistwood/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/Setting.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/Town.txt b/gamefiles/data/map/metin2_map_dawnmistwood/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/Town.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/boss.txt b/gamefiles/data/map/metin2_map_dawnmistwood/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/boss.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/npc.txt b/gamefiles/data/map/metin2_map_dawnmistwood/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/npc.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/regen.txt b/gamefiles/data/map/metin2_map_dawnmistwood/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/regen.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/server_attr b/gamefiles/data/map/metin2_map_dawnmistwood/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/server_attr rename to gamefiles/data/map/metin2_map_dawnmistwood/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_dawnmistwood/stone.txt b/gamefiles/data/map/metin2_map_dawnmistwood/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dawnmistwood/stone.txt rename to gamefiles/data/map/metin2_map_dawnmistwood/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/Setting.txt b/gamefiles/data/map/metin2_map_dd/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/Setting.txt rename to gamefiles/data/map/metin2_map_dd/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/Town.txt b/gamefiles/data/map/metin2_map_dd/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/Town.txt rename to gamefiles/data/map/metin2_map_dd/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base2_npc.txt b/gamefiles/data/map/metin2_map_dd/base2_npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base2_npc.txt rename to gamefiles/data/map/metin2_map_dd/base2_npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base2_regen.txt b/gamefiles/data/map/metin2_map_dd/base2_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base2_regen.txt rename to gamefiles/data/map/metin2_map_dd/base2_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base3_regen.txt b/gamefiles/data/map/metin2_map_dd/base3_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base3_regen.txt rename to gamefiles/data/map/metin2_map_dd/base3_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base4_portals.txt b/gamefiles/data/map/metin2_map_dd/base4_portals.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base4_portals.txt rename to gamefiles/data/map/metin2_map_dd/base4_portals.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base4_regen.txt b/gamefiles/data/map/metin2_map_dd/base4_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base4_regen.txt rename to gamefiles/data/map/metin2_map_dd/base4_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base5_regen.txt b/gamefiles/data/map/metin2_map_dd/base5_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base5_regen.txt rename to gamefiles/data/map/metin2_map_dd/base5_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base6_regen.txt b/gamefiles/data/map/metin2_map_dd/base6_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base6_regen.txt rename to gamefiles/data/map/metin2_map_dd/base6_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/base7_regen.txt b/gamefiles/data/map/metin2_map_dd/base7_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/base7_regen.txt rename to gamefiles/data/map/metin2_map_dd/base7_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/boss.txt b/gamefiles/data/map/metin2_map_dd/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/boss.txt rename to gamefiles/data/map/metin2_map_dd/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/npc.txt b/gamefiles/data/map/metin2_map_dd/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/npc.txt rename to gamefiles/data/map/metin2_map_dd/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/regen.txt b/gamefiles/data/map/metin2_map_dd/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/regen.txt rename to gamefiles/data/map/metin2_map_dd/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dd/server_attr b/gamefiles/data/map/metin2_map_dd/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/server_attr rename to gamefiles/data/map/metin2_map_dd/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_dd/stone.txt b/gamefiles/data/map/metin2_map_dd/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dd/stone.txt rename to gamefiles/data/map/metin2_map_dd/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_devilcatacomb/Setting.txt b/gamefiles/data/map/metin2_map_devilcatacomb/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_devilcatacomb/Setting.txt rename to gamefiles/data/map/metin2_map_devilcatacomb/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_devilcatacomb/Town.txt b/gamefiles/data/map/metin2_map_devilcatacomb/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_devilcatacomb/Town.txt rename to gamefiles/data/map/metin2_map_devilcatacomb/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_devilcatacomb/regen.txt b/gamefiles/data/map/metin2_map_devilcatacomb/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_devilcatacomb/regen.txt rename to gamefiles/data/map/metin2_map_devilcatacomb/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_devilcatacomb/server_attr b/gamefiles/data/map/metin2_map_devilcatacomb/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_devilcatacomb/server_attr rename to gamefiles/data/map/metin2_map_devilcatacomb/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/Setting.txt b/gamefiles/data/map/metin2_map_deviltower1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/Setting.txt rename to gamefiles/data/map/metin2_map_deviltower1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/Town.txt b/gamefiles/data/map/metin2_map_deviltower1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/Town.txt rename to gamefiles/data/map/metin2_map_deviltower1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/npc.txt b/gamefiles/data/map/metin2_map_deviltower1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/npc.txt rename to gamefiles/data/map/metin2_map_deviltower1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/regen.txt b/gamefiles/data/map/metin2_map_deviltower1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/regen.txt rename to gamefiles/data/map/metin2_map_deviltower1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/server_attr b/gamefiles/data/map/metin2_map_deviltower1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/server_attr rename to gamefiles/data/map/metin2_map_deviltower1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_deviltower1/stone.txt b/gamefiles/data/map/metin2_map_deviltower1/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_deviltower1/stone.txt rename to gamefiles/data/map/metin2_map_deviltower1/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/Setting.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/Setting.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/Town.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/Town.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/regen.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/regen.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/server_attr b/gamefiles/data/map/metin2_map_dragon_timeattack_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_01/server_attr rename to gamefiles/data/map/metin2_map_dragon_timeattack_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/Setting.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/Setting.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/Town.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/Town.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/regen.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/regen.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/server_attr b/gamefiles/data/map/metin2_map_dragon_timeattack_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_02/server_attr rename to gamefiles/data/map/metin2_map_dragon_timeattack_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/Setting.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/Setting.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/Town.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/Town.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/regen.txt b/gamefiles/data/map/metin2_map_dragon_timeattack_03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/regen.txt rename to gamefiles/data/map/metin2_map_dragon_timeattack_03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/server_attr b/gamefiles/data/map/metin2_map_dragon_timeattack_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_dragon_timeattack_03/server_attr rename to gamefiles/data/map/metin2_map_dragon_timeattack_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_duel/Setting.txt b/gamefiles/data/map/metin2_map_duel/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_duel/Setting.txt rename to gamefiles/data/map/metin2_map_duel/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_duel/Town.txt b/gamefiles/data/map/metin2_map_duel/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_duel/Town.txt rename to gamefiles/data/map/metin2_map_duel/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_duel/server_attr b/gamefiles/data/map/metin2_map_duel/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_duel/server_attr rename to gamefiles/data/map/metin2_map_duel/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/MapProperty.txt b/gamefiles/data/map/metin2_map_empirewar01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/MapProperty.txt rename to gamefiles/data/map/metin2_map_empirewar01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/Setting.txt b/gamefiles/data/map/metin2_map_empirewar01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/Setting.txt rename to gamefiles/data/map/metin2_map_empirewar01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/Town.txt b/gamefiles/data/map/metin2_map_empirewar01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/Town.txt rename to gamefiles/data/map/metin2_map_empirewar01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/npc.txt b/gamefiles/data/map/metin2_map_empirewar01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/npc.txt rename to gamefiles/data/map/metin2_map_empirewar01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/regen.txt b/gamefiles/data/map/metin2_map_empirewar01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/regen.txt rename to gamefiles/data/map/metin2_map_empirewar01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar01/server_attr b/gamefiles/data/map/metin2_map_empirewar01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar01/server_attr rename to gamefiles/data/map/metin2_map_empirewar01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/MapProperty.txt b/gamefiles/data/map/metin2_map_empirewar02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/MapProperty.txt rename to gamefiles/data/map/metin2_map_empirewar02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/Setting.txt b/gamefiles/data/map/metin2_map_empirewar02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/Setting.txt rename to gamefiles/data/map/metin2_map_empirewar02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/Town.txt b/gamefiles/data/map/metin2_map_empirewar02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/Town.txt rename to gamefiles/data/map/metin2_map_empirewar02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/npc.txt b/gamefiles/data/map/metin2_map_empirewar02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/npc.txt rename to gamefiles/data/map/metin2_map_empirewar02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/regen.txt b/gamefiles/data/map/metin2_map_empirewar02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/regen.txt rename to gamefiles/data/map/metin2_map_empirewar02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar02/server_attr b/gamefiles/data/map/metin2_map_empirewar02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar02/server_attr rename to gamefiles/data/map/metin2_map_empirewar02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/MapProperty.txt b/gamefiles/data/map/metin2_map_empirewar03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/MapProperty.txt rename to gamefiles/data/map/metin2_map_empirewar03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/Setting.txt b/gamefiles/data/map/metin2_map_empirewar03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/Setting.txt rename to gamefiles/data/map/metin2_map_empirewar03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/Town.txt b/gamefiles/data/map/metin2_map_empirewar03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/Town.txt rename to gamefiles/data/map/metin2_map_empirewar03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/npc.txt b/gamefiles/data/map/metin2_map_empirewar03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/npc.txt rename to gamefiles/data/map/metin2_map_empirewar03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/regen.txt b/gamefiles/data/map/metin2_map_empirewar03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/regen.txt rename to gamefiles/data/map/metin2_map_empirewar03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_empirewar03/server_attr b/gamefiles/data/map/metin2_map_empirewar03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_empirewar03/server_attr rename to gamefiles/data/map/metin2_map_empirewar03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_ew02/MapProperty.txt b/gamefiles/data/map/metin2_map_ew02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_ew02/MapProperty.txt rename to gamefiles/data/map/metin2_map_ew02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_ew02/Setting.txt b/gamefiles/data/map/metin2_map_ew02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_ew02/Setting.txt rename to gamefiles/data/map/metin2_map_ew02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_ew02/server_attr b/gamefiles/data/map/metin2_map_ew02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_ew02/server_attr rename to gamefiles/data/map/metin2_map_ew02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_fielddungeon/Setting.txt b/gamefiles/data/map/metin2_map_fielddungeon/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_fielddungeon/Setting.txt rename to gamefiles/data/map/metin2_map_fielddungeon/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_fielddungeon/Town.txt b/gamefiles/data/map/metin2_map_fielddungeon/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_fielddungeon/Town.txt rename to gamefiles/data/map/metin2_map_fielddungeon/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_fielddungeon/regen.txt b/gamefiles/data/map/metin2_map_fielddungeon/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_fielddungeon/regen.txt rename to gamefiles/data/map/metin2_map_fielddungeon/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_fielddungeon/server_attr b/gamefiles/data/map/metin2_map_fielddungeon/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_fielddungeon/server_attr rename to gamefiles/data/map/metin2_map_fielddungeon/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_football/Setting.txt b/gamefiles/data/map/metin2_map_football/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/Setting.txt rename to gamefiles/data/map/metin2_map_football/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_football/Town.txt b/gamefiles/data/map/metin2_map_football/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/Town.txt rename to gamefiles/data/map/metin2_map_football/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Setting.txt b/gamefiles/data/map/metin2_map_football/metin2_map_test1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Setting.txt rename to gamefiles/data/map/metin2_map_football/metin2_map_test1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Town.txt b/gamefiles/data/map/metin2_map_football/metin2_map_test1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Town.txt rename to gamefiles/data/map/metin2_map_football/metin2_map_test1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Town.txt.txt b/gamefiles/data/map/metin2_map_football/metin2_map_test1/Town.txt.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/Town.txt.txt rename to gamefiles/data/map/metin2_map_football/metin2_map_test1/Town.txt.txt diff --git a/gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/server_attr b/gamefiles/data/map/metin2_map_football/metin2_map_test1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/metin2_map_test1/server_attr rename to gamefiles/data/map/metin2_map_football/metin2_map_test1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_football/server_attr b/gamefiles/data/map/metin2_map_football/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_football/server_attr rename to gamefiles/data/map/metin2_map_football/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/Setting.txt b/gamefiles/data/map/metin2_map_guild_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/Setting.txt rename to gamefiles/data/map/metin2_map_guild_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/Town.txt b/gamefiles/data/map/metin2_map_guild_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/Town.txt rename to gamefiles/data/map/metin2_map_guild_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/npc.txt b/gamefiles/data/map/metin2_map_guild_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/npc.txt rename to gamefiles/data/map/metin2_map_guild_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/regen.txt b/gamefiles/data/map/metin2_map_guild_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/regen.txt rename to gamefiles/data/map/metin2_map_guild_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/server_attr b/gamefiles/data/map/metin2_map_guild_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/server_attr rename to gamefiles/data/map/metin2_map_guild_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_guild_01/stone.txt b/gamefiles/data/map/metin2_map_guild_01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_01/stone.txt rename to gamefiles/data/map/metin2_map_guild_01/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/Setting.txt b/gamefiles/data/map/metin2_map_guild_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/Setting.txt rename to gamefiles/data/map/metin2_map_guild_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/Town.txt b/gamefiles/data/map/metin2_map_guild_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/Town.txt rename to gamefiles/data/map/metin2_map_guild_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/npc.txt b/gamefiles/data/map/metin2_map_guild_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/npc.txt rename to gamefiles/data/map/metin2_map_guild_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/regen.txt b/gamefiles/data/map/metin2_map_guild_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/regen.txt rename to gamefiles/data/map/metin2_map_guild_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/server_attr b/gamefiles/data/map/metin2_map_guild_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/server_attr rename to gamefiles/data/map/metin2_map_guild_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_guild_02/stone.txt b/gamefiles/data/map/metin2_map_guild_02/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_02/stone.txt rename to gamefiles/data/map/metin2_map_guild_02/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/Setting.txt b/gamefiles/data/map/metin2_map_guild_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/Setting.txt rename to gamefiles/data/map/metin2_map_guild_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/Town.txt b/gamefiles/data/map/metin2_map_guild_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/Town.txt rename to gamefiles/data/map/metin2_map_guild_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/npc.txt b/gamefiles/data/map/metin2_map_guild_03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/npc.txt rename to gamefiles/data/map/metin2_map_guild_03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/regen.txt b/gamefiles/data/map/metin2_map_guild_03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/regen.txt rename to gamefiles/data/map/metin2_map_guild_03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/server_attr b/gamefiles/data/map/metin2_map_guild_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/server_attr rename to gamefiles/data/map/metin2_map_guild_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_guild_03/stone.txt b/gamefiles/data/map/metin2_map_guild_03/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_03/stone.txt rename to gamefiles/data/map/metin2_map_guild_03/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_inside01/Setting.txt b/gamefiles/data/map/metin2_map_guild_inside01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_inside01/Setting.txt rename to gamefiles/data/map/metin2_map_guild_inside01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_inside01/Town.txt b/gamefiles/data/map/metin2_map_guild_inside01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_inside01/Town.txt rename to gamefiles/data/map/metin2_map_guild_inside01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_guild_inside01/server_attr b/gamefiles/data/map/metin2_map_guild_inside01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_guild_inside01/server_attr rename to gamefiles/data/map/metin2_map_guild_inside01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_holyplace_flame/Setting.txt b/gamefiles/data/map/metin2_map_holyplace_flame/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_holyplace_flame/Setting.txt rename to gamefiles/data/map/metin2_map_holyplace_flame/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_holyplace_flame/Town.txt b/gamefiles/data/map/metin2_map_holyplace_flame/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_holyplace_flame/Town.txt rename to gamefiles/data/map/metin2_map_holyplace_flame/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_holyplace_flame/regen.txt b/gamefiles/data/map/metin2_map_holyplace_flame/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_holyplace_flame/regen.txt rename to gamefiles/data/map/metin2_map_holyplace_flame/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_holyplace_flame/server_attr b/gamefiles/data/map/metin2_map_holyplace_flame/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_holyplace_flame/server_attr rename to gamefiles/data/map/metin2_map_holyplace_flame/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/Setting.txt b/gamefiles/data/map/metin2_map_milgyo/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/Setting.txt rename to gamefiles/data/map/metin2_map_milgyo/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/Town.txt b/gamefiles/data/map/metin2_map_milgyo/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/Town.txt rename to gamefiles/data/map/metin2_map_milgyo/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/boss.txt b/gamefiles/data/map/metin2_map_milgyo/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/boss.txt rename to gamefiles/data/map/metin2_map_milgyo/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/npc.txt b/gamefiles/data/map/metin2_map_milgyo/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/npc.txt rename to gamefiles/data/map/metin2_map_milgyo/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/regen.txt b/gamefiles/data/map/metin2_map_milgyo/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/regen.txt rename to gamefiles/data/map/metin2_map_milgyo/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/server_attr b/gamefiles/data/map/metin2_map_milgyo/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/server_attr rename to gamefiles/data/map/metin2_map_milgyo/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_milgyo/stone.txt b/gamefiles/data/map/metin2_map_milgyo/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo/stone.txt rename to gamefiles/data/map/metin2_map_milgyo/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/Setting.txt b/gamefiles/data/map/metin2_map_milgyo_a/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/Setting.txt rename to gamefiles/data/map/metin2_map_milgyo_a/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/Town.txt b/gamefiles/data/map/metin2_map_milgyo_a/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/Town.txt rename to gamefiles/data/map/metin2_map_milgyo_a/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/boss.txt b/gamefiles/data/map/metin2_map_milgyo_a/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/boss.txt rename to gamefiles/data/map/metin2_map_milgyo_a/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/npc.txt b/gamefiles/data/map/metin2_map_milgyo_a/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/npc.txt rename to gamefiles/data/map/metin2_map_milgyo_a/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/regen.txt b/gamefiles/data/map/metin2_map_milgyo_a/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/regen.txt rename to gamefiles/data/map/metin2_map_milgyo_a/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/server_attr b/gamefiles/data/map/metin2_map_milgyo_a/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/server_attr rename to gamefiles/data/map/metin2_map_milgyo_a/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_milgyo_a/stone.txt b/gamefiles/data/map/metin2_map_milgyo_a/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_milgyo_a/stone.txt rename to gamefiles/data/map/metin2_map_milgyo_a/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon2/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon2/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon2/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon2/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon2/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon2/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon2/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon2/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon2/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon2/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon2/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon2/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon2/regen.txt b/gamefiles/data/map/metin2_map_monkey_dungeon2/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon2/regen.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon2/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon2/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon2/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon2/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon2/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon3/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon3/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon3/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon3/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon3/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon3/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon3/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon3/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon3/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon3/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon3/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon3/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon3/regen.txt b/gamefiles/data/map/metin2_map_monkey_dungeon3/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon3/regen.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon3/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon3/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon3/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon3/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon3/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_11/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_11/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_11/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_11/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_11/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_11/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/regen.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_11/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/regen.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_11/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon_11/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_11/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon_11/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_12/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_12/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_12/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_12/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_12/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_12/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/regen.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_12/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/regen.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_12/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon_12/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_12/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon_12/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/Setting.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_13/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/Setting.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_13/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/Town.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_13/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/Town.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_13/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/npc.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_13/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/npc.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_13/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/regen.txt b/gamefiles/data/map/metin2_map_monkey_dungeon_13/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/regen.txt rename to gamefiles/data/map/metin2_map_monkey_dungeon_13/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/server_attr b/gamefiles/data/map/metin2_map_monkey_dungeon_13/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_monkey_dungeon_13/server_attr rename to gamefiles/data/map/metin2_map_monkey_dungeon_13/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/Setting.txt b/gamefiles/data/map/metin2_map_n_desert_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/Setting.txt rename to gamefiles/data/map/metin2_map_n_desert_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/Town.txt b/gamefiles/data/map/metin2_map_n_desert_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/Town.txt rename to gamefiles/data/map/metin2_map_n_desert_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/boss.txt b/gamefiles/data/map/metin2_map_n_desert_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/boss.txt rename to gamefiles/data/map/metin2_map_n_desert_01/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/npc.txt b/gamefiles/data/map/metin2_map_n_desert_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/npc.txt rename to gamefiles/data/map/metin2_map_n_desert_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/regen.txt b/gamefiles/data/map/metin2_map_n_desert_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/regen.txt rename to gamefiles/data/map/metin2_map_n_desert_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/server_attr b/gamefiles/data/map/metin2_map_n_desert_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/server_attr rename to gamefiles/data/map/metin2_map_n_desert_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_01/stone.txt b/gamefiles/data/map/metin2_map_n_desert_01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_01/stone.txt rename to gamefiles/data/map/metin2_map_n_desert_01/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/Setting.txt b/gamefiles/data/map/metin2_map_n_desert_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/Setting.txt rename to gamefiles/data/map/metin2_map_n_desert_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/Town.txt b/gamefiles/data/map/metin2_map_n_desert_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/Town.txt rename to gamefiles/data/map/metin2_map_n_desert_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/boss.txt b/gamefiles/data/map/metin2_map_n_desert_02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/boss.txt rename to gamefiles/data/map/metin2_map_n_desert_02/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/npc.txt b/gamefiles/data/map/metin2_map_n_desert_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/npc.txt rename to gamefiles/data/map/metin2_map_n_desert_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/regen.txt b/gamefiles/data/map/metin2_map_n_desert_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/regen.txt rename to gamefiles/data/map/metin2_map_n_desert_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/server_attr b/gamefiles/data/map/metin2_map_n_desert_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/server_attr rename to gamefiles/data/map/metin2_map_n_desert_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_desert_02/stone.txt b/gamefiles/data/map/metin2_map_n_desert_02/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_desert_02/stone.txt rename to gamefiles/data/map/metin2_map_n_desert_02/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/Setting.txt b/gamefiles/data/map/metin2_map_n_flame_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/Setting.txt rename to gamefiles/data/map/metin2_map_n_flame_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/Town.txt b/gamefiles/data/map/metin2_map_n_flame_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/Town.txt rename to gamefiles/data/map/metin2_map_n_flame_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/boss.txt b/gamefiles/data/map/metin2_map_n_flame_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/boss.txt rename to gamefiles/data/map/metin2_map_n_flame_01/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/npc.txt b/gamefiles/data/map/metin2_map_n_flame_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/npc.txt rename to gamefiles/data/map/metin2_map_n_flame_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/regen.txt b/gamefiles/data/map/metin2_map_n_flame_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/regen.txt rename to gamefiles/data/map/metin2_map_n_flame_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/server_attr b/gamefiles/data/map/metin2_map_n_flame_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/server_attr rename to gamefiles/data/map/metin2_map_n_flame_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/server_attr_old b/gamefiles/data/map/metin2_map_n_flame_01/server_attr_old similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/server_attr_old rename to gamefiles/data/map/metin2_map_n_flame_01/server_attr_old diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_01/stone.txt b/gamefiles/data/map/metin2_map_n_flame_01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_01/stone.txt rename to gamefiles/data/map/metin2_map_n_flame_01/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/Setting.txt b/gamefiles/data/map/metin2_map_n_flame_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/Setting.txt rename to gamefiles/data/map/metin2_map_n_flame_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/Town.txt b/gamefiles/data/map/metin2_map_n_flame_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/Town.txt rename to gamefiles/data/map/metin2_map_n_flame_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/boss.txt b/gamefiles/data/map/metin2_map_n_flame_02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/boss.txt rename to gamefiles/data/map/metin2_map_n_flame_02/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/npc.txt b/gamefiles/data/map/metin2_map_n_flame_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/npc.txt rename to gamefiles/data/map/metin2_map_n_flame_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/regen.txt b/gamefiles/data/map/metin2_map_n_flame_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/regen.txt rename to gamefiles/data/map/metin2_map_n_flame_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/server_attr b/gamefiles/data/map/metin2_map_n_flame_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/server_attr rename to gamefiles/data/map/metin2_map_n_flame_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_02/stone.txt b/gamefiles/data/map/metin2_map_n_flame_02/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_02/stone.txt rename to gamefiles/data/map/metin2_map_n_flame_02/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/MapProperty.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/Setting.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/Setting.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/Town.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/Town.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/boss.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/boss.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/npc.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/npc.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/regen.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/regen.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/server_attr b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/server_attr rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/stone.txt b/gamefiles/data/map/metin2_map_n_flame_dungeon_01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_n_flame_dungeon_01/stone.txt rename to gamefiles/data/map/metin2_map_n_flame_dungeon_01/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_naga1/Setting.txt b/gamefiles/data/map/metin2_map_naga1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_naga1/Setting.txt rename to gamefiles/data/map/metin2_map_naga1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_naga1/Town.txt b/gamefiles/data/map/metin2_map_naga1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_naga1/Town.txt rename to gamefiles/data/map/metin2_map_naga1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_naga1/npc.txt b/gamefiles/data/map/metin2_map_naga1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_naga1/npc.txt rename to gamefiles/data/map/metin2_map_naga1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_naga1/regen.txt b/gamefiles/data/map/metin2_map_naga1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_naga1/regen.txt rename to gamefiles/data/map/metin2_map_naga1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_naga1/server_attr b/gamefiles/data/map/metin2_map_naga1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_naga1/server_attr rename to gamefiles/data/map/metin2_map_naga1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/Setting.txt b/gamefiles/data/map/metin2_map_nusluck01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/Setting.txt rename to gamefiles/data/map/metin2_map_nusluck01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/Town.txt b/gamefiles/data/map/metin2_map_nusluck01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/Town.txt rename to gamefiles/data/map/metin2_map_nusluck01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/npc.txt b/gamefiles/data/map/metin2_map_nusluck01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/npc.txt rename to gamefiles/data/map/metin2_map_nusluck01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/regen.txt b/gamefiles/data/map/metin2_map_nusluck01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/regen.txt rename to gamefiles/data/map/metin2_map_nusluck01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/server_attr b/gamefiles/data/map/metin2_map_nusluck01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/server_attr rename to gamefiles/data/map/metin2_map_nusluck01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_nusluck01/stone.txt b/gamefiles/data/map/metin2_map_nusluck01/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_nusluck01/stone.txt rename to gamefiles/data/map/metin2_map_nusluck01/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_oxevent/Setting.txt b/gamefiles/data/map/metin2_map_oxevent/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_oxevent/Setting.txt rename to gamefiles/data/map/metin2_map_oxevent/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_oxevent/Town.txt b/gamefiles/data/map/metin2_map_oxevent/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_oxevent/Town.txt rename to gamefiles/data/map/metin2_map_oxevent/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_oxevent/npc.txt b/gamefiles/data/map/metin2_map_oxevent/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_oxevent/npc.txt rename to gamefiles/data/map/metin2_map_oxevent/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_oxevent/server_attr b/gamefiles/data/map/metin2_map_oxevent/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_oxevent/server_attr rename to gamefiles/data/map/metin2_map_oxevent/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_pvp_arena/Setting.txt b/gamefiles/data/map/metin2_map_pvp_arena/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_pvp_arena/Setting.txt rename to gamefiles/data/map/metin2_map_pvp_arena/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_pvp_arena/Town.txt b/gamefiles/data/map/metin2_map_pvp_arena/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_pvp_arena/Town.txt rename to gamefiles/data/map/metin2_map_pvp_arena/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_pvp_arena/npc.txt b/gamefiles/data/map/metin2_map_pvp_arena/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_pvp_arena/npc.txt rename to gamefiles/data/map/metin2_map_pvp_arena/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_pvp_arena/server_attr b/gamefiles/data/map/metin2_map_pvp_arena/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_pvp_arena/server_attr rename to gamefiles/data/map/metin2_map_pvp_arena/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_resources_zon/Setting.txt b/gamefiles/data/map/metin2_map_resources_zon/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_resources_zon/Setting.txt rename to gamefiles/data/map/metin2_map_resources_zon/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_resources_zon/Town.txt b/gamefiles/data/map/metin2_map_resources_zon/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_resources_zon/Town.txt rename to gamefiles/data/map/metin2_map_resources_zon/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_resources_zon/server_attr b/gamefiles/data/map/metin2_map_resources_zon/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_resources_zon/server_attr rename to gamefiles/data/map/metin2_map_resources_zon/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_shinsutest_01/Setting.txt b/gamefiles/data/map/metin2_map_shinsutest_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_shinsutest_01/Setting.txt rename to gamefiles/data/map/metin2_map_shinsutest_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_shinsutest_01/server_attr b/gamefiles/data/map/metin2_map_shinsutest_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_shinsutest_01/server_attr rename to gamefiles/data/map/metin2_map_shinsutest_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_siege_01/Setting.txt b/gamefiles/data/map/metin2_map_siege_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_01/Setting.txt rename to gamefiles/data/map/metin2_map_siege_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_01/Town.txt b/gamefiles/data/map/metin2_map_siege_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_01/Town.txt rename to gamefiles/data/map/metin2_map_siege_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_01/npc.txt b/gamefiles/data/map/metin2_map_siege_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_01/npc.txt rename to gamefiles/data/map/metin2_map_siege_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_01/server_attr b/gamefiles/data/map/metin2_map_siege_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_01/server_attr rename to gamefiles/data/map/metin2_map_siege_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_siege_02/Setting.txt b/gamefiles/data/map/metin2_map_siege_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_02/Setting.txt rename to gamefiles/data/map/metin2_map_siege_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_02/Town.txt b/gamefiles/data/map/metin2_map_siege_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_02/Town.txt rename to gamefiles/data/map/metin2_map_siege_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_02/npc.txt b/gamefiles/data/map/metin2_map_siege_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_02/npc.txt rename to gamefiles/data/map/metin2_map_siege_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_02/server_attr b/gamefiles/data/map/metin2_map_siege_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_02/server_attr rename to gamefiles/data/map/metin2_map_siege_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_siege_03/Setting.txt b/gamefiles/data/map/metin2_map_siege_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_03/Setting.txt rename to gamefiles/data/map/metin2_map_siege_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_03/Town.txt b/gamefiles/data/map/metin2_map_siege_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_03/Town.txt rename to gamefiles/data/map/metin2_map_siege_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_03/npc.txt b/gamefiles/data/map/metin2_map_siege_03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_03/npc.txt rename to gamefiles/data/map/metin2_map_siege_03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_siege_03/server_attr b/gamefiles/data/map/metin2_map_siege_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_siege_03/server_attr rename to gamefiles/data/map/metin2_map_siege_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/MapProperty.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/boss.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/boss.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_01/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_011/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_011/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_011/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_011/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_011/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_011/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_011/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_011/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_011/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_011/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_011/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_012/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_012/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_012/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_012/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_012/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_012/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_012/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_012/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_012/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_012/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_012/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_013/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_013/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_013/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_013/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_013/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_013/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_013/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_013/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_013/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_013/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_013/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/MapProperty.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/MapProperty.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/boss.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/boss.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_02/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_021/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_021/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_021/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_021/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_021/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_021/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_021/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_021/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_021/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_021/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_021/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_022/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_022/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_022/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_022/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_022/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_022/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_022/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_022/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_022/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_022/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_022/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_023/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_023/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_023/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_023/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_023/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_023/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_023/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_023/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_023/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_023/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_023/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/Setting.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/Setting.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/Town.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/Town.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/instance_regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/instance_regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/instance_regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/instance_regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/npc.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/npc.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/regen.txt b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/regen.txt rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/regen.txt.bak b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/regen.txt.bak similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/regen.txt.bak rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/regen.txt.bak diff --git a/gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/server_attr b/gamefiles/data/map/metin2_map_skipia_dungeon_boss/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_skipia_dungeon_boss/server_attr rename to gamefiles/data/map/metin2_map_skipia_dungeon_boss/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderd/Setting.txt b/gamefiles/data/map/metin2_map_spiderd/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderd/Setting.txt rename to gamefiles/data/map/metin2_map_spiderd/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderd/Town.txt b/gamefiles/data/map/metin2_map_spiderd/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderd/Town.txt rename to gamefiles/data/map/metin2_map_spiderd/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderd/server_attr b/gamefiles/data/map/metin2_map_spiderd/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderd/server_attr rename to gamefiles/data/map/metin2_map_spiderd/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/Setting.txt b/gamefiles/data/map/metin2_map_spiderdungeon/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/Setting.txt rename to gamefiles/data/map/metin2_map_spiderdungeon/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/Town.txt b/gamefiles/data/map/metin2_map_spiderdungeon/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/Town.txt rename to gamefiles/data/map/metin2_map_spiderdungeon/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/boss.txt b/gamefiles/data/map/metin2_map_spiderdungeon/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/boss.txt rename to gamefiles/data/map/metin2_map_spiderdungeon/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/npc.txt b/gamefiles/data/map/metin2_map_spiderdungeon/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/npc.txt rename to gamefiles/data/map/metin2_map_spiderdungeon/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/regen.txt b/gamefiles/data/map/metin2_map_spiderdungeon/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/regen.txt rename to gamefiles/data/map/metin2_map_spiderdungeon/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon/server_attr b/gamefiles/data/map/metin2_map_spiderdungeon/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon/server_attr rename to gamefiles/data/map/metin2_map_spiderdungeon/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/MapProperty.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/MapProperty.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/Setting.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/Setting.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/Town.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/Town.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/boss.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/boss.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/npc.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/npc.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/regen.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/regen.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02/server_attr b/gamefiles/data/map/metin2_map_spiderdungeon_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02/server_attr rename to gamefiles/data/map/metin2_map_spiderdungeon_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/MapProperty.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/MapProperty.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/Setting.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/Setting.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/Town.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/Town.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/npc.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/npc.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/regen.txt b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/regen.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/server_attr b/gamefiles/data/map/metin2_map_spiderdungeon_02_1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_02_1/server_attr rename to gamefiles/data/map/metin2_map_spiderdungeon_02_1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/MapProperty.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/MapProperty.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/Setting.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/Setting.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/Town.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/Town.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/boss.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/boss.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/npc.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/npc.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/regen.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/regen.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03/server_attr b/gamefiles/data/map/metin2_map_spiderdungeon_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03/server_attr rename to gamefiles/data/map/metin2_map_spiderdungeon_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/Setting.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03_old/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/Setting.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03_old/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/Town.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03_old/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/Town.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03_old/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/npc.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03_old/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/npc.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03_old/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/regen.txt b/gamefiles/data/map/metin2_map_spiderdungeon_03_old/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/regen.txt rename to gamefiles/data/map/metin2_map_spiderdungeon_03_old/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/server_attr b/gamefiles/data/map/metin2_map_spiderdungeon_03_old/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_spiderdungeon_03_old/server_attr rename to gamefiles/data/map/metin2_map_spiderdungeon_03_old/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/Setting.txt b/gamefiles/data/map/metin2_map_sungzi/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/Town.txt b/gamefiles/data/map/metin2_map_sungzi/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/Town.txt rename to gamefiles/data/map/metin2_map_sungzi/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/regen00.txt b/gamefiles/data/map/metin2_map_sungzi/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi/server_attr b/gamefiles/data/map/metin2_map_sungzi/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi/server_attr rename to gamefiles/data/map/metin2_map_sungzi/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/Town.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/boss.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/boss.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_01/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_01/server_attr b/gamefiles/data/map/metin2_map_sungzi_desert_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_desert_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/Town.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/server_attr b/gamefiles/data/map/metin2_map_sungzi_desert_hill_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/Town.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/server_attr b/gamefiles/data/map/metin2_map_sungzi_desert_hill_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_02/server_attr rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/Town.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/server_attr b/gamefiles/data/map/metin2_map_sungzi_desert_hill_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_desert_hill_03/server_attr rename to gamefiles/data/map/metin2_map_sungzi_desert_hill_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_hill_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_hill_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_02/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_hill_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_hill_03/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_hill_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/npc.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/regen.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_pass01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_pass01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/npc.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/regen.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_pass02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass02/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_pass02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/Town.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/npc.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/regen.txt b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/server_attr b/gamefiles/data/map/metin2_map_sungzi_flame_pass03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_flame_pass03/server_attr rename to gamefiles/data/map/metin2_map_sungzi_flame_pass03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo/server_attr b/gamefiles/data/map/metin2_map_sungzi_milgyo/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo/server_attr rename to gamefiles/data/map/metin2_map_sungzi_milgyo/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/server_attr b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/server_attr b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_02/server_attr rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/server_attr b/gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_milgyo_pass_03/server_attr rename to gamefiles/data/map/metin2_map_sungzi_milgyo_pass_03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_snow/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_snow/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/Town.txt b/gamefiles/data/map/metin2_map_sungzi_snow/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_snow/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_snow/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow/server_attr b/gamefiles/data/map/metin2_map_sungzi_snow/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow/server_attr rename to gamefiles/data/map/metin2_map_sungzi_snow/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/Town.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/npc.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/server_attr b/gamefiles/data/map/metin2_map_sungzi_snow_pass01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass01/server_attr rename to gamefiles/data/map/metin2_map_sungzi_snow_pass01/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/Town.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/npc.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/server_attr b/gamefiles/data/map/metin2_map_sungzi_snow_pass02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass02/server_attr rename to gamefiles/data/map/metin2_map_sungzi_snow_pass02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/MapProperty.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/MapProperty.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/MapProperty.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/MapProperty.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/Setting.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/Setting.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/Town.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/Town.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/npc.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/npc.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/npc00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/npc00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/npc00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/npc00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_1.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_1.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_1.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_1.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_2.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_2.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_2.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_2.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_3.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_3.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_3.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_3.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_4.txt b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_4.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/regen00_4.txt rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/regen00_4.txt diff --git a/gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/server_attr b/gamefiles/data/map/metin2_map_sungzi_snow_pass03/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_sungzi_snow_pass03/server_attr rename to gamefiles/data/map/metin2_map_sungzi_snow_pass03/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_t1/Setting.txt b/gamefiles/data/map/metin2_map_t1/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t1/Setting.txt rename to gamefiles/data/map/metin2_map_t1/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_t1/Town.txt b/gamefiles/data/map/metin2_map_t1/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t1/Town.txt rename to gamefiles/data/map/metin2_map_t1/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_t1/npc.txt b/gamefiles/data/map/metin2_map_t1/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t1/npc.txt rename to gamefiles/data/map/metin2_map_t1/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_t1/regen.txt b/gamefiles/data/map/metin2_map_t1/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t1/regen.txt rename to gamefiles/data/map/metin2_map_t1/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_t1/server_attr b/gamefiles/data/map/metin2_map_t1/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t1/server_attr rename to gamefiles/data/map/metin2_map_t1/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_t2/Setting.txt b/gamefiles/data/map/metin2_map_t2/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t2/Setting.txt rename to gamefiles/data/map/metin2_map_t2/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_t2/Town.txt b/gamefiles/data/map/metin2_map_t2/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t2/Town.txt rename to gamefiles/data/map/metin2_map_t2/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_t2/server_attr b/gamefiles/data/map/metin2_map_t2/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t2/server_attr rename to gamefiles/data/map/metin2_map_t2/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_t3/Setting.txt b/gamefiles/data/map/metin2_map_t3/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t3/Setting.txt rename to gamefiles/data/map/metin2_map_t3/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_t3/Town.txt b/gamefiles/data/map/metin2_map_t3/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t3/Town.txt rename to gamefiles/data/map/metin2_map_t3/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_t3/server_attr b/gamefiles/data/map/metin2_map_t3/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t3/server_attr rename to gamefiles/data/map/metin2_map_t3/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_t4/Setting.txt b/gamefiles/data/map/metin2_map_t4/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t4/Setting.txt rename to gamefiles/data/map/metin2_map_t4/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_t4/Town.txt b/gamefiles/data/map/metin2_map_t4/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t4/Town.txt rename to gamefiles/data/map/metin2_map_t4/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_t4/server_attr b/gamefiles/data/map/metin2_map_t4/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_t4/server_attr rename to gamefiles/data/map/metin2_map_t4/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_trent/Setting.txt b/gamefiles/data/map/metin2_map_trent/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/Setting.txt rename to gamefiles/data/map/metin2_map_trent/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent/Town.txt b/gamefiles/data/map/metin2_map_trent/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/Town.txt rename to gamefiles/data/map/metin2_map_trent/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent/npc.txt b/gamefiles/data/map/metin2_map_trent/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/npc.txt rename to gamefiles/data/map/metin2_map_trent/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent/regen.txt b/gamefiles/data/map/metin2_map_trent/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/regen.txt rename to gamefiles/data/map/metin2_map_trent/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent/server_attr b/gamefiles/data/map/metin2_map_trent/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/server_attr rename to gamefiles/data/map/metin2_map_trent/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_trent/stone.txt b/gamefiles/data/map/metin2_map_trent/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent/stone.txt rename to gamefiles/data/map/metin2_map_trent/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/Setting.txt b/gamefiles/data/map/metin2_map_trent02/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/Setting.txt rename to gamefiles/data/map/metin2_map_trent02/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/Town.txt b/gamefiles/data/map/metin2_map_trent02/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/Town.txt rename to gamefiles/data/map/metin2_map_trent02/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/boss.txt b/gamefiles/data/map/metin2_map_trent02/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/boss.txt rename to gamefiles/data/map/metin2_map_trent02/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/npc.txt b/gamefiles/data/map/metin2_map_trent02/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/npc.txt rename to gamefiles/data/map/metin2_map_trent02/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/regen.txt b/gamefiles/data/map/metin2_map_trent02/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/regen.txt rename to gamefiles/data/map/metin2_map_trent02/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02/server_attr b/gamefiles/data/map/metin2_map_trent02/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/server_attr rename to gamefiles/data/map/metin2_map_trent02/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_trent02/stone.txt b/gamefiles/data/map/metin2_map_trent02/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02/stone.txt rename to gamefiles/data/map/metin2_map_trent02/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/Setting.txt b/gamefiles/data/map/metin2_map_trent02_a/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/Setting.txt rename to gamefiles/data/map/metin2_map_trent02_a/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/Town.txt b/gamefiles/data/map/metin2_map_trent02_a/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/Town.txt rename to gamefiles/data/map/metin2_map_trent02_a/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/boss.txt b/gamefiles/data/map/metin2_map_trent02_a/boss.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/boss.txt rename to gamefiles/data/map/metin2_map_trent02_a/boss.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/npc.txt b/gamefiles/data/map/metin2_map_trent02_a/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/npc.txt rename to gamefiles/data/map/metin2_map_trent02_a/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/regen.txt b/gamefiles/data/map/metin2_map_trent02_a/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/regen.txt rename to gamefiles/data/map/metin2_map_trent02_a/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/server_attr b/gamefiles/data/map/metin2_map_trent02_a/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/server_attr rename to gamefiles/data/map/metin2_map_trent02_a/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/stone.txt b/gamefiles/data/map/metin2_map_trent02_a/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/stone.txt rename to gamefiles/data/map/metin2_map_trent02_a/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent02_a/trent02.msenv b/gamefiles/data/map/metin2_map_trent02_a/trent02.msenv similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent02_a/trent02.msenv rename to gamefiles/data/map/metin2_map_trent02_a/trent02.msenv diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/Setting.txt b/gamefiles/data/map/metin2_map_trent_a/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/Setting.txt rename to gamefiles/data/map/metin2_map_trent_a/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/Town.txt b/gamefiles/data/map/metin2_map_trent_a/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/Town.txt rename to gamefiles/data/map/metin2_map_trent_a/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/atlas.sub b/gamefiles/data/map/metin2_map_trent_a/atlas.sub similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/atlas.sub rename to gamefiles/data/map/metin2_map_trent_a/atlas.sub diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/npc.txt b/gamefiles/data/map/metin2_map_trent_a/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/npc.txt rename to gamefiles/data/map/metin2_map_trent_a/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/regen.txt b/gamefiles/data/map/metin2_map_trent_a/regen.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/regen.txt rename to gamefiles/data/map/metin2_map_trent_a/regen.txt diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/server_attr b/gamefiles/data/map/metin2_map_trent_a/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/server_attr rename to gamefiles/data/map/metin2_map_trent_a/server_attr diff --git a/gamefiles/locale/english/map/metin2_map_trent_a/stone.txt b/gamefiles/data/map/metin2_map_trent_a/stone.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_trent_a/stone.txt rename to gamefiles/data/map/metin2_map_trent_a/stone.txt diff --git a/gamefiles/locale/english/map/metin2_map_wedding_01/Setting.txt b/gamefiles/data/map/metin2_map_wedding_01/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_wedding_01/Setting.txt rename to gamefiles/data/map/metin2_map_wedding_01/Setting.txt diff --git a/gamefiles/locale/english/map/metin2_map_wedding_01/Town.txt b/gamefiles/data/map/metin2_map_wedding_01/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_wedding_01/Town.txt rename to gamefiles/data/map/metin2_map_wedding_01/Town.txt diff --git a/gamefiles/locale/english/map/metin2_map_wedding_01/npc.txt b/gamefiles/data/map/metin2_map_wedding_01/npc.txt similarity index 100% rename from gamefiles/locale/english/map/metin2_map_wedding_01/npc.txt rename to gamefiles/data/map/metin2_map_wedding_01/npc.txt diff --git a/gamefiles/locale/english/map/metin2_map_wedding_01/server_attr b/gamefiles/data/map/metin2_map_wedding_01/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin2_map_wedding_01/server_attr rename to gamefiles/data/map/metin2_map_wedding_01/server_attr diff --git a/gamefiles/locale/english/map/metin_test/Setting.txt b/gamefiles/data/map/metin_test/Setting.txt similarity index 100% rename from gamefiles/locale/english/map/metin_test/Setting.txt rename to gamefiles/data/map/metin_test/Setting.txt diff --git a/gamefiles/locale/english/map/metin_test/Town.txt b/gamefiles/data/map/metin_test/Town.txt similarity index 100% rename from gamefiles/locale/english/map/metin_test/Town.txt rename to gamefiles/data/map/metin_test/Town.txt diff --git a/gamefiles/locale/english/map/metin_test/server_attr b/gamefiles/data/map/metin_test/server_attr similarity index 100% rename from gamefiles/locale/english/map/metin_test/server_attr rename to gamefiles/data/map/metin_test/server_attr diff --git a/gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_1.txt b/gamefiles/data/map/mob_invasion/mobs_regen_1_1_1.txt similarity index 100% rename from gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_1.txt rename to gamefiles/data/map/mob_invasion/mobs_regen_1_1_1.txt diff --git a/gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_2.txt b/gamefiles/data/map/mob_invasion/mobs_regen_1_1_2.txt similarity index 100% rename from gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_2.txt rename to gamefiles/data/map/mob_invasion/mobs_regen_1_1_2.txt diff --git a/gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_3.txt b/gamefiles/data/map/mob_invasion/mobs_regen_1_1_3.txt similarity index 100% rename from gamefiles/locale/english/map/mob_invasion/mobs_regen_1_1_3.txt rename to gamefiles/data/map/mob_invasion/mobs_regen_1_1_3.txt diff --git a/gamefiles/locale/english/map/mob_invasion/mobs_regen_21_1_1.txt b/gamefiles/data/map/mob_invasion/mobs_regen_21_1_1.txt similarity index 100% rename from gamefiles/locale/english/map/mob_invasion/mobs_regen_21_1_1.txt rename to gamefiles/data/map/mob_invasion/mobs_regen_21_1_1.txt diff --git a/gamefiles/locale/english/map/mob_invasion/mobs_regen_41_1_1.txt b/gamefiles/data/map/mob_invasion/mobs_regen_41_1_1.txt similarity index 100% rename from gamefiles/locale/english/map/mob_invasion/mobs_regen_41_1_1.txt rename to gamefiles/data/map/mob_invasion/mobs_regen_41_1_1.txt diff --git a/gamefiles/locale/english/mob_drop_item.txt b/gamefiles/data/mob_drop_item.txt similarity index 100% rename from gamefiles/locale/english/mob_drop_item.txt rename to gamefiles/data/mob_drop_item.txt diff --git a/gamefiles/locale/english/mob_proto.csv b/gamefiles/data/mob_proto.csv similarity index 100% rename from gamefiles/locale/english/mob_proto.csv rename to gamefiles/data/mob_proto.csv diff --git a/gamefiles/locale/english/monkey_dungeon.lua b/gamefiles/data/monkey_dungeon.lua similarity index 100% rename from gamefiles/locale/english/monkey_dungeon.lua rename to gamefiles/data/monkey_dungeon.lua diff --git a/gamefiles/locale/english/ori_to_new_table.txt b/gamefiles/data/ori_to_new_table.txt similarity index 100% rename from gamefiles/locale/english/ori_to_new_table.txt rename to gamefiles/data/ori_to_new_table.txt diff --git a/gamefiles/locale/english/oxquiz.lua b/gamefiles/data/oxquiz.lua similarity index 100% rename from gamefiles/locale/english/oxquiz.lua rename to gamefiles/data/oxquiz.lua diff --git a/gamefiles/locale/english/oxquiz_germany.lua b/gamefiles/data/oxquiz_germany.lua similarity index 100% rename from gamefiles/locale/english/oxquiz_germany.lua rename to gamefiles/data/oxquiz_germany.lua diff --git a/gamefiles/locale/english/quest/.gitignore b/gamefiles/data/quest/.gitignore similarity index 100% rename from gamefiles/locale/english/quest/.gitignore rename to gamefiles/data/quest/.gitignore diff --git a/gamefiles/locale/english/quest/GFquestlib.lua b/gamefiles/data/quest/GFquestlib.lua similarity index 100% rename from gamefiles/locale/english/quest/GFquestlib.lua rename to gamefiles/data/quest/GFquestlib.lua diff --git a/gamefiles/locale/english/quest/ItemInformer.quest b/gamefiles/data/quest/ItemInformer.quest similarity index 100% rename from gamefiles/locale/english/quest/ItemInformer.quest rename to gamefiles/data/quest/ItemInformer.quest diff --git a/gamefiles/locale/english/quest/arena_manager.quest b/gamefiles/data/quest/arena_manager.quest similarity index 100% rename from gamefiles/locale/english/quest/arena_manager.quest rename to gamefiles/data/quest/arena_manager.quest diff --git a/gamefiles/locale/english/quest/arne_test1.quest b/gamefiles/data/quest/arne_test1.quest similarity index 100% rename from gamefiles/locale/english/quest/arne_test1.quest rename to gamefiles/data/quest/arne_test1.quest diff --git a/gamefiles/locale/english/quest/arne_test2.quest b/gamefiles/data/quest/arne_test2.quest similarity index 100% rename from gamefiles/locale/english/quest/arne_test2.quest rename to gamefiles/data/quest/arne_test2.quest diff --git a/gamefiles/locale/english/quest/assassin_shop_box.quest b/gamefiles/data/quest/assassin_shop_box.quest similarity index 100% rename from gamefiles/locale/english/quest/assassin_shop_box.quest rename to gamefiles/data/quest/assassin_shop_box.quest diff --git a/gamefiles/locale/english/quest/blacksmith.quest b/gamefiles/data/quest/blacksmith.quest similarity index 100% rename from gamefiles/locale/english/quest/blacksmith.quest rename to gamefiles/data/quest/blacksmith.quest diff --git a/gamefiles/locale/english/quest/buy_fishrod.quest b/gamefiles/data/quest/buy_fishrod.quest similarity index 100% rename from gamefiles/locale/english/quest/buy_fishrod.quest rename to gamefiles/data/quest/buy_fishrod.quest diff --git a/gamefiles/locale/english/quest/change_empire.quest b/gamefiles/data/quest/change_empire.quest similarity index 100% rename from gamefiles/locale/english/quest/change_empire.quest rename to gamefiles/data/quest/change_empire.quest diff --git a/gamefiles/locale/english/quest/change_guild_master.quest b/gamefiles/data/quest/change_guild_master.quest similarity index 100% rename from gamefiles/locale/english/quest/change_guild_master.quest rename to gamefiles/data/quest/change_guild_master.quest diff --git a/gamefiles/locale/english/quest/change_name.quest b/gamefiles/data/quest/change_name.quest similarity index 100% rename from gamefiles/locale/english/quest/change_name.quest rename to gamefiles/data/quest/change_name.quest diff --git a/gamefiles/locale/english/quest/charge_cash_by_voucher.quest b/gamefiles/data/quest/charge_cash_by_voucher.quest similarity index 100% rename from gamefiles/locale/english/quest/charge_cash_by_voucher.quest rename to gamefiles/data/quest/charge_cash_by_voucher.quest diff --git a/gamefiles/locale/english/quest/check_collect_reward.quest b/gamefiles/data/quest/check_collect_reward.quest similarity index 100% rename from gamefiles/locale/english/quest/check_collect_reward.quest rename to gamefiles/data/quest/check_collect_reward.quest diff --git a/gamefiles/locale/english/quest/check_trans_ticket.quest b/gamefiles/data/quest/check_trans_ticket.quest similarity index 100% rename from gamefiles/locale/english/quest/check_trans_ticket.quest rename to gamefiles/data/quest/check_trans_ticket.quest diff --git a/gamefiles/locale/english/quest/christmas_costume_shop_box.quest b/gamefiles/data/quest/christmas_costume_shop_box.quest similarity index 100% rename from gamefiles/locale/english/quest/christmas_costume_shop_box.quest rename to gamefiles/data/quest/christmas_costume_shop_box.quest diff --git a/gamefiles/locale/english/quest/christmas_santa.quest b/gamefiles/data/quest/christmas_santa.quest similarity index 100% rename from gamefiles/locale/english/quest/christmas_santa.quest rename to gamefiles/data/quest/christmas_santa.quest diff --git a/gamefiles/locale/english/quest/christmas_tree.quest b/gamefiles/data/quest/christmas_tree.quest similarity index 100% rename from gamefiles/locale/english/quest/christmas_tree.quest rename to gamefiles/data/quest/christmas_tree.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv10.quest b/gamefiles/data/quest/collect_herb_lv10.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv10.quest rename to gamefiles/data/quest/collect_herb_lv10.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv15.quest b/gamefiles/data/quest/collect_herb_lv15.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv15.quest rename to gamefiles/data/quest/collect_herb_lv15.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv20.quest b/gamefiles/data/quest/collect_herb_lv20.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv20.quest rename to gamefiles/data/quest/collect_herb_lv20.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv25.quest b/gamefiles/data/quest/collect_herb_lv25.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv25.quest rename to gamefiles/data/quest/collect_herb_lv25.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv4.quest b/gamefiles/data/quest/collect_herb_lv4.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv4.quest rename to gamefiles/data/quest/collect_herb_lv4.quest diff --git a/gamefiles/locale/english/quest/collect_herb_lv7.quest b/gamefiles/data/quest/collect_herb_lv7.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_herb_lv7.quest rename to gamefiles/data/quest/collect_herb_lv7.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv30.quest b/gamefiles/data/quest/collect_quest_lv30.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv30.quest rename to gamefiles/data/quest/collect_quest_lv30.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv40.quest b/gamefiles/data/quest/collect_quest_lv40.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv40.quest rename to gamefiles/data/quest/collect_quest_lv40.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv50.quest b/gamefiles/data/quest/collect_quest_lv50.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv50.quest rename to gamefiles/data/quest/collect_quest_lv50.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv60.quest b/gamefiles/data/quest/collect_quest_lv60.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv60.quest rename to gamefiles/data/quest/collect_quest_lv60.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv70.quest b/gamefiles/data/quest/collect_quest_lv70.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv70.quest rename to gamefiles/data/quest/collect_quest_lv70.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv80.quest b/gamefiles/data/quest/collect_quest_lv80.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv80.quest rename to gamefiles/data/quest/collect_quest_lv80.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv85.quest b/gamefiles/data/quest/collect_quest_lv85.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv85.quest rename to gamefiles/data/quest/collect_quest_lv85.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv90.quest b/gamefiles/data/quest/collect_quest_lv90.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv90.quest rename to gamefiles/data/quest/collect_quest_lv90.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv92.quest b/gamefiles/data/quest/collect_quest_lv92.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv92.quest rename to gamefiles/data/quest/collect_quest_lv92.quest diff --git a/gamefiles/locale/english/quest/collect_quest_lv94.quest b/gamefiles/data/quest/collect_quest_lv94.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_lv94.quest rename to gamefiles/data/quest/collect_quest_lv94.quest diff --git a/gamefiles/locale/english/quest/collect_quest_reset.quest b/gamefiles/data/quest/collect_quest_reset.quest similarity index 100% rename from gamefiles/locale/english/quest/collect_quest_reset.quest rename to gamefiles/data/quest/collect_quest_reset.quest diff --git a/gamefiles/locale/english/quest/couple_ring.quest b/gamefiles/data/quest/couple_ring.quest similarity index 100% rename from gamefiles/locale/english/quest/couple_ring.quest rename to gamefiles/data/quest/couple_ring.quest diff --git a/gamefiles/locale/english/quest/cube.quest b/gamefiles/data/quest/cube.quest similarity index 100% rename from gamefiles/locale/english/quest/cube.quest rename to gamefiles/data/quest/cube.quest diff --git a/gamefiles/locale/english/quest/cube_opener_list.quest b/gamefiles/data/quest/cube_opener_list.quest similarity index 100% rename from gamefiles/locale/english/quest/cube_opener_list.quest rename to gamefiles/data/quest/cube_opener_list.quest diff --git a/gamefiles/locale/english/quest/devilcatacomb_zone.quest b/gamefiles/data/quest/devilcatacomb_zone.quest similarity index 100% rename from gamefiles/locale/english/quest/devilcatacomb_zone.quest rename to gamefiles/data/quest/devilcatacomb_zone.quest diff --git a/gamefiles/locale/english/quest/deviltower_2.quest b/gamefiles/data/quest/deviltower_2.quest similarity index 100% rename from gamefiles/locale/english/quest/deviltower_2.quest rename to gamefiles/data/quest/deviltower_2.quest diff --git a/gamefiles/locale/english/quest/deviltower_zone.quest b/gamefiles/data/quest/deviltower_zone.quest similarity index 100% rename from gamefiles/locale/english/quest/deviltower_zone.quest rename to gamefiles/data/quest/deviltower_zone.quest diff --git a/gamefiles/locale/english/quest/dragon_lair.quest b/gamefiles/data/quest/dragon_lair.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_lair.quest rename to gamefiles/data/quest/dragon_lair.quest diff --git a/gamefiles/locale/english/quest/dragon_lair_access.quest b/gamefiles/data/quest/dragon_lair_access.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_lair_access.quest rename to gamefiles/data/quest/dragon_lair_access.quest diff --git a/gamefiles/locale/english/quest/dragon_lair_weekly.quest b/gamefiles/data/quest/dragon_lair_weekly.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_lair_weekly.quest rename to gamefiles/data/quest/dragon_lair_weekly.quest diff --git a/gamefiles/locale/english/quest/dragon_soul.quest b/gamefiles/data/quest/dragon_soul.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_soul.quest rename to gamefiles/data/quest/dragon_soul.quest diff --git a/gamefiles/locale/english/quest/dragon_soul_daily_gift.quest b/gamefiles/data/quest/dragon_soul_daily_gift.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_soul_daily_gift.quest rename to gamefiles/data/quest/dragon_soul_daily_gift.quest diff --git a/gamefiles/locale/english/quest/dragon_soul_daily_gift_mgr.quest b/gamefiles/data/quest/dragon_soul_daily_gift_mgr.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_soul_daily_gift_mgr.quest rename to gamefiles/data/quest/dragon_soul_daily_gift_mgr.quest diff --git a/gamefiles/locale/english/quest/dragon_soul_refine.quest b/gamefiles/data/quest/dragon_soul_refine.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_soul_refine.quest rename to gamefiles/data/quest/dragon_soul_refine.quest diff --git a/gamefiles/locale/english/quest/dragon_soul_shop.quest b/gamefiles/data/quest/dragon_soul_shop.quest similarity index 100% rename from gamefiles/locale/english/quest/dragon_soul_shop.quest rename to gamefiles/data/quest/dragon_soul_shop.quest diff --git a/gamefiles/locale/english/quest/energy_system.quest b/gamefiles/data/quest/energy_system.quest similarity index 100% rename from gamefiles/locale/english/quest/energy_system.quest rename to gamefiles/data/quest/energy_system.quest diff --git a/gamefiles/locale/english/quest/entry_event_map.quest b/gamefiles/data/quest/entry_event_map.quest similarity index 100% rename from gamefiles/locale/english/quest/entry_event_map.quest rename to gamefiles/data/quest/entry_event_map.quest diff --git a/gamefiles/locale/english/quest/event_easter.quest b/gamefiles/data/quest/event_easter.quest similarity index 100% rename from gamefiles/locale/english/quest/event_easter.quest rename to gamefiles/data/quest/event_easter.quest diff --git a/gamefiles/locale/english/quest/event_easter_2012.quest b/gamefiles/data/quest/event_easter_2012.quest similarity index 100% rename from gamefiles/locale/english/quest/event_easter_2012.quest rename to gamefiles/data/quest/event_easter_2012.quest diff --git a/gamefiles/locale/english/quest/event_easter_2013.quest b/gamefiles/data/quest/event_easter_2013.quest similarity index 100% rename from gamefiles/locale/english/quest/event_easter_2013.quest rename to gamefiles/data/quest/event_easter_2013.quest diff --git a/gamefiles/locale/english/quest/event_flame_dungeon_open.quest b/gamefiles/data/quest/event_flame_dungeon_open.quest similarity index 100% rename from gamefiles/locale/english/quest/event_flame_dungeon_open.quest rename to gamefiles/data/quest/event_flame_dungeon_open.quest diff --git a/gamefiles/locale/english/quest/event_halloween_hair.quest b/gamefiles/data/quest/event_halloween_hair.quest similarity index 100% rename from gamefiles/locale/english/quest/event_halloween_hair.quest rename to gamefiles/data/quest/event_halloween_hair.quest diff --git a/gamefiles/locale/english/quest/event_mob_invasion.quest b/gamefiles/data/quest/event_mob_invasion.quest similarity index 100% rename from gamefiles/locale/english/quest/event_mob_invasion.quest rename to gamefiles/data/quest/event_mob_invasion.quest diff --git a/gamefiles/locale/english/quest/event_mystery_box.quest b/gamefiles/data/quest/event_mystery_box.quest similarity index 100% rename from gamefiles/locale/english/quest/event_mystery_box.quest rename to gamefiles/data/quest/event_mystery_box.quest diff --git a/gamefiles/locale/english/quest/event_ramadan.quest b/gamefiles/data/quest/event_ramadan.quest similarity index 100% rename from gamefiles/locale/english/quest/event_ramadan.quest rename to gamefiles/data/quest/event_ramadan.quest diff --git a/gamefiles/locale/english/quest/extractKeys.sh b/gamefiles/data/quest/extractKeys.sh similarity index 100% rename from gamefiles/locale/english/quest/extractKeys.sh rename to gamefiles/data/quest/extractKeys.sh diff --git a/gamefiles/locale/english/quest/find_brother_article.quest b/gamefiles/data/quest/find_brother_article.quest similarity index 100% rename from gamefiles/locale/english/quest/find_brother_article.quest rename to gamefiles/data/quest/find_brother_article.quest diff --git a/gamefiles/locale/english/quest/find_senior_soldier.quest b/gamefiles/data/quest/find_senior_soldier.quest similarity index 100% rename from gamefiles/locale/english/quest/find_senior_soldier.quest rename to gamefiles/data/quest/find_senior_soldier.quest diff --git a/gamefiles/locale/english/quest/find_squareguard.quest b/gamefiles/data/quest/find_squareguard.quest similarity index 100% rename from gamefiles/locale/english/quest/find_squareguard.quest rename to gamefiles/data/quest/find_squareguard.quest diff --git a/gamefiles/locale/english/quest/fisher.quest b/gamefiles/data/quest/fisher.quest similarity index 100% rename from gamefiles/locale/english/quest/fisher.quest rename to gamefiles/data/quest/fisher.quest diff --git a/gamefiles/locale/english/quest/flame_dungeon.quest b/gamefiles/data/quest/flame_dungeon.quest similarity index 100% rename from gamefiles/locale/english/quest/flame_dungeon.quest rename to gamefiles/data/quest/flame_dungeon.quest diff --git a/gamefiles/locale/english/quest/forked_road.quest b/gamefiles/data/quest/forked_road.quest similarity index 100% rename from gamefiles/locale/english/quest/forked_road.quest rename to gamefiles/data/quest/forked_road.quest diff --git a/gamefiles/locale/english/quest/fortune_telling.quest b/gamefiles/data/quest/fortune_telling.quest similarity index 100% rename from gamefiles/locale/english/quest/fortune_telling.quest rename to gamefiles/data/quest/fortune_telling.quest diff --git a/gamefiles/locale/english/quest/game_option.quest b/gamefiles/data/quest/game_option.quest similarity index 100% rename from gamefiles/locale/english/quest/game_option.quest rename to gamefiles/data/quest/game_option.quest diff --git a/gamefiles/locale/english/quest/ghost_story.quest b/gamefiles/data/quest/ghost_story.quest similarity index 100% rename from gamefiles/locale/english/quest/ghost_story.quest rename to gamefiles/data/quest/ghost_story.quest diff --git a/gamefiles/locale/english/quest/give_basic_weapon.quest b/gamefiles/data/quest/give_basic_weapon.quest similarity index 100% rename from gamefiles/locale/english/quest/give_basic_weapon.quest rename to gamefiles/data/quest/give_basic_weapon.quest diff --git a/gamefiles/locale/english/quest/give_basic_weapon_new.quest b/gamefiles/data/quest/give_basic_weapon_new.quest similarity index 100% rename from gamefiles/locale/english/quest/give_basic_weapon_new.quest rename to gamefiles/data/quest/give_basic_weapon_new.quest diff --git a/gamefiles/locale/english/quest/goldbar.quest b/gamefiles/data/quest/goldbar.quest similarity index 100% rename from gamefiles/locale/english/quest/goldbar.quest rename to gamefiles/data/quest/goldbar.quest diff --git a/gamefiles/locale/english/quest/goto_empire_castle.quest b/gamefiles/data/quest/goto_empire_castle.quest similarity index 100% rename from gamefiles/locale/english/quest/goto_empire_castle.quest rename to gamefiles/data/quest/goto_empire_castle.quest diff --git a/gamefiles/locale/english/quest/guild_building.quest b/gamefiles/data/quest/guild_building.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_building.quest rename to gamefiles/data/quest/guild_building.quest diff --git a/gamefiles/locale/english/quest/guild_building_alter_of_power.quest b/gamefiles/data/quest/guild_building_alter_of_power.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_building_alter_of_power.quest rename to gamefiles/data/quest/guild_building_alter_of_power.quest diff --git a/gamefiles/locale/english/quest/guild_building_melt.quest b/gamefiles/data/quest/guild_building_melt.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_building_melt.quest rename to gamefiles/data/quest/guild_building_melt.quest diff --git a/gamefiles/locale/english/quest/guild_building_npc.quest b/gamefiles/data/quest/guild_building_npc.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_building_npc.quest rename to gamefiles/data/quest/guild_building_npc.quest diff --git a/gamefiles/locale/english/quest/guild_create.quest b/gamefiles/data/quest/guild_create.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_create.quest rename to gamefiles/data/quest/guild_create.quest diff --git a/gamefiles/locale/english/quest/guild_manage.quest b/gamefiles/data/quest/guild_manage.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_manage.quest rename to gamefiles/data/quest/guild_manage.quest diff --git a/gamefiles/locale/english/quest/guild_ranking.quest b/gamefiles/data/quest/guild_ranking.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_ranking.quest rename to gamefiles/data/quest/guild_ranking.quest diff --git a/gamefiles/locale/english/quest/guild_war_bet.quest b/gamefiles/data/quest/guild_war_bet.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_war_bet.quest rename to gamefiles/data/quest/guild_war_bet.quest diff --git a/gamefiles/locale/english/quest/guild_war_join.quest b/gamefiles/data/quest/guild_war_join.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_war_join.quest rename to gamefiles/data/quest/guild_war_join.quest diff --git a/gamefiles/locale/english/quest/guild_war_observer.quest b/gamefiles/data/quest/guild_war_observer.quest similarity index 100% rename from gamefiles/locale/english/quest/guild_war_observer.quest rename to gamefiles/data/quest/guild_war_observer.quest diff --git a/gamefiles/locale/english/quest/hair.quest b/gamefiles/data/quest/hair.quest similarity index 100% rename from gamefiles/locale/english/quest/hair.quest rename to gamefiles/data/quest/hair.quest diff --git a/gamefiles/locale/english/quest/hair_shop.quest b/gamefiles/data/quest/hair_shop.quest similarity index 100% rename from gamefiles/locale/english/quest/hair_shop.quest rename to gamefiles/data/quest/hair_shop.quest diff --git a/gamefiles/locale/english/quest/harvest_festival.quest b/gamefiles/data/quest/harvest_festival.quest similarity index 100% rename from gamefiles/locale/english/quest/harvest_festival.quest rename to gamefiles/data/quest/harvest_festival.quest diff --git a/gamefiles/locale/english/quest/harvest_festival.quest.1 b/gamefiles/data/quest/harvest_festival.quest.1 similarity index 100% rename from gamefiles/locale/english/quest/harvest_festival.quest.1 rename to gamefiles/data/quest/harvest_festival.quest.1 diff --git a/gamefiles/locale/english/quest/harvest_festival.quest.2 b/gamefiles/data/quest/harvest_festival.quest.2 similarity index 100% rename from gamefiles/locale/english/quest/harvest_festival.quest.2 rename to gamefiles/data/quest/harvest_festival.quest.2 diff --git a/gamefiles/locale/english/quest/heavens_cave_escape.quest b/gamefiles/data/quest/heavens_cave_escape.quest similarity index 100% rename from gamefiles/locale/english/quest/heavens_cave_escape.quest rename to gamefiles/data/quest/heavens_cave_escape.quest diff --git a/gamefiles/locale/english/quest/heavens_cave_keyquest.quest b/gamefiles/data/quest/heavens_cave_keyquest.quest similarity index 100% rename from gamefiles/locale/english/quest/heavens_cave_keyquest.quest rename to gamefiles/data/quest/heavens_cave_keyquest.quest diff --git a/gamefiles/locale/english/quest/horse_exchange_ticket.quest b/gamefiles/data/quest/horse_exchange_ticket.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_exchange_ticket.quest rename to gamefiles/data/quest/horse_exchange_ticket.quest diff --git a/gamefiles/locale/english/quest/horse_guard.quest b/gamefiles/data/quest/horse_guard.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_guard.quest rename to gamefiles/data/quest/horse_guard.quest diff --git a/gamefiles/locale/english/quest/horse_levelup.quest b/gamefiles/data/quest/horse_levelup.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_levelup.quest rename to gamefiles/data/quest/horse_levelup.quest diff --git a/gamefiles/locale/english/quest/horse_menu.quest b/gamefiles/data/quest/horse_menu.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_menu.quest rename to gamefiles/data/quest/horse_menu.quest diff --git a/gamefiles/locale/english/quest/horse_revive.quest b/gamefiles/data/quest/horse_revive.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_revive.quest rename to gamefiles/data/quest/horse_revive.quest diff --git a/gamefiles/locale/english/quest/horse_ride.quest b/gamefiles/data/quest/horse_ride.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_ride.quest rename to gamefiles/data/quest/horse_ride.quest diff --git a/gamefiles/locale/english/quest/horse_summon.quest b/gamefiles/data/quest/horse_summon.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_summon.quest rename to gamefiles/data/quest/horse_summon.quest diff --git a/gamefiles/locale/english/quest/horse_upgrade.quest b/gamefiles/data/quest/horse_upgrade.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_upgrade.quest rename to gamefiles/data/quest/horse_upgrade.quest diff --git a/gamefiles/locale/english/quest/horse_upgrade2.quest b/gamefiles/data/quest/horse_upgrade2.quest similarity index 100% rename from gamefiles/locale/english/quest/horse_upgrade2.quest rename to gamefiles/data/quest/horse_upgrade2.quest diff --git a/gamefiles/locale/english/quest/ingame_message.quest b/gamefiles/data/quest/ingame_message.quest similarity index 100% rename from gamefiles/locale/english/quest/ingame_message.quest rename to gamefiles/data/quest/ingame_message.quest diff --git a/gamefiles/locale/english/quest/is_yang.quest b/gamefiles/data/quest/is_yang.quest similarity index 100% rename from gamefiles/locale/english/quest/is_yang.quest rename to gamefiles/data/quest/is_yang.quest diff --git a/gamefiles/locale/english/quest/item_change_sex.quest b/gamefiles/data/quest/item_change_sex.quest similarity index 100% rename from gamefiles/locale/english/quest/item_change_sex.quest rename to gamefiles/data/quest/item_change_sex.quest diff --git a/gamefiles/locale/english/quest/item_delete.quest b/gamefiles/data/quest/item_delete.quest similarity index 100% rename from gamefiles/locale/english/quest/item_delete.quest rename to gamefiles/data/quest/item_delete.quest diff --git a/gamefiles/locale/english/quest/item_mall.quest b/gamefiles/data/quest/item_mall.quest similarity index 100% rename from gamefiles/locale/english/quest/item_mall.quest rename to gamefiles/data/quest/item_mall.quest diff --git a/gamefiles/locale/english/quest/knut_shop_box.quest b/gamefiles/data/quest/knut_shop_box.quest similarity index 100% rename from gamefiles/locale/english/quest/knut_shop_box.quest rename to gamefiles/data/quest/knut_shop_box.quest diff --git a/gamefiles/locale/english/quest/levelup.quest b/gamefiles/data/quest/levelup.quest similarity index 100% rename from gamefiles/locale/english/quest/levelup.quest rename to gamefiles/data/quest/levelup.quest diff --git a/gamefiles/locale/english/quest/locale.lua b/gamefiles/data/quest/locale.lua similarity index 100% rename from gamefiles/locale/english/quest/locale.lua rename to gamefiles/data/quest/locale.lua diff --git a/gamefiles/locale/english/quest/locale_list b/gamefiles/data/quest/locale_list similarity index 100% rename from gamefiles/locale/english/quest/locale_list rename to gamefiles/data/quest/locale_list diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv100.quest b/gamefiles/data/quest/main_quest_flame_lv100.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv100.quest rename to gamefiles/data/quest/main_quest_flame_lv100.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv101.quest b/gamefiles/data/quest/main_quest_flame_lv101.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv101.quest rename to gamefiles/data/quest/main_quest_flame_lv101.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv102.quest b/gamefiles/data/quest/main_quest_flame_lv102.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv102.quest rename to gamefiles/data/quest/main_quest_flame_lv102.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv103.quest b/gamefiles/data/quest/main_quest_flame_lv103.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv103.quest rename to gamefiles/data/quest/main_quest_flame_lv103.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv104.quest b/gamefiles/data/quest/main_quest_flame_lv104.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv104.quest rename to gamefiles/data/quest/main_quest_flame_lv104.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv105.quest b/gamefiles/data/quest/main_quest_flame_lv105.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv105.quest rename to gamefiles/data/quest/main_quest_flame_lv105.quest diff --git a/gamefiles/locale/english/quest/main_quest_flame_lv99.quest b/gamefiles/data/quest/main_quest_flame_lv99.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_flame_lv99.quest rename to gamefiles/data/quest/main_quest_flame_lv99.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv1.quest b/gamefiles/data/quest/main_quest_lv1.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv1.quest rename to gamefiles/data/quest/main_quest_lv1.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv10.quest b/gamefiles/data/quest/main_quest_lv10.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv10.quest rename to gamefiles/data/quest/main_quest_lv10.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv12.quest b/gamefiles/data/quest/main_quest_lv12.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv12.quest rename to gamefiles/data/quest/main_quest_lv12.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv14.quest b/gamefiles/data/quest/main_quest_lv14.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv14.quest rename to gamefiles/data/quest/main_quest_lv14.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv15.quest b/gamefiles/data/quest/main_quest_lv15.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv15.quest rename to gamefiles/data/quest/main_quest_lv15.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv16.quest b/gamefiles/data/quest/main_quest_lv16.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv16.quest rename to gamefiles/data/quest/main_quest_lv16.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv2.quest b/gamefiles/data/quest/main_quest_lv2.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv2.quest rename to gamefiles/data/quest/main_quest_lv2.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv27.quest b/gamefiles/data/quest/main_quest_lv27.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv27.quest rename to gamefiles/data/quest/main_quest_lv27.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv3.quest b/gamefiles/data/quest/main_quest_lv3.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv3.quest rename to gamefiles/data/quest/main_quest_lv3.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv30.quest b/gamefiles/data/quest/main_quest_lv30.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv30.quest rename to gamefiles/data/quest/main_quest_lv30.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv32.quest b/gamefiles/data/quest/main_quest_lv32.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv32.quest rename to gamefiles/data/quest/main_quest_lv32.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv40.quest b/gamefiles/data/quest/main_quest_lv40.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv40.quest rename to gamefiles/data/quest/main_quest_lv40.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv47.quest b/gamefiles/data/quest/main_quest_lv47.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv47.quest rename to gamefiles/data/quest/main_quest_lv47.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv50.quest b/gamefiles/data/quest/main_quest_lv50.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv50.quest rename to gamefiles/data/quest/main_quest_lv50.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv55.quest b/gamefiles/data/quest/main_quest_lv55.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv55.quest rename to gamefiles/data/quest/main_quest_lv55.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv6.quest b/gamefiles/data/quest/main_quest_lv6.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv6.quest rename to gamefiles/data/quest/main_quest_lv6.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv60.quest b/gamefiles/data/quest/main_quest_lv60.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv60.quest rename to gamefiles/data/quest/main_quest_lv60.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv66.quest b/gamefiles/data/quest/main_quest_lv66.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv66.quest rename to gamefiles/data/quest/main_quest_lv66.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv7.quest b/gamefiles/data/quest/main_quest_lv7.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv7.quest rename to gamefiles/data/quest/main_quest_lv7.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv72.quest b/gamefiles/data/quest/main_quest_lv72.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv72.quest rename to gamefiles/data/quest/main_quest_lv72.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv78.quest b/gamefiles/data/quest/main_quest_lv78.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv78.quest rename to gamefiles/data/quest/main_quest_lv78.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv84.quest b/gamefiles/data/quest/main_quest_lv84.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv84.quest rename to gamefiles/data/quest/main_quest_lv84.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv9.quest b/gamefiles/data/quest/main_quest_lv9.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv9.quest rename to gamefiles/data/quest/main_quest_lv9.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv90.quest b/gamefiles/data/quest/main_quest_lv90.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv90.quest rename to gamefiles/data/quest/main_quest_lv90.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv91.quest b/gamefiles/data/quest/main_quest_lv91.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv91.quest rename to gamefiles/data/quest/main_quest_lv91.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv92.quest b/gamefiles/data/quest/main_quest_lv92.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv92.quest rename to gamefiles/data/quest/main_quest_lv92.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv93.quest b/gamefiles/data/quest/main_quest_lv93.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv93.quest rename to gamefiles/data/quest/main_quest_lv93.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv94.quest b/gamefiles/data/quest/main_quest_lv94.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv94.quest rename to gamefiles/data/quest/main_quest_lv94.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv95.quest b/gamefiles/data/quest/main_quest_lv95.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv95.quest rename to gamefiles/data/quest/main_quest_lv95.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv96.quest b/gamefiles/data/quest/main_quest_lv96.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv96.quest rename to gamefiles/data/quest/main_quest_lv96.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv97.quest b/gamefiles/data/quest/main_quest_lv97.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv97.quest rename to gamefiles/data/quest/main_quest_lv97.quest diff --git a/gamefiles/locale/english/quest/main_quest_lv98.quest b/gamefiles/data/quest/main_quest_lv98.quest similarity index 100% rename from gamefiles/locale/english/quest/main_quest_lv98.quest rename to gamefiles/data/quest/main_quest_lv98.quest diff --git a/gamefiles/locale/english/quest/make.py b/gamefiles/data/quest/make.py similarity index 100% rename from gamefiles/locale/english/quest/make.py rename to gamefiles/data/quest/make.py diff --git a/gamefiles/locale/english/quest/make_wonso.quest b/gamefiles/data/quest/make_wonso.quest similarity index 100% rename from gamefiles/locale/english/quest/make_wonso.quest rename to gamefiles/data/quest/make_wonso.quest diff --git a/gamefiles/locale/english/quest/manwoo.quest b/gamefiles/data/quest/manwoo.quest similarity index 100% rename from gamefiles/locale/english/quest/manwoo.quest rename to gamefiles/data/quest/manwoo.quest diff --git a/gamefiles/locale/english/quest/map_warp.quest b/gamefiles/data/quest/map_warp.quest similarity index 100% rename from gamefiles/locale/english/quest/map_warp.quest rename to gamefiles/data/quest/map_warp.quest diff --git a/gamefiles/locale/english/quest/marriage_manage.quest b/gamefiles/data/quest/marriage_manage.quest similarity index 100% rename from gamefiles/locale/english/quest/marriage_manage.quest rename to gamefiles/data/quest/marriage_manage.quest diff --git a/gamefiles/locale/english/quest/mining.quest b/gamefiles/data/quest/mining.quest similarity index 100% rename from gamefiles/locale/english/quest/mining.quest rename to gamefiles/data/quest/mining.quest diff --git a/gamefiles/locale/english/quest/mount_catcher.quest b/gamefiles/data/quest/mount_catcher.quest similarity index 100% rename from gamefiles/locale/english/quest/mount_catcher.quest rename to gamefiles/data/quest/mount_catcher.quest diff --git a/gamefiles/locale/english/quest/mount_prolongation.quest b/gamefiles/data/quest/mount_prolongation.quest similarity index 100% rename from gamefiles/locale/english/quest/mount_prolongation.quest rename to gamefiles/data/quest/mount_prolongation.quest diff --git a/gamefiles/locale/english/quest/mystery_key.quest b/gamefiles/data/quest/mystery_key.quest similarity index 100% rename from gamefiles/locale/english/quest/mystery_key.quest rename to gamefiles/data/quest/mystery_key.quest diff --git a/gamefiles/locale/english/quest/neutral_warp.quest b/gamefiles/data/quest/neutral_warp.quest similarity index 100% rename from gamefiles/locale/english/quest/neutral_warp.quest rename to gamefiles/data/quest/neutral_warp.quest diff --git a/gamefiles/locale/english/quest/new_christmas.quest b/gamefiles/data/quest/new_christmas.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas.quest rename to gamefiles/data/quest/new_christmas.quest diff --git a/gamefiles/locale/english/quest/new_christmas_2012.quest b/gamefiles/data/quest/new_christmas_2012.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_2012.quest rename to gamefiles/data/quest/new_christmas_2012.quest diff --git a/gamefiles/locale/english/quest/new_christmas_2012_gift_box.quest b/gamefiles/data/quest/new_christmas_2012_gift_box.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_2012_gift_box.quest rename to gamefiles/data/quest/new_christmas_2012_gift_box.quest diff --git a/gamefiles/locale/english/quest/new_christmas_2012_nog.quest b/gamefiles/data/quest/new_christmas_2012_nog.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_2012_nog.quest rename to gamefiles/data/quest/new_christmas_2012_nog.quest diff --git a/gamefiles/locale/english/quest/new_christmas_2012_sock.quest b/gamefiles/data/quest/new_christmas_2012_sock.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_2012_sock.quest rename to gamefiles/data/quest/new_christmas_2012_sock.quest diff --git a/gamefiles/locale/english/quest/new_christmas_gift_box.quest b/gamefiles/data/quest/new_christmas_gift_box.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_gift_box.quest rename to gamefiles/data/quest/new_christmas_gift_box.quest diff --git a/gamefiles/locale/english/quest/new_christmas_nog.quest b/gamefiles/data/quest/new_christmas_nog.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_nog.quest rename to gamefiles/data/quest/new_christmas_nog.quest diff --git a/gamefiles/locale/english/quest/new_christmas_sock.quest b/gamefiles/data/quest/new_christmas_sock.quest similarity index 100% rename from gamefiles/locale/english/quest/new_christmas_sock.quest rename to gamefiles/data/quest/new_christmas_sock.quest diff --git a/gamefiles/locale/english/quest/new_easter_gift_box.quest b/gamefiles/data/quest/new_easter_gift_box.quest similarity index 100% rename from gamefiles/locale/english/quest/new_easter_gift_box.quest rename to gamefiles/data/quest/new_easter_gift_box.quest diff --git a/gamefiles/locale/english/quest/new_easter_gift_box_gf.quest b/gamefiles/data/quest/new_easter_gift_box_gf.quest similarity index 100% rename from gamefiles/locale/english/quest/new_easter_gift_box_gf.quest rename to gamefiles/data/quest/new_easter_gift_box_gf.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv17.quest b/gamefiles/data/quest/new_quest_lv17.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv17.quest rename to gamefiles/data/quest/new_quest_lv17.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv22.quest b/gamefiles/data/quest/new_quest_lv22.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv22.quest rename to gamefiles/data/quest/new_quest_lv22.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv26.quest b/gamefiles/data/quest/new_quest_lv26.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv26.quest rename to gamefiles/data/quest/new_quest_lv26.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv28.quest b/gamefiles/data/quest/new_quest_lv28.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv28.quest rename to gamefiles/data/quest/new_quest_lv28.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv29.quest b/gamefiles/data/quest/new_quest_lv29.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv29.quest rename to gamefiles/data/quest/new_quest_lv29.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv42.quest b/gamefiles/data/quest/new_quest_lv42.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv42.quest rename to gamefiles/data/quest/new_quest_lv42.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv43.quest b/gamefiles/data/quest/new_quest_lv43.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv43.quest rename to gamefiles/data/quest/new_quest_lv43.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv52.quest b/gamefiles/data/quest/new_quest_lv52.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv52.quest rename to gamefiles/data/quest/new_quest_lv52.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv54.quest b/gamefiles/data/quest/new_quest_lv54.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv54.quest rename to gamefiles/data/quest/new_quest_lv54.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv7.quest b/gamefiles/data/quest/new_quest_lv7.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv7.quest rename to gamefiles/data/quest/new_quest_lv7.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv75.quest b/gamefiles/data/quest/new_quest_lv75.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv75.quest rename to gamefiles/data/quest/new_quest_lv75.quest diff --git a/gamefiles/locale/english/quest/new_quest_lv80.quest b/gamefiles/data/quest/new_quest_lv80.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_lv80.quest rename to gamefiles/data/quest/new_quest_lv80.quest diff --git a/gamefiles/locale/english/quest/new_quest_premium_lv4.quest b/gamefiles/data/quest/new_quest_premium_lv4.quest similarity index 100% rename from gamefiles/locale/english/quest/new_quest_premium_lv4.quest rename to gamefiles/data/quest/new_quest_premium_lv4.quest diff --git a/gamefiles/locale/english/quest/new_valentine_day_gift_box.quest b/gamefiles/data/quest/new_valentine_day_gift_box.quest similarity index 100% rename from gamefiles/locale/english/quest/new_valentine_day_gift_box.quest rename to gamefiles/data/quest/new_valentine_day_gift_box.quest diff --git a/gamefiles/locale/english/quest/notify_test_server.quest b/gamefiles/data/quest/notify_test_server.quest similarity index 100% rename from gamefiles/locale/english/quest/notify_test_server.quest rename to gamefiles/data/quest/notify_test_server.quest diff --git a/gamefiles/locale/english/quest/npc_talk.quest b/gamefiles/data/quest/npc_talk.quest similarity index 100% rename from gamefiles/locale/english/quest/npc_talk.quest rename to gamefiles/data/quest/npc_talk.quest diff --git a/gamefiles/locale/english/quest/olympic_badge.quest b/gamefiles/data/quest/olympic_badge.quest similarity index 100% rename from gamefiles/locale/english/quest/olympic_badge.quest rename to gamefiles/data/quest/olympic_badge.quest diff --git a/gamefiles/locale/english/quest/olympic_event_box.quest b/gamefiles/data/quest/olympic_event_box.quest similarity index 100% rename from gamefiles/locale/english/quest/olympic_event_box.quest rename to gamefiles/data/quest/olympic_event_box.quest diff --git a/gamefiles/locale/english/quest/oxevent.quest b/gamefiles/data/quest/oxevent.quest similarity index 100% rename from gamefiles/locale/english/quest/oxevent.quest rename to gamefiles/data/quest/oxevent.quest diff --git a/gamefiles/locale/english/quest/patrol_townaround.quest b/gamefiles/data/quest/patrol_townaround.quest similarity index 100% rename from gamefiles/locale/english/quest/patrol_townaround.quest rename to gamefiles/data/quest/patrol_townaround.quest diff --git a/gamefiles/locale/english/quest/penetration.quest b/gamefiles/data/quest/penetration.quest similarity index 100% rename from gamefiles/locale/english/quest/penetration.quest rename to gamefiles/data/quest/penetration.quest diff --git a/gamefiles/locale/english/quest/pet_system.quest b/gamefiles/data/quest/pet_system.quest similarity index 100% rename from gamefiles/locale/english/quest/pet_system.quest rename to gamefiles/data/quest/pet_system.quest diff --git a/gamefiles/locale/english/quest/polymarble_test.quest b/gamefiles/data/quest/polymarble_test.quest similarity index 100% rename from gamefiles/locale/english/quest/polymarble_test.quest rename to gamefiles/data/quest/polymarble_test.quest diff --git a/gamefiles/locale/english/quest/pony_buy.quest b/gamefiles/data/quest/pony_buy.quest similarity index 100% rename from gamefiles/locale/english/quest/pony_buy.quest rename to gamefiles/data/quest/pony_buy.quest diff --git a/gamefiles/locale/english/quest/pony_levelup.quest b/gamefiles/data/quest/pony_levelup.quest similarity index 100% rename from gamefiles/locale/english/quest/pony_levelup.quest rename to gamefiles/data/quest/pony_levelup.quest diff --git a/gamefiles/locale/english/quest/pre_event_heavens_cave.quest b/gamefiles/data/quest/pre_event_heavens_cave.quest similarity index 100% rename from gamefiles/locale/english/quest/pre_event_heavens_cave.quest rename to gamefiles/data/quest/pre_event_heavens_cave.quest diff --git a/gamefiles/locale/english/quest/pre_qc.py b/gamefiles/data/quest/pre_qc.py similarity index 100% rename from gamefiles/locale/english/quest/pre_qc.py rename to gamefiles/data/quest/pre_qc.py diff --git a/gamefiles/locale/english/quest/pricing_lv12.quest b/gamefiles/data/quest/pricing_lv12.quest similarity index 100% rename from gamefiles/locale/english/quest/pricing_lv12.quest rename to gamefiles/data/quest/pricing_lv12.quest diff --git a/gamefiles/locale/english/quest/pricing_lv3.quest b/gamefiles/data/quest/pricing_lv3.quest similarity index 100% rename from gamefiles/locale/english/quest/pricing_lv3.quest rename to gamefiles/data/quest/pricing_lv3.quest diff --git a/gamefiles/locale/english/quest/pricing_lv40.quest b/gamefiles/data/quest/pricing_lv40.quest similarity index 100% rename from gamefiles/locale/english/quest/pricing_lv40.quest rename to gamefiles/data/quest/pricing_lv40.quest diff --git a/gamefiles/locale/english/quest/pricing_lv9.quest b/gamefiles/data/quest/pricing_lv9.quest similarity index 100% rename from gamefiles/locale/english/quest/pricing_lv9.quest rename to gamefiles/data/quest/pricing_lv9.quest diff --git a/gamefiles/locale/english/quest/priv_empire.quest b/gamefiles/data/quest/priv_empire.quest similarity index 100% rename from gamefiles/locale/english/quest/priv_empire.quest rename to gamefiles/data/quest/priv_empire.quest diff --git a/gamefiles/locale/english/quest/prototype_challenge.quest b/gamefiles/data/quest/prototype_challenge.quest similarity index 100% rename from gamefiles/locale/english/quest/prototype_challenge.quest rename to gamefiles/data/quest/prototype_challenge.quest diff --git a/gamefiles/locale/english/quest/prototype_training_fight.quest b/gamefiles/data/quest/prototype_training_fight.quest similarity index 100% rename from gamefiles/locale/english/quest/prototype_training_fight.quest rename to gamefiles/data/quest/prototype_training_fight.quest diff --git a/gamefiles/locale/english/quest/purge_test.quest b/gamefiles/data/quest/purge_test.quest similarity index 100% rename from gamefiles/locale/english/quest/purge_test.quest rename to gamefiles/data/quest/purge_test.quest diff --git a/gamefiles/locale/english/quest/quest_functions b/gamefiles/data/quest/quest_functions similarity index 100% rename from gamefiles/locale/english/quest/quest_functions rename to gamefiles/data/quest/quest_functions diff --git a/gamefiles/locale/english/quest/questing.lua b/gamefiles/data/quest/questing.lua similarity index 100% rename from gamefiles/locale/english/quest/questing.lua rename to gamefiles/data/quest/questing.lua diff --git a/gamefiles/locale/english/quest/questlib.lua b/gamefiles/data/quest/questlib.lua similarity index 100% rename from gamefiles/locale/english/quest/questlib.lua rename to gamefiles/data/quest/questlib.lua diff --git a/gamefiles/locale/english/quest/questnpc.txt b/gamefiles/data/quest/questnpc.txt similarity index 100% rename from gamefiles/locale/english/quest/questnpc.txt rename to gamefiles/data/quest/questnpc.txt diff --git a/gamefiles/locale/english/quest/questscroll1.quest b/gamefiles/data/quest/questscroll1.quest similarity index 100% rename from gamefiles/locale/english/quest/questscroll1.quest rename to gamefiles/data/quest/questscroll1.quest diff --git a/gamefiles/locale/english/quest/questscroll2.quest b/gamefiles/data/quest/questscroll2.quest similarity index 100% rename from gamefiles/locale/english/quest/questscroll2.quest rename to gamefiles/data/quest/questscroll2.quest diff --git a/gamefiles/locale/english/quest/questscroll3.quest b/gamefiles/data/quest/questscroll3.quest similarity index 100% rename from gamefiles/locale/english/quest/questscroll3.quest rename to gamefiles/data/quest/questscroll3.quest diff --git a/gamefiles/locale/english/quest/questscroll4.quest b/gamefiles/data/quest/questscroll4.quest similarity index 100% rename from gamefiles/locale/english/quest/questscroll4.quest rename to gamefiles/data/quest/questscroll4.quest diff --git a/gamefiles/locale/english/quest/questscroll5.quest b/gamefiles/data/quest/questscroll5.quest similarity index 100% rename from gamefiles/locale/english/quest/questscroll5.quest rename to gamefiles/data/quest/questscroll5.quest diff --git a/gamefiles/locale/english/quest/reset_scroll.quest b/gamefiles/data/quest/reset_scroll.quest similarity index 100% rename from gamefiles/locale/english/quest/reset_scroll.quest rename to gamefiles/data/quest/reset_scroll.quest diff --git a/gamefiles/locale/english/quest/reset_status.quest b/gamefiles/data/quest/reset_status.quest similarity index 100% rename from gamefiles/locale/english/quest/reset_status.quest rename to gamefiles/data/quest/reset_status.quest diff --git a/gamefiles/locale/english/quest/ride.quest b/gamefiles/data/quest/ride.quest similarity index 100% rename from gamefiles/locale/english/quest/ride.quest rename to gamefiles/data/quest/ride.quest diff --git a/gamefiles/locale/english/quest/ride_halloween.quest b/gamefiles/data/quest/ride_halloween.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_halloween.quest rename to gamefiles/data/quest/ride_halloween.quest diff --git a/gamefiles/locale/english/quest/ride_mount_change.quest b/gamefiles/data/quest/ride_mount_change.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_mount_change.quest rename to gamefiles/data/quest/ride_mount_change.quest diff --git a/gamefiles/locale/english/quest/ride_mystery_boxes.quest b/gamefiles/data/quest/ride_mystery_boxes.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_mystery_boxes.quest rename to gamefiles/data/quest/ride_mystery_boxes.quest diff --git a/gamefiles/locale/english/quest/ride_ramadan.quest b/gamefiles/data/quest/ride_ramadan.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_ramadan.quest rename to gamefiles/data/quest/ride_ramadan.quest diff --git a/gamefiles/locale/english/quest/ride_ticket_change.quest b/gamefiles/data/quest/ride_ticket_change.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_ticket_change.quest rename to gamefiles/data/quest/ride_ticket_change.quest diff --git a/gamefiles/locale/english/quest/ride_upgradable.quest b/gamefiles/data/quest/ride_upgradable.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_upgradable.quest rename to gamefiles/data/quest/ride_upgradable.quest diff --git a/gamefiles/locale/english/quest/ride_xmas.quest b/gamefiles/data/quest/ride_xmas.quest similarity index 100% rename from gamefiles/locale/english/quest/ride_xmas.quest rename to gamefiles/data/quest/ride_xmas.quest diff --git a/gamefiles/locale/english/quest/ring_warp.quest b/gamefiles/data/quest/ring_warp.quest similarity index 100% rename from gamefiles/locale/english/quest/ring_warp.quest rename to gamefiles/data/quest/ring_warp.quest diff --git a/gamefiles/locale/english/quest/setstate_test.quest b/gamefiles/data/quest/setstate_test.quest similarity index 100% rename from gamefiles/locale/english/quest/setstate_test.quest rename to gamefiles/data/quest/setstate_test.quest diff --git a/gamefiles/locale/english/quest/shop_reminder.quest b/gamefiles/data/quest/shop_reminder.quest similarity index 100% rename from gamefiles/locale/english/quest/shop_reminder.quest rename to gamefiles/data/quest/shop_reminder.quest diff --git a/gamefiles/locale/english/quest/shop_ride.quest b/gamefiles/data/quest/shop_ride.quest similarity index 100% rename from gamefiles/locale/english/quest/shop_ride.quest rename to gamefiles/data/quest/shop_ride.quest diff --git a/gamefiles/locale/english/quest/skill_group.quest b/gamefiles/data/quest/skill_group.quest similarity index 100% rename from gamefiles/locale/english/quest/skill_group.quest rename to gamefiles/data/quest/skill_group.quest diff --git a/gamefiles/locale/english/quest/skill_reset2.quest b/gamefiles/data/quest/skill_reset2.quest similarity index 100% rename from gamefiles/locale/english/quest/skill_reset2.quest rename to gamefiles/data/quest/skill_reset2.quest diff --git a/gamefiles/locale/english/quest/spider_dungeon_2floor.quest b/gamefiles/data/quest/spider_dungeon_2floor.quest similarity index 100% rename from gamefiles/locale/english/quest/spider_dungeon_2floor.quest rename to gamefiles/data/quest/spider_dungeon_2floor.quest diff --git a/gamefiles/locale/english/quest/spider_dungeon_3floor_boss.quest b/gamefiles/data/quest/spider_dungeon_3floor_boss.quest similarity index 100% rename from gamefiles/locale/english/quest/spider_dungeon_3floor_boss.quest rename to gamefiles/data/quest/spider_dungeon_3floor_boss.quest diff --git a/gamefiles/locale/english/quest/spider_dungeon_3floor_boss.quest.lua b/gamefiles/data/quest/spider_dungeon_3floor_boss.quest.lua similarity index 100% rename from gamefiles/locale/english/quest/spider_dungeon_3floor_boss.quest.lua rename to gamefiles/data/quest/spider_dungeon_3floor_boss.quest.lua diff --git a/gamefiles/locale/english/quest/subquest_01.quest b/gamefiles/data/quest/subquest_01.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_01.quest rename to gamefiles/data/quest/subquest_01.quest diff --git a/gamefiles/locale/english/quest/subquest_02.quest b/gamefiles/data/quest/subquest_02.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_02.quest rename to gamefiles/data/quest/subquest_02.quest diff --git a/gamefiles/locale/english/quest/subquest_03.quest b/gamefiles/data/quest/subquest_03.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_03.quest rename to gamefiles/data/quest/subquest_03.quest diff --git a/gamefiles/locale/english/quest/subquest_04.quest b/gamefiles/data/quest/subquest_04.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_04.quest rename to gamefiles/data/quest/subquest_04.quest diff --git a/gamefiles/locale/english/quest/subquest_05.quest b/gamefiles/data/quest/subquest_05.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_05.quest rename to gamefiles/data/quest/subquest_05.quest diff --git a/gamefiles/locale/english/quest/subquest_06.quest b/gamefiles/data/quest/subquest_06.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_06.quest rename to gamefiles/data/quest/subquest_06.quest diff --git a/gamefiles/locale/english/quest/subquest_07.quest b/gamefiles/data/quest/subquest_07.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_07.quest rename to gamefiles/data/quest/subquest_07.quest diff --git a/gamefiles/locale/english/quest/subquest_08.quest b/gamefiles/data/quest/subquest_08.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_08.quest rename to gamefiles/data/quest/subquest_08.quest diff --git a/gamefiles/locale/english/quest/subquest_09.quest b/gamefiles/data/quest/subquest_09.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_09.quest rename to gamefiles/data/quest/subquest_09.quest diff --git a/gamefiles/locale/english/quest/subquest_10.quest b/gamefiles/data/quest/subquest_10.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_10.quest rename to gamefiles/data/quest/subquest_10.quest diff --git a/gamefiles/locale/english/quest/subquest_11.quest b/gamefiles/data/quest/subquest_11.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_11.quest rename to gamefiles/data/quest/subquest_11.quest diff --git a/gamefiles/locale/english/quest/subquest_12.quest b/gamefiles/data/quest/subquest_12.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_12.quest rename to gamefiles/data/quest/subquest_12.quest diff --git a/gamefiles/locale/english/quest/subquest_13.quest b/gamefiles/data/quest/subquest_13.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_13.quest rename to gamefiles/data/quest/subquest_13.quest diff --git a/gamefiles/locale/english/quest/subquest_15.quest b/gamefiles/data/quest/subquest_15.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_15.quest rename to gamefiles/data/quest/subquest_15.quest diff --git a/gamefiles/locale/english/quest/subquest_16.quest b/gamefiles/data/quest/subquest_16.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_16.quest rename to gamefiles/data/quest/subquest_16.quest diff --git a/gamefiles/locale/english/quest/subquest_17.quest b/gamefiles/data/quest/subquest_17.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_17.quest rename to gamefiles/data/quest/subquest_17.quest diff --git a/gamefiles/locale/english/quest/subquest_18.quest b/gamefiles/data/quest/subquest_18.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_18.quest rename to gamefiles/data/quest/subquest_18.quest diff --git a/gamefiles/locale/english/quest/subquest_19.quest b/gamefiles/data/quest/subquest_19.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_19.quest rename to gamefiles/data/quest/subquest_19.quest diff --git a/gamefiles/locale/english/quest/subquest_20.quest b/gamefiles/data/quest/subquest_20.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_20.quest rename to gamefiles/data/quest/subquest_20.quest diff --git a/gamefiles/locale/english/quest/subquest_21.quest b/gamefiles/data/quest/subquest_21.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_21.quest rename to gamefiles/data/quest/subquest_21.quest diff --git a/gamefiles/locale/english/quest/subquest_22.quest b/gamefiles/data/quest/subquest_22.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_22.quest rename to gamefiles/data/quest/subquest_22.quest diff --git a/gamefiles/locale/english/quest/subquest_23.quest b/gamefiles/data/quest/subquest_23.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_23.quest rename to gamefiles/data/quest/subquest_23.quest diff --git a/gamefiles/locale/english/quest/subquest_24.quest b/gamefiles/data/quest/subquest_24.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_24.quest rename to gamefiles/data/quest/subquest_24.quest diff --git a/gamefiles/locale/english/quest/subquest_25.quest b/gamefiles/data/quest/subquest_25.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_25.quest rename to gamefiles/data/quest/subquest_25.quest diff --git a/gamefiles/locale/english/quest/subquest_26.quest b/gamefiles/data/quest/subquest_26.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_26.quest rename to gamefiles/data/quest/subquest_26.quest diff --git a/gamefiles/locale/english/quest/subquest_27.quest b/gamefiles/data/quest/subquest_27.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_27.quest rename to gamefiles/data/quest/subquest_27.quest diff --git a/gamefiles/locale/english/quest/subquest_30.quest b/gamefiles/data/quest/subquest_30.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_30.quest rename to gamefiles/data/quest/subquest_30.quest diff --git a/gamefiles/locale/english/quest/subquest_31.quest b/gamefiles/data/quest/subquest_31.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_31.quest rename to gamefiles/data/quest/subquest_31.quest diff --git a/gamefiles/locale/english/quest/subquest_32.quest b/gamefiles/data/quest/subquest_32.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_32.quest rename to gamefiles/data/quest/subquest_32.quest diff --git a/gamefiles/locale/english/quest/subquest_33.quest b/gamefiles/data/quest/subquest_33.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_33.quest rename to gamefiles/data/quest/subquest_33.quest diff --git a/gamefiles/locale/english/quest/subquest_34.quest b/gamefiles/data/quest/subquest_34.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_34.quest rename to gamefiles/data/quest/subquest_34.quest diff --git a/gamefiles/locale/english/quest/subquest_36.quest b/gamefiles/data/quest/subquest_36.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_36.quest rename to gamefiles/data/quest/subquest_36.quest diff --git a/gamefiles/locale/english/quest/subquest_37.quest b/gamefiles/data/quest/subquest_37.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_37.quest rename to gamefiles/data/quest/subquest_37.quest diff --git a/gamefiles/locale/english/quest/subquest_38.quest b/gamefiles/data/quest/subquest_38.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_38.quest rename to gamefiles/data/quest/subquest_38.quest diff --git a/gamefiles/locale/english/quest/subquest_39.quest b/gamefiles/data/quest/subquest_39.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_39.quest rename to gamefiles/data/quest/subquest_39.quest diff --git a/gamefiles/locale/english/quest/subquest_40.quest b/gamefiles/data/quest/subquest_40.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_40.quest rename to gamefiles/data/quest/subquest_40.quest diff --git a/gamefiles/locale/english/quest/subquest_41.quest b/gamefiles/data/quest/subquest_41.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_41.quest rename to gamefiles/data/quest/subquest_41.quest diff --git a/gamefiles/locale/english/quest/subquest_42.quest b/gamefiles/data/quest/subquest_42.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_42.quest rename to gamefiles/data/quest/subquest_42.quest diff --git a/gamefiles/locale/english/quest/subquest_44.quest b/gamefiles/data/quest/subquest_44.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_44.quest rename to gamefiles/data/quest/subquest_44.quest diff --git a/gamefiles/locale/english/quest/subquest_45.quest b/gamefiles/data/quest/subquest_45.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_45.quest rename to gamefiles/data/quest/subquest_45.quest diff --git a/gamefiles/locale/english/quest/subquest_46.quest b/gamefiles/data/quest/subquest_46.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_46.quest rename to gamefiles/data/quest/subquest_46.quest diff --git a/gamefiles/locale/english/quest/subquest_47.quest b/gamefiles/data/quest/subquest_47.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_47.quest rename to gamefiles/data/quest/subquest_47.quest diff --git a/gamefiles/locale/english/quest/subquest_48.quest b/gamefiles/data/quest/subquest_48.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_48.quest rename to gamefiles/data/quest/subquest_48.quest diff --git a/gamefiles/locale/english/quest/subquest_49.quest b/gamefiles/data/quest/subquest_49.quest similarity index 100% rename from gamefiles/locale/english/quest/subquest_49.quest rename to gamefiles/data/quest/subquest_49.quest diff --git a/gamefiles/locale/english/quest/test_att_resist.quest b/gamefiles/data/quest/test_att_resist.quest similarity index 100% rename from gamefiles/locale/english/quest/test_att_resist.quest rename to gamefiles/data/quest/test_att_resist.quest diff --git a/gamefiles/locale/english/quest/training_grandmaster_skill.quest b/gamefiles/data/quest/training_grandmaster_skill.quest similarity index 100% rename from gamefiles/locale/english/quest/training_grandmaster_skill.quest rename to gamefiles/data/quest/training_grandmaster_skill.quest diff --git a/gamefiles/locale/english/quest/training_mount.quest b/gamefiles/data/quest/training_mount.quest similarity index 100% rename from gamefiles/locale/english/quest/training_mount.quest rename to gamefiles/data/quest/training_mount.quest diff --git a/gamefiles/locale/english/quest/training_mount_v2.quest b/gamefiles/data/quest/training_mount_v2.quest similarity index 100% rename from gamefiles/locale/english/quest/training_mount_v2.quest rename to gamefiles/data/quest/training_mount_v2.quest diff --git a/gamefiles/locale/english/quest/upgrade_mount.quest b/gamefiles/data/quest/upgrade_mount.quest similarity index 100% rename from gamefiles/locale/english/quest/upgrade_mount.quest rename to gamefiles/data/quest/upgrade_mount.quest diff --git a/gamefiles/locale/english/quest/upgrade_refine_scroll.quest b/gamefiles/data/quest/upgrade_refine_scroll.quest similarity index 100% rename from gamefiles/locale/english/quest/upgrade_refine_scroll.quest rename to gamefiles/data/quest/upgrade_refine_scroll.quest diff --git a/gamefiles/locale/english/quest/user_tracking.quest b/gamefiles/data/quest/user_tracking.quest similarity index 100% rename from gamefiles/locale/english/quest/user_tracking.quest rename to gamefiles/data/quest/user_tracking.quest diff --git a/gamefiles/locale/english/quest/warehouse.quest b/gamefiles/data/quest/warehouse.quest similarity index 100% rename from gamefiles/locale/english/quest/warehouse.quest rename to gamefiles/data/quest/warehouse.quest diff --git a/gamefiles/locale/english/quest/x_bernhard.quest b/gamefiles/data/quest/x_bernhard.quest similarity index 100% rename from gamefiles/locale/english/quest/x_bernhard.quest rename to gamefiles/data/quest/x_bernhard.quest diff --git a/gamefiles/locale/english/quest/xxx_change_to_lotto.quest b/gamefiles/data/quest/xxx_change_to_lotto.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_change_to_lotto.quest rename to gamefiles/data/quest/xxx_change_to_lotto.quest diff --git a/gamefiles/locale/english/quest/xxx_collect_quest_lv85.quest b/gamefiles/data/quest/xxx_collect_quest_lv85.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_collect_quest_lv85.quest rename to gamefiles/data/quest/xxx_collect_quest_lv85.quest diff --git a/gamefiles/locale/english/quest/xxx_collect_quest_lv90.quest b/gamefiles/data/quest/xxx_collect_quest_lv90.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_collect_quest_lv90.quest rename to gamefiles/data/quest/xxx_collect_quest_lv90.quest diff --git a/gamefiles/locale/english/quest/xxx_huanso_deliverdrag.quest b/gamefiles/data/quest/xxx_huanso_deliverdrag.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_huanso_deliverdrag.quest rename to gamefiles/data/quest/xxx_huanso_deliverdrag.quest diff --git a/gamefiles/locale/english/quest/xxx_japan_invader_kill.quest b/gamefiles/data/quest/xxx_japan_invader_kill.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_japan_invader_kill.quest rename to gamefiles/data/quest/xxx_japan_invader_kill.quest diff --git a/gamefiles/locale/english/quest/xxx_kids_day_quiz.quest b/gamefiles/data/quest/xxx_kids_day_quiz.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_kids_day_quiz.quest rename to gamefiles/data/quest/xxx_kids_day_quiz.quest diff --git a/gamefiles/locale/english/quest/xxx_kill_straydog.quest b/gamefiles/data/quest/xxx_kill_straydog.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_kill_straydog.quest rename to gamefiles/data/quest/xxx_kill_straydog.quest diff --git a/gamefiles/locale/english/quest/xxx_larbor_day.quest b/gamefiles/data/quest/xxx_larbor_day.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_larbor_day.quest rename to gamefiles/data/quest/xxx_larbor_day.quest diff --git a/gamefiles/locale/english/quest/xxx_main_quest_mgr.quest b/gamefiles/data/quest/xxx_main_quest_mgr.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_main_quest_mgr.quest rename to gamefiles/data/quest/xxx_main_quest_mgr.quest diff --git a/gamefiles/locale/english/quest/xxx_monarch.quest b/gamefiles/data/quest/xxx_monarch.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_monarch.quest rename to gamefiles/data/quest/xxx_monarch.quest diff --git a/gamefiles/locale/english/quest/xxx_monkey_dungeon.quest b/gamefiles/data/quest/xxx_monkey_dungeon.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_monkey_dungeon.quest rename to gamefiles/data/quest/xxx_monkey_dungeon.quest diff --git a/gamefiles/locale/english/quest/xxx_notify_shopmeeting.quest b/gamefiles/data/quest/xxx_notify_shopmeeting.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_notify_shopmeeting.quest rename to gamefiles/data/quest/xxx_notify_shopmeeting.quest diff --git a/gamefiles/locale/english/quest/xxx_priv_guild.quest b/gamefiles/data/quest/xxx_priv_guild.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_priv_guild.quest rename to gamefiles/data/quest/xxx_priv_guild.quest diff --git a/gamefiles/locale/english/quest/xxx_rice_cake_tiger.quest b/gamefiles/data/quest/xxx_rice_cake_tiger.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_rice_cake_tiger.quest rename to gamefiles/data/quest/xxx_rice_cake_tiger.quest diff --git a/gamefiles/locale/english/quest/xxx_years_greetings.quest b/gamefiles/data/quest/xxx_years_greetings.quest similarity index 100% rename from gamefiles/locale/english/quest/xxx_years_greetings.quest rename to gamefiles/data/quest/xxx_years_greetings.quest diff --git a/gamefiles/locale/english/settings.lua b/gamefiles/data/settings.lua similarity index 100% rename from gamefiles/locale/english/settings.lua rename to gamefiles/data/settings.lua diff --git a/gamefiles/locale/english/skill_power.txt b/gamefiles/data/skill_power.txt similarity index 100% rename from gamefiles/locale/english/skill_power.txt rename to gamefiles/data/skill_power.txt diff --git a/gamefiles/locale/english/special_item_group.txt b/gamefiles/data/special_item_group.txt similarity index 100% rename from gamefiles/locale/english/special_item_group.txt rename to gamefiles/data/special_item_group.txt diff --git a/gamefiles/locale/english/translate_cz.lua b/gamefiles/data/translate_cz.lua similarity index 100% rename from gamefiles/locale/english/translate_cz.lua rename to gamefiles/data/translate_cz.lua diff --git a/gamefiles/locale/english/translate_de.lua b/gamefiles/data/translate_de.lua similarity index 100% rename from gamefiles/locale/english/translate_de.lua rename to gamefiles/data/translate_de.lua diff --git a/gamefiles/locale/english/translate_dk.lua b/gamefiles/data/translate_dk.lua similarity index 100% rename from gamefiles/locale/english/translate_dk.lua rename to gamefiles/data/translate_dk.lua diff --git a/gamefiles/locale/english/translate.lua b/gamefiles/data/translate_en.lua similarity index 100% rename from gamefiles/locale/english/translate.lua rename to gamefiles/data/translate_en.lua diff --git a/gamefiles/locale/english/translate_es.lua b/gamefiles/data/translate_es.lua similarity index 100% rename from gamefiles/locale/english/translate_es.lua rename to gamefiles/data/translate_es.lua diff --git a/gamefiles/locale/english/translate_fr.lua b/gamefiles/data/translate_fr.lua similarity index 100% rename from gamefiles/locale/english/translate_fr.lua rename to gamefiles/data/translate_fr.lua diff --git a/gamefiles/locale/english/translate_gr.lua b/gamefiles/data/translate_gr.lua similarity index 100% rename from gamefiles/locale/english/translate_gr.lua rename to gamefiles/data/translate_gr.lua diff --git a/gamefiles/locale/english/translate_hu.lua b/gamefiles/data/translate_hu.lua similarity index 100% rename from gamefiles/locale/english/translate_hu.lua rename to gamefiles/data/translate_hu.lua diff --git a/gamefiles/locale/english/translate_it.lua b/gamefiles/data/translate_it.lua similarity index 100% rename from gamefiles/locale/english/translate_it.lua rename to gamefiles/data/translate_it.lua diff --git a/gamefiles/locale/english/translate_nl.lua b/gamefiles/data/translate_nl.lua similarity index 100% rename from gamefiles/locale/english/translate_nl.lua rename to gamefiles/data/translate_nl.lua diff --git a/gamefiles/locale/english/translate_pl.lua b/gamefiles/data/translate_pl.lua similarity index 100% rename from gamefiles/locale/english/translate_pl.lua rename to gamefiles/data/translate_pl.lua diff --git a/gamefiles/locale/english/translate_pt.lua b/gamefiles/data/translate_pt.lua similarity index 100% rename from gamefiles/locale/english/translate_pt.lua rename to gamefiles/data/translate_pt.lua diff --git a/gamefiles/locale/english/translate_ro.lua b/gamefiles/data/translate_ro.lua similarity index 100% rename from gamefiles/locale/english/translate_ro.lua rename to gamefiles/data/translate_ro.lua diff --git a/gamefiles/locale/english/translate_ru.lua b/gamefiles/data/translate_ru.lua similarity index 100% rename from gamefiles/locale/english/translate_ru.lua rename to gamefiles/data/translate_ru.lua diff --git a/gamefiles/locale/english/translate_tr.lua b/gamefiles/data/translate_tr.lua similarity index 100% rename from gamefiles/locale/english/translate_tr.lua rename to gamefiles/data/translate_tr.lua diff --git a/gamefiles/locale/english/locale_string.txt b/gamefiles/locale/english/locale_string.txt deleted file mode 100644 index b42cba9..0000000 --- a/gamefiles/locale/english/locale_string.txt +++ /dev/null @@ -1,2228 +0,0 @@ -"Everyone will be teleported into the city shortly."; -"Everyone will be teleported into the city shortly."; - -"This item does not exist."; -"This item does not exist."; - -"The box suddenly exploded! You have lost Hit Points (HP)."; -"The box suddenly exploded! You have lost Hit Points (HP)."; - -"If you inhale the green smoke that is coming out of the box, the poison will spread through your body!"; -"If you inhale the green smoke that is coming out of the box, the poison will spread through your body!"; - -"You have received %s, %d units."; -"You have received %s, %d units."; - -"The box contains %s."; -"The box contains %s."; - -"This key does not seem to fit the lock."; -"This key does not seem to fit the lock."; - -"You have not received anything."; -"You have not received anything."; - -"You do not have enough Yang to use this item."; -"You do not have enough Yang to use this item."; - -"You have lowered your Skill Level."; -"You have lowered your Skill Level."; - -"You cannot lower your Skill Level."; -"You cannot lower your Skill Level."; - -"This effect is already activated."; -"This effect is already activated."; - -"This item can only be used in an Internet cafe."; -"This item can only be used in an Internet cafe."; - -"That is over the limit."; -"That is over the limit."; - -"Unfortunately you don't have enough space in your inventory."; -"Unfortunately you don't have enough space in your inventory."; - -"Used Moon Cake or Seed."; -"Used Moon Cake or Seed."; - -"You cannot wear a Wedding Ring if you are not married."; -"You cannot wear a Wedding Ring if you are not married."; - -"You cannot use the Event Detector from this position."; -"You cannot use the Event Detector from this position."; - -"This item cannot be absorbed."; -"This item cannot be absorbed."; - -"The Event Detector vanished in a mysterious light."; -"The Event Detector vanished in a mysterious light."; - -"The Event Detector has vanished."; -"The Event Detector has vanished."; - -"The Compass for Metin Stones does not work in dungeons."; -"The Compass for Metin Stones does not work in dungeons."; - -"The Compass for Metin Stones has vanished in the mysterious light."; -"The Compass for Metin Stones has vanished in the mysterious light."; - -"Receive: %s - %d"; -"Receive: %s - %d"; - -"The Compass for Metin Stones has vanished."; -"The Compass for Metin Stones has vanished."; - -"You find a simple Piece of Stone in the Clam."; -"You find a simple Piece of Stone in the Clam."; - -"The Clam has vanished."; -"The Clam has vanished."; - -"There is a White Pearl inside the Clam."; -"There is a White Pearl inside the Clam."; - -"There is a Blue Pearl inside the Clam."; -"There is a Blue Pearl inside the Clam."; - -"There is a Blood-Red Pearl inside the Clam."; -"There is a Blood-Red Pearl inside the Clam."; - -"It isn't easy to understand this book."; -"It isn't easy to understand this book."; - -"This book will not help you."; -"This book will not help you."; - -"You need to have a minimum level of 30 to understand this book."; -"You need to have a minimum level of 30 to understand this book."; - -"You need a minimum level of 50 to understand this book."; -"You need a minimum level of 50 to understand this book."; - -"You can't train any more Combos."; -"You can't train any more Combos."; - -"%s has captured the flag of %s!"; -"%s has captured the flag of %s!"; - -"You already understand this language."; -"You already understand this language."; - -"You have to improve your Level to read this Book."; -"You have to improve your Level to read this Book."; - -"The book is too hard for practising."; -"The book is too hard for practising."; - -"You cannot train with this Book any more."; -"You cannot train with this Book any more."; - -"Taxes are set to %d%%."; -"Taxes are set to %d%%."; - -"You need a minimum level of 50 to get riding training."; -"You need a minimum level of 50 to get riding training."; - -"You have escaped the evil ghost curse with the help of an Exorcism Scroll."; -"You have escaped the evil ghost curse with the help of an Exorcism Scroll."; - -"You cannot read any more Riding Guides."; -"You cannot read any more Riding Guides."; - -"You read the Horse Riding Manual and received a Riding Point."; -"You read the Horse Riding Manual and received a Riding Point."; - -"You can use this point to improve your riding skill!"; -"You can use this point to improve your riding skill!"; - -"The guild %s's flag has been stolen by player %s."; -"The guild %s's flag has been stolen by player %s."; - -"You did not understand the riding guide."; -"You did not understand the riding guide."; - -"Your mind is clear. You can concentrate really well now."; -"Your mind is clear. You can concentrate really well now."; - -"Your rank has increased by %d points."; -"Your rank has increased by %d points."; - -"You cannot dye or bleach your current hairstyle."; -"You cannot dye or bleach your current hairstyle."; - -"You need to have reached level %d to be able to dye your hair again."; -"You need to have reached level %d to be able to dye your hair again."; - -"This item can only be opened by the another gender."; -"This item can only be opened by the another gender."; - -"You cannot use this from your current position."; -"You cannot use this from your current position."; - -"You are ready to warp, so you cannot use the Scroll of the Location."; -"You are ready to warp, so you cannot use the Scroll of the Location."; - -"You are being brought back to the place of origin."; -"You are being brought back to the place of origin."; - -"%s%s cannot be used in a dungeon."; -"%s%s cannot be used in a dungeon."; - -"[Quest] You have already received your reward."; -"[Quest] You have already received your reward."; - -"the"; -"the"; - -"There aren't any Pieces of Broken Stone available for removal."; -"There aren't any Pieces of Broken Stone available for removal."; - -"You cannot change the upgrade of this item."; -"You cannot change the upgrade of this item."; - -"There is no upgrade that you can change."; -"There is no upgrade that you can change."; - -"You can only do this %d minutes after an upgrade. (%d minutes left)"; -"You can only do this %d minutes after an upgrade. (%d minutes left)"; - -"You have changed the upgrade."; -"You have changed the upgrade."; - -"Upgrade successfully added."; -"Upgrade successfully added."; - -"No upgrade added."; -"No upgrade added."; - -"You must use the Blessing Marble in order to add another bonus to this item."; -"You must use the Blessing Marble in order to add another bonus to this item."; - -"You cannot use this in the duel arena."; -"You cannot use this in the duel arena."; - -"This item can no longer be improved. The maximum number of bonuses has been reached."; -"This item can no longer be improved. The maximum number of bonuses has been reached."; - -"You can only use the Blessing Marble with an item which already has 4 bonuses."; -"You can only use the Blessing Marble with an item which already has 4 bonuses."; - -"Socket successfully added."; -"Socket successfully added."; - -"No socket added."; -"No socket added."; - -"No additional sockets could be added to this item."; -"No additional sockets could be added to this item."; - -"You cannot add a socket to this item."; -"You cannot add a socket to this item."; - -"Arming successful."; -"Arming successful."; - -"Arming has failed."; -"Arming has failed."; - -"You have to add a socket first. Use a diamond in order to do this."; -"You have to add a socket first. Use a diamond in order to do this."; - -"There are no sockets for gemstones in this item."; -"There are no sockets for gemstones in this item."; - -"You can do this when you wear an Emotion Mask."; -"You can do this when you wear an Emotion Mask."; - -"You have to add a socket if you want to use a Diamond."; -"You have to add a socket if you want to use a Diamond."; - -"No more gems can be added to this item."; -"No more gems can be added to this item."; - -"These items cannot be used together."; -"These items cannot be used together."; - -"You cannot change the Bait whilst fishing."; -"You cannot change the Bait whilst fishing."; - -"You are exchanging the current Bait for %s."; -"You are exchanging the current Bait for %s."; - -"You attached %s to the hook as bait."; -"You attached %s to the hook as bait."; - -"You are missing some ingredients to make the potion."; -"You are missing some ingredients to make the potion."; - -"You do not have enough material (%s)."; -"You do not have enough material (%s)."; - -"You do not have enough empty bottles."; -"You do not have enough empty bottles."; - -"The potion production has failed."; -"The potion production has failed."; - -"Only women can do this."; -"Only women can do this."; - -"You cannot attach several stones of the same type."; -"You cannot attach several stones of the same type."; - -"This Spirit Stone cannot be attached to this type of item."; -"This Spirit Stone cannot be attached to this type of item."; - -"You cannot attach this Spirit Stone to a weapon."; -"You cannot attach this Spirit Stone to a weapon."; - -"You have attached the Spirit Stone successfully."; -"You have attached the Spirit Stone successfully."; - -"The Spirit Stone broke while being attached."; -"The Spirit Stone broke while being attached."; - -"No slot free."; -"No slot free."; - -"This function is not available right now."; -"This function is not available right now."; - -"You cannot use a Scroll of the Location whilst taking part in a kingdom battle."; -"You cannot use a Scroll of the Location whilst taking part in a kingdom battle."; - -"After opening the Storeroom you cannot use a Scroll of the Location for %d seconds."; -"After opening the Storeroom you cannot use a Scroll of the Location for %d seconds."; - -"You cannot use a Scroll of the Location while another window is open."; -"You cannot use a Scroll of the Location while another window is open."; - -"This person does not exist."; -"This person does not exist."; - -"After a trade, you cannot use a scroll for another %d seconds."; -"After a trade, you cannot use a scroll for another %d seconds."; - -"After opening a storeroom you cannot use a Scroll of the Location for another %d seconds."; -"After opening a storeroom you cannot use a Scroll of the Location for another %d seconds."; - -"You cannot use the Scroll of the Location because the distance is too small."; -"You cannot use the Scroll of the Location because the distance is too small."; - -"After a trade you cannot use a Scroll of the Location for %d seconds."; -"After a trade you cannot use a Scroll of the Location for %d seconds."; - -"You cannot open the Storeroom if another window is already open."; -"You cannot open the Storeroom if another window is already open."; - -"You cannot drop this item."; -"You cannot drop this item."; - -"The dropped item will vanish in 5 minutes."; -"The dropped item will vanish in 5 minutes."; - -"%s received"; -"%s received"; - -"You have too many items in your inventory."; -"You have too many items in your inventory."; - -"%s receives %s."; -"%s receives %s."; - -"You are too near."; -"You are too near."; - -"Item Trade: %s, %s"; -"Item Trade: %s, %s"; - -"You cannot change the equipped item while you are transformed."; -"You cannot change the equipped item while you are transformed."; - -"You have to stand still to equip the item."; -"You have to stand still to equip the item."; - -"Monkey Herbs cannot be fed to living horses. It is used to revive dead horses."; -"Monkey Herbs cannot be fed to living horses. It is used to revive dead horses."; - -"You cannot feed a dead Horse."; -"You cannot feed a dead Horse."; - -"You fed the Horse with Herbs."; -"You fed the Horse with Herbs."; - -"You have fed the Horse."; -"You have fed the Horse."; - -"Your level is too low to wear this Hairstyle."; -"Your level is too low to wear this Hairstyle."; - -"You already have this Hairstyle."; -"You already have this Hairstyle."; - -"You have already transformed."; -"You have already transformed."; - -"You are too far away."; -"You are too far away."; - -"That's the wrong trading item."; -"That's the wrong trading item."; - -"You cannot transform into a monster who has a higher level than you."; -"You cannot transform into a monster who has a higher level than you."; - -"Your level is too low to equip this item."; -"Your level is too low to equip this item."; - -"You are not strong enough to equip yourself with this item."; -"You are not strong enough to equip yourself with this item."; - -"Your intelligence is too low to equip yourself with this item."; -"Your intelligence is too low to equip yourself with this item."; - -"Your dexterity is too low to equip yourself with this item."; -"Your dexterity is too low to equip yourself with this item."; - -"Your vitality is too low to equip yourself with this item."; -"Your vitality is too low to equip yourself with this item."; - -"You cannot use this item because you are not married."; -"You cannot use this item because you are not married."; - -"You cannot equip this item twice."; -"You cannot equip this item twice."; - -"Time left until the removal of the socket of %s: %d"; -"Time left until the removal of the socket of %s: %d"; - -"This action can only be done with another gender."; -"This action can only be done with another gender."; - -"A gem socketed in the %s has vanished."; -"A gem socketed in the %s has vanished."; - -"[Guild] This guild name is invalid."; -"[Guild] This guild name is invalid."; - -"[Guild] This guild name is already taken."; -"[Guild] This guild name is already taken."; - -"[Guild] You cannot found a guild."; -"[Guild] You cannot found a guild."; - -"The guild %s has declared war on %s!"; -"The guild %s has declared war on %s!"; - -"[Guild] %s has refused the Guild war."; -"[Guild] %s has refused the Guild war."; - -"The guild war between %s and %s will start in a few seconds!"; -"The guild war between %s and %s will start in a few seconds!"; - -"The guild war between %s and %s has begun!"; -"The guild war between %s and %s has begun!"; - -"The guild war between %s and %s has ended in a draw."; -"The guild war between %s and %s has ended in a draw."; - -"%s has won the guild war against %s."; -"%s has won the guild war against %s."; - -"You need your fellow player's approval for this."; -"You need your fellow player's approval for this."; - -"[Guild] The guild war has been cancelled."; -"[Guild] The guild war has been cancelled."; - -"The guild war between %s and %s has been cancelled."; -"The guild war between %s and %s has been cancelled."; - -"Close"; -"Close"; - -"Action cancelled. You have entered a battle."; -"Action cancelled. You have entered a battle."; - -"Someone has logged into your account. You will be disconnected from the server."; -"Someone has logged into your account. You will be disconnected from the server."; - -"A mysterious light appears from the tree."; -"A mysterious light appears from the tree."; - -"%d Playtime added to your account. (Payment number %d)"; -"%d Playtime added to your account. (Payment number %d)"; - -"You can participate in the guild battle in viewer mode."; -"You can participate in the guild battle in viewer mode."; - -"While choosing a character, an icon appears."; -"While choosing a character, an icon appears."; - -"There are no opponents."; -"There are no opponents."; - -"The battle with %s has begun!"; -"The battle with %s has begun!"; - -"If no enemy can be found, the guild war will be ended automatically."; -"If no enemy can be found, the guild war will be ended automatically."; - -"Because the guild war finished early, the result will judged as a draw."; -"Because the guild war finished early, the result will judged as a draw."; - -"The energy is reflected because of the Emperors Blessing."; -"The energy is reflected because of the Emperors Blessing."; - -"After %d seconds you can use the Emperors Blessing."; -"After %d seconds you can use the Emperors Blessing."; - -"Not enough tax income : %d."; -"Not enough tax income : %d."; - -"[TEST_ONLY]Tax : %d"; -"[TEST_ONLY]Tax : %d"; - -"Transformation error."; -"Transformation error."; - -"You learned the transmutation completely."; -"You learned the transmutation completely."; - -"Please call your Horse first."; -"Please call your Horse first."; - -"You have sent your horse away."; -"You have sent your horse away."; - -"%s challenged you to a battle!"; -"%s challenged you to a battle!"; - -"You have to get off your Horse."; -"You have to get off your Horse."; - -"You cannot feed your Horse whilst sitting on it."; -"You cannot feed your Horse whilst sitting on it."; - -"You have fed the Horse with %s%s."; -"You have fed the Horse with %s%s."; - -"You need %s."; -"You need %s."; - -"%d seconds until Exit."; -"%d seconds until Exit."; - -"The game will be closed in %d seconds."; -"The game will be closed in %d seconds."; - -"Your logout has been cancelled."; -"Your logout has been cancelled."; - -"Back to login window. Please wait."; -"Back to login window. Please wait."; - -"You have been disconnected from the server. Please wait."; -"You have been disconnected from the server. Please wait."; - -"You have challenged %s to a battle."; -"You have challenged %s to a battle."; - -"You are changing character. Please wait."; -"You are changing character. Please wait."; - -"A new start is not possible at the moment. Please wait %d seconds."; -"A new start is not possible at the moment. Please wait %d seconds."; - -"You cannot restart yet. Please wait another %d seconds."; -"You cannot restart yet. Please wait another %d seconds."; - -"You cannot restart in the city yet. Wait another %d seconds."; -"You cannot restart in the city yet. Wait another %d seconds."; - -"The waiting time has expired. You will be revived in the city."; -"The waiting time has expired. You will be revived in the city."; - -"You cannot change your status while you are transformed."; -"You cannot change your status while you are transformed."; - -"This player is currently fighting."; -"This player is currently fighting."; - -"[Guild] It does not belong to the guild."; -"[Guild] It does not belong to the guild."; - -"[Guild] You do not have the authority to change the level of the guild skills."; -"[Guild] You do not have the authority to change the level of the guild skills."; - -"Your choice is incorrect."; -"Your choice is incorrect."; - -"[Storeroom] You have entered an incorrect password."; -"[Storeroom] You have entered an incorrect password."; - -"[Storeroom] The Storeroom is already open."; -"[Storeroom] The Storeroom is already open."; - -"[Storeroom] You have to wait 10 seconds before you can open the Storeroom again."; -"[Storeroom] You have to wait 10 seconds before you can open the Storeroom again."; - -"[Storeroom] You are too far away to open the storeroom."; -"[Storeroom] You are too far away to open the storeroom."; - -"[Group] The server cannot execute this group request."; -"[Group] The server cannot execute this group request."; - -"[Group] You cannot leave a group while you are in a dungeon."; -"[Group] You cannot leave a group while you are in a dungeon."; - -"[Group] You have left the group."; -"[Group] You have left the group."; - -"[Guild] Your guild is already participating in another war."; -"[Guild] Your guild is already participating in another war."; - -"[Guild] No one is entitled to a guild war."; -"[Guild] No one is entitled to a guild war."; - -"[Guild] No guild with this name exists."; -"[Guild] No guild with this name exists."; - -"There already is a candidacy."; -"There already is a candidacy."; - -"[Guild] This guild is already participating in a war."; -"[Guild] This guild is already participating in a war."; - -"[Guild] Not enough Yang to participate in a guild war."; -"[Guild] Not enough Yang to participate in a guild war."; - -"[Guild] The guild does not have enough Yang to participate in a guild war."; -"[Guild] The guild does not have enough Yang to participate in a guild war."; - -"[Guild] This Guild is already scheduled for another war."; -"[Guild] This Guild is already scheduled for another war."; - -"[Guild] This guild is already participating in another war."; -"[Guild] This guild is already participating in another war."; - -"[Guild] A minimum of %d players are needed to participate in a guild war."; -"[Guild] A minimum of %d players are needed to participate in a guild war."; - -"[Guild] The guild does not have enough points to participate in a guild war."; -"[Guild] The guild does not have enough points to participate in a guild war."; - -"[Guild] The guild does not have enough members to participate in a guild war."; -"[Guild] The guild does not have enough members to participate in a guild war."; - -"Your level has to be higher than 20 to register a cell phone number."; -"Your level has to be higher than 20 to register a cell phone number."; - -"You do not have the emperor qualification."; -"You do not have the emperor qualification."; - -"%s declined the invitation."; -"%s declined the invitation."; - -"You cannot accept the invitation because you are already in the group."; -"You cannot accept the invitation because you are already in the group."; - -"Only the emperor can use this."; -"Only the emperor can use this."; - -"Cooldown time for approximately %d seconds"; -"Cooldown time for approximately %d seconds"; - -"Lack of Taxes. Current Capital : %u Missing Capital : %u"; -"Lack of Taxes. Current Capital : %u Missing Capital : %u"; - -"Command: warpto "; -"Command: warpto "; - -"You cannot be warped to an unknown player."; -"You cannot be warped to an unknown player."; - -"Adding player %d into the channel. (Present channel %d)"; -"Adding player %d into the channel. (Present channel %d)"; - -"Warp to player %s."; -"Warp to player %s."; - -"You cannot call unknown players."; -"You cannot call unknown players."; - -"[Guild] There are no experience points for hunting during a guild war."; -"[Guild] There are no experience points for hunting during a guild war."; - -"When the Blessing of the Emperor is used %s the HP and SP are restored again."; -"When the Blessing of the Emperor is used %s the HP and SP are restored again."; - -"My information about the emperor"; -"My information about the emperor"; - -"[%sMonarch] : %s Yang owned %lld"; -"[%sMonarch] : %s Yang owned %lld"; - -"[%sMonarch] : %s"; -"[%sMonarch] : %s"; - -"Information about the emperor"; -"Information about the emperor"; - -"Only an emperor can use this."; -"Only an emperor can use this."; - -"Choose a number between 1 and 50."; -"Choose a number between 1 and 50."; - -"The Monster cannot be called. Check the Mob Number."; -"The Monster cannot be called. Check the Mob Number."; - -"Hit Points +%d"; -"Hit Points +%d"; - -"Spell Points +%d"; -"Spell Points +%d"; - -"The Emperor Blessing is activated."; -"The Emperor Blessing is activated."; - -"Endurance +%d"; -"Endurance +%d"; - -"Intelligence +%d"; -"Intelligence +%d"; - -"Strength +%d"; -"Strength +%d"; - -"Dexterity +%d"; -"Dexterity +%d"; - -"Attack Speed +%d"; -"Attack Speed +%d"; - -"Movement Speed %d"; -"Movement Speed %d"; - -"Cooldown Time -%d"; -"Cooldown Time -%d"; - -"Energy Recovery +%d"; -"Energy Recovery +%d"; - -"Spell Point Recovery +%d"; -"Spell Point Recovery +%d"; - -"Poison Attack %d"; -"Poison Attack %d"; - -"Star +%d"; -"Star +%d"; - -"Speed Reduction +%d"; -"Speed Reduction +%d"; - -"Critical Attack with a chance of %d%%"; -"Critical Attack with a chance of %d%%"; - -"Chance of a Speared Attack of %d%%"; -"Chance of a Speared Attack of %d%%"; - -"Player's Attack Power against Monsters +%d%%"; -"Player's Attack Power against Monsters +%d%%"; - -"Horse's Attack Power against Monsters +%d%%"; -"Horse's Attack Power against Monsters +%d%%"; - -"Attack Boost against Wonggui + %d%%"; -"Attack Boost against Wonggui + %d%%"; - -"Attack Boost against Milgyo + %d%%"; -"Attack Boost against Milgyo + %d%%"; - -"Attack boost against zombies + %d%%"; -"Attack boost against zombies + %d%%"; - -"Attack boost against devils + %d%%"; -"Attack boost against devils + %d%%"; - -"Due to Emperor Sa-Za-Hu, the player %s will receive an attack power increase of 10 %% for 3 minutes in this area."; -"Due to Emperor Sa-Za-Hu, the player %s will receive an attack power increase of 10 %% for 3 minutes in this area."; - -"Absorbing of Energy %d%% while attacking."; -"Absorbing of Energy %d%% while attacking."; - -"Absorption of Spell Points (SP) %d%% while attacking."; -"Absorption of Spell Points (SP) %d%% while attacking."; - -"With a chance of %d%% Spell Points (SP) will be taken from the enemy."; -"With a chance of %d%% Spell Points (SP) will be taken from the enemy."; - -"Absorbing of Spell Points (SP) with a chance of %d%%"; -"Absorbing of Spell Points (SP) with a chance of %d%%"; - -"%d%% Chance of blocking a close-combat attack"; -"%d%% Chance of blocking a close-combat attack"; - -"%d%% Chance of blocking a long range attack"; -"%d%% Chance of blocking a long range attack"; - -"One-Handed Sword defence %d%%"; -"One-Handed Sword defence %d%%"; - -"Two-Handed Sword Defence %d%%"; -"Two-Handed Sword Defence %d%%"; - -"Bell Defence %d%%"; -"Bell Defence %d%%"; - -"By the Emperor Geum-Gang-Gwon the player %s gets 10 %% more armour for 3 minutes."; -"By the Emperor Geum-Gang-Gwon the player %s gets 10 %% more armour for 3 minutes."; - -"Fan Defence %d%%"; -"Fan Defence %d%%"; - -"Distant Attack Resistance %d%%"; -"Distant Attack Resistance %d%%"; - -"Fire Resistance %d%%"; -"Fire Resistance %d%%"; - -"Lightning Resistance %d%%"; -"Lightning Resistance %d%%"; - -"Magic Resistance %d%%"; -"Magic Resistance %d%%"; - -"Wind Resistance %d%%"; -"Wind Resistance %d%%"; - -"Reflect Direct Hit: %d%%"; -"Reflect Direct Hit: %d%%"; - -"Reflect Curse: %d%%"; -"Reflect Curse: %d%%"; - -"Poison Resistance %d%%"; -"Poison Resistance %d%%"; - -"Spell Points (SP) will be increased by %d%% if you win."; -"Spell Points (SP) will be increased by %d%% if you win."; - -"The event is already running. (Flag: %d)"; -"The event is already running. (Flag: %d)"; - -"Experience increases by %d%% if you win against an opponent."; -"Experience increases by %d%% if you win against an opponent."; - -"Increase of Yang up to %d%% if you win."; -"Increase of Yang up to %d%% if you win."; - -"Increase of captured Items up to %d%% if you win."; -"Increase of captured Items up to %d%% if you win."; - -"Power increase of up to %d%% after taking the potion."; -"Power increase of up to %d%% after taking the potion."; - -"%d%% Chance of filling up Hit Points after a victory."; -"%d%% Chance of filling up Hit Points after a victory."; - -"No Dizziness %d%%"; -"No Dizziness %d%%"; - -"No Slowing Down %d%%"; -"No Slowing Down %d%%"; - -"No falling down %d%%"; -"No falling down %d%%"; - -"Attack Power + %d"; -"Attack Power + %d"; - -"Armour + %d"; -"Armour + %d"; - -"OX quiz script could not be loaded."; -"OX quiz script could not be loaded."; - -"Magical Attack + %d"; -"Magical Attack + %d"; - -"Magical Defence + %d"; -"Magical Defence + %d"; - -"Maximum Endurance + %d"; -"Maximum Endurance + %d"; - -"Strong against Warriors + %d%%"; -"Strong against Warriors + %d%%"; - -"Strong against Ninjas + %d%%"; -"Strong against Ninjas + %d%%"; - -"Strong against Sura + %d%%"; -"Strong against Sura + %d%%"; - -"Strong against Shamans + %d%%"; -"Strong against Shamans + %d%%"; - -"Strength against monsters + %d%%"; -"Strength against monsters + %d%%"; - -"Attack + %d%%"; -"Attack + %d%%"; - -"Defence + %d%%"; -"Defence + %d%%"; - -"OX quiz script has loaded."; -"OX quiz script has loaded."; - -"Experience %d%%"; -"Experience %d%%"; - -"Chance to find an Item %. 1f"; -"Chance to find an Item %. 1f"; - -"Chance to find Yang %. 1f"; -"Chance to find Yang %. 1f"; - -"Maximum Energy +%d%%"; -"Maximum Energy +%d%%"; - -"Skill Damage %d%%"; -"Skill Damage %d%%"; - -"Hit Damage %d%%"; -"Hit Damage %d%%"; - -"Resistance against Skill Damage %d%%"; -"Resistance against Skill Damage %d%%"; - -"Resistance against Hits %d%%"; -"Resistance against Hits %d%%"; - -"%d%% Resistance against Warrior Attacks"; -"%d%% Resistance against Warrior Attacks"; - -"Welcome to Metin2."; -"Welcome to Metin2."; - -"%d%% Resistance against Ninja Attacks"; -"%d%% Resistance against Ninja Attacks"; - -"%d%% Resistance against Sura Attacks"; -"%d%% Resistance against Sura Attacks"; - -"%d%% Resistance against Shaman Attacks"; -"%d%% Resistance against Shaman Attacks"; - -"(Procedure: %d y- %d m - %d d)"; -"(Procedure: %d y- %d m - %d d)"; - -"Your chat is blocked."; -"Your chat is blocked."; - -"You need a higher level to be able to call."; -"You need a higher level to be able to call."; - -"You need a minimum level of %d to be able to call."; -"You need a minimum level of %d to be able to call."; - -"You are not in this Group."; -"You are not in this Group."; - -"You did not join this Guild."; -"You did not join this Guild."; - -"The player has rejected your request to add him to your friend list."; -"The player has rejected your request to add him to your friend list."; - -"OX Event has started."; -"OX Event has started."; - -"[Friends] You cannot add a GM to your list."; -"[Friends] You cannot add a GM to your list."; - -"%s is not online."; -"%s is not online."; - -"After a trade, you have to wait %d seconds before you can open a shop."; -"After a trade, you have to wait %d seconds before you can open a shop."; - -"You can trade again in %d seconds."; -"You can trade again in %d seconds."; - -"You have more than 2 Billion Yang. You cannot trade."; -"You have more than 2 Billion Yang. You cannot trade."; - -"You cannot open a private shop while another window is open."; -"You cannot open a private shop while another window is open."; - -"The player has more than 2 Billion Yang. You cannot trade with him."; -"The player has more than 2 Billion Yang. You cannot trade with him."; - -"[Storeroom] No movement possible."; -"[Storeroom] No movement possible."; - -"[Storeroom] The item cannot be stored."; -"[Storeroom] The item cannot be stored."; - -"[Group] The player who invited you is not online."; -"[Group] The player who invited you is not online."; - -"Uriel allowed to enter."; -"Uriel allowed to enter."; - -"[Group] Only the group leader can change this."; -"[Group] Only the group leader can change this."; - -"[Group] The target is not a member of your group."; -"[Group] The target is not a member of your group."; - -"[Group] You cannot kick out a player while you are in a dungeon."; -"[Group] You cannot kick out a player while you are in a dungeon."; - -"[Group] You have been out kicked of the group."; -"[Group] You have been out kicked of the group."; - -"[Group] You cannot kick out group members."; -"[Group] You cannot kick out group members."; - -"[Guild] After disbanding a guild, you cannot create a new one for %d days."; -"[Guild] After disbanding a guild, you cannot create a new one for %d days."; - -"[Guild] After leaving a guild, you cannot create a new one for %d days."; -"[Guild] After leaving a guild, you cannot create a new one for %d days."; - -"This guild name is invalid."; -"This guild name is invalid."; - -"We request the participation of a lot of players."; -"We request the participation of a lot of players."; - -"[Guild] [%s] guild has been created."; -"[Guild] [%s] guild has been created."; - -"[Guild] Creation of the guild has failed."; -"[Guild] Creation of the guild has failed."; - -"[Group] Only the group leader can use group skills."; -"[Group] Only the group leader can use group skills."; - -"[Group] The target has not been found."; -"[Group] The target has not been found."; - -"[Guild] That is not the correct amount of Yang."; -"[Guild] That is not the correct amount of Yang."; - -"[Guild] You do not have enough Yang."; -"[Guild] You do not have enough Yang."; - -"[Guild] The person you were searching for cannot be found."; -"[Guild] The person you were searching for cannot be found."; - -"[Guild] This person is not in the same guild."; -"[Guild] This person is not in the same guild."; - -"[Guild] You do not have the authority to kick out guild members."; -"[Guild] You do not have the authority to kick out guild members."; - -"[Guild] The guild member %s has been kicked out of the Guild."; -"[Guild] The guild member %s has been kicked out of the Guild."; - -"OX The Event has not ended yet. An error has occurred. (flag: %d)"; -"OX The Event has not ended yet. An error has occurred. (flag: %d)"; - -"[Guild] You have kicked a guild member out."; -"[Guild] You have kicked a guild member out."; - -"[Guild] You do not have the authority to change your rank name."; -"[Guild] You do not have the authority to change your rank name."; - -"[Guild] The guild leader's rights cannot be changed."; -"[Guild] The guild leader's rights cannot be changed."; - -"[Guild] This rank name is invalid."; -"[Guild] This rank name is invalid."; - -"[Guild] You do not have the authority to change your position."; -"[Guild] You do not have the authority to change your position."; - -"[Guild] The rights of the guild leader cannot be changed."; -"[Guild] The rights of the guild leader cannot be changed."; - -"[Guild] %u experience points used."; -"[Guild] %u experience points used."; - -"[Guild] Experience usage has failed."; -"[Guild] Experience usage has failed."; - -"[Guild] Insufficient Yang in the guild treasury."; -"[Guild] Insufficient Yang in the guild treasury."; - -"[Guild] Dragon ghost was not restored."; -"[Guild] Dragon ghost was not restored."; - -"The OX Event will be restarted shortly."; -"The OX Event will be restarted shortly."; - -"[Guild] You do not have the authority to make an announcement."; -"[Guild] You do not have the authority to make an announcement."; - -"[Guild] You do not have the authority to change the position."; -"[Guild] You do not have the authority to change the position."; - -"[Guild] The guild leader's position cannot be changed."; -"[Guild] The guild leader's position cannot be changed."; - -"[Guild] You cannot make yourself guild leader."; -"[Guild] You cannot make yourself guild leader."; - -"[Guild] You do not have the authority to choose the guild leader."; -"[Guild] You do not have the authority to choose the guild leader."; - -"[Guild] You cannot choose any more guild leaders."; -"[Guild] You cannot choose any more guild leaders."; - -"You cannot trade this item."; -"You cannot trade this item."; - -"Illegal software has been detected. The game is being shut down."; -"Illegal software has been detected. The game is being shut down."; - -"You have more than 2 Billion Yang with you. You cannot trade."; -"You have more than 2 Billion Yang with you. You cannot trade."; - -"Invalid Yang."; -"Invalid Yang."; - -"The present event is limited to one area."; -"The present event is limited to one area."; - -"Start Item Roulette."; -"Start Item Roulette."; - -"Start Yang Roulette."; -"Start Yang Roulette."; - -"The player is online. Please use whisper to chat."; -"The player is online. Please use whisper to chat."; - -"The cell phone number is not registered."; -"The cell phone number is not registered."; - -"You need to be at least on level 20 to be able to send text messages."; -"You need to be at least on level 20 to be able to send text messages."; - -"You need 2000 DT to send a text message."; -"You need 2000 DT to send a text message."; - -"Your text message has been sent."; -"Your text message has been sent."; - -"%s of the Guild %s raised up to %d%% !"; -"%s of the Guild %s raised up to %d%% !"; - -"%s of the Guild %s normal again."; -"%s of the Guild %s normal again."; - -"%s: %s has increased by %d%%!"; -"%s: %s has increased by %d%%!"; - -"%s 's %s normal again."; -"%s 's %s normal again."; - -"Your mining points have reached their maximum. (%d)"; -"Your mining points have reached their maximum. (%d)"; - -"Your mining points have reached their maximum level."; -"Your mining points have reached their maximum level."; - -"You can get lumberjack Deokbae to upgrade your Pickaxe."; -"You can get lumberjack Deokbae to upgrade your Pickaxe."; - -"Your Mining Points have increased! (%d/%d)"; -"Your Mining Points have increased! (%d/%d)"; - -"You cannot mine without a Pick."; -"You cannot mine without a Pick."; - -"Nothing to mine here."; -"Nothing to mine here."; - -"The mining has been successful."; -"The mining has been successful."; - -"The mining has failed."; -"The mining has failed."; - -"[Friends] You have added %s as a friend."; -"[Friends] You have added %s as a friend."; - -"The player will be teleported into the city shortly."; -"The player will be teleported into the city shortly."; - -"[Friends] You have deleted %s from the list."; -"[Friends] You have deleted %s from the list."; - -"A critical server error has occurred. The server will restart automatically."; -"A critical server error has occurred. The server will restart automatically."; - -"You will be disconnected automatically in 10 seconds."; -"You will be disconnected automatically in 10 seconds."; - -"You can connect again after 5 minutes."; -"You can connect again after 5 minutes."; - -"(%s) guild has been created. [Temporary]"; -"(%s) guild has been created. [Temporary]"; - -"This guild is at war."; -"This guild is at war."; - -"%s: This guild does not exist."; -"%s: This guild does not exist."; - -"A guild with this name or number does not exist."; -"A guild with this name or number does not exist."; - -"The building does not exist."; -"The building does not exist."; - -"This type of building can only be erected once."; -"This type of building can only be erected once."; - -"Close the OX event card first. (Flag: %d)"; -"Close the OX event card first. (Flag: %d)"; - -"The Main Building has to be erected first."; -"The Main Building has to be erected first."; - -"Building failed because of incorrect pricing."; -"Building failed because of incorrect pricing."; - -"Your guild does not have enough Yang to erect this building."; -"Your guild does not have enough Yang to erect this building."; - -"You do not have enough resources to build a building."; -"You do not have enough resources to build a building."; - -"You cannot erect a building at this place."; -"You cannot erect a building at this place."; - -"This character does not exist."; -"This character does not exist."; - -"Duel has not been successfully cancelled."; -"Duel has not been successfully cancelled."; - -"Duel cancelled successfully."; -"Duel cancelled successfully."; - -"The duel has been successfully started."; -"The duel has been successfully started."; - -"There is a problem with initiating the duel."; -"There is a problem with initiating the duel."; - -"No errors occurred."; -"No errors occurred."; - -"There are no combatants."; -"There are no combatants."; - -"No status points left."; -"No status points left."; - -"Remaining status points are too low."; -"Remaining status points are too low."; - -"You entered an incorrect value."; -"You entered an incorrect value."; - -"Suborder or the Order is incorrect."; -"Suborder or the Order is incorrect."; - -"Broken contract between player %d and player %d."; -"Broken contract between player %d and player %d."; - -"Turn the Roulette for %d Yang."; -"Turn the Roulette for %d Yang."; - -"The Item log placed into the syslog."; -"The Item log placed into the syslog."; - -"Information for the Kingdoms"; -"Information for the Kingdoms"; - -"Choose the Map Information of the Holy Land %d Entrance %d %d %d"; -"Choose the Map Information of the Holy Land %d Entrance %d %d %d"; - -"An error has occurred."; -"An error has occurred."; - -"%s killcount %d mobkillcount %d bosskillcount %d Number Holy Land %d"; -"%s killcount %d mobkillcount %d bosskillcount %d Number Holy Land %d"; - -"Information about the status of the kingdom battle"; -"Information about the status of the kingdom battle"; - -"Your request is loading. Please wait."; -"Your request is loading. Please wait."; - -"You cannot open a Storeroom while another window is open."; -"You cannot open a Storeroom while another window is open."; - -"[Storeroom] Storeroom password has been changed."; -"[Storeroom] Storeroom password has been changed."; - -"[Storeroom] You have entered the wrong password."; -"[Storeroom] You have entered the wrong password."; - -"Your playing time is going to run out in %d minutes."; -"Your playing time is going to run out in %d minutes."; - -"Regularly voted."; -"Regularly voted."; - -"Already voted."; -"Already voted."; - -"%s player already in the vote."; -"%s player already in the vote."; - -"OX Event is over. No errors occurred. (Flag: %d)"; -"OX Event is over. No errors occurred. (Flag: %d)"; - -"Cannot run for office."; -"Cannot run for office."; - -"%s still has %u Yang available."; -"%s still has %u Yang available."; - -"%s still has %d Yang available."; -"%s still has %d Yang available."; - -"You do not have enough Yang."; -"You do not have enough Yang."; - -"%s is deleted as an Emperor Candidate."; -"%s is deleted as an Emperor Candidate."; - -"%s is not a candidate for the emperor elections."; -"%s is not a candidate for the emperor elections."; - -"%s has been nominated as emperor."; -"%s has been nominated as emperor."; - -"%s cannot be nominated as emperor."; -"%s cannot be nominated as emperor."; - -"The %s Emperor gets driven out."; -"The %s Emperor gets driven out."; - -"The %s Emperor cannot be driven out."; -"The %s Emperor cannot be driven out."; - -"OX Event is not accepting any more participants."; -"OX Event is not accepting any more participants."; - -"Shinsoo Kingdom"; -"Shinsoo Kingdom"; - -"Chunjo Kingdom"; -"Chunjo Kingdom"; - -"Jinno Kingdom"; -"Jinno Kingdom"; - -"Your fishing points have increased! (%d/%d)"; -"Your fishing points have increased! (%d/%d)"; - -"You have reached the maximum number of fishing points."; -"You have reached the maximum number of fishing points."; - -"Go to the Fisherman and get your Fishing Pole upgraded!"; -"Go to the Fisherman and get your Fishing Pole upgraded!"; - -"You lost your bait to the fish."; -"You lost your bait to the fish."; - -"You have caught a fish! (%s)"; -"You have caught a fish! (%s)"; - -"The length of the captured fish is %.2fcm."; -"The length of the captured fish is %.2fcm."; - -"Fishing Event 'Great Zander'"; -"Fishing Event 'Great Zander'"; - -"OX The other event participants are being noted down."; -"OX The other event participants are being noted down."; - -"Fishing Event 'Carp'"; -"Fishing Event 'Carp'"; - -"%s: %d"; -"%s: %d"; - -"You have caught %d of %d ."; -"You have caught %d of %d ."; - -"The fish vanished in the depths of the water."; -"The fish vanished in the depths of the water."; - -"There is a Clam inside the Fish."; -"There is a Clam inside the Fish."; - -"There is a Worm inside the Fish."; -"There is a Worm inside the Fish."; - -"You are roasting %s over the fire."; -"You are roasting %s over the fire."; - -"You cannot trade because you are carrying more than 2 billion Yang."; -"You cannot trade because you are carrying more than 2 billion Yang."; - -"You can't give your shop an invalid name."; -"You can't give your shop an invalid name."; - -"You can't sell Item-Shop items in a private shop."; -"You can't sell Item-Shop items in a private shop."; - -"OX The other event participants have not been noted down."; -"OX The other event participants have not been noted down."; - -"Mining is finished."; -"Mining is finished."; - -"You need a Pickaxe in order to extract ore!"; -"You need a Pickaxe in order to extract ore!"; - -"Please choose a Fishing Pole."; -"Please choose a Fishing Pole."; - -"Place the Bait on the Hook first."; -"Place the Bait on the Hook first."; - -"You can't go fishing without a fishing pole!"; -"You can't go fishing without a fishing pole!"; - -"[Group] You cannot make a request because the group leader is not online."; -"[Group] You cannot make a request because the group leader is not online."; - -"[Group] You cannot form a group with players from another kingdom."; -"[Group] You cannot form a group with players from another kingdom."; - -"[Group] You cannot invite players while you are in a dungeon."; -"[Group] You cannot invite players while you are in a dungeon."; - -"[Group] You cannot invite a player while you are in observer mode."; -"[Group] You cannot invite a player while you are in observer mode."; - -"[Group] Only players with a level difference of -30 to +30 can be invited."; -"[Group] Only players with a level difference of -30 to +30 can be invited."; - -"Number of other participants : %d"; -"Number of other participants : %d"; - -"[Group] You cannot invite this player, as their level is too low."; -"[Group] You cannot invite this player, as their level is too low."; - -"[Group] You cannot invite this player, as their level is too high."; -"[Group] You cannot invite this player, as their level is too high."; - -"[Group] You cannot invite any more players into your group."; -"[Group] You cannot invite any more players into your group."; - -"You want to join %s's group."; -"You want to join %s's group."; - -"This player is not in this group."; -"This player is not in this group."; - -"[Group] You cannot join this group because it is already full."; -"[Group] You cannot join this group because it is already full."; - -"[Group] You do not have the right to invite someone."; -"[Group] You do not have the right to invite someone."; - -"[Group] %s has declined your group invitation."; -"[Group] %s has declined your group invitation."; - -"[Group] %s is already in the group."; -"[Group] %s is already in the group."; - -"[Group] You cannot accept an invitation into a dungeon."; -"[Group] You cannot accept an invitation into a dungeon."; - -"OX Event is finishing."; -"OX Event is finishing."; - -"[Group] You cannot accept the invitation."; -"[Group] You cannot accept the invitation."; - -"[Group] %s has declined your invitation."; -"[Group] %s has declined your invitation."; - -"[Group] %s has joined your group."; -"[Group] %s has joined your group."; - -"[Group] %s has joined your Group."; -"[Group] %s has joined your Group."; - -"You can't use a private shop now."; -"You can't use a private shop now."; - -"This player is already trading with another player."; -"This player is already trading with another player."; - -"Metin2 Confirmation Number: %s"; -"Metin2 Confirmation Number: %s"; - -"Your Confirmation Number is not correct. Please try again."; -"Your Confirmation Number is not correct. Please try again."; - -"The mobile phone number is registered."; -"The mobile phone number is registered."; - -"You cannot teleport to the player."; -"You cannot teleport to the player."; - -"OX The prize has been awarded. ID: %d Quantity: %d"; -"OX The prize has been awarded. ID: %d Quantity: %d"; - -"This player is not online."; -"This player is not online."; - -"The player is playing on channel %d. (You are on channel %d.)"; -"The player is playing on channel %d. (You are on channel %d.)"; - -"After opening the Storeroom, you cannot go anywhere else for %d seconds."; -"After opening the Storeroom, you cannot go anywhere else for %d seconds."; - -"You cannot go elsewhere for a period of time after the trade."; -"You cannot go elsewhere for a period of time after the trade."; - -"After trading you cannot go elsewhere for %d seconds."; -"After trading you cannot go elsewhere for %d seconds."; - -"The duel has finished, because your combatant vanished."; -"The duel has finished, because your combatant vanished."; - -"There is no limit for Potions."; -"There is no limit for Potions."; - -"You can use up to %d potions."; -"You can use up to %d potions."; - -"The fight will start in 10 seconds."; -"The fight will start in 10 seconds."; - -"The duel has begun."; -"The duel has begun."; - -"TRUE"; -"TRUE"; - -"The duel is being finished because there is a problem in the duel arena."; -"The duel is being finished because there is a problem in the duel arena."; - -"The duel has finished because of a timeout."; -"The duel has finished because of a timeout."; - -"In 10 seconds you will be teleported into the city."; -"In 10 seconds you will be teleported into the city."; - -"The duel has been stopped because there is a problem in the arena."; -"The duel has been stopped because there is a problem in the arena."; - -"Your combatant has got some problems. The duel is being cancelled."; -"Your combatant has got some problems. The duel is being cancelled."; - -"The duel is being cancelled as there is a problem with the combatant."; -"The duel is being cancelled as there is a problem with the combatant."; - -"%s has won the duel."; -"%s has won the duel."; - -"%s has won."; -"%s has won."; - -"You will be teleported into the city in 10 seconds."; -"You will be teleported into the city in 10 seconds."; - -"The next round will begin in 10 seconds."; -"The next round will begin in 10 seconds."; - -"FALSE"; -"FALSE"; - -"The combatants have been separated. The duel has been stopped."; -"The combatants have been separated. The duel has been stopped."; - -"The quota of the Item Drop is at the moment plus %d%%"; -"The quota of the Item Drop is at the moment plus %d%%"; - -"The quota of the Yang Drop is at the moment plus %d%%"; -"The quota of the Yang Drop is at the moment plus %d%%"; - -"The drop rate for Yang rain is currently %d%% higher."; -"The drop rate for Yang rain is currently %d%% higher."; - -"The experience bonus is currently an additional %d%%."; -"The experience bonus is currently an additional %d%%."; - -"You do not have the correct client version. Please install the normal patch."; -"You do not have the correct client version. Please install the normal patch."; - -"You cannot trade in the shop while another window is open."; -"You cannot trade in the shop while another window is open."; - -"You are too far away from the shop to buy something."; -"You are too far away from the shop to buy something."; - -"You are too far away from the shop to sell something."; -"You are too far away from the shop to sell something."; - -"Total number of the Quiz: %d"; -"Total number of the Quiz: %d"; - -"This sale will be taxed %d%%."; -"This sale will be taxed %d%%."; - -"You cannot ride a Horse while you are transformed."; -"You cannot ride a Horse while you are transformed."; - -"You cannot ride while you are wearing a Wedding Dress or a Tuxedo."; -"You cannot ride while you are wearing a Wedding Dress or a Tuxedo."; - -"You do not have a Horse."; -"You do not have a Horse."; - -"Your Horse is dead."; -"Your Horse is dead."; - -"Your Horse's endurance is too low."; -"Your Horse's endurance is too low."; - -"Calling the Horse has failed."; -"Calling the Horse has failed."; - -"'s Horse"; -"'s Horse"; - -"The wedding is finishing soon."; -"The wedding is finishing soon."; - -"Will be left automatically."; -"Will be left automatically."; - -"The war is already over."; -"The war is already over."; - -"The result will follow in 10 seconds."; -"The result will follow in 10 seconds."; - -"You cannot trade while observing."; -"You cannot trade while observing."; - -"If the window is open, you cannot trade with others."; -"If the window is open, you cannot trade with others."; - -"The other person is currently busy so you cannot trade right now."; -"The other person is currently busy so you cannot trade right now."; - -"The other person has cancelled the trade."; -"The other person has cancelled the trade."; - -"Not enough Yang or not enough space in the inventory."; -"Not enough Yang or not enough space in the inventory."; - -"The other person does not have enough Yang or does not have any space left in their inventory."; -"The other person does not have enough Yang or does not have any space left in their inventory."; - -"The other person has no space left in their inventory."; -"The other person has no space left in their inventory."; - -"The trade with %s has been successful."; -"The trade with %s has been successful."; - -"You did not lose any Experience because of the Blessing of the Dragon God."; -"You did not lose any Experience because of the Blessing of the Dragon God."; - -"Current score: Shinsoo %d, Chunjo %d, Jinno %d"; -"Current score: Shinsoo %d, Chunjo %d, Jinno %d"; - -"The correct answer is:"; -"The correct answer is:"; - -"%s deadcount %d Empire %d killcount %d(Purpose %d) killmobcount %d, RegenFlag %d"; -"%s deadcount %d Empire %d killcount %d(Purpose %d) killmobcount %d, RegenFlag %d"; - -"The devil of the hallowed place: [ENTER][ENTER]"; -"The devil of the hallowed place: [ENTER][ENTER]"; - -", you don't have any right to be here! The members of your kingdom will leave this hallowed ground in 10 seconds."; -", you don't have any right to be here! The members of your kingdom will leave this hallowed ground in 10 seconds."; - -"%s has been defeated and drops out of the Kingdom Battle."; -"%s has been defeated and drops out of the Kingdom Battle."; - -"Number of Monsters in the Kingdom Battle:"; -"Number of Monsters in the Kingdom Battle:"; - -"If you defeat the Guard of the Holy Place, you will become the owner of it."; -"If you defeat the Guard of the Holy Place, you will become the owner of it."; - -"You did not drop any Item(s) as you are protected by the Dragon God."; -"You did not drop any Item(s) as you are protected by the Dragon God."; - -"Additional Stabbing Weapon Damage %d"; -"Additional Stabbing Weapon Damage %d"; - -"%s block! (%d%%)"; -"%s block! (%d%%)"; - -"%s avoid! (%d%%)"; -"%s avoid! (%d%%)"; - -"Yes (O)"; -"Yes (O)"; - -"%s[%d]'s Attack Position: %d %d"; -"%s[%d]'s Attack Position: %d %d"; - -"Please enter the Order in full length."; -"Please enter the Order in full length."; - -"You cannot do this whilst sitting on a Horse."; -"You cannot do this whilst sitting on a Horse."; - -"You cannot do that while you are lying on the ground."; -"You cannot do that while you are lying on the ground."; - -"In my Dreams? What?"; -"In my Dreams? What?"; - -"Get up first."; -"Get up first."; - -"This command does not exist."; -"This command does not exist."; - -"[Group] This group has been disbanded."; -"[Group] This group has been disbanded."; - -"[Group] You cannot call the target."; -"[Group] You cannot call the target."; - -"[Group] You cannot call group members over to your current position."; -"[Group] You cannot call group members over to your current position."; - -"No (X)"; -"No (X)"; - -"Your group works well together, and group members near the group leader will receive an experience bonus."; -"Your group works well together, and group members near the group leader will receive an experience bonus."; - -"Leader"; -"Leader"; - -"Member"; -"Member"; - -"[Guild] Provided Experience is larger then left Experience."; -"[Guild] Provided Experience is larger then left Experience."; - -"[Guild] This message cannot be deleted."; -"[Guild] This message cannot be deleted."; - -"[Guild] Not enough Dragon Ghost. (%d, %d)"; -"[Guild] Not enough Dragon Ghost. (%d, %d)"; - -"[Guild] You cannot use the guild skills yet."; -"[Guild] You cannot use the guild skills yet."; - -"[Guild] %d skill has been applied (%d, %d) to %u."; -"[Guild] %d skill has been applied (%d, %d) to %u."; - -"[Guild] This player is on channel %d. (Current channel: %d)"; -"[Guild] This player is on channel %d. (Current channel: %d)"; - -"[Guild] This player is not online."; -"[Guild] This player is not online."; - -"In 5 sec. everyone who gave an incorrect answer will be removed."; -"In 5 sec. everyone who gave an incorrect answer will be removed."; - -"[Guild] This guild skill can only be used during war."; -"[Guild] This guild skill can only be used during war."; - -"[Guild] %u Dragon ghost points have been restored."; -"[Guild] %u Dragon ghost points have been restored."; - -"[Guild] Only the guild leader can withdraw Yang."; -"[Guild] Only the guild leader can withdraw Yang."; - -"[Guild] The player has declined the guild invitation."; -"[Guild] The player has declined the guild invitation."; - -"[Guild] You do not have the authority to invite someone to join the guild."; -"[Guild] You do not have the authority to invite someone to join the guild."; - -"[Guild] You cannot invite players from another kingdom into the guild."; -"[Guild] You cannot invite players from another kingdom into the guild."; - -"[Guild] This player can be invited again after %d day(s)."; -"[Guild] This player can be invited again after %d day(s)."; - -"[Guild] After the rearrangement you can invite members again after %d days."; -"[Guild] After the rearrangement you can invite members again after %d days."; - -"[Guild] This person is already a member of another Guild."; -"[Guild] This person is already a member of another Guild."; - -"[Guild] The maximum guild capacity has been reached."; -"[Guild] The maximum guild capacity has been reached."; - -"Ready for the next question?"; -"Ready for the next question?"; - -"You cannot train this skill."; -"You cannot train this skill."; - -"You cannot train this skill up to Grand Master level."; -"You cannot train this skill up to Grand Master level."; - -"You already are a Master of this skill. You cannot train this skill any further."; -"You already are a Master of this skill. You cannot train this skill any further."; - -"Your Skill is not high enough to become a Grand Master."; -"Your Skill is not high enough to become a Grand Master."; - -"That did not work. Damn!"; -"That did not work. Damn!"; - -"Training has failed. Please try again later."; -"Training has failed. Please try again later."; - -"My body is full of energy!"; -"My body is full of energy!"; - -"The training seems to be working already..."; -"The training seems to be working already..."; - -"You successfully finished your training with the book."; -"You successfully finished your training with the book."; - -"You cannot read this due to your lack of experience."; -"You cannot read this due to your lack of experience."; - -"Question."; -"Question."; - -"You cannot train this skill with a Book."; -"You cannot train this skill with a Book."; - -"This skill's level is not high enough to be trained with a Book."; -"This skill's level is not high enough to be trained with a Book."; - -"I'm making progress, but I still haven't understood everything."; -"I'm making progress, but I still haven't understood everything."; - -"These instructions are difficult to understand. I have to carry on studying."; -"These instructions are difficult to understand. I have to carry on studying."; - -"I understand this chapter. But I've got to carry on working hard."; -"I understand this chapter. But I've got to carry on working hard."; - -"You have successfully finished your training with the Book."; -"You have successfully finished your training with the Book."; - -"Teleportation has failed."; -"Teleportation has failed."; - -"No Horse here. Ask the Stable Boy."; -"No Horse here. Ask the Stable Boy."; - -"Please use an item to call a Horse."; -"Please use an item to call a Horse."; - -"%s FP-Consumption: %d"; -"%s FP-Consumption: %d"; - -"If it's correct, then go to O. If it's wrong, go to X."; -"If it's correct, then go to O. If it's wrong, go to X."; - -"I am burning inside, but it is calming down my body. My Chi has to stabilise."; -"I am burning inside, but it is calming down my body. My Chi has to stabilise."; - -"A little slow, but steady... Without stopping!"; -"A little slow, but steady... Without stopping!"; - -"Yes, that feels great. My body is full of Chi."; -"Yes, that feels great. My body is full of Chi."; - -"I have read it! Now the Chi will spread through my body."; -"I have read it! Now the Chi will spread through my body."; - -"The training is completed."; -"The training is completed."; - -"I am on the last page of the book. The training is nearly finished!"; -"I am on the last page of the book. The training is nearly finished!"; - -"Nearly finished! Just a little bit more to go!"; -"Nearly finished! Just a little bit more to go!"; - -"Eureka! I have nearly finished reading it!"; -"Eureka! I have nearly finished reading it!"; - -"Only a few more pages and then I'll have read everything."; -"Only a few more pages and then I'll have read everything."; - -"I feel refreshed."; -"I feel refreshed."; - -"Correct!"; -"Correct!"; - -"Now I understand it!"; -"Now I understand it!"; - -"Okay I have to stay concentrated!"; -"Okay I have to stay concentrated!"; - -"I keep reading the same line over and over again."; -"I keep reading the same line over and over again."; - -"I do not want to learn any more."; -"I do not want to learn any more."; - -"It is a lot more complicated and more difficult to understand than I thought."; -"It is a lot more complicated and more difficult to understand than I thought."; - -"It's hard for me to concentrate. I should take a break."; -"It's hard for me to concentrate. I should take a break."; - -"Your chat has been blocked by a GM."; -"Your chat has been blocked by a GM."; - -"Your chat block has been lifted."; -"Your chat block has been lifted."; - -"The Build window is already open."; -"The Build window is already open."; - -"You cannot build something while another trade/storeroom window is open."; -"You cannot build something while another trade/storeroom window is open."; - -"No further improvements possible."; -"No further improvements possible."; - -"The build window is not open."; -"The build window is not open."; - -"You do not have the right material."; -"You do not have the right material."; - -"[Guild] Please try again later."; -"[Guild] Please try again later."; - -"You have to read %d more skill books to improve this skill."; -"You have to read %d more skill books to improve this skill."; - -"You are only able to use this function while you are at the castle."; -"You are only able to use this function while you are at the castle."; - -"TEST: The Gold Bar has been paid back to your kingdom's safe."; -"TEST: The Gold Bar has been paid back to your kingdom's safe."; - -"TEST: In your kingdom's safe there are: %d"; -"TEST: In your kingdom's safe there are: %d"; - -"TEST: You cannot pay the Gold Bar back into your kingdom's safe."; -"TEST: You cannot pay the Gold Bar back into your kingdom's safe."; - -"[Guild] The guild has reached %d points."; -"[Guild] The guild has reached %d points."; - -"This item cannot be improved."; -"This item cannot be improved."; - -"The free weapon improvements can only be used on weapons up to level 20."; -"The free weapon improvements can only be used on weapons up to level 20."; - -"You cannot use this item because you do not fulfil all the requirements."; -"You cannot use this item because you do not fulfil all the requirements."; - -"You are not able to use that item because you do not have the right gender."; -"You are not able to use that item because you do not have the right gender."; - -"Use: transfer "; -"Use: transfer "; - -"This function can only be used by the emperor."; -"This function can only be used by the emperor."; - -"You cannot recruit players from another kingdom."; -"You cannot recruit players from another kingdom."; - -"The player %s is on channel %d at the moment. (Your channel: %d)"; -"The player %s is on channel %d at the moment. (Your channel: %d)"; - -"You have recruited %s players."; -"You have recruited %s players."; - -"There is no user with this name."; -"There is no user with this name."; - -"You cannot recruit yourself."; -"You cannot recruit yourself."; - -"Your level is too low to use this item."; -"Your level is too low to use this item."; - -"You cannot upgrade anything while another window is open."; -"You cannot upgrade anything while another window is open."; - -"The emperor of %s has changed to %s."; -"The emperor of %s has changed to %s."; - -"There are %s wars to inflame the bonfires."; -"There are %s wars to inflame the bonfires."; - -"%s has successfully defended."; -"%s has successfully defended."; - -"30 minutes from now on the player %s can get a reward because he destroyed the bonfire."; -"30 minutes from now on the player %s can get a reward because he destroyed the bonfire."; - -"30 minutes are over. The bonfires have disappeared."; -"30 minutes are over. The bonfires have disappeared."; - -"A bonfire was inflamed at %s to warn because of a battle."; -"A bonfire was inflamed at %s to warn because of a battle."; - -"%s has destroyed the bonfire."; -"%s has destroyed the bonfire."; - -"%s lost the war as they have not been able to defend the castle."; -"%s lost the war as they have not been able to defend the castle."; - -"%s has destroyed all the bonfires."; -"%s has destroyed all the bonfires."; - -"You can only open the shop if you take off your armour."; -"You can only open the shop if you take off your armour."; - -"%d hours %d minutes %d seconds left on your chat block"; -"%d hours %d minutes %d seconds left on your chat block"; - -"%d hours %d seconds left on your chat block"; -"%d hours %d seconds left on your chat block"; - -"%d minutes %d seconds left on your chat block"; -"%d minutes %d seconds left on your chat block"; - -"Yang rain drop rate"; -"Yang rain drop rate"; - -"Not the right material for an upgrade."; -"Not the right material for an upgrade."; - -"All kingdoms"; -"All kingdoms"; - -"Item drop rate in percent"; -"Item drop rate in percent"; - -"Yang drop rate in percent"; -"Yang drop rate in percent"; - -"Experience percentage"; -"Experience percentage"; - -"%d seconds left on your chat block"; -"%d seconds left on your chat block"; - -"You cannot express emotions whilst riding a horse."; -"You cannot express emotions whilst riding a horse."; - -"You cannot use emotions with a player who is riding on a Horse."; -"You cannot use emotions with a player who is riding on a Horse."; - -"[Guild] The enemy's guild leader is offline."; -"[Guild] The enemy's guild leader is offline."; - -"[Guild] This guild is taking part in a battle at the moment."; -"[Guild] This guild is taking part in a battle at the moment."; - -"You're already riding. Get off first."; -"You're already riding. Get off first."; - -"You cannot upgrade items with this Scroll."; -"You cannot upgrade items with this Scroll."; - -"You can only be rewarded once for the Demon Tower Quest."; -"You can only be rewarded once for the Demon Tower Quest."; - -"Dragon Stone has been removed."; -"Dragon Stone has been removed."; - -"You cannot move the item within the refinement window."; -"You cannot move the item within the refinement window."; - -"Dragon Stone remaining duration has been extracted."; -"Dragon Stone remaining duration has been extracted."; - -"Remaining duration extraction failed."; -"Remaining duration extraction failed."; - -"Removal of Dragon Stone failed. But you have received the following: %s"; -"Removal of Dragon Stone failed. But you have received the following: %s"; - -"Removal of Dragon Stone failed."; -"Removal of Dragon Stone failed."; - -"This item is not required for improving the clarity level."; -"This item is not required for improving the clarity level."; - -"This item cannot be advanced this way."; -"This item cannot be advanced this way."; - -"Improvement of the clarity level successful."; -"Improvement of the clarity level successful."; - -"Refinement up one class failed."; -"Refinement up one class failed."; - -"This item is not required for refinement."; -"This item is not required for refinement."; - -"Refinement up one class was successful."; -"Refinement up one class was successful."; - -"Improvement of the clarity level failed."; -"Improvement of the clarity level failed."; - -"You do not own the materials required to strengthen the Dragon Stone."; -"You do not own the materials required to strengthen the Dragon Stone."; - -"This Dragon Stone cannot be used for strengthening."; -"This Dragon Stone cannot be used for strengthening."; - -"Strengthening was successful."; -"Strengthening was successful."; - -"Strengthening failed."; -"Strengthening failed."; - -"You are already carrying a Dragon Stone of this type."; -"You are already carrying a Dragon Stone of this type."; - -"The Dragon Stone cannot be removed."; -"The Dragon Stone cannot be removed."; - -"You have already equipped this kind of Dragon Stone."; -"You have already equipped this kind of Dragon Stone."; - -"Before you open the Cor Draconis, you have to complete the Dragon Stone quest and activate the Dragon Stone Alchemy."; -"Before you open the Cor Draconis, you have to complete the Dragon Stone quest and activate the Dragon Stone Alchemy."; - -"You can only discard the belt when there are no longer any items in its inventory."; -"You can only discard the belt when there are no longer any items in its inventory."; - -"You can combine the Blessing Scroll with the Magic Iron Ore."; -"You can combine the Blessing Scroll with the Magic Iron Ore."; - -"You cannot equip this item in your belt inventory."; -"You cannot equip this item in your belt inventory."; - -"[1106-??]No puedes unir esto."; -"[1106-??]No puedes unir esto."; - -"You have invested %d Yang."; -"You have invested %d Yang."; - -"There is no Stone available to take out."; -"There is no Stone available to take out."; - -"You cannot store this location."; -"You cannot store this location."; - -"There isn't enough space in your inventory."; -"There isn't enough space in your inventory."; - -"You cannot teleport to a safe position in a foreign Kingdom."; -"You cannot teleport to a safe position in a foreign Kingdom."; - -"You don't have enough HP."; -"You don't have enough HP."; - -"You don't have enough Spell Points (SP) to use this."; -"You don't have enough Spell Points (SP) to use this."; - -"You'll reach your destination in %d seconds."; -"You'll reach your destination in %d seconds."; - -"You can only use a Moon Cake every 5 seconds."; -"You can only use a Moon Cake every 5 seconds."; - -"You cannot use this item in a duel."; -"You cannot use this item in a duel."; - -"You have won %d Yang."; -"You have won %d Yang."; - -"You cannot build a campfire here."; -"You cannot build a campfire here."; - -"You cannot build a campfire under water."; -"You cannot build a campfire under water."; - -"Closed. You should look for the key."; -"Closed. You should look for the key."; - -"This item cannot be opened with a key."; -"This item cannot be opened with a key."; - -"That's the right key."; -"That's the right key."; - -"You have received %d Yang."; -"You have received %d Yang."; - -"A mysterious light comes out of the box."; -"A mysterious light comes out of the box."; - -"You have received %d experience points."; -"You have received %d experience points."; - -"Look what came out of the box!"; -"Look what came out of the box!"; - -"[Guild] The guild level is too low."; -"[Guild] The guild level is too low."; - -"If you inhale the red smoke coming out of the box, your speed will increase!"; -"If you inhale the red smoke coming out of the box, your speed will increase!"; - -"You cannot add more bonus."; -"You cannot add more bonus."; - -"New bonus added successfully."; -"New bonus added successfully."; - -"You cannot change the bonuses."; -"You cannot change the bonuses."; - -"%s needed."; -"%s needed."; - -"OX-Question: "; -"OX-Question: "; diff --git a/gamefiles/locale/english/mob_drop_item.txt.edited b/gamefiles/locale/english/mob_drop_item.txt.edited deleted file mode 100644 index 495eebc..0000000 --- a/gamefiles/locale/english/mob_drop_item.txt.edited +++ /dev/null @@ -1,9135 +0,0 @@ -<<<<<<< .mine -Group θ -{ - Mob 103 - Type drop - 1 1012 1 0.2 - 2 4012 1 0.2 - 3 11402 1 0.2 - 4 16022 1 0.2 -} -Group Ǫ -{ - Mob 104 - Type drop - 1 32 1 0.2 - 2 52 1 0.2 - 3 15002 1 0.2 - 4 2022 1 0.2 - 5 16002 1 0.2 -} -Group Ǫθ -{ - Mob 105 - Type drop - 1 11602 1 0.2 - 2 12482 1 0.2 - 3 15022 1 0.2 - 4 16062 1 0.2 -} -Group ȸθ -{ - Mob 107 - Type drop - 1 12342 1 0.2 - 2 11401 1 0.2 - 3 17022 1 0.2 - 4 17002 1 0.2 -} -Group -{ - Mob 109 - Type drop - 1 11802 1 0.2 - 2 12622 1 0.2 - 3 15042 1 0.2 - 4 5012 1 0.2 - 5 7032 1 0.2 -} -Group ȸ -{ - Mob 111 - Type drop - 1 50721 1 1 -} -Group -{ - Mob 112 - Type drop - 1 50723 1 1 -} -Group Ұ -{ - Mob 113 - Type drop - 1 50721 1 1 -} -Group ȣ -{ - Mob 115 - Type drop - 1 50723 1 1 -} -Group ֹ_θ -{ - Kill_drop 400 - Mob 131 - Type kill - 1 7160 1 25 10 -} -Group ֹ -{ - Mob 131 - Type drop - 1 50722 1 2 -} -Group ֹθ -{ - Mob 132 - Type drop - 1 50723 1 1 -} -Group ֹ_Ǫθ -{ - Kill_drop 400 - Mob 134 - Type kill - 1 5110 1 25 10 - 2 290 1 15 10 -} -Group ֹ_ -{ - Kill_drop 400 - Mob 138 - Type kill - 1 1170 1 25 10 -} -Group ֹ -{ - Mob 139 - Type drop - 1 50724 1 1 -} -Group ֹȸ -{ - Mob 140 - Type drop - 1 50726 1 1 -} -Group ֹ_ -{ - Kill_drop 400 - Mob 141 - Type kill - 1 13192 1 25 20 - 2 13193 1 20 20 - 3 3210 1 15 10 -} -Group ֹȣ -{ - Mob 143 - Type drop - 1 50723 1 1 -} -Group Ǫθû -{ - Mob 151 - Type drop - 1 1013 1 4 - 2 4013 1 4 - 3 11403 1 4 - 4 16023 1 4 - 5 1014 1 4 - 6 4014 1 4 - 7 11404 1 4 - 8 16024 1 4 -} -Group ȸθ빫 -{ - Mob 152 - Type drop - 1 33 1 4 - 2 53 1 4 - 3 15003 1 4 - 4 2023 1 4 - 5 16003 1 4 - 6 34 1 4 - 7 54 1 4 - 8 15004 1 4 - 9 2024 1 4 - 10 16004 1 4 -} -Group -{ - Mob 153 - Type drop - 1 11803 1 4 - 2 12623 1 4 - 3 15043 1 4 - 4 5013 1 4 - 5 7033 1 4 - 6 11804 1 4 - 7 12624 1 4 - 8 15044 1 4 - 9 5014 1 4 - 10 7034 1 4 -} -Group Ұ -{ - Mob 154 - Type drop - 1 11211 1 12 - 2 11212 1 8 - 3 11213 1 4 - 4 11411 1 12 - 5 11412 1 8 - 6 11413 1 4 -} -Group ȣϾ -{ - Mob 155 - Type drop - 1 11611 1 12 - 2 11612 1 8 - 3 11613 1 4 - 4 11811 1 12 - 5 11812 1 8 - 6 11813 1 4 -} -Group ߽ -{ - Mob 191 - Type drop - 1 71 1 4 - 2 70 1 8 - 3 11611 1 4 - 4 11610 1 8 - 5 72 1 0.3 - 6 11612 1 0.2 - 7 15002 1 0.4 - 8 16042 1 0.4 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30070 1 400 -} -Group -{ - Mob 192 - Type drop - 1 4021 1 4 - 2 4020 1 8 - 3 11411 1 4 - 4 11410 1 8 - 5 1031 1 0.3 - 6 1032 1 0.2 - 7 15042 1 0.5 - 8 27002 30 100 - 9 27003 20 50 - 10 27005 20 50 - 11 27006 10 50 - 12 30004 1 400 -} -Group -{ - Mob 193 - Type drop - 1 7051 1 4 - 2 7050 1 8 - 3 11831 1 4 - 4 11830 1 8 - 5 7061 1 0.3 - 6 7062 1 0.2 - 7 15062 1 0.5 - 8 17042 1 0.5 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30072 1 400 -} -Group ȣ -{ - Mob 194 - Type drop - 1 3051 1 4 - 2 3050 1 8 - 3 11211 1 4 - 4 11210 1 8 - 5 3062 1 0.3 - 6 11212 1 0.2 - 7 15042 1 0.5 - 8 17022 1 0.5 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30037 1 400 -} -Group ܿ -{ - Kill_drop 800 - Mob 301 - Type kill - 1 16082 1 25 10 - 2 16102 1 20 10 - 3 16122 1 15 10 - 4 16142 1 10 10 -} -Group ܿ -{ - Mob 301 - Type drop - 1 50722 1 2 -} -Group ú -{ - Mob 302 - Type drop - 1 8001 30 12 - 2 50724 1 1 -} -Group _̷ -{ - Kill_drop 350 - Mob 304 - Type kill - 1 11232 1 65 10 - 2 11233 1 35 10 - 3 11432 1 65 10 - 4 11433 1 35 10 - 5 11632 1 65 10 - 6 11633 1 35 10 - 7 11832 1 65 10 - 8 11833 1 35 10 -} -Group ܿ -{ - Mob 331 - Type drop - 1 16083 1 4 - 2 16103 1 4 - 3 16123 1 4 - 4 16143 1 4 -} -Group ú -{ - Mob 332 - Type drop - 1 4021 1 4 - 2 4020 1 4 - 3 2051 1 4 - 4 2050 1 4 - 5 15122 1 4 -} -Group -{ - Mob 333 - Type drop - 1 3041 1 4 - 2 3040 1 4 - 3 2041 1 4 - 4 2050 1 4 - 5 15122 1 4 -} -Group -{ - Mob 334 - Type drop - 1 11234 1 6 - 2 11233 1 4 - 3 11434 1 6 - 4 11433 1 4 - 5 11634 1 6 - 6 11633 1 4 - 7 11834 1 6 - 8 11833 1 4 -} -Group -{ - Mob 391 - Type drop - 1 61 1 0.2 - 2 60 1 0.2 - 3 12641 1 0.2 - 4 12640 1 0.2 - 5 15062 1 0.2 -} -Group -{ - Mob 392 - Type drop - 1 4021 1 0.2 - 2 4020 1 0.2 - 3 2051 1 0.2 - 4 2050 1 0.2 - 5 15122 1 0.01 -} -Group -{ - Mob 393 - Type drop - 1 3041 1 4 - 2 3040 1 8 - 3 2041 1 4 - 4 2050 1 8 - 5 15122 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Mob 394 - Type drop - 1 62 1 4 - 2 61 1 8 - 3 92 1 4 - 4 11222 1 8 - 5 15062 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group dzܿ -{ - Kill_drop 1000 - Mob 401 - Type kill - 1 15082 1 25 10 - 2 15102 1 20 10 - 3 15122 1 15 10 - 4 15142 1 10 10 -} -Group dzܿ -{ - Mob 401 - Type drop - 1 50724 1 1 -} -Group dzü -{ - Mob 403 - Type drop - 1 50007 1 0.5 - 2 8001 30 4 -} -Group dz_۵ -{ - Kill_drop 800 - Mob 404 - Type kill - 1 5042 1 65 10 - 2 5032 1 35 10 - 3 12222 1 35 10 - 4 12223 1 15 10 - 5 12362 1 35 10 - 6 12363 1 15 10 - 7 12502 1 35 10 - 8 12503 1 15 10 - 9 12642 1 35 10 - 10 12643 1 15 10 -} -Group dz_ -{ - Kill_drop 500 - Mob 405 - Type kill - 1 7072 1 1 10 - 2 7052 1 1 10 - 3 4022 1 1 10 - 4 1042 1 1 10 -} -Group dz -{ - Mob 405 - Type drop - 1 50721 1 1 -} -Group dz_ -{ - Kill_drop 300 - Mob 406 - Type kill - 1 82 1 65 10 - 2 83 1 35 10 -} -Group dzܿκ -{ - Mob 431 - Type drop - 1 12222 1 4 - 2 12223 1 4 - 3 12362 1 4 - 4 12363 1 4 - 5 50009 1 2 -} -Group dzݴ -{ - Mob 432 - Type drop - 1 12502 1 4 - 2 12503 1 4 - 3 12642 1 4 - 4 12643 1 4 - 5 50009 1 2 -} -Group dzü -{ - Mob 433 - Type drop - 1 7072 1 4 - 2 7052 1 4 - 3 4022 1 4 - 4 1042 1 4 - 5 50009 1 2 -} -Group dz -{ - Mob 434 - Type drop - 1 61 1 4 - 2 12640 1 4 - 3 91 1 4 - 4 15060 1 4 - 5 50009 1 2 -} -Group dzȣ -{ - Mob 435 - Type drop - 1 16041 1 4 - 2 7050 1 4 - 3 15141 1 4 - 4 11820 1 4 - 5 50009 1 2 -} -Group dz -{ - Mob 436 - Type drop - 1 71 1 4 - 2 5040 1 4 - 3 12501 1 4 - 4 17100 1 4 - 5 15102 1 4 - 6 50009 1 2 -} -Group ȯ -{ - Mob 491 - Type drop - 1 4021 1 4 - 2 12360 1 8 - 3 13001 1 4 - 4 15080 1 8 - 5 17082 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Mob 492 - Type drop - 1 61 1 4 - 2 12640 1 8 - 3 91 1 4 - 4 15060 1 8 - 5 27002 30 100 - 6 27003 20 50 - 7 27005 20 50 - 8 27006 10 50 -} -Group -{ - Mob 493 - Type drop - 1 16041 1 4 - 2 7050 1 8 - 3 15141 1 4 - 4 11820 1 8 - 5 27002 30 100 - 6 27003 20 50 - 7 27005 20 50 - 8 27006 10 50 -} -Group -{ - Mob 494 - Type drop - 1 71 1 4 - 2 5040 1 8 - 3 12501 1 4 - 4 17100 1 8 - 5 15102 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Kill_drop 2000 - Mob 502 - Type kill - 1 17082 1 25 10 - 2 17102 1 20 10 - 3 17122 1 15 10 - 4 17142 1 10 10 -} -Group -{ - Mob 502 - Type drop - 1 50724 1 1 -} -Group ijü -{ - Mob 503 - Type drop - 1 50013 1 0.5 - 2 8001 50 20 - 3 50721 1 1 -} -Group ɱü -{ - Kill_drop 500 - Mob 503 - Type kill - 1 2072 1 10 10 - 2 290 1 10 10 - 3 2150 1 15 10 -} -Group -{ - Kill_drop 400 - Mob 504 - Type kill - 1 3072 1 65 10 - 2 3073 1 35 10 - 3 290 1 40 10 - 4 2150 1 20 10 - 5 11242 1 35 10 - 6 11243 1 15 10 - 7 11442 1 35 10 - 8 11443 1 15 10 - 9 11642 1 35 10 - 10 11643 1 15 10 - 11 11842 1 35 10 - 12 11843 1 15 10 -} -Group -{ - Mob 504 - Type drop - 1 50725 1 1 -} -Group ij -{ - Mob 531 - Type drop - 1 17083 1 8 - 2 17103 1 6 - 3 17123 1 4 - 4 17143 1 4 - 5 50008 1 2 -} -Group ij -{ - Mob 532 - Type drop - 1 16083 1 4 - 2 16103 1 4 - 3 16123 1 4 - 4 16143 1 4 - 5 50008 1 2 -} -Group ijüõ -{ - Mob 533 - Type drop - 1 2073 1 4 - 2 292 1 4 - 3 2152 1 4 - 4 50008 1 2 -} -Group ijδ尭õ -{ - Mob 534 - Type drop - 1 3072 1 8 - 2 3073 1 4 - 3 290 1 6 - 4 2150 1 4 - 5 11244 1 2 - 6 11243 1 4 - 7 11444 1 2 - 8 11443 1 4 - 9 11644 1 2 - 10 11643 1 4 - 11 11844 1 2 - 12 11843 1 4 - 13 50008 1 2 -} -Group ܴ -{ - Mob 591 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11432 1 0.2 - 4 15122 1 0.2 - 5 27002 50 100 - 6 27003 30 50 - 7 27005 30 50 - 8 27006 20 50 -} -Group ͺл -{ - Mob 601 - Type drop - 1 7082 1 8 - 2 5052 1 8 - 3 14082 1 4 - 4 14102 1 4 - 5 14122 1 4 - 6 14142 1 4 -} -Group ôĺǸ -{ - Mob 602 - Type drop - 1 93 1 8 - 2 1053 1 8 - 3 1172 1 8 -} -Group ε -{ - Mob 603 - Type drop - 1 71 1 4 - 2 5040 1 8 - 3 12501 1 4 - 4 17100 1 8 - 5 15102 1 4 -} -Group ͸ο -{ - Mob 604 - Type drop - 1 1042 1 4 - 2 2072 1 4 - 3 11422 1 4 - 4 15122 1 4 -} -Group ͺ -{ - Kill_drop 400 - Mob 631 - Type kill - 1 7082 1 20 10 - 2 5052 1 10 10 - 3 14082 1 25 10 - 4 14102 1 20 10 - 5 14122 1 15 10 - 6 14142 1 10 10 -} -Group ͺ -{ - Mob 631 - Type drop - 1 50722 1 1 -} -Group _ôĺ -{ - Kill_drop 600 - Mob 632 - Type kill - 1 92 1 10 20 - 2 1052 1 10 20 - 3 1170 1 10 20 -} -Group ôĺ -{ - Mob 632 - Type drop - 1 50726 1 1 -} -Group _ -{ - Kill_drop 1200 - Mob 633 - Type kill - 1 3082 1 10 20 - 2 1170 1 10 20 -} -Group -{ - Mob 633 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11432 1 0.2 - 4 15122 1 0.2 -} -Group ͸ -{ - Mob 634 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11422 1 0.2 - 4 15122 1 0.2 -} -Group 屺 -{ - Mob 635 - Type drop - 1 50722 1 1 -} -Group -{ - Kill_drop 500 - Mob 636 - Type kill - 1 7092 1 65 10 - 2 7093 1 35 10 -} -Group -{ - Mob 636 - Type drop - 1 50721 1 4 -} -Group Ŵ_ -{ - Kill_drop 900 - Mob 637 - Type kill - 1 5062 1 65 10 - 2 5063 1 35 10 -} -Group -{ - Kill_drop 1 - Mob 691 - Type kill - 1 50070 1 100 0 -} -Group -{ - Mob 691 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 40 -} -Group б -{ - Kill_drop 300 - Mob 701 - Type kill - 1 2082 1 35 30 - 2 15162 1 32 10 - 3 15182 1 16 10 - 4 15202 1 12 10 - 5 15222 1 8 10 -} -Group бѺ -{ - Kill_drop 500 - Mob 702 - Type kill - 1 11252 1 30 10 - 2 11452 1 30 10 - 3 11652 1 30 10 - 4 11852 1 30 10 - 5 11253 1 60 10 - 6 11453 1 60 10 - 7 11653 1 60 10 - 8 11853 1 60 10 - 9 3210 1 40 10 -} -Group бѺ -{ - Mob 702 - Type drop - 1 50725 1 1 -} -Group б -{ - Kill_drop 200 - Mob 703 - Type kill - 1 15163 1 25 10 - 2 15183 1 20 10 - 3 15203 1 15 10 - 4 15223 1 10 10 - 5 3210 1 20 10 -} -Group б -{ - Mob 703 - Type drop - 1 103 1 0.2 - 2 112 1 0.2 - 3 1062 1 0.2 - 4 11642 1 0.2 - 5 16162 1 0.2 - 6 50724 1 1 -} -Group б -{ - Kill_drop 500 - Mob 704 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 -} -Group б -{ - Mob 704 - Type drop - 1 50723 1 2 -} -Group бິ -{ - Mob 705 - Type drop - 1 50724 1 1 -} -Group бڷ -{ - Kill_drop 100 - Mob 706 - Type kill - 1 102 1 65 10 - 2 103 1 35 10 - 3 12242 1 45 10 - 4 12243 1 30 10 - 5 12382 1 35 10 - 6 12383 1 20 10 - 7 12522 1 25 10 - 8 12523 1 20 10 - 9 12662 1 20 10 - 10 12663 1 15 10 -} -Group бȯ -{ - Kill_drop 40 - Mob 707 - Type kill - 1 3092 1 65 10 - 2 3093 1 35 10 - 3 16162 1 54 30 - 4 16163 1 27 30 - 5 16182 1 36 30 - 6 16183 1 18 30 - 7 16202 1 18 30 - 8 16203 1 9 30 -} -Group бȯ -{ - Mob 707 - Type drop - 1 50723 1 1 -} -Group б -{ - Mob 731 - Type drop - 1 50726 1 2 -} -Group б -{ - Mob 733 - Type drop - 1 50725 1 2 -} -Group б -{ - Kill_drop 700 - Mob 734 - Type kill - 1 11260 1 65 20 - 2 11261 1 35 20 - 3 11460 1 65 20 - 4 11461 1 35 20 - 5 11660 1 65 20 - 6 11661 1 35 20 - 7 11860 1 65 20 - 8 11861 1 35 20 -} -Group бڷ -{ - Kill_drop 300 - Mob 736 - Type kill - 1 122 1 65 10 - 2 123 1 35 10 -} -Group бڷ -{ - Mob 736 - Type drop - 1 50725 1 2 -} -Group бȯ -{ - Kill_drop 300 - Mob 737 - Type kill - 1 3111 1 65 10 - 2 3112 1 35 10 -} -Group бȯ -{ - Mob 737 - Type drop - 1 50727 1 0.8 -} -Group б -{ - Kill_drop 1 - Mob 791 - Type kill - 1 50071 1 100 0 -} -Group б -{ - Mob 791 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 50 -} -Group ȯѹб -{ - Mob 792 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 200 -} -Group ñ -{ - Kill_drop 500 - Mob 901 - Type kill - 1 15162 1 12 30 - 2 15182 1 9 30 - 3 15202 1 6 30 - 4 15222 1 3 30 -} -Group ñ -{ - Mob 901 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11442 1 0.2 - 4 15122 1 0.2 -} -Group -{ - Kill_drop 400 - Mob 902 - Type kill - 1 17162 1 18 30 - 2 17163 1 9 30 - 3 17182 1 12 30 - 4 17183 1 6 30 - 5 17202 1 6 30 - 6 17203 1 3 30 -} -Group -{ - Mob 902 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 -} -Group -{ - Mob 903 - Type drop - 1 50723 1 1 -} -Group -{ - Kill_drop 450 - Mob 904 - Type kill - 1 132 1 6 10 - 2 133 1 3 10 - 3 1092 1 6 10 - 4 1093 1 3 10 -} -Group -{ - Mob 904 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 -} -Group â -{ - Kill_drop 900 - Mob 905 - Type kill - 1 2122 1 65 10 - 2 2123 1 35 10 -} -Group â -{ - Mob 905 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 - 3 50722 1 2 -} -Group ü -{ - Kill_drop 250 - Mob 906 - Type kill - 1 12242 1 6 10 - 2 12243 1 3 10 - 3 12382 1 6 10 - 4 12383 1 3 10 - 5 12522 1 6 10 - 6 12523 1 3 10 - 7 12662 1 6 10 - 8 12663 1 3 10 -} -Group ü -{ - Mob 906 - Type drop - 1 50006 1 1 - 2 8004 100 20 - 3 50723 1 2 -} -Group -{ - Kill_drop 200 - Mob 907 - Type kill - 1 3122 1 65 10 - 2 3123 1 30 10 -} -Group -{ - Mob 907 - Type drop - 1 5062 1 0.2 - 2 11652 1 0.2 - 3 2092 1 0.2 - 4 11452 1 0.2 - 5 15122 1 0.2 - 6 70049 1 0.1 - 7 50728 1 1 -} -Group ͺ -{ - Mob 1001 - Type drop - 1 50728 1 1 -} -Group ͱú -{ - Kill_drop 200 - Mob 1002 - Type kill - 1 2122 1 35 0 -} -Group ͱú -{ - Mob 1002 - Type drop - 1 50012 1 0.4 - 2 8005 100 20 - 3 50724 1 1 -} -Group â -{ - Kill_drop 100 - Mob 1003 - Type kill - 1 1092 1 65 30 - 2 1093 1 35 30 - 3 14162 1 54 30 - 4 14163 1 27 30 - 5 14182 1 36 30 - 6 14183 1 18 30 - 7 14202 1 18 30 - 8 14203 1 9 30 -} -Group â -{ - Mob 1003 - Type drop - 1 50721 1 2 -} -Group ּ -{ - Kill_drop 50 - Mob 1004 - Type kill - 1 3122 1 65 10 - 2 3123 1 35 10 -} -Group ͱú -{ - Mob 1032 - Type drop - 1 50012 1 0.9 - 2 8005 100 20 -} -Group Ȱͺ -{ - Kill_drop 0 - Mob 1061 - Type kill -} -Group Ȱͺ -{ - Mob 1061 - Type drop - 1 50724 1 2 - 2 30193 1 0.02 -} -Group Ȱͱú -{ - Kill_drop 0.0 - Mob 1062 - Type drop - 1 30193 1 0.02 -} -Group Ȱâ -{ - Kill_drop 10000 - Mob 1063 - Type kill - 1 11270 1 10 20 - 2 11470 1 10 20 - 3 11670 1 10 20 - 4 11870 1 10 20 - 5 11271 1 1 20 - 6 11471 1 1 20 - 7 11671 1 1 20 - 8 11871 1 1 20 -} -Group Ȱâ -{ - Mob 1063 - Type drop - 1 50726 1 2 - 2 30193 1 0.02 -} -Group Refining_1064 -{ - Mob 1064 - Type drop - 1 30193 1 0.2 -} -Group Ȱּ -{ - Kill_drop 10000 - Mob 1064 - Type kill - 1 11272 1 1 20 - 2 11472 1 1 20 - 3 11672 1 1 20 - 4 11872 1 1 20 - 5 11271 1 10 20 - 6 11471 1 10 20 - 7 11671 1 10 20 - 8 11871 1 10 20 -} -Group ȰѿǸ -{ - Kill_drop 40000 - Mob 1065 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ȰѿǸ -{ - Mob 1065 - Type drop - 1 50728 1 2 -} -Group ȰȥǸ -{ - Kill_drop 0 - Mob 1066 - Type kill -} -Group ȰȥǸ -{ - Mob 1066 - Type drop - 1 50724 1 2 -} -Group Ȱ -{ - Kill_drop 0 - Mob 1068 - Type kill -} -Group Ȱ -{ - Mob 1068 - Type drop - 1 50721 1 4 -} -Group Ȱ -{ - Level_limit 75 - Mob 1068 - Type limit - 1 14004 1 0.08 - 2 14024 1 0.08 - 3 14044 1 0.08 - 4 14064 1 0.08 - 5 1110 1 0.08 - 6 2130 1 0.08 - 7 7140 1 0.08 - 8 13120 1 0.01 -} -Group Ȱɻ -{ - Kill_drop 0 - Mob 1069 - Type kill -} -Group Ȱɻ -{ - Mob 1069 - Type drop - 1 50725 1 2 -} -Group Ȱɻ -{ - Level_limit 75 - Mob 1069 - Type limit - 1 14084 1 0.08 - 2 14104 1 0.08 - 3 14124 1 0.08 - 4 14144 1 0.08 - 5 7140 1 0.08 - 6 5100 1 0.08 - 7 160 1 0.08 - 8 13100 1 0.01 -} -Group ȰѺһ -{ - Kill_drop 0 - Mob 1070 - Type kill -} -Group ȰѺһ -{ - Mob 1070 - Type drop - 1 50727 1 1 -} -Group ȰѺһ -{ - Level_limit 75 - Mob 1070 - Type limit - 1 14084 1 0.08 - 2 14104 1 0.08 - 3 14124 1 0.08 - 4 14144 1 0.08 - 5 2130 1 0.08 - 6 5100 1 0.08 - 7 13080 1 0.01 -} -Group ȰȰ -{ - Kill_drop 0 - Mob 1071 - Type kill -} -Group ȰȰ -{ - Mob 1071 - Type drop - 1 50721 1 4 -} -Group ȰȰ -{ - Level_limit 75 - Mob 1071 - Type limit - 1 14164 1 0.08 - 2 14184 1 0.08 - 3 14204 1 0.08 - 4 3140 1 0.08 - 5 1110 1 0.08 - 6 2130 1 0.08 - 7 7140 1 0.08 - 8 160 1 0.08 - 9 240 1 0.08 - 10 13060 1 0.01 -} -Group Ϳ -{ - Mob 1091 - Type drop - 1 130 1 25 - 2 1090 1 25 - 3 2120 1 25 - 4 7120 1 25 - 5 5080 1 25 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 30 150 - 17 27003 50 200 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 400 -} -Group Ϳ -{ - Kill_drop 1 - Mob 1092 - Type kill - 1 50081 1 100 0 -} -Group -{ - Level_limit 75 - Mob 1093 - Type limit - 1 50082 1 100 -} -Group -{ - Mob 1101 - Type drop - 1 90011 1 0.09 -} -Group Թ -{ - Mob 1102 - Type drop - 1 90011 1 0.1 - 2 50728 1 1 -} -Group -{ - Mob 1103 - Type drop - 1 102 1 0.2 - 2 112 1 0.2 - 3 1072 1 0.2 - 4 11252 1 0.2 - 5 15122 1 0.2 - 6 70050 1 0.1 - 7 90011 1 0.2 - 8 50722 1 1 -} -Group -{ - Kill_drop 350 - Mob 1104 - Type kill - 1 12242 1 6 30 - 2 12382 1 6 30 - 3 12522 1 6 30 - 4 12662 1 6 30 - 5 12243 1 3 30 - 6 12383 1 3 30 - 7 12523 1 3 30 - 8 12663 1 3 30 -} -Group -{ - Mob 1104 - Type drop - 1 50723 1 2 -} -Group -{ - Kill_drop 700 - Mob 1105 - Type kill - 1 11262 1 6 20 - 2 11263 1 3 20 - 3 11462 1 6 20 - 4 11463 1 3 20 - 5 11662 1 6 20 - 6 11663 1 3 20 - 7 11862 1 6 20 - 8 11863 1 3 20 -} -Group -{ - Mob 1105 - Type drop - 1 2092 1 0.2 - 2 7092 1 0.2 - 3 11852 1 0.2 - 4 15142 1 0.2 - 5 70048 1 0.1 - 6 90011 1 0.3 - 7 50725 1 2 -} -Group -{ - Kill_drop 1000 - Mob 1106 - Type kill - 1 1092 1 60 20 - 2 1093 1 30 20 - 3 50009 1 10 0 -} -Group -{ - Mob 1106 - Type drop - 1 102 1 0.2 - 2 112 1 0.2 - 3 1072 1 0.2 - 4 11252 1 0.2 - 5 15122 1 0.2 - 6 70051 1 0.1 - 7 90011 1 0.4 - 8 50728 1 1 -} -Group -{ - Mob 1107 - Type drop - 1 50721 1 2 -} -Group -{ - Kill_drop 300 - Mob 1107 - Type kill - 1 3123 1 60 20 - 2 3124 1 30 20 - 3 50009 1 10 0 -} -Group EisSplitter -{ - Level_limit 75 - Mob 1131 - Type limit - 1 50060 1 0.08 - 2 27987 1 0.1 - 3 50901 1 2.1 - 4 14045 1 0.17 - 5 11885 1 0.7 - 6 11685 1 0.7 - 7 50124 1 0.07 -} -Group Refine_1131 -{ - Mob 1131 - Type drop - 1 30198 1 0.09 -} -Group Eiskillerwal -{ - Level_limit 75 - Mob 1132 - Type limit - 1 50060 1 0.08 - 2 27987 1 0.1 - 3 50901 1 2.1 - 4 30048 1 0.55 - 5 14085 1 0.9 - 6 11485 1 0.7 - 7 11285 1 0.7 - 8 50124 1 0.07 -} -Group Eisinsekt -{ - Level_limit 75 - Mob 1133 - Type limit - 1 50901 1 2.1 - 2 30088 1 0.8 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 14105 1 0.9 - 6 11885 1 0.7 - 7 11685 1 0.7 - 8 50124 1 0.07 -} -Group Eisl?e -{ - Level_limit 75 - Mob 1134 - Type limit - 1 50901 1 2.1 - 2 30089 1 0.32 - 3 50060 1 0.08 - 4 70049 1 0.11 - 5 16163 1 0.85 - 6 11485 1 0.7 - 7 11285 1 0.7 - 8 50124 1 0.07 -} -Group Eismann -{ - Level_limit 75 - Mob 1135 - Type limit - 1 50901 1 2.1 - 2 30090 1 0.55 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 16164 1 0.68 - 6 11886 1 0.4 - 7 11686 1 0.4 - 8 50124 1 0.07 -} -Group Yeti -{ - Level_limit 75 - Mob 1136 - Type limit - 1 50901 1 2.1 - 2 30014 1 0.55 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 14125 1 0.64 - 6 11486 1 0.1 - 7 11286 1 0.1 - 8 50124 1 0.07 -} -Group Eisgolem -{ - Level_limit 75 - Mob 1137 - Type limit - 1 19 1 0.04 - 2 1009 1 0.04 - 3 2009 1 0.04 - 4 3009 1 0.04 - 5 5009 1 0.04 - 6 7009 1 0.04 - 7 30050 1 0.19 - 8 27105 10 0.323 - 9 50009 1 0.34 - 10 27987 1 0.1 - 11 11886 1 0.1 - 12 11686 1 0.1 - 13 11486 1 0.1 - 14 11286 1 0.1 - 15 50124 1 0.07 -} -Group Refine_1137 -{ - Mob 1137 - Type drop - 1 30198 1 0.125 -} -Group ice_witch -{ - Level_limit 80 - Mob 1192 - Type drop - 1 11294 1 50 15 - 2 11494 1 50 15 - 3 11694 1 50 15 - 4 11894 1 50 15 - 5 13066 1 50 15 - 6 13086 1 50 15 - 7 13106 1 50 15 - 8 13126 1 50 15 - 9 15187 1 50 15 - 10 15167 1 50 15 - 11 15207 1 50 15 - 12 15227 1 50 15 - 13 16207 1 50 15 - 14 16187 1 50 15 - 15 17147 1 50 15 - 16 17167 1 50 15 - 17 17187 1 50 15 - 18 17207 1 50 15 - 19 28430 1 50 15 - 20 28431 1 50 15 - 21 28432 1 50 15 - 22 28433 1 50 15 - 23 28434 1 50 15 - 24 28435 1 50 15 - 25 28436 1 50 15 - 26 28437 1 50 15 - 27 28438 1 50 15 - 28 28439 1 50 15 - 29 28440 1 50 15 - 30 28441 1 50 15 - 31 28442 1 50 15 - 32 28443 1 50 15 - 33 70031 1 50 15 - 34 71056 1 50 15 - 35 30190 1 400 100 - 36 30190 5 100 10 -} -Group ûͺ -{ - Kill_drop 400 - Mob 1301 - Type kill - 1 16160 1 18 30 - 2 16161 1 9 30 - 3 16180 1 12 30 - 4 16181 1 6 30 - 5 16200 1 6 30 - 6 16201 1 3 30 -} -Group ûͺ -{ - Mob 1301 - Type drop - 1 90012 1 0.2 - 2 12260 1 2.5 - 3 12390 1 2.5 - 4 12530 1 5 - 5 12670 1 5 -} -Group û -{ - Kill_drop 800 - Mob 1302 - Type kill - 1 5082 1 65 20 - 2 5083 1 35 20 -} -Group û -{ - Mob 1302 - Type drop - 1 90012 1 0.3 - 2 12260 1 5 - 3 12390 1 5 - 4 12530 1 2.5 - 5 12670 1 2.5 -} -Group ǮٸӸ -{ - Kill_drop 1000 - Mob 1303 - Type kill - 1 2122 1 1 20 -} -Group ǮٸӸ -{ - Mob 1303 - Type drop - 1 90012 1 0.1 -} -Group -{ - Kill_drop 1 - Mob 1304 - Type kill - 1 50078 1 100 0 -} -Group -{ - Mob 1304 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 300 -} -Group 屺 -{ - Kill_drop 350 - Mob 1305 - Type kill - 1 7122 1 65 20 - 2 7123 1 35 20 -} -Group 屺 -{ - Mob 1305 - Type drop - 1 15162 1 0.2 - 2 16162 1 0.2 - 3 12382 1 0.2 - 4 17142 1 0.2 - 5 90012 1 0.4 - 6 12260 1 0.75 - 7 12390 1 0.75 - 8 12530 1 0.75 - 9 12670 1 0.75 -} -Group ͺ -{ - Kill_drop 0 - Mob 1401 - Type kill -} -Group ͺ -{ - Mob 1401 - Type drop - 1 50723 1 2 -} -Group ôĺ -{ - Kill_drop 1500 - Mob 1402 - Type kill - 1 11273 1 20 30 - 2 11473 1 20 30 - 3 11673 1 20 30 - 4 11873 1 20 30 - 5 11274 1 10 30 - 6 11474 1 10 30 - 7 11674 1 10 30 - 8 11874 1 10 30 -} -Group ôĺ -{ - Mob 1402 - Type drop - 1 50726 1 2 -} -Group õ -{ - Kill_drop 500 - Mob 1403 - Type kill - 1 11290 1 5 30 - 2 11490 1 5 30 - 3 11890 1 5 30 - 4 11690 1 5 30 - 5 170 1 1 20 - 6 250 1 1 20 - 7 1120 1 1 20 - 8 2180 1 1 20 - 9 3150 1 1 20 - 10 7150 1 1 20 -} -Group õ -{ - Mob 1403 - Type drop - 1 50725 1 2 -} -Group õ -{ - Level_limit 86 - Mob 1403 - Type limit - 1 11290 1 0.1 - 2 11490 1 0.1 - 3 11890 1 0.1 - 4 11690 1 0.1 - 5 70003 1 0.1 - 6 70005 1 0.1 - 7 70008 1 0.1 - 8 70038 1 0.1 - 9 170 1 0.1 - 10 250 1 0.1 - 11 1120 1 0.1 - 12 2180 1 0.1 - 13 3150 1 0.1 - 14 7150 1 0.1 -} -Group Refine_1501 -{ - Mob 1501 - Type drop - 1 30195 1 1 -} -Group -{ - Kill_drop 100 - Mob 1501 - Type kill - 1 8002 100 1 0 -} -Group -{ - Kill_drop 100 - Mob 1502 - Type kill - 1 8002 100 1 0 -} -Group -{ - Mob 1502 - Type drop - 1 50722 1 1 - 2 30195 1 1 -} -Group Ŵ -{ - Kill_drop 3000 - Mob 1503 - Type kill - 1 11282 1 1 10 - 2 11882 1 1 10 - 3 11482 1 1 10 - 4 11682 1 1 10 -} -Group Ŵ -{ - Mob 1503 - Type drop - 1 50723 1 4 - 2 30195 1 1 -} -Group ϱ -{ - Kill_drop 0 - Mob 1601 - Type kill -} -Group ϲ -{ - Mob 1601 - Type drop - 1 50728 1 2 - 2 30194 1 1.0 -} -Group Ͱ -{ - Kill_drop 1000 - Mob 1602 - Type kill - 1 11271 1 20 20 - 2 11471 1 20 20 - 3 11671 1 20 20 - 4 11871 1 20 20 - 5 11272 1 10 10 - 6 11472 1 10 10 - 7 11672 1 10 10 - 8 11872 1 10 10 -} -Group Ͱ -{ - Mob 1602 - Type drop - 1 50721 1 4 - 2 30194 1 1 -} -Group ͹ -{ - Kill_drop 2000 - Mob 1603 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 -} -Group ͹ -{ - Mob 1603 - Type drop - 1 50722 1 2 - 2 30194 1 1 -} -Group ͹ -{ - Level_limit 86 - Mob 1603 - Type limit - 1 11290 1 0.03 - 2 11490 1 0.03 - 3 11890 1 0.03 - 4 11690 1 0.03 - 5 170 1 0.03 - 6 250 1 0.03 - 7 1120 1 0.03 - 8 2180 1 0.03 - 9 3150 1 0.03 - 10 7150 1 0.03 -} -Group ȣ -{ - Kill_drop 1 - Mob 1901 - Type kill - 1 50077 1 100 0 -} -Group ȣ -{ - Mob 1901 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 200 -} -Group ȣ -{ - Mob 1902 - Type drop - 1 151 1 25 30 - 2 152 1 10 30 - 3 5091 1 25 30 - 4 5092 1 10 30 - 5 141 1 25 30 - 6 142 1 10 30 - 7 3131 1 25 30 - 8 3132 1 10 30 - 9 1101 1 25 30 - 10 1102 1 10 30 - 11 7131 1 25 30 - 12 7132 1 10 30 - 13 2141 1 25 30 - 14 2142 1 10 30 - 15 11682 1 50 30 - 16 11683 1 20 30 - 17 11882 1 50 30 - 18 11883 1 20 30 - 19 11482 1 50 30 - 20 11483 1 20 30 - 21 11282 1 50 30 - 22 11283 1 20 30 - 23 17204 1 50 30 - 24 17205 1 25 30 - 25 17206 1 10 30 - 26 16204 1 50 30 - 27 16205 1 25 30 - 28 16206 1 10 30 - 29 14204 1 50 30 - 30 14205 1 25 30 - 31 14206 1 10 30 - 32 50006 1 400 - 33 50007 1 400 - 34 50012 1 400 - 35 50013 1 400 - 36 12222 1 50 - 37 12223 1 25 - 38 12362 1 50 - 39 12363 1 25 - 40 12502 1 50 - 41 12503 1 25 - 42 12642 1 50 - 43 12643 1 25 - 44 30015 1 100 - 45 30035 1 100 - 46 30058 1 100 - 47 30006 1 100 - 48 30082 1 100 - 49 30076 1 100 - 50 30018 1 100 - 51 30046 1 100 - 52 30021 1 100 - 53 30086 1 100 - 54 30005 1 100 - 55 30072 1 100 - 56 30080 1 100 - 57 30077 1 100 - 58 30069 1 100 - 59 30067 1 100 - 60 12282 1 0.05 - 61 12402 1 0.05 - 62 12542 1 0.05 - 63 12682 1 0.05 - 64 12284 1 0.0125 - 65 12404 1 0.0125 - 66 12544 1 0.0125 - 67 12684 1 0.0125 -} -Group Ź -{ - Mob 2001 - Type drop - 1 50721 1 2 -} -Group Ź -{ - Mob 2002 - Type drop - 1 50725 1 1 -} -Group Ź -{ - Kill_drop 1000 - Mob 2003 - Type kill - 1 7102 1 1 10 -} -Group Ź -{ - Mob 2003 - Type drop - 1 50725 1 1 - 2 50009 1 0.2 -} -Group ԰Ź -{ - Kill_drop 1000 - Mob 2004 - Type kill - 1 5072 1 1 10 -} -Group ԰Ź -{ - Mob 2004 - Type drop - 1 50721 1 2 -} -Group Ź -{ - Kill_drop 500 - Mob 2005 - Type kill - 1 12242 1 1 10 - 2 12382 1 1 10 - 3 12522 1 1 10 - 4 12662 1 1 10 -} -Group Ź -{ - Mob 2005 - Type drop - 1 50727 1 0.8 -} -Group Ź -{ - Mob 2031 - Type drop - 1 50722 1 1 -} -Group ͵Ź -{ - Kill_drop 300 - Mob 2033 - Type kill - 1 112 1 65 10 - 2 113 1 35 10 -} -Group ͵Ź -{ - Mob 2033 - Type drop - 1 50727 1 0.8 -} -Group ԵŹ -{ - Kill_drop 500 - Mob 2034 - Type kill - 1 1072 1 1 10 -} -Group ԵŹ -{ - Mob 2034 - Type drop - 1 50726 1 2 -} -Group Ź -{ - Kill_drop 300 - Mob 2035 - Type kill - 1 11260 1 1 10 - 2 11460 1 1 10 - 3 11660 1 1 10 - 4 11860 1 1 10 -} -Group Ź -{ - Mob 2035 - Type drop - 1 50726 1 2 -} -Group Ź -{ - Kill_drop 90 - Mob 2036 - Type kill - 1 3112 1 65 10 - 2 3113 1 35 10 -} -Group Ź -{ - Mob 2061 - Type drop - 1 50724 1 2 -} -Group Ź -{ - Level_limit 60 - Mob 2061 - Type limit - 1 104 1 0.5 - 2 114 1 0.5 - 3 124 1 0.5 - 4 134 1 0.5 - 5 13006 1 0.5 - 6 13194 1 0.5 - 7 13205 1 0.5 - 8 13060 1 0.05 - 9 13100 1 0.05 -} -Group ͵Ź -{ - Mob 2062 - Type drop - 1 50721 1 4 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2062 - Type limit - 1 1064 1 0.5 - 2 1074 1 0.5 - 3 1084 1 0.5 - 4 1094 1 0.5 - 5 12626 1 0.5 - 6 12645 1 0.5 - 7 12664 1 0.5 - 8 13080 1 0.05 - 9 13120 1 0.05 -} -Group ͵Ź -{ - Mob 2063 - Type drop - 1 50724 1 2 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2063 - Type limit - 1 2094 1 0.5 - 2 2104 1 0.5 - 3 2114 1 0.5 - 4 2124 1 0.5 - 5 12486 1 0.5 - 6 12505 1 0.5 - 7 12524 1 0.5 - 8 13120 1 0.1 -} -Group ԵŹ -{ - Mob 2064 - Type drop - 1 50722 1 2 -} -Group ԵŹ -{ - Level_limit 60 - Mob 2064 - Type limit - 1 3094 1 0.5 - 2 3104 1 0.5 - 3 3114 1 0.5 - 4 3124 1 0.5 - 5 12346 1 0.5 - 6 12365 1 0.5 - 7 12384 1 0.5 - 8 13120 1 0.1 -} -Group Ź -{ - Mob 2065 - Type drop - 1 50723 1 2 - 2 50009 1 0.2 -} -Group Ź -{ - Level_limit 60 - Mob 2065 - Type limit - 1 5064 1 0.5 - 2 5074 1 0.5 - 3 5084 1 0.5 - 4 12206 1 0.5 - 5 12225 1 0.5 - 6 12244 1 0.5 - 7 13100 1 0.1 -} -Group հŹ -{ - Kill_drop 1 - Mob 2091 - Type kill - 1 50073 1 100 0 -} -Group հŹ -{ - Mob 2091 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90011 1 60 -} -Group 񸶱; -{ - Kill_drop 400 - Mob 2102 - Type kill - 1 12222 1 6 10 - 2 12362 1 6 10 - 3 12502 1 6 10 - 4 12642 1 6 10 - 5 12223 1 3 10 - 6 12363 1 3 10 - 7 12503 1 3 10 - 8 12643 1 3 10 -} -Group 񸶱; -{ - Mob 2102 - Type drop - 1 50722 1 2 -} -Group -{ - Kill_drop 1000 - Mob 2103 - Type kill - 1 14160 1 18 10 - 2 14161 1 9 10 - 3 14180 1 12 10 - 4 14181 1 6 10 - 5 14200 1 6 10 - 6 14201 1 3 10 -} -Group -{ - Mob 2103 - Type drop - 1 50721 1 4 -} -Group ΰ -{ - Kill_drop 800 - Mob 2104 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 - 3 7160 1 40 10 - 4 5110 1 20 10 -} -Group ΰ -{ - Mob 2104 - Type drop - 1 50724 1 1 -} -Group ü -{ - Kill_drop 500 - Mob 2105 - Type kill - 1 2092 1 65 10 - 2 2093 1 35 10 - 3 7160 1 20 10 - 4 5110 1 40 10 -} -Group ü -{ - Mob 2105 - Type drop - 1 50013 1 1 - 2 8002 100 40 - 3 30081 1 1 - 4 50009 1 0.2 - 5 50722 1 2 -} -Group ιݻ˺ -{ - Kill_drop 700 - Mob 2106 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 -} -Group ιݻ˺ -{ - Mob 2106 - Type drop - 1 50726 1 1 - 2 50009 1 0.2 -} -Group ιݻú -{ - Kill_drop 400 - Mob 2107 - Type kill - 1 13202 1 65 30 - 2 13203 1 35 30 -} -Group ιݻú -{ - Mob 2107 - Type drop - 1 50006 1 0.7 - 2 8003 50 40 - 3 30082 1 1 - 4 50725 1 2 -} -Group 縷ǹ -{ - Kill_drop 100 - Mob 2108 - Type kill - 1 17162 1 18 10 - 2 17163 1 9 10 - 3 17182 1 12 10 - 4 17183 1 6 10 - 5 17202 1 6 10 - 6 17203 1 3 10 -} -Group 縷ǹ -{ - Mob 2108 - Type drop - 1 92 1 0.2 - 2 2082 1 0.2 - 3 11841 1 0.2 - 4 15122 1 0.2 - 5 27002 30 50 - 6 27003 20 25 - 7 27005 20 50 - 8 27006 10 25 - 9 70008 1 0.1 - 10 50728 1 0.8 -} -Group Ź -{ - Level_limit 60 - Mob 2131 - Type limit - 1 16004 1 0.5 - 2 16024 1 0.5 - 3 16044 1 0.5 - 4 16064 1 0.5 - 5 13006 1 0.5 - 6 13194 1 0.5 - 7 13205 1 0.5 - 8 13100 1 0.1 - 9 50009 1 0.1 -} -Group ΰ -{ - Mob 2131 - Type drop - 1 50727 1 2 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2132 - Type limit - 1 16084 1 0.5 - 2 16104 1 0.5 - 3 16124 1 0.5 - 4 16144 1 0.5 - 5 17164 1 0.5 - 6 17184 1 0.5 - 7 17204 1 0.5 - 8 13080 1 0.1 - 9 50009 1 0.1 -} -Group ü -{ - Mob 2132 - Type drop - 1 50726 1 4 -} -Group ιݻ˺ -{ - Mob 2133 - Type drop - 1 50725 1 4 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2133 - Type limit - 1 15164 1 0.5 - 2 15184 1 0.5 - 3 15204 1 0.5 - 4 15224 1 0.5 - 5 17104 1 0.5 - 6 17124 1 0.5 - 7 17144 1 0.5 - 8 13080 1 0.1 - 9 50009 1 0.1 -} -Group ιݻú -{ - Mob 2134 - Type drop - 1 50727 1 2 -} -Group ԵŹ -{ - Level_limit 60 - Mob 2134 - Type limit - 1 15084 1 0.5 - 2 15104 1 0.5 - 3 15124 1 0.5 - 4 15144 1 0.5 - 5 16164 1 0.5 - 6 16184 1 0.5 - 7 16204 1 0.5 - 8 13060 1 0.1 - 9 50009 1 0.1 -} -Group Ź -{ - Level_limit 60 - Mob 2135 - Type limit - 1 15004 1 0.5 - 2 15024 1 0.5 - 3 15044 1 0.5 - 4 15064 1 0.5 - 5 17044 1 0.5 - 6 17064 1 0.5 - 7 13060 1 0.1 - 8 50009 1 0.1 -} -Group 縷ǹ -{ - Mob 2135 - Type drop - 1 50725 1 4 -} -Group Ŵ縷ź -{ - Kill_drop 1 - Mob 2191 - Type kill - 1 50076 1 100 0 -} -Group Ŵ縷ź -{ - Mob 2191 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 80 -} -Group -{ - Kill_drop 0 - Mob 2201 - Type kill -} -Group -{ - Mob 2201 - Type drop - 1 90010 1 0.09 - 2 50722 1 1 -} -Group ȭ -{ - Kill_drop 1000 - Mob 2202 - Type kill - 1 50009 1 10 0 -} -Group ȭ -{ - Mob 2202 - Type drop - 1 90010 1 0.1 - 2 50727 1 2 -} -Group -{ - Kill_drop 1000 - Mob 2203 - Type kill - 1 132 1 65 20 - 2 133 1 35 20 -} -Group -{ - Mob 2203 - Type drop - 1 90010 1 0.2 - 2 50728 1 1 -} -Group -{ - Kill_drop 1000 - Mob 2204 - Type kill - 1 1092 1 65 20 - 2 1093 1 35 20 -} -Group -{ - Mob 2204 - Type drop - 1 90010 1 0.3 - 2 12280 1 0.041 - 3 12400 1 0.041 - 4 12540 1 0.041 - 5 12680 1 0.041 -} -Group ȭ -{ - Kill_drop 500 - Mob 2205 - Type kill - 1 3123 1 65 20 - 2 3124 1 35 20 -} -Group ȭ -{ - Mob 2205 - Type drop - 1 90010 1 0.4 - 2 50723 1 4 - 3 12280 1 0.041 - 4 12400 1 0.041 - 5 12540 1 0.041 - 6 12680 1 0.041 -} -Group ȭ -{ - Kill_drop 1 - Mob 2206 - Type kill - 1 50079 1 100 0 -} -Group ȭ -{ - Mob 2206 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 200 -} -Group ͸ -{ - Kill_drop 0 - Mob 2301 - Type kill -} -Group ͸ -{ - Mob 2301 - Type drop - 1 50727 1 2 -} -Group صձ͸ -{ - Kill_drop 2000 - Mob 2302 - Type kill - 1 50008 1 1 0 -} -Group صձ͸ -{ - Mob 2302 - Type drop - 1 50726 1 1 - 2 30192 1 0.5 -} -Group -{ - Kill_drop 1000 - Mob 2303 - Type kill - 1 11270 1 30 30 - 2 11470 1 30 30 - 3 11670 1 30 30 - 4 11870 1 30 30 - 5 11271 1 20 20 - 6 11471 1 20 20 - 7 11671 1 20 20 - 8 11871 1 20 20 - 9 11272 1 10 10 - 10 11472 1 10 10 - 11 11672 1 10 10 - 12 11872 1 10 10 - 13 50008 1 20 0 -} -Group -{ - Mob 2303 - Type drop - 1 50725 1 2 - 2 30192 1 0.05 -} -Group Refining_2304 -{ - Mob 2304 - Type drop - 1 30192 1 0.05 -} -Group ȭ͸ -{ - Kill_drop 15000 - Mob 2304 - Type kill - 1 11280 1 1 10 - 2 11880 1 1 10 - 3 11480 1 1 10 - 4 11680 1 1 10 -} -Group ͸ -{ - Kill_drop 10000 - Mob 2305 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ͸ -{ - Kill_drop 800 - Mob 2311 - Type kill - 1 50008 1 1 0 -} -Group ͸ -{ - Mob 2311 - Type drop - 1 50728 1 0.8 - 2 30197 1 0.03 -} -Group ص͸ -{ - Kill_drop 800 - Mob 2312 - Type kill - 1 50008 1 1 0 -} -Group ص͸ -{ - Mob 2312 - Type drop - 1 50724 1 1 - 2 30197 1 0.03 -} -Group -{ - Kill_drop 1000 - Mob 2313 - Type kill - 1 11272 1 20 30 - 2 11472 1 20 30 - 3 11672 1 20 30 - 4 11872 1 20 30 - 5 11273 1 10 30 - 6 11473 1 10 30 - 7 11673 1 10 30 - 8 11873 1 10 30 - 9 50008 1 20 0 -} -Group -{ - Mob 2313 - Type drop - 1 50726 1 1 - 2 30197 1 0.03 -} -Group -{ - Level_limit 86 - Mob 2313 - Type limit - 1 17204 1 0.03 - 2 17205 1 0.03 - 3 17206 1 0.03 - 4 3140 1 0.03 - 5 1110 1 0.03 - 6 2130 1 0.03 - 7 7140 1 0.03 - 8 5100 1 0.03 - 9 160 1 0.03 - 10 240 1 0.03 -} -Group ȭ͸ -{ - Kill_drop 6000 - Mob 2314 - Type kill - 1 11280 1 1 10 - 2 11880 1 1 10 - 3 11480 1 1 10 - 4 11680 1 1 10 -} -Group ȭ͸ -{ - Mob 2314 - Type drop - 1 50727 1 0.8 - 2 30197 1 0.03 -} -Group ȭ͸ -{ - Level_limit 86 - Mob 2314 - Type limit - 1 16204 1 0.03 - 2 16205 1 0.03 - 3 16206 1 0.03 - 4 3140 1 0.06 - 5 1110 1 0.06 - 6 2130 1 0.06 - 7 7140 1 0.06 - 8 5100 1 0.06 - 9 160 1 0.06 - 10 240 1 0.06 -} -Group ͸ -{ - Kill_drop 3000 - Mob 2315 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ͸ -{ - Mob 2315 - Type drop - 1 50728 1 1 -} -Group ͸ -{ - Level_limit 86 - Mob 2315 - Type limit - 1 11291 1 0.03 - 2 11491 1 0.03 - 3 11891 1 0.03 - 4 11691 1 0.03 - 5 27987 1 0.09 - 6 14204 1 0.09 - 7 14205 1 0.09 - 8 14206 1 0.09 - 9 3140 1 0.15 - 10 1110 1 0.15 - 11 2130 1 0.15 - 12 7140 1 0.15 - 13 5100 1 0.15 - 14 160 1 0.15 - 15 240 1 0.15 -} -Group Setaou-K?pfer87 -{ - Level_limit 75 - Mob 2401 - Type limit - 1 250 1 0.07 - 2 12525 1 0.4 - 3 50060 1 0.04 - 4 27987 1 0.05 - 5 50721 5 0.63 - 6 50725 5 0.63 - 7 70050 1 0.2 - 8 166 1 0.08 - 9 164 1 0.17 - 10 15185 1 0.34 - 11 254 1 0.09 - 12 255 1 0.05 - 13 70031 1 0.004 - 14 11485 1 0.1 - 15 11285 1 0.1 - 16 190 1 0.04 - 17 180 1 0.04 - 18 50124 1 0.02 - 19 50121 1 0.06 -} -Group Setaou-J?er89 -{ - Level_limit 75 - Mob 2402 - Type limit - 1 1120 1 0.07 - 2 2180 1 0.07 - 3 8005 30 0.6 - 4 8005 60 0.42 - 5 12385 1 0.4 - 6 14184 1 0.25 - 7 27987 1 0.05 - 8 50722 5 0.63 - 9 50726 5 0.63 - 10 1106 1 0.08 - 11 2136 1 0.08 - 12 2184 1 0.09 - 13 1124 1 0.09 - 14 70031 1 0.007 - 15 11885 1 0.15 - 16 11685 1 0.15 - 17 2170 1 0.04 - 18 1130 1 0.04 - 19 50124 1 0.02 - 20 50120 1 0.06 -} -Group Setaou-Seherin89 -{ - Level_limit 75 - Mob 2403 - Type limit - 1 7150 1 0.17 - 2 12665 1 0.8 - 3 14164 1 0.34 - 4 17163 1 0.85 - 5 27987 1 0.1 - 6 50723 5 1.25 - 7 50727 5 1.25 - 8 5096 1 0.2 - 9 7136 1 0.2 - 10 11885 1 0.8 - 11 11685 1 0.4 - 12 15224 1 0.34 - 13 7154 1 0.15 - 14 7155 1 0.15 - 15 70031 1 0.007 - 16 5120 1 0.04 - 17 50124 1 0.02 - 18 50122 1 0.06 -} -Group Refine_2404 -{ - Mob 2404 - Type drop - 1 30199 1 0.13 -} -Group Setaou-Anf?rer90 -{ - Level_limit 75 - Mob 2404 - Type limit - 1 170 1 0.1 - 2 174 1 0.09 - 3 50060 1 0.08 - 4 50724 5 1.25 - 5 50728 5 1.25 - 6 70048 1 0.23 - 7 70051 1 0.39 - 8 3146 1 0.16 - 9 3136 1 0.16 - 10 11285 1 0.60 - 11 11485 1 0.20 - 12 15085 1 0.85 - 13 12245 1 0.8 - 14 3152 1 0.14 - 15 70031 1 0.007 - 16 181 1 0.05 - 17 191 1 0.05 - 18 1131 1 0.05 - 19 5121 1 0.05 - 20 2171 1 0.05 - 21 50120 1 0.02 - 22 50121 1 0.02 - 23 50122 1 0.02 -} -Group Setaou-Soldat91 -{ - Level_limit 75 - Mob 2411 - Type limit - 1 251 1 0.09 - 2 12526 1 0.1 - 3 14204 1 0.22 - 4 50060 1 0.08 - 5 27987 1 0.1 - 6 50721 5 0.65 - 7 50725 5 0.65 - 8 156 1 0.16 - 9 246 1 0.16 - 10 2144 1 0.16 - 11 70031 1 0.01 - 12 71056 1 0.005 - 13 182 1 0.1 - 14 192 1 0.1 - 15 50121 1 0.06 - 16 30196 1 0.02 -} -Group Setaou-J?er93 -{ - Level_limit 75 - Mob 2412 - Type limit - 1 1121 1 0.09 - 2 2181 1 0.09 - 3 8005 35 1.6 - 4 8005 55 0.85 - 5 12386 1 0.17 - 6 14186 1 0.28 - 7 27987 1 0.1 - 8 50009 1 0.34 - 9 50722 5 0.75 - 10 50726 5 0.75 - 11 144 1 0.16 - 12 1116 1 0.16 - 13 2146 1 0.16 - 14 70031 1 0.01 - 15 71056 1 0.005 - 16 2170 1 0.1 - 17 1130 1 0.1 - 18 50120 1 0.06 - 19 30196 1 0.03 -} -Group Refine_2413 -{ - Mob 2413 - Type drop - 1 30199 1 0.13 - 2 30196 1 0.07 -} -Group Setaou-Seherin95 -{ - Level_limit 75 - Mob 2413 - Type limit - 1 7151 1 0.1 - 2 12666 1 0.17 - 3 14166 1 0.26 - 4 15164 1 0.38 - 5 17164 1 0.41 - 6 17183 1 0.68 - 7 27987 1 0.1 - 8 50009 1 0.34 - 9 50723 5 1.25 - 10 50727 5 1.25 - 11 154 1 0.16 - 12 5106 1 0.16 - 13 7146 1 0.26 - 14 7144 1 0.26 - 15 70031 1 0.01 - 16 71056 1 0.005 - 17 5122 1 0.1 - 18 50122 1 0.06 -} -Group Refine_2414 -{ - Mob 2414 - Type drop - 1 30199 1 0.2 - 2 30196 1 0.07 -} -Group Setaou_Commander -{ - Level_limit 75 - Mob 2414 - Type limit - 1 182 1 0.2 - 2 192 1 0.2 - 3 1132 1 0.2 - 4 5122 1 0.2 - 5 2172 1 0.2 - 6 50120 1 0.02 - 7 50121 1 0.02 - 8 50122 1 0.02 -} -Group Setaou-General1 -{ - Level_limit 85 - Mob 2491 - Type drop - 1 30179 1 400 - 2 30196 1 1 -} -Group Setaou-General2 -{ - Level_limit 85 - Mob 2492 - Type drop - 1 30179 1 400 - 2 30179 2 100 - 3 30190 1 100 - 4 13063 1 100 - 5 14206 1 50 - 6 27987 1 100 - 7 70051 1 50 - 8 13083 1 100 - 9 70050 1 50 - 10 13103 1 100 - 11 15165 1 30 - 12 16203 1 50 - 13 17184 1 50 - 14 17203 1 30 - 15 13123 1 50 - 16 14143 1 30 - 17 15204 1 30 - 18 16184 1 50 -} -Group Water_Dragon -{ - Mob 2493 - Type drop - 1 30190 1 400 - 2 30190 2 50 - 3 12284 1 20 - 4 12404 1 20 - 5 12544 1 20 - 6 12684 1 20 - 7 15374 1 20 - 8 15394 1 20 - 9 15414 1 20 - 10 15434 1 20 - 11 27987 1 75 - 12 50124 1 20 - 13 50124 1 20 - 14 50124 1 20 - 15 50121 1 20 - 16 50121 1 40 - 17 50121 1 40 - 18 71123 1 5 - 19 71129 1 5 - 20 71083 1 1 - 21 25040 1 0.5 - 22 71085 1 0.5 - 23 71084 1 0.5 -} -Group Water_Dragon_HL -{ - Level_limit 90 - Mob 2493 - Type limit - 1 30190 4 5 - 2 27992 1 20 - 3 27993 1 10 - 4 27994 1 5 - 5 70024 1 0.5 - 6 50124 1 25 - 7 50124 1 25 - 8 50121 1 50 - 9 50121 1 50 - 10 50513 1 15 - 11 50513 1 15 - 12 71085 3 0.2 - 13 71084 3 0.2 -} -Group Setaou-General3 -{ - Level_limit 85 - Mob 2494 - Type drop - 1 30179 1 400 100 -} -Group Setaou-General4 -{ - Level_limit 85 - Mob 2495 - Type drop - 1 30179 1 400 - 2 30179 3 100 - 3 30190 1 100 - 4 11691 1 30 - 5 11491 1 30 - 6 11891 1 30 - 7 11291 1 30 - 8 13064 1 100 - 9 13084 1 30 - 10 13104 1 100 - 11 16204 1 50 - 12 17204 1 30 - 13 13124 1 100 - 14 15205 1 30 - 15 70050 1 50 - 16 70051 1 50 - 17 50009 1 100 - 18 27987 1 100 -} -Group -{ - Kill_drop 1 - Mob 5002 - Type kill - 1 134 1 46 30 - 2 135 1 20 30 - 3 1094 1 46 30 - 4 1095 1 20 30 - 5 3124 1 46 30 - 6 3125 1 20 30 - 7 2124 1 46 30 - 8 2125 1 20 30 - 9 5084 1 46 30 - 10 5085 1 20 30 - 11 7124 1 46 30 - 12 7125 1 20 30 - 13 11263 1 46 30 - 14 11264 1 20 30 - 15 11463 1 46 30 - 16 11464 1 20 30 - 17 11663 1 46 30 - 18 11664 1 20 30 - 19 11863 1 46 30 - 20 11864 1 20 30 - 21 13203 1 46 30 - 22 13204 1 20 30 - 23 70038 1 40 0 - 24 70048 1 40 0 - 25 70050 1 40 0 - 26 70051 1 40 0 - 27 70012 1 40 0 - 28 70037 1 40 0 - 29 70014 1 40 0 - 30 25040 1 40 0 -} -Group -{ - Mob 5002 - Type drop - 1 27002 100 400 - 2 27003 50 400 - 3 27005 100 400 - 4 27006 50 400 -} -Group ̺Ʈ_ٳ -{ - Kill_drop 1 - Mob 5004 - Type kill - 1 30202 1 1 0 -} -Group ϼ_ -{ - Kill_drop 550 - Mob 5101 - Type kill - 1 50050 1 20 0 -} -Group ϼ -{ - Mob 5101 - Type drop - 1 50722 1 2 -} -Group ϼ_ -{ - Kill_drop 250 - Mob 5102 - Type kill - 1 50050 1 20 0 -} -Group ϼ_ -{ - Kill_drop 250 - Mob 5103 - Type kill - 1 5042 1 65 10 - 2 82 1 65 10 - 3 83 1 35 10 - 4 5032 1 35 10 - 5 50050 1 100 0 -} -Group ϼ_ -{ - Kill_drop 100 - Mob 5104 - Type kill - 1 7073 1 20 10 - 2 7053 1 20 10 - 3 4023 1 20 10 - 4 1043 1 20 10 - 5 50050 1 20 0 -} -Group ϼ -{ - Mob 5104 - Type drop - 1 50721 1 1 -} -Group ߼_ -{ - Kill_drop 550 - Mob 5111 - Type kill - 1 50050 1 20 0 -} -Group ߼ -{ - Mob 5111 - Type drop - 1 50723 1 2 -} -Group ߼_ -{ - Kill_drop 300 - Mob 5112 - Type kill - 1 50050 1 20 0 -} -Group ߼_ -{ - Kill_drop 250 - Mob 5113 - Type kill - 1 7083 1 20 10 - 2 5053 1 10 10 - 3 50050 1 30 0 -} -Group ߼_ -{ - Kill_drop 100 - Mob 5114 - Type kill - 1 93 1 20 20 - 2 1053 1 20 20 - 3 50050 1 40 0 -} -Group ߼ -{ - Mob 5114 - Type drop - 1 50722 1 1 -} -Group ߼_ -{ - Kill_drop 100 - Mob 5115 - Type kill - 1 3083 1 20 20 - 2 50050 1 20 0 -} -Group ߼ -{ - Mob 5115 - Type drop - 1 50725 1 1 -} -Group ߼ -{ - Mob 5116 - Type drop - 1 50726 1 1 -} -Group 󼱵_ -{ - Kill_drop 550 - Mob 5121 - Type kill - 1 50050 1 20 0 -} -Group 󼱵 -{ - Mob 5121 - Type drop - 1 50726 1 1 -} -Group 󼱵_ -{ - Kill_drop 300 - Mob 5122 - Type kill - 1 50050 1 20 0 -} -Group 󼱵 -{ - Mob 5122 - Type drop - 1 50723 1 1 -} -Group 󼱵_ -{ - Kill_drop 250 - Mob 5123 - Type kill - 1 7103 1 20 10 - 2 50050 1 20 0 -} -Group 󼱵_ -{ - Kill_drop 100 - Mob 5124 - Type kill - 1 5073 1 20 10 - 2 50050 1 20 0 -} -Group 󼱵_ -{ - Kill_drop 80 - Mob 5125 - Type kill - 1 113 1 65 10 - 2 114 1 35 10 - 3 50050 1 100 0 -} -Group 󼱵 -{ - Mob 5125 - Type drop - 1 50724 1 1 -} -Group 󼱵_ݿ -{ - Kill_drop 30 - Mob 5126 - Type kill - 1 3113 1 65 10 - 2 3114 1 35 10 - 3 50050 1 100 0 -} -Group 󼱵ݿ -{ - Mob 5126 - Type drop - 1 50721 1 2 -} -Group 󼱵 -{ - Mob 5127 - Type drop - 1 50722 1 2 -} -Group ̻뼺 -{ - Kill_drop 10 - Mob 5161 - Type kill - 1 74 1 10 30 - 2 1034 1 10 30 - 3 2064 1 10 30 - 4 3064 1 10 30 - 5 5044 1 10 30 - 6 7064 1 10 30 -} -Group ̻뼺 -{ - Mob 5161 - Type drop - 1 50057 1 200 -} -Group õ뼺 -{ - Kill_drop 10 - Mob 5162 - Type kill - 1 104 1 10 30 - 2 1064 1 10 30 - 3 2094 1 10 30 - 4 3094 1 10 30 - 5 5064 1 10 30 - 6 7094 1 10 30 - 7 11253 1 10 30 - 8 11453 1 10 30 - 9 11653 1 10 30 - 10 11853 1 10 30 -} -Group õ뼺 -{ - Mob 5162 - Type drop - 1 50058 1 200 -} -Group õ뼺 -{ - Kill_drop 10 - Mob 5163 - Type kill - 1 134 1 10 30 - 2 1094 1 10 30 - 3 2124 1 10 30 - 4 5084 1 10 30 - 5 3124 1 10 30 - 6 7124 1 10 30 - 7 11272 1 10 30 - 8 11472 1 10 30 - 9 11672 1 10 30 - 10 11872 1 10 30 -} -Group õ뼺 -{ - Mob 5163 - Type drop - 1 50059 1 200 -} -Group 񸶼 -{ - Mob 8001 - Type drop - 1 20 1 20 - 2 4000 1 20 - 3 3010 1 20 - 4 2010 1 20 - 5 7010 1 20 - 6 11200 1 20 - 7 11400 1 20 - 8 11600 1 20 - 9 22 1 15 - 10 4002 1 15 - 11 3012 1 15 - 12 2012 1 15 - 13 7012 1 15 - 14 11202 1 15 - 15 11402 1 15 - 16 11602 1 15 - 17 11802 1 15 - 18 27002 50 100 - 19 27003 30 50 - 20 27005 30 50 - 21 27006 20 50 - 22 50300 1 100 -} -Group -{ - Mob 8002 - Type drop - 1 5000 1 20 - 2 11210 1 20 - 3 11410 1 20 - 4 11610 1 20 - 5 11810 1 20 - 6 30 1 20 - 7 1010 1 20 - 8 3020 1 20 - 9 2020 1 20 - 10 7020 1 20 - 11 5001 1 15 - 12 11211 1 15 - 13 11411 1 15 - 14 11611 1 15 - 15 11811 1 15 - 16 31 1 15 - 17 1011 1 15 - 18 3021 1 15 - 19 2021 1 15 - 20 7021 1 15 - 21 5002 1 10 - 22 11212 1 10 - 23 11412 1 10 - 24 11612 1 10 - 25 11812 1 10 - 26 32 1 5 - 27 1012 1 5 - 28 3022 1 5 - 29 2022 1 5 - 30 7022 1 5 - 31 27002 50 100 - 32 27003 30 50 - 33 27005 30 50 - 34 27006 20 50 - 35 50300 1 150 -} -Group -{ - Mob 8003 - Type drop - 1 40 1 20 - 2 4010 1 20 - 3 3030 1 20 - 4 2030 1 20 - 5 7030 1 20 - 6 5011 1 20 - 7 11210 1 20 - 8 11410 1 20 - 9 11610 1 20 - 10 11810 1 20 - 11 41 1 10 - 12 4011 1 10 - 13 3031 1 10 - 14 2031 1 10 - 15 7031 1 10 - 16 5010 1 10 - 17 11211 1 15 - 18 11411 1 15 - 19 11611 1 15 - 20 11811 1 15 - 21 42 1 5 - 22 4012 1 5 - 23 3032 1 5 - 24 2032 1 5 - 25 7032 1 5 - 26 5011 1 5 - 27 11212 1 10 - 28 11412 1 10 - 29 11612 1 10 - 30 11812 1 10 - 31 27002 50 100 - 32 27003 30 50 - 33 27005 30 50 - 34 27006 20 50 - 35 50300 1 150 -} -Group 帶 -{ - Mob 8004 - Type drop - 1 50 1 20 - 2 1020 1 20 - 3 3040 1 20 - 4 2040 1 20 - 5 5021 1 20 - 6 7041 1 20 - 7 51 1 15 - 8 1021 1 15 - 9 3041 1 15 - 10 2041 1 15 - 11 5020 1 15 - 12 7041 1 15 - 13 52 1 10 - 14 1022 1 10 - 15 3042 1 10 - 16 2042 1 10 - 17 5021 1 10 - 18 7041 1 10 - 19 11220 1 15 - 20 11420 1 15 - 21 11620 1 15 - 22 11820 1 15 - 23 11221 1 10 - 24 11421 1 10 - 25 11621 1 10 - 26 11821 1 10 - 27 27002 50 100 - 28 27003 30 50 - 29 27005 30 50 - 30 27006 20 50 - 31 50300 1 150 - 32 70014 1 1 - 33 70037 1 1 -} -Group 渶 -{ - Mob 8005 - Type drop - 1 60 1 20 - 2 4020 1 20 - 3 3050 1 20 - 4 2050 1 20 - 5 7050 1 20 - 6 61 1 15 - 7 4021 1 15 - 8 3051 1 15 - 9 2051 1 15 - 10 7051 1 15 - 11 62 1 10 - 12 4022 1 10 - 13 3052 1 10 - 14 2052 1 10 - 15 7052 1 10 - 16 11220 1 20 - 17 11420 1 20 - 18 11620 1 20 - 19 11820 1 20 - 20 11221 1 15 - 21 11421 1 15 - 22 11621 1 15 - 23 11821 1 15 - 24 11222 1 10 - 25 11422 1 10 - 26 11622 1 10 - 27 11822 1 10 - 28 27002 50 150 - 29 27003 30 100 - 30 27005 30 150 - 31 27006 20 100 - 32 50300 1 150 - 33 70014 1 1 - 34 70037 1 1 -} -Group ϸ -{ - Mob 8006 - Type drop - 1 70 1 20 - 2 1030 1 20 - 3 3060 1 20 - 4 2060 1 20 - 5 7060 1 20 - 6 5030 1 20 - 7 71 1 15 - 8 1031 1 15 - 9 3061 1 15 - 10 2061 1 15 - 11 7061 1 15 - 12 5030 1 20 - 13 11230 1 20 - 14 11430 1 20 - 15 11630 1 20 - 16 11830 1 20 - 17 72 1 10 - 18 1032 1 10 - 19 3062 1 10 - 20 2062 1 10 - 21 7062 1 10 - 22 5031 1 10 - 23 11231 1 10 - 24 11431 1 10 - 25 11631 1 10 - 26 11831 1 10 - 27 27002 50 150 - 28 27003 30 100 - 29 27005 30 150 - 30 27006 20 100 - 31 50300 1 200 - 32 70014 1 1 - 33 70037 1 1 -} -Group -{ - Mob 8007 - Type drop - 1 11230 1 20 - 2 11430 1 20 - 3 11630 1 20 - 4 11830 1 20 - 5 80 1 20 - 6 1040 1 20 - 7 3070 1 20 - 8 2070 1 20 - 9 7070 1 20 - 10 5040 1 20 - 11 11231 1 15 - 12 11431 1 15 - 13 11631 1 15 - 14 11831 1 15 - 15 81 1 15 - 16 1041 1 15 - 17 3071 1 15 - 18 2071 1 15 - 19 7071 1 15 - 20 5041 1 15 - 21 11232 1 10 - 22 11432 1 10 - 23 11632 1 10 - 24 11832 1 10 - 25 27002 50 150 - 26 27003 30 100 - 27 27005 30 150 - 28 27006 20 100 - 29 50300 1 200 - 30 70014 1 1 - 31 70037 1 1 -} -Group ȥ -{ - Mob 8008 - Type drop - 1 11240 1 20 - 2 11440 1 20 - 3 11640 1 20 - 4 11840 1 20 - 5 90 1 20 - 6 1050 1 20 - 7 3080 1 20 - 8 2080 1 20 - 9 7080 1 20 - 10 5050 1 20 - 11 11241 1 15 - 12 11441 1 15 - 13 11641 1 15 - 14 11841 1 15 - 15 91 1 15 - 16 1051 1 15 - 17 3081 1 15 - 18 2081 1 15 - 19 7081 1 15 - 20 5051 1 15 - 21 11242 1 10 - 22 11442 1 10 - 23 11642 1 10 - 24 11842 1 10 - 25 27002 50 150 - 26 27003 30 100 - 27 27005 30 150 - 28 27006 20 100 - 29 50300 1 200 - 30 70014 1 1 - 31 70037 1 1 -} -Group -{ - Mob 8009 - Type drop - 1 5050 1 20 - 2 100 1 20 - 3 1060 1 20 - 4 2090 1 20 - 5 7090 1 20 - 6 5051 1 20 - 7 11250 1 15 - 8 11450 1 15 - 9 11650 1 15 - 10 11850 1 15 - 11 101 1 15 - 12 1061 1 15 - 13 2091 1 15 - 14 7091 1 15 - 15 5052 1 15 - 16 11251 1 15 - 17 11451 1 15 - 18 11651 1 15 - 19 11851 1 15 - 20 102 1 10 - 21 1062 1 10 - 22 2092 1 10 - 23 7092 1 10 - 24 11252 1 10 - 25 11452 1 10 - 26 11652 1 10 - 27 11852 1 10 - 28 27002 50 150 - 29 27003 30 100 - 30 27005 30 150 - 31 27006 20 100 - 32 50300 1 200 - 33 70014 1 1 - 34 70037 1 1 -} -Group -{ - Mob 8010 - Type drop - 1 11250 1 20 - 2 11450 1 20 - 3 11650 1 20 - 4 11850 1 20 - 5 110 1 20 - 6 1070 1 20 - 7 2100 1 20 - 8 7100 1 20 - 9 5060 1 20 - 10 11251 1 15 - 11 11451 1 15 - 12 11651 1 15 - 13 11851 1 15 - 14 111 1 15 - 15 1071 1 15 - 16 2101 1 15 - 17 7101 1 15 - 18 5061 1 15 - 19 11252 1 10 - 20 11452 1 10 - 21 11652 1 10 - 22 11852 1 10 - 23 27002 50 150 - 24 27003 30 100 - 25 27005 30 150 - 26 27006 20 100 - 27 50300 1 250 - 28 70014 1 1 - 29 70037 1 1 -} -Group Ǹ -{ - Mob 8011 - Type drop - 1 120 1 30 - 2 1080 1 30 - 3 2110 1 30 - 4 7110 1 30 - 5 5070 1 30 - 6 121 1 20 - 7 1081 1 20 - 8 2111 1 20 - 9 7111 1 20 - 10 5071 1 20 - 11 122 1 15 - 12 1082 1 15 - 13 2112 1 15 - 14 7112 1 15 - 15 5072 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 250 - 21 70014 1 1 - 22 70037 1 1 -} -Group  -{ - Mob 8012 - Type drop - 1 130 1 30 - 2 1090 1 30 - 3 2120 1 30 - 4 7120 1 30 - 5 5080 1 30 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 1 - 22 70037 1 1 -} -Group 縶 -{ - Mob 8013 - Type drop - 1 120 1 25 - 2 1080 1 25 - 3 2110 1 25 - 4 7110 1 25 - 5 5070 1 25 - 6 121 1 20 - 7 1081 1 20 - 8 2111 1 20 - 9 7111 1 20 - 10 5071 1 20 - 11 122 1 15 - 12 1082 1 15 - 13 2112 1 15 - 14 7112 1 15 - 15 5072 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 1 - 22 70037 1 1 -} -Group 츶 -{ - Mob 8014 - Type drop - 1 130 1 25 - 2 1090 1 25 - 3 2120 1 25 - 4 7120 1 25 - 5 5080 1 25 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 50 - 22 70037 1 50 -} -Group -{ - Mob 8015 - Type drop - 1 110 1 10 - 2 1070 1 10 - 3 2100 1 10 - 4 7100 1 10 - 5 5060 1 10 - 6 111 1 5 - 7 1071 1 5 - 8 2101 1 5 - 9 7101 1 5 - 10 5061 1 1 - 11 27002 50 150 - 12 27003 30 100 - 13 27005 30 150 - 14 27006 20 100 - 15 50300 1 400 - 16 70014 1 1 - 17 70037 1 1 -} -Group Ǹ -{ - Mob 8016 - Type drop - 1 120 1 20 - 2 1080 1 20 - 3 2110 1 20 - 4 7110 1 20 - 5 5070 1 20 - 6 121 1 10 - 7 1081 1 10 - 8 2111 1 10 - 9 7111 1 10 - 10 5071 1 10 - 11 122 1 5 - 12 1082 1 5 - 13 2112 1 5 - 14 7112 1 5 - 15 5072 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group  -{ - Mob 8017 - Type drop - 1 130 1 20 - 2 1090 1 20 - 3 2120 1 20 - 4 7120 1 20 - 5 5080 1 20 - 6 131 1 10 - 7 1091 1 10 - 8 2121 1 10 - 9 7121 1 10 - 10 5081 1 10 - 11 132 1 5 - 12 1092 1 5 - 13 2122 1 5 - 14 7122 1 5 - 15 5082 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group 縶 -{ - Mob 8018 - Type drop - 1 120 1 15 - 2 1080 1 15 - 3 2110 1 15 - 4 7110 1 15 - 5 5070 1 15 - 6 121 1 10 - 7 1081 1 10 - 8 2111 1 10 - 9 7111 1 10 - 10 5071 1 10 - 11 122 1 5 - 12 1082 1 5 - 13 2112 1 5 - 14 7112 1 5 - 15 5072 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group 츶 -{ - Mob 8019 - Type drop - 1 130 1 15 - 2 1090 1 15 - 3 2120 1 15 - 4 7120 1 15 - 5 5080 1 15 - 6 131 1 10 - 7 1091 1 10 - 8 2121 1 10 - 9 7121 1 10 - 10 5081 1 10 - 11 132 1 5 - 12 1092 1 5 - 13 2122 1 5 - 14 27002 50 100 - 15 27003 30 200 - 16 27005 30 100 - 17 27006 20 150 - 18 50300 1 400 - 19 70014 1 1 - 20 70037 1 1 -} -Group dz -{ - Mob 8024 - Type drop - 1 3140 1 10 - 2 3141 1 5 - 3 1110 1 10 - 4 1111 1 5 - 5 2130 1 10 - 6 2131 1 5 - 7 7140 1 10 - 8 7141 1 5 - 9 5100 1 10 - 10 5101 1 5 - 11 160 1 10 - 12 161 1 5 - 13 240 1 10 - 14 241 1 5 - 15 27002 50 100 - 16 27003 30 200 - 17 27005 30 100 - 18 27006 20 150 - 19 70014 1 1 - 20 70037 1 1 - 21 12280 1 0.05 - 22 12400 1 0.05 - 23 12540 1 0.05 - 24 12680 1 0.05 - 25 12281 1 0.0125 - 26 12401 1 0.0125 - 27 12541 1 0.0125 - 28 12681 1 0.0125 -} -Group ȼ -{ - Mob 8025 - Type drop - 1 3141 1 10 - 2 3142 1 5 - 3 1111 1 10 - 4 1112 1 5 - 5 2131 1 10 - 6 2132 1 5 - 7 7141 1 10 - 8 7142 1 5 - 9 5101 1 10 - 10 5102 1 5 - 11 161 1 10 - 12 162 1 5 - 13 241 1 10 - 14 242 1 5 - 15 27002 50 100 - 16 27003 30 200 - 17 27005 30 100 - 18 27006 20 150 - 19 70014 1 1 - 20 70037 1 1 - 21 12280 1 0.05 - 22 12400 1 0.05 - 23 12540 1 0.05 - 24 12680 1 0.05 - 25 12281 1 0.0125 - 26 12401 1 0.0125 - 27 12541 1 0.0125 - 28 12681 1 0.0125 -} -Group 뼮 -{ - Mob 8026 - Type drop - 1 3142 1 10 - 2 3143 1 25 - 3 1112 1 15 - 4 1113 1 10 - 5 2132 1 25 - 6 2133 1 15 - 7 7142 1 10 - 8 7143 1 25 - 9 5102 1 15 - 10 5103 1 10 - 11 162 1 25 - 12 163 1 15 - 13 242 1 10 - 14 243 1 25 - 15 11681 1 15 - 16 11682 1 10 - 17 11881 1 25 - 18 11882 1 15 - 19 11481 1 10 - 20 11482 1 25 - 21 11281 1 15 - 22 11282 1 9 - 23 70038 1 15 - 24 25040 1 21 - 25 70048 1 20 - 26 70037 1 25 - 27 70014 1 25 - 28 72006 1 20 - 29 70005 1 20 - 30 27002 50 100 - 31 27003 30 200 - 32 27005 30 100 - 33 27006 20 150 - 34 70014 1 1 - 35 70037 1 1 -} -Group  -{ - Mob 8027 - Type drop - 1 151 1 5 - 2 152 1 15 - 3 153 1 10 - 4 5091 1 5 - 5 5092 1 15 - 6 5093 1 10 - 7 141 1 5 - 8 142 1 15 - 9 143 1 10 - 10 3131 1 5 - 11 3132 1 15 - 12 3133 1 10 - 13 1101 1 5 - 14 1102 1 15 - 15 1103 1 10 - 16 7131 1 5 - 17 7132 1 15 - 18 7133 1 10 - 19 2141 1 5 - 20 2142 1 15 - 21 2143 1 10 - 22 11681 1 5 - 23 11682 1 15 - 24 11683 1 10 - 25 11881 1 5 - 26 11882 1 15 - 27 11883 1 10 - 28 11481 1 5 - 29 11482 1 15 - 30 11483 1 10 - 31 11281 1 5 - 32 11282 1 15 - 33 11283 1 10 - 34 17164 1 9 - 35 17165 1 24 - 36 17166 1 14 - 37 16164 1 9 - 38 16165 1 24 - 39 16166 1 14 - 40 14164 1 9 - 41 14165 1 24 - 42 14166 1 14 - 43 70012 1 15 - 44 70038 1 15 - 45 25040 1 21 - 46 70048 1 20 - 47 70037 1 25 - 48 70014 1 25 - 49 72006 1 20 - 50 70005 1 20 - 51 27002 50 100 - 52 27003 30 200 - 53 27005 30 100 - 54 27006 20 150 - 55 50300 1 400 - 56 70014 1 1 - 57 70037 1 1 -} -Group ȭ -{ - Mob 11506 - Type drop - 1 50117 1 40 30 - 2 182 1 10 30 - 3 192 1 25 30 - 4 1132 1 10 30 - 5 2172 1 25 30 - 6 3162 1 10 30 - 7 5122 1 25 30 - 8 183 1 10 30 - 9 193 1 25 30 - 10 1133 1 10 30 - 11 2173 1 25 30 - 12 3163 1 10 30 - 13 5123 1 25 30 - 14 11293 1 10 30 - 15 11294 1 50 30 - 16 11693 1 20 30 - 17 11694 1 50 30 - 18 11493 1 20 30 - 19 11494 1 50 30 - 20 11893 1 20 30 - 21 11894 1 50 30 -} -Group ȭ -{ - Mob 11507 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11508 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11509 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11510 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group -{ - Mob 11041 - Type drop - 1 50726 1 2 -} -Group Setaou-Anf?rer97 -{ - Level_limit 85 - Mob 2475 - Type limit - 1 171 1 0.07 - 2 12246 1 0.12 - 3 14141 1 0.12 - 4 16183 1 0.21 - 5 50060 1 0.08 - 6 50009 1 0.34 - 7 50724 5 1.25 - 8 50728 5 1.25 - 9 244 1 0.34 - 10 146 1 0.27 - 11 1114 1 0.34 - 12 5104 1 0.34 - 13 70031 1 0.01 - 14 71056 1 0.005 -} -Group Setaou-Soldat80 -{ - Level_limit 80 - Mob 2431 - Type limit - 1 13063 1 0.16 - 2 14206 1 0.14 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 50721 5 1.25 - 6 50725 5 1.25 - 7 70051 1 0.39 - 8 16065 1 0.48 - 9 70031 1 0.01 -} -Group Setaou-J?er82 -{ - Level_limit 80 - Mob 2432 - Type limit - 1 13083 1 0.16 - 2 8005 10 0.94 - 3 8005 20 0.36 - 4 27987 1 0.1 - 5 50722 5 1.25 - 6 50726 5 1.25 - 7 70050 1 0.39 - 8 17104 1 0.22 - 9 70031 1 0.01 -} -Group Setaou-Seherin82 -{ - Level_limit 80 - Mob 2433 - Type limit - 1 13103 1 0.16 - 2 15165 1 0.17 - 3 16203 1 0.11 - 4 17184 1 0.27 - 5 17203 1 0.323 - 6 27987 1 0.1 - 7 50723 5 1.25 - 8 50727 5 1.25 - 9 17105 1 0.34 - 10 70031 1 0.01 -} -Group Setaou-Anf?rer83 -{ - Level_limit 80 - Mob 2434 - Type limit - 1 13123 1 0.16 - 2 14143 1 0.17 - 3 15204 1 0.22 - 4 16184 1 0.11 - 5 50060 1 0.08 - 6 27987 1 0.1 - 7 50724 5 1.25 - 8 50728 5 1.25 - 9 70031 1 0.01 -} -Group Setaou-Soldat84 -{ - Level_limit 80 - Mob 2451 - Type limit - 1 11690 1 0.06 - 2 11691 1 0.05 - 3 13064 1 0.11 - 4 50060 1 0.08 - 5 27987 1 0.1 - 6 50721 5 1.25 - 7 50725 5 1.25 - 8 70031 1 0.01 - 9 71056 1 0.005 -} -Group Setaou-J?er86 -{ - Level_limit 80 - Mob 2452 - Type limit - 1 11490 1 0.06 - 2 11491 1 0.05 - 3 13084 1 0.11 - 4 8005 10 0.94 - 5 8005 20 0.36 - 6 27987 1 0.1 - 7 50009 1 0.34 - 8 50722 5 1.25 - 9 50726 5 1.25 - 10 70031 1 0.01 - 11 71056 1 0.005 -} -Group Setaou-Seherin88 -{ - Level_limit 80 - Mob 2453 - Type limit - 1 11890 1 0.06 - 2 11891 1 0.05 - 3 13104 1 0.11 - 4 16204 1 0.17 - 5 17204 1 0.16 - 6 27987 1 0.1 - 7 50009 1 0.34 - 8 70031 1 0.01 - 9 71056 1 0.005 -} -Group Setaou-Anf?rer90 -{ - Level_limit 80 - Mob 2454 - Type limit - 1 11290 1 0.06 - 2 11291 1 0.05 - 3 13124 1 0.11 - 4 15205 1 0.17 - 5 50060 1 0.08 - 6 50009 1 0.34 - 7 70051 1 0.39 - 8 70050 1 0.39 - 9 70031 1 0.01 - 10 71056 1 0.005 -} -======= -Group θ -{ - Mob 103 - Type drop - 1 1012 1 0.2 - 2 4012 1 0.2 - 3 11402 1 0.2 - 4 16022 1 0.2 -} -Group Ǫ -{ - Mob 104 - Type drop - 1 32 1 0.2 - 2 52 1 0.2 - 3 15002 1 0.2 - 4 2022 1 0.2 - 5 16002 1 0.2 -} -Group Ǫθ -{ - Mob 105 - Type drop - 1 11602 1 0.2 - 2 12482 1 0.2 - 3 15022 1 0.2 - 4 16062 1 0.2 -} -Group ȸθ -{ - Mob 107 - Type drop - 1 12342 1 0.2 - 2 11401 1 0.2 - 3 17022 1 0.2 - 4 17002 1 0.2 -} -Group -{ - Mob 109 - Type drop - 1 11802 1 0.2 - 2 12622 1 0.2 - 3 15042 1 0.2 - 4 5012 1 0.2 - 5 7032 1 0.2 -} -Group ȸ -{ - Mob 111 - Type drop - 1 50721 1 1 -} -Group -{ - Mob 112 - Type drop - 1 50723 1 1 -} -Group Ұ -{ - Mob 113 - Type drop - 1 50721 1 1 -} -Group ȣ -{ - Mob 115 - Type drop - 1 50723 1 1 -} -Group ֹ_θ -{ - Kill_drop 400 - Mob 131 - Type kill - 1 7160 1 25 10 -} -Group ֹ -{ - Mob 131 - Type drop - 1 50722 1 2 -} -Group ֹθ -{ - Mob 132 - Type drop - 1 50723 1 1 -} -Group ֹ_Ǫθ -{ - Kill_drop 400 - Mob 134 - Type kill - 1 5110 1 25 10 - 2 290 1 15 10 -} -Group ֹ_ -{ - Kill_drop 400 - Mob 138 - Type kill - 1 1170 1 25 10 -} -Group ֹ -{ - Mob 139 - Type drop - 1 50724 1 1 -} -Group ֹȸ -{ - Mob 140 - Type drop - 1 50726 1 1 -} -Group ֹ_ -{ - Kill_drop 400 - Mob 141 - Type kill - 1 13192 1 25 20 - 2 13193 1 20 20 - 3 3210 1 15 10 -} -Group ֹȣ -{ - Mob 143 - Type drop - 1 50723 1 1 -} -Group Ǫθû -{ - Mob 151 - Type drop - 1 1013 1 4 - 2 4013 1 4 - 3 11403 1 4 - 4 16023 1 4 - 5 1014 1 4 - 6 4014 1 4 - 7 11404 1 4 - 8 16024 1 4 -} -Group ȸθ빫 -{ - Mob 152 - Type drop - 1 33 1 4 - 2 53 1 4 - 3 15003 1 4 - 4 2023 1 4 - 5 16003 1 4 - 6 34 1 4 - 7 54 1 4 - 8 15004 1 4 - 9 2024 1 4 - 10 16004 1 4 -} -Group -{ - Mob 153 - Type drop - 1 11803 1 4 - 2 12623 1 4 - 3 15043 1 4 - 4 5013 1 4 - 5 7033 1 4 - 6 11804 1 4 - 7 12624 1 4 - 8 15044 1 4 - 9 5014 1 4 - 10 7034 1 4 -} -Group Ұ -{ - Mob 154 - Type drop - 1 11211 1 12 - 2 11212 1 8 - 3 11213 1 4 - 4 11411 1 12 - 5 11412 1 8 - 6 11413 1 4 -} -Group ȣϾ -{ - Mob 155 - Type drop - 1 11611 1 12 - 2 11612 1 8 - 3 11613 1 4 - 4 11811 1 12 - 5 11812 1 8 - 6 11813 1 4 -} -Group ߽ -{ - Mob 191 - Type drop - 1 71 1 4 - 2 70 1 8 - 3 11611 1 4 - 4 11610 1 8 - 5 72 1 0.3 - 6 11612 1 0.2 - 7 15002 1 0.4 - 8 16042 1 0.4 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30070 1 400 -} -Group -{ - Mob 192 - Type drop - 1 4021 1 4 - 2 4020 1 8 - 3 11411 1 4 - 4 11410 1 8 - 5 1031 1 0.3 - 6 1032 1 0.2 - 7 15042 1 0.5 - 8 27002 30 100 - 9 27003 20 50 - 10 27005 20 50 - 11 27006 10 50 - 12 30004 1 400 -} -Group -{ - Mob 193 - Type drop - 1 7051 1 4 - 2 7050 1 8 - 3 11831 1 4 - 4 11830 1 8 - 5 7061 1 0.3 - 6 7062 1 0.2 - 7 15062 1 0.5 - 8 17042 1 0.5 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30072 1 400 -} -Group ȣ -{ - Mob 194 - Type drop - 1 3051 1 4 - 2 3050 1 8 - 3 11211 1 4 - 4 11210 1 8 - 5 3062 1 0.3 - 6 11212 1 0.2 - 7 15042 1 0.5 - 8 17022 1 0.5 - 9 27002 30 100 - 10 27003 20 50 - 11 27005 20 50 - 12 27006 10 50 - 13 30037 1 400 -} -Group ܿ -{ - Kill_drop 800 - Mob 301 - Type kill - 1 16082 1 25 10 - 2 16102 1 20 10 - 3 16122 1 15 10 - 4 16142 1 10 10 -} -Group ܿ -{ - Mob 301 - Type drop - 1 50722 1 2 -} -Group ú -{ - Mob 302 - Type drop - 1 8001 30 12 - 2 50724 1 1 -} -Group _̷ -{ - Kill_drop 350 - Mob 304 - Type kill - 1 11232 1 65 10 - 2 11233 1 35 10 - 3 11432 1 65 10 - 4 11433 1 35 10 - 5 11632 1 65 10 - 6 11633 1 35 10 - 7 11832 1 65 10 - 8 11833 1 35 10 -} -Group ܿ -{ - Mob 331 - Type drop - 1 16083 1 4 - 2 16103 1 4 - 3 16123 1 4 - 4 16143 1 4 -} -Group ú -{ - Mob 332 - Type drop - 1 4021 1 4 - 2 4020 1 4 - 3 2051 1 4 - 4 2050 1 4 - 5 15122 1 4 -} -Group -{ - Mob 333 - Type drop - 1 3041 1 4 - 2 3040 1 4 - 3 2041 1 4 - 4 2050 1 4 - 5 15122 1 4 -} -Group -{ - Mob 334 - Type drop - 1 11234 1 6 - 2 11233 1 4 - 3 11434 1 6 - 4 11433 1 4 - 5 11634 1 6 - 6 11633 1 4 - 7 11834 1 6 - 8 11833 1 4 -} -Group -{ - Mob 391 - Type drop - 1 61 1 0.2 - 2 60 1 0.2 - 3 12641 1 0.2 - 4 12640 1 0.2 - 5 15062 1 0.2 -} -Group -{ - Mob 392 - Type drop - 1 4021 1 0.2 - 2 4020 1 0.2 - 3 2051 1 0.2 - 4 2050 1 0.2 - 5 15122 1 0.01 -} -Group -{ - Mob 393 - Type drop - 1 3041 1 4 - 2 3040 1 8 - 3 2041 1 4 - 4 2050 1 8 - 5 15122 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Mob 394 - Type drop - 1 62 1 4 - 2 61 1 8 - 3 92 1 4 - 4 11222 1 8 - 5 15062 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group dzܿ -{ - Kill_drop 1000 - Mob 401 - Type kill - 1 15082 1 25 10 - 2 15102 1 20 10 - 3 15122 1 15 10 - 4 15142 1 10 10 -} -Group dzܿ -{ - Mob 401 - Type drop - 1 50724 1 1 -} -Group dzü -{ - Mob 403 - Type drop - 1 50007 1 0.5 - 2 8001 30 4 -} -Group dz_۵ -{ - Kill_drop 800 - Mob 404 - Type kill - 1 5042 1 65 10 - 2 5032 1 35 10 - 3 12222 1 35 10 - 4 12223 1 15 10 - 5 12362 1 35 10 - 6 12363 1 15 10 - 7 12502 1 35 10 - 8 12503 1 15 10 - 9 12642 1 35 10 - 10 12643 1 15 10 -} -Group dz_ -{ - Kill_drop 500 - Mob 405 - Type kill - 1 7072 1 1 10 - 2 7052 1 1 10 - 3 4022 1 1 10 - 4 1042 1 1 10 -} -Group dz -{ - Mob 405 - Type drop - 1 50721 1 1 -} -Group dz_ -{ - Kill_drop 300 - Mob 406 - Type kill - 1 82 1 65 10 - 2 83 1 35 10 -} -Group dzܿκ -{ - Mob 431 - Type drop - 1 12222 1 4 - 2 12223 1 4 - 3 12362 1 4 - 4 12363 1 4 - 5 50009 1 2 -} -Group dzݴ -{ - Mob 432 - Type drop - 1 12502 1 4 - 2 12503 1 4 - 3 12642 1 4 - 4 12643 1 4 - 5 50009 1 2 -} -Group dzü -{ - Mob 433 - Type drop - 1 7072 1 4 - 2 7052 1 4 - 3 4022 1 4 - 4 1042 1 4 - 5 50009 1 2 -} -Group dz -{ - Mob 434 - Type drop - 1 61 1 4 - 2 12640 1 4 - 3 91 1 4 - 4 15060 1 4 - 5 50009 1 2 -} -Group dzȣ -{ - Mob 435 - Type drop - 1 16041 1 4 - 2 7050 1 4 - 3 15141 1 4 - 4 11820 1 4 - 5 50009 1 2 -} -Group dz -{ - Mob 436 - Type drop - 1 71 1 4 - 2 5040 1 4 - 3 12501 1 4 - 4 17100 1 4 - 5 15102 1 4 - 6 50009 1 2 -} -Group ȯ -{ - Mob 491 - Type drop - 1 4021 1 4 - 2 12360 1 8 - 3 13001 1 4 - 4 15080 1 8 - 5 17082 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Mob 492 - Type drop - 1 61 1 4 - 2 12640 1 8 - 3 91 1 4 - 4 15060 1 8 - 5 27002 30 100 - 6 27003 20 50 - 7 27005 20 50 - 8 27006 10 50 -} -Group -{ - Mob 493 - Type drop - 1 16041 1 4 - 2 7050 1 8 - 3 15141 1 4 - 4 11820 1 8 - 5 27002 30 100 - 6 27003 20 50 - 7 27005 20 50 - 8 27006 10 50 -} -Group -{ - Mob 494 - Type drop - 1 71 1 4 - 2 5040 1 8 - 3 12501 1 4 - 4 17100 1 8 - 5 15102 1 0.2 - 6 27002 30 100 - 7 27003 20 50 - 8 27005 20 50 - 9 27006 10 50 -} -Group -{ - Kill_drop 2000 - Mob 502 - Type kill - 1 17082 1 25 10 - 2 17102 1 20 10 - 3 17122 1 15 10 - 4 17142 1 10 10 -} -Group -{ - Mob 502 - Type drop - 1 50724 1 1 -} -Group ijü -{ - Mob 503 - Type drop - 1 50013 1 0.5 - 2 8001 50 20 - 3 50721 1 1 -} -Group ɱü -{ - Kill_drop 500 - Mob 503 - Type kill - 1 2072 1 10 10 - 2 290 1 10 10 - 3 2150 1 15 10 -} -Group -{ - Kill_drop 400 - Mob 504 - Type kill - 1 3072 1 65 10 - 2 3073 1 35 10 - 3 290 1 40 10 - 4 2150 1 20 10 - 5 11242 1 35 10 - 6 11243 1 15 10 - 7 11442 1 35 10 - 8 11443 1 15 10 - 9 11642 1 35 10 - 10 11643 1 15 10 - 11 11842 1 35 10 - 12 11843 1 15 10 -} -Group -{ - Mob 504 - Type drop - 1 50725 1 1 -} -Group ij -{ - Mob 531 - Type drop - 1 17083 1 8 - 2 17103 1 6 - 3 17123 1 4 - 4 17143 1 4 - 5 50008 1 2 -} -Group ij -{ - Mob 532 - Type drop - 1 16083 1 4 - 2 16103 1 4 - 3 16123 1 4 - 4 16143 1 4 - 5 50008 1 2 -} -Group ijüõ -{ - Mob 533 - Type drop - 1 2073 1 4 - 2 292 1 4 - 3 2152 1 4 - 4 50008 1 2 -} -Group ijδ尭õ -{ - Mob 534 - Type drop - 1 3072 1 8 - 2 3073 1 4 - 3 290 1 6 - 4 2150 1 4 - 5 11244 1 2 - 6 11243 1 4 - 7 11444 1 2 - 8 11443 1 4 - 9 11644 1 2 - 10 11643 1 4 - 11 11844 1 2 - 12 11843 1 4 - 13 50008 1 2 -} -Group ܴ -{ - Mob 591 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11432 1 0.2 - 4 15122 1 0.2 - 5 27002 50 100 - 6 27003 30 50 - 7 27005 30 50 - 8 27006 20 50 -} -Group ͺл -{ - Mob 601 - Type drop - 1 7082 1 8 - 2 5052 1 8 - 3 14082 1 4 - 4 14102 1 4 - 5 14122 1 4 - 6 14142 1 4 -} -Group ôĺǸ -{ - Mob 602 - Type drop - 1 93 1 8 - 2 1053 1 8 - 3 1172 1 8 -} -Group ε -{ - Mob 603 - Type drop - 1 71 1 4 - 2 5040 1 8 - 3 12501 1 4 - 4 17100 1 8 - 5 15102 1 4 -} -Group ͸ο -{ - Mob 604 - Type drop - 1 1042 1 4 - 2 2072 1 4 - 3 11422 1 4 - 4 15122 1 4 -} -Group ͺ -{ - Kill_drop 400 - Mob 631 - Type kill - 1 7082 1 20 10 - 2 5052 1 10 10 - 3 14082 1 25 10 - 4 14102 1 20 10 - 5 14122 1 15 10 - 6 14142 1 10 10 -} -Group ͺ -{ - Mob 631 - Type drop - 1 50722 1 1 -} -Group _ôĺ -{ - Kill_drop 600 - Mob 632 - Type kill - 1 92 1 10 20 - 2 1052 1 10 20 - 3 1170 1 10 20 -} -Group ôĺ -{ - Mob 632 - Type drop - 1 50726 1 1 -} -Group _ -{ - Kill_drop 1200 - Mob 633 - Type kill - 1 3082 1 10 20 - 2 1170 1 10 20 -} -Group -{ - Mob 633 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11432 1 0.2 - 4 15122 1 0.2 -} -Group ͸ -{ - Mob 634 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11422 1 0.2 - 4 15122 1 0.2 -} -Group 屺 -{ - Mob 635 - Type drop - 1 50722 1 1 -} -Group -{ - Kill_drop 500 - Mob 636 - Type kill - 1 7092 1 65 10 - 2 7093 1 35 10 -} -Group -{ - Mob 636 - Type drop - 1 50721 1 4 -} -Group Ŵ_ -{ - Kill_drop 900 - Mob 637 - Type kill - 1 5062 1 65 10 - 2 5063 1 35 10 -} -Group -{ - Kill_drop 1 - Mob 691 - Type kill - 1 50070 1 100 0 -} -Group -{ - Mob 691 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 40 -} -Group б -{ - Kill_drop 300 - Mob 701 - Type kill - 1 2082 1 35 30 - 2 15162 1 32 10 - 3 15182 1 16 10 - 4 15202 1 12 10 - 5 15222 1 8 10 -} -Group бѺ -{ - Kill_drop 500 - Mob 702 - Type kill - 1 11252 1 30 10 - 2 11452 1 30 10 - 3 11652 1 30 10 - 4 11852 1 30 10 - 5 11253 1 60 10 - 6 11453 1 60 10 - 7 11653 1 60 10 - 8 11853 1 60 10 - 9 3210 1 40 10 -} -Group бѺ -{ - Mob 702 - Type drop - 1 50725 1 1 -} -Group б -{ - Kill_drop 200 - Mob 703 - Type kill - 1 15163 1 25 10 - 2 15183 1 20 10 - 3 15203 1 15 10 - 4 15223 1 10 10 - 5 3210 1 20 10 -} -Group б -{ - Mob 703 - Type drop - 1 103 1 0.2 - 2 112 1 0.2 - 3 1062 1 0.2 - 4 11642 1 0.2 - 5 16162 1 0.2 - 6 50724 1 1 -} -Group б -{ - Kill_drop 500 - Mob 704 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 -} -Group б -{ - Mob 704 - Type drop - 1 50723 1 2 -} -Group бິ -{ - Mob 705 - Type drop - 1 50724 1 1 -} -Group бڷ -{ - Kill_drop 100 - Mob 706 - Type kill - 1 102 1 65 10 - 2 103 1 35 10 - 3 12242 1 45 10 - 4 12243 1 30 10 - 5 12382 1 35 10 - 6 12383 1 20 10 - 7 12522 1 25 10 - 8 12523 1 20 10 - 9 12662 1 20 10 - 10 12663 1 15 10 -} -Group бȯ -{ - Kill_drop 40 - Mob 707 - Type kill - 1 3092 1 65 10 - 2 3093 1 35 10 - 3 16162 1 54 30 - 4 16163 1 27 30 - 5 16182 1 36 30 - 6 16183 1 18 30 - 7 16202 1 18 30 - 8 16203 1 9 30 -} -Group бȯ -{ - Mob 707 - Type drop - 1 50723 1 1 -} -Group б -{ - Mob 731 - Type drop - 1 50726 1 2 -} -Group б -{ - Mob 733 - Type drop - 1 50725 1 2 -} -Group б -{ - Kill_drop 700 - Mob 734 - Type kill - 1 11260 1 65 20 - 2 11261 1 35 20 - 3 11460 1 65 20 - 4 11461 1 35 20 - 5 11660 1 65 20 - 6 11661 1 35 20 - 7 11860 1 65 20 - 8 11861 1 35 20 -} -Group бڷ -{ - Kill_drop 300 - Mob 736 - Type kill - 1 122 1 65 10 - 2 123 1 35 10 -} -Group бڷ -{ - Mob 736 - Type drop - 1 50725 1 2 -} -Group бȯ -{ - Kill_drop 300 - Mob 737 - Type kill - 1 3111 1 65 10 - 2 3112 1 35 10 -} -Group бȯ -{ - Mob 737 - Type drop - 1 50727 1 0.8 -} -Group б -{ - Kill_drop 1 - Mob 791 - Type kill - 1 50071 1 100 0 -} -Group б -{ - Mob 791 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 50 -} -Group ȯѹб -{ - Mob 792 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 200 -} -Group ñ -{ - Kill_drop 500 - Mob 901 - Type kill - 1 15162 1 12 30 - 2 15182 1 9 30 - 3 15202 1 6 30 - 4 15222 1 3 30 -} -Group ñ -{ - Mob 901 - Type drop - 1 1042 1 0.2 - 2 2072 1 0.2 - 3 11442 1 0.2 - 4 15122 1 0.2 -} -Group -{ - Kill_drop 400 - Mob 902 - Type kill - 1 17162 1 18 30 - 2 17163 1 9 30 - 3 17182 1 12 30 - 4 17183 1 6 30 - 5 17202 1 6 30 - 6 17203 1 3 30 -} -Group -{ - Mob 902 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 -} -Group -{ - Mob 903 - Type drop - 1 50723 1 1 -} -Group -{ - Kill_drop 450 - Mob 904 - Type kill - 1 132 1 6 10 - 2 133 1 3 10 - 3 1092 1 6 10 - 4 1093 1 3 10 -} -Group -{ - Mob 904 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 -} -Group â -{ - Kill_drop 900 - Mob 905 - Type kill - 1 2122 1 65 10 - 2 2123 1 35 10 -} -Group â -{ - Mob 905 - Type drop - 1 27110 1 1 - 2 50008 1 0.2 - 3 50722 1 2 -} -Group ü -{ - Kill_drop 250 - Mob 906 - Type kill - 1 12242 1 6 10 - 2 12243 1 3 10 - 3 12382 1 6 10 - 4 12383 1 3 10 - 5 12522 1 6 10 - 6 12523 1 3 10 - 7 12662 1 6 10 - 8 12663 1 3 10 -} -Group ü -{ - Mob 906 - Type drop - 1 50006 1 1 - 2 8004 100 20 - 3 50723 1 2 -} -Group -{ - Kill_drop 200 - Mob 907 - Type kill - 1 3122 1 65 10 - 2 3123 1 30 10 -} -Group -{ - Mob 907 - Type drop - 1 5062 1 0.2 - 2 11652 1 0.2 - 3 2092 1 0.2 - 4 11452 1 0.2 - 5 15122 1 0.2 - 6 70049 1 0.1 - 7 50728 1 1 -} -Group ͺ -{ - Mob 1001 - Type drop - 1 50728 1 1 -} -Group ͱú -{ - Kill_drop 200 - Mob 1002 - Type kill - 1 2122 1 35 0 -} -Group ͱú -{ - Mob 1002 - Type drop - 1 50012 1 0.4 - 2 8005 100 20 - 3 50724 1 1 -} -Group â -{ - Kill_drop 100 - Mob 1003 - Type kill - 1 1092 1 65 30 - 2 1093 1 35 30 - 3 14162 1 54 30 - 4 14163 1 27 30 - 5 14182 1 36 30 - 6 14183 1 18 30 - 7 14202 1 18 30 - 8 14203 1 9 30 -} -Group â -{ - Mob 1003 - Type drop - 1 50721 1 2 -} -Group ּ -{ - Kill_drop 50 - Mob 1004 - Type kill - 1 3122 1 65 10 - 2 3123 1 35 10 -} -Group ͱú -{ - Mob 1032 - Type drop - 1 50012 1 0.9 - 2 8005 100 20 -} -Group Ȱͺ -{ - Kill_drop 0 - Mob 1061 - Type kill -} -Group Ȱͺ -{ - Mob 1061 - Type drop - 1 50724 1 2 - 2 30193 1 0.02 -} -Group Ȱͱú -{ - Kill_drop 0.0 - Mob 1062 - Type drop - 1 30193 1 0.02 -} -Group Ȱâ -{ - Kill_drop 10000 - Mob 1063 - Type kill - 1 11270 1 10 20 - 2 11470 1 10 20 - 3 11670 1 10 20 - 4 11870 1 10 20 - 5 11271 1 1 20 - 6 11471 1 1 20 - 7 11671 1 1 20 - 8 11871 1 1 20 -} -Group Ȱâ -{ - Mob 1063 - Type drop - 1 50726 1 2 - 2 30193 1 0.02 -} -Group Refining_1064 -{ - Mob 1064 - Type drop - 1 30193 1 0.2 -} -Group Ȱּ -{ - Kill_drop 10000 - Mob 1064 - Type kill - 1 11272 1 1 20 - 2 11472 1 1 20 - 3 11672 1 1 20 - 4 11872 1 1 20 - 5 11271 1 10 20 - 6 11471 1 10 20 - 7 11671 1 10 20 - 8 11871 1 10 20 -} -Group ȰѿǸ -{ - Kill_drop 40000 - Mob 1065 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ȰѿǸ -{ - Mob 1065 - Type drop - 1 50728 1 2 -} -Group ȰȥǸ -{ - Kill_drop 0 - Mob 1066 - Type kill -} -Group ȰȥǸ -{ - Mob 1066 - Type drop - 1 50724 1 2 -} -Group Ȱ -{ - Kill_drop 0 - Mob 1068 - Type kill -} -Group Ȱ -{ - Mob 1068 - Type drop - 1 50721 1 4 -} -Group Ȱ -{ - Level_limit 75 - Mob 1068 - Type limit - 1 14004 1 0.08 - 2 14024 1 0.08 - 3 14044 1 0.08 - 4 14064 1 0.08 - 5 1110 1 0.08 - 6 2130 1 0.08 - 7 7140 1 0.08 - 8 13120 1 0.01 -} -Group Ȱɻ -{ - Kill_drop 0 - Mob 1069 - Type kill -} -Group Ȱɻ -{ - Mob 1069 - Type drop - 1 50725 1 2 -} -Group Ȱɻ -{ - Level_limit 75 - Mob 1069 - Type limit - 1 14084 1 0.08 - 2 14104 1 0.08 - 3 14124 1 0.08 - 4 14144 1 0.08 - 5 7140 1 0.08 - 6 5100 1 0.08 - 7 160 1 0.08 - 8 13100 1 0.01 -} -Group ȰѺһ -{ - Kill_drop 0 - Mob 1070 - Type kill -} -Group ȰѺһ -{ - Mob 1070 - Type drop - 1 50727 1 1 -} -Group ȰѺһ -{ - Level_limit 75 - Mob 1070 - Type limit - 1 14084 1 0.08 - 2 14104 1 0.08 - 3 14124 1 0.08 - 4 14144 1 0.08 - 5 2130 1 0.08 - 6 5100 1 0.08 - 7 13080 1 0.01 -} -Group ȰȰ -{ - Kill_drop 0 - Mob 1071 - Type kill -} -Group ȰȰ -{ - Mob 1071 - Type drop - 1 50721 1 4 -} -Group ȰȰ -{ - Level_limit 75 - Mob 1071 - Type limit - 1 14164 1 0.08 - 2 14184 1 0.08 - 3 14204 1 0.08 - 4 3140 1 0.08 - 5 1110 1 0.08 - 6 2130 1 0.08 - 7 7140 1 0.08 - 8 160 1 0.08 - 9 240 1 0.08 - 10 13060 1 0.01 -} -Group Ϳ -{ - Mob 1091 - Type drop - 1 130 1 25 - 2 1090 1 25 - 3 2120 1 25 - 4 7120 1 25 - 5 5080 1 25 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 30 150 - 17 27003 50 200 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 400 -} -Group Ϳ -{ - Kill_drop 1 - Mob 1092 - Type kill - 1 50081 1 100 0 -} -Group -{ - Level_limit 75 - Mob 1093 - Type limit - 1 50082 1 100 -} -Group -{ - Mob 1101 - Type drop - 1 90011 1 0.09 -} -Group Թ -{ - Mob 1102 - Type drop - 1 90011 1 0.1 - 2 50728 1 1 -} -Group -{ - Mob 1103 - Type drop - 1 102 1 0.2 - 2 112 1 0.2 - 3 1072 1 0.2 - 4 11252 1 0.2 - 5 15122 1 0.2 - 6 70050 1 0.1 - 7 90011 1 0.2 - 8 50722 1 1 -} -Group -{ - Kill_drop 350 - Mob 1104 - Type kill - 1 12242 1 6 30 - 2 12382 1 6 30 - 3 12522 1 6 30 - 4 12662 1 6 30 - 5 12243 1 3 30 - 6 12383 1 3 30 - 7 12523 1 3 30 - 8 12663 1 3 30 -} -Group -{ - Mob 1104 - Type drop - 1 50723 1 2 -} -Group -{ - Kill_drop 700 - Mob 1105 - Type kill - 1 11262 1 6 20 - 2 11263 1 3 20 - 3 11462 1 6 20 - 4 11463 1 3 20 - 5 11662 1 6 20 - 6 11663 1 3 20 - 7 11862 1 6 20 - 8 11863 1 3 20 -} -Group -{ - Mob 1105 - Type drop - 1 2092 1 0.2 - 2 7092 1 0.2 - 3 11852 1 0.2 - 4 15142 1 0.2 - 5 70048 1 0.1 - 6 90011 1 0.3 - 7 50725 1 2 -} -Group -{ - Kill_drop 1000 - Mob 1106 - Type kill - 1 1092 1 60 20 - 2 1093 1 30 20 - 3 50009 1 10 0 -} -Group -{ - Mob 1106 - Type drop - 1 102 1 0.2 - 2 112 1 0.2 - 3 1072 1 0.2 - 4 11252 1 0.2 - 5 15122 1 0.2 - 6 70051 1 0.1 - 7 90011 1 0.4 - 8 50728 1 1 -} -Group -{ - Mob 1107 - Type drop - 1 50721 1 2 -} -Group -{ - Kill_drop 300 - Mob 1107 - Type kill - 1 3123 1 60 20 - 2 3124 1 30 20 - 3 50009 1 10 0 -} -Group EisSplitter -{ - Level_limit 75 - Mob 1131 - Type limit - 1 50060 1 0.08 - 2 27987 1 0.1 - 3 50901 1 2.1 - 4 14045 1 0.17 - 5 11885 1 0.7 - 6 11685 1 0.7 - 7 50124 1 0.07 -} -Group Refine_1131 -{ - Mob 1131 - Type drop - 1 30198 1 0.09 -} -Group Eiskillerwal -{ - Level_limit 75 - Mob 1132 - Type limit - 1 50060 1 0.08 - 2 27987 1 0.1 - 3 50901 1 2.1 - 4 30048 1 0.55 - 5 14085 1 0.9 - 6 11485 1 0.7 - 7 11285 1 0.7 - 8 50124 1 0.07 -} -Group Eisinsekt -{ - Level_limit 75 - Mob 1133 - Type limit - 1 50901 1 2.1 - 2 30088 1 0.8 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 14105 1 0.9 - 6 11885 1 0.7 - 7 11685 1 0.7 - 8 50124 1 0.07 -} -Group Eisl?e -{ - Level_limit 75 - Mob 1134 - Type limit - 1 50901 1 2.1 - 2 30089 1 0.32 - 3 50060 1 0.08 - 4 70049 1 0.11 - 5 16163 1 0.85 - 6 11485 1 0.7 - 7 11285 1 0.7 - 8 50124 1 0.07 -} -Group Eismann -{ - Level_limit 75 - Mob 1135 - Type limit - 1 50901 1 2.1 - 2 30090 1 0.55 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 16164 1 0.68 - 6 11886 1 0.4 - 7 11686 1 0.4 - 8 50124 1 0.07 -} -Group Yeti -{ - Level_limit 75 - Mob 1136 - Type limit - 1 50901 1 2.1 - 2 30014 1 0.55 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 14125 1 0.64 - 6 11486 1 0.1 - 7 11286 1 0.1 - 8 50124 1 0.07 -} -Group Eisgolem -{ - Level_limit 75 - Mob 1137 - Type limit - 1 19 1 0.04 - 2 1009 1 0.04 - 3 2009 1 0.04 - 4 3009 1 0.04 - 5 5009 1 0.04 - 6 7009 1 0.04 - 7 30050 1 0.19 - 8 27105 10 0.323 - 9 50009 1 0.34 - 10 27987 1 0.1 - 11 11886 1 0.1 - 12 11686 1 0.1 - 13 11486 1 0.1 - 14 11286 1 0.1 - 15 50124 1 0.07 -} -Group Refine_1137 -{ - Mob 1137 - Type drop - 1 30198 1 0.125 -} -Group ice_witch -{ - Level_limit 80 - Mob 1192 - Type drop - 1 11294 1 50 15 - 2 11494 1 50 15 - 3 11694 1 50 15 - 4 11894 1 50 15 - 5 13066 1 50 15 - 6 13086 1 50 15 - 7 13106 1 50 15 - 8 13126 1 50 15 - 9 15187 1 50 15 - 10 15167 1 50 15 - 11 15207 1 50 15 - 12 15227 1 50 15 - 13 16207 1 50 15 - 14 16187 1 50 15 - 15 17147 1 50 15 - 16 17167 1 50 15 - 17 17187 1 50 15 - 18 17207 1 50 15 - 19 28430 1 50 15 - 20 28431 1 50 15 - 21 28432 1 50 15 - 22 28433 1 50 15 - 23 28434 1 50 15 - 24 28435 1 50 15 - 25 28436 1 50 15 - 26 28437 1 50 15 - 27 28438 1 50 15 - 28 28439 1 50 15 - 29 28440 1 50 15 - 30 28441 1 50 15 - 31 28442 1 50 15 - 32 28443 1 50 15 - 33 70031 1 50 15 - 34 71056 1 50 15 - 35 30190 1 400 100 - 36 30190 5 100 10 -} -Group ûͺ -{ - Kill_drop 400 - Mob 1301 - Type kill - 1 16160 1 18 30 - 2 16161 1 9 30 - 3 16180 1 12 30 - 4 16181 1 6 30 - 5 16200 1 6 30 - 6 16201 1 3 30 -} -Group ûͺ -{ - Mob 1301 - Type drop - 1 90012 1 0.2 - 2 12260 1 2.5 - 3 12390 1 2.5 - 4 12530 1 5 - 5 12670 1 5 -} -Group û -{ - Kill_drop 800 - Mob 1302 - Type kill - 1 5082 1 65 20 - 2 5083 1 35 20 -} -Group û -{ - Mob 1302 - Type drop - 1 90012 1 0.3 - 2 12260 1 5 - 3 12390 1 5 - 4 12530 1 2.5 - 5 12670 1 2.5 -} -Group ǮٸӸ -{ - Kill_drop 1000 - Mob 1303 - Type kill - 1 2122 1 1 20 -} -Group ǮٸӸ -{ - Mob 1303 - Type drop - 1 90012 1 0.1 -} -Group -{ - Kill_drop 1 - Mob 1304 - Type kill - 1 50078 1 100 0 -} -Group -{ - Mob 1304 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 300 -} -Group 屺 -{ - Kill_drop 350 - Mob 1305 - Type kill - 1 7122 1 65 20 - 2 7123 1 35 20 -} -Group 屺 -{ - Mob 1305 - Type drop - 1 15162 1 0.2 - 2 16162 1 0.2 - 3 12382 1 0.2 - 4 17142 1 0.2 - 5 90012 1 0.4 - 6 12260 1 0.75 - 7 12390 1 0.75 - 8 12530 1 0.75 - 9 12670 1 0.75 -} -Group ͺ -{ - Kill_drop 0 - Mob 1401 - Type kill -} -Group ͺ -{ - Mob 1401 - Type drop - 1 50723 1 2 -} -Group ôĺ -{ - Kill_drop 1500 - Mob 1402 - Type kill - 1 11273 1 20 30 - 2 11473 1 20 30 - 3 11673 1 20 30 - 4 11873 1 20 30 - 5 11274 1 10 30 - 6 11474 1 10 30 - 7 11674 1 10 30 - 8 11874 1 10 30 -} -Group ôĺ -{ - Mob 1402 - Type drop - 1 50726 1 2 -} -Group õ -{ - Kill_drop 500 - Mob 1403 - Type kill - 1 11290 1 5 30 - 2 11490 1 5 30 - 3 11890 1 5 30 - 4 11690 1 5 30 - 5 170 1 1 20 - 6 250 1 1 20 - 7 1120 1 1 20 - 8 2180 1 1 20 - 9 3150 1 1 20 - 10 7150 1 1 20 -} -Group õ -{ - Mob 1403 - Type drop - 1 50725 1 2 -} -Group õ -{ - Level_limit 86 - Mob 1403 - Type limit - 1 11290 1 0.1 - 2 11490 1 0.1 - 3 11890 1 0.1 - 4 11690 1 0.1 - 5 70003 1 0.1 - 6 70005 1 0.1 - 7 70008 1 0.1 - 8 70038 1 0.1 - 9 170 1 0.1 - 10 250 1 0.1 - 11 1120 1 0.1 - 12 2180 1 0.1 - 13 3150 1 0.1 - 14 7150 1 0.1 -} -Group Refine_1501 -{ - Mob 1501 - Type drop - 1 30195 1 1 -} -Group -{ - Kill_drop 100 - Mob 1501 - Type kill - 1 8002 100 1 0 -} -Group -{ - Kill_drop 100 - Mob 1502 - Type kill - 1 8002 100 1 0 -} -Group -{ - Mob 1502 - Type drop - 1 50722 1 1 - 2 30195 1 1 -} -Group Ŵ -{ - Kill_drop 3000 - Mob 1503 - Type kill - 1 11282 1 1 10 - 2 11882 1 1 10 - 3 11482 1 1 10 - 4 11682 1 1 10 -} -Group Ŵ -{ - Mob 1503 - Type drop - 1 50723 1 4 - 2 30195 1 1 -} -Group ϱ -{ - Kill_drop 0 - Mob 1601 - Type kill -} -Group ϲ -{ - Mob 1601 - Type drop - 1 50728 1 2 - 2 30194 1 1.0 -} -Group Ͱ -{ - Kill_drop 1000 - Mob 1602 - Type kill - 1 11271 1 20 20 - 2 11471 1 20 20 - 3 11671 1 20 20 - 4 11871 1 20 20 - 5 11272 1 10 10 - 6 11472 1 10 10 - 7 11672 1 10 10 - 8 11872 1 10 10 -} -Group Ͱ -{ - Mob 1602 - Type drop - 1 50721 1 4 - 2 30194 1 1 -} -Group ͹ -{ - Kill_drop 2000 - Mob 1603 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 -} -Group ͹ -{ - Mob 1603 - Type drop - 1 50722 1 2 - 2 30194 1 1 -} -Group ͹ -{ - Level_limit 86 - Mob 1603 - Type limit - 1 11290 1 0.03 - 2 11490 1 0.03 - 3 11890 1 0.03 - 4 11690 1 0.03 - 5 170 1 0.03 - 6 250 1 0.03 - 7 1120 1 0.03 - 8 2180 1 0.03 - 9 3150 1 0.03 - 10 7150 1 0.03 -} -Group ȣ -{ - Kill_drop 1 - Mob 1901 - Type kill - 1 50077 1 100 0 -} -Group ȣ -{ - Mob 1901 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90010 1 200 -} -Group ȣ -{ - Mob 1902 - Type drop - 1 151 1 25 30 - 2 152 1 10 30 - 3 5091 1 25 30 - 4 5092 1 10 30 - 5 141 1 25 30 - 6 142 1 10 30 - 7 3131 1 25 30 - 8 3132 1 10 30 - 9 1101 1 25 30 - 10 1102 1 10 30 - 11 7131 1 25 30 - 12 7132 1 10 30 - 13 2141 1 25 30 - 14 2142 1 10 30 - 15 11682 1 50 30 - 16 11683 1 20 30 - 17 11882 1 50 30 - 18 11883 1 20 30 - 19 11482 1 50 30 - 20 11483 1 20 30 - 21 11282 1 50 30 - 22 11283 1 20 30 - 23 17204 1 50 30 - 24 17205 1 25 30 - 25 17206 1 10 30 - 26 16204 1 50 30 - 27 16205 1 25 30 - 28 16206 1 10 30 - 29 14204 1 50 30 - 30 14205 1 25 30 - 31 14206 1 10 30 - 32 50006 1 400 - 33 50007 1 400 - 34 50012 1 400 - 35 50013 1 400 - 36 12222 1 50 - 37 12223 1 25 - 38 12362 1 50 - 39 12363 1 25 - 40 12502 1 50 - 41 12503 1 25 - 42 12642 1 50 - 43 12643 1 25 - 44 30015 1 100 - 45 30035 1 100 - 46 30058 1 100 - 47 30006 1 100 - 48 30082 1 100 - 49 30076 1 100 - 50 30018 1 100 - 51 30046 1 100 - 52 30021 1 100 - 53 30086 1 100 - 54 30005 1 100 - 55 30072 1 100 - 56 30080 1 100 - 57 30077 1 100 - 58 30069 1 100 - 59 30067 1 100 - 60 12282 1 0.05 - 61 12402 1 0.05 - 62 12542 1 0.05 - 63 12682 1 0.05 - 64 12284 1 0.0125 - 65 12404 1 0.0125 - 66 12544 1 0.0125 - 67 12684 1 0.0125 -} -Group Ź -{ - Mob 2001 - Type drop - 1 50721 1 2 -} -Group Ź -{ - Mob 2002 - Type drop - 1 50725 1 1 -} -Group Ź -{ - Kill_drop 1000 - Mob 2003 - Type kill - 1 7102 1 1 10 -} -Group Ź -{ - Mob 2003 - Type drop - 1 50725 1 1 - 2 50009 1 0.2 -} -Group ԰Ź -{ - Kill_drop 1000 - Mob 2004 - Type kill - 1 5072 1 1 10 -} -Group ԰Ź -{ - Mob 2004 - Type drop - 1 50721 1 2 -} -Group Ź -{ - Kill_drop 500 - Mob 2005 - Type kill - 1 12242 1 1 10 - 2 12382 1 1 10 - 3 12522 1 1 10 - 4 12662 1 1 10 -} -Group Ź -{ - Mob 2005 - Type drop - 1 50727 1 0.8 -} -Group Ź -{ - Mob 2031 - Type drop - 1 50722 1 1 -} -Group ͵Ź -{ - Kill_drop 300 - Mob 2033 - Type kill - 1 112 1 65 10 - 2 113 1 35 10 -} -Group ͵Ź -{ - Mob 2033 - Type drop - 1 50727 1 0.8 -} -Group ԵŹ -{ - Kill_drop 500 - Mob 2034 - Type kill - 1 1072 1 1 10 -} -Group ԵŹ -{ - Mob 2034 - Type drop - 1 50726 1 2 -} -Group Ź -{ - Kill_drop 300 - Mob 2035 - Type kill - 1 11260 1 1 10 - 2 11460 1 1 10 - 3 11660 1 1 10 - 4 11860 1 1 10 -} -Group Ź -{ - Mob 2035 - Type drop - 1 50726 1 2 -} -Group Ź -{ - Kill_drop 90 - Mob 2036 - Type kill - 1 3112 1 65 10 - 2 3113 1 35 10 -} -Group Ź -{ - Mob 2061 - Type drop - 1 50724 1 2 -} -Group Ź -{ - Level_limit 60 - Mob 2061 - Type limit - 1 104 1 0.5 - 2 114 1 0.5 - 3 124 1 0.5 - 4 134 1 0.5 - 5 13006 1 0.5 - 6 13194 1 0.5 - 7 13205 1 0.5 - 8 13060 1 0.05 - 9 13100 1 0.05 -} -Group ͵Ź -{ - Mob 2062 - Type drop - 1 50721 1 4 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2062 - Type limit - 1 1064 1 0.5 - 2 1074 1 0.5 - 3 1084 1 0.5 - 4 1094 1 0.5 - 5 12626 1 0.5 - 6 12645 1 0.5 - 7 12664 1 0.5 - 8 13080 1 0.05 - 9 13120 1 0.05 -} -Group ͵Ź -{ - Mob 2063 - Type drop - 1 50724 1 2 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2063 - Type limit - 1 2094 1 0.5 - 2 2104 1 0.5 - 3 2114 1 0.5 - 4 2124 1 0.5 - 5 12486 1 0.5 - 6 12505 1 0.5 - 7 12524 1 0.5 - 8 13120 1 0.1 -} -Group ԵŹ -{ - Mob 2064 - Type drop - 1 50722 1 2 -} -Group ԵŹ -{ - Level_limit 60 - Mob 2064 - Type limit - 1 3094 1 0.5 - 2 3104 1 0.5 - 3 3114 1 0.5 - 4 3124 1 0.5 - 5 12346 1 0.5 - 6 12365 1 0.5 - 7 12384 1 0.5 - 8 13120 1 0.1 -} -Group Ź -{ - Mob 2065 - Type drop - 1 50723 1 2 - 2 50009 1 0.2 -} -Group Ź -{ - Level_limit 60 - Mob 2065 - Type limit - 1 5064 1 0.5 - 2 5074 1 0.5 - 3 5084 1 0.5 - 4 12206 1 0.5 - 5 12225 1 0.5 - 6 12244 1 0.5 - 7 13100 1 0.1 -} -Group հŹ -{ - Kill_drop 1 - Mob 2091 - Type kill - 1 50073 1 100 0 -} -Group հŹ -{ - Mob 2091 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90011 1 60 -} -Group 񸶱; -{ - Kill_drop 400 - Mob 2102 - Type kill - 1 12222 1 6 10 - 2 12362 1 6 10 - 3 12502 1 6 10 - 4 12642 1 6 10 - 5 12223 1 3 10 - 6 12363 1 3 10 - 7 12503 1 3 10 - 8 12643 1 3 10 -} -Group 񸶱; -{ - Mob 2102 - Type drop - 1 50722 1 2 -} -Group -{ - Kill_drop 1000 - Mob 2103 - Type kill - 1 14160 1 18 10 - 2 14161 1 9 10 - 3 14180 1 12 10 - 4 14181 1 6 10 - 5 14200 1 6 10 - 6 14201 1 3 10 -} -Group -{ - Mob 2103 - Type drop - 1 50721 1 4 -} -Group ΰ -{ - Kill_drop 800 - Mob 2104 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 - 3 7160 1 40 10 - 4 5110 1 20 10 -} -Group ΰ -{ - Mob 2104 - Type drop - 1 50724 1 1 -} -Group ü -{ - Kill_drop 500 - Mob 2105 - Type kill - 1 2092 1 65 10 - 2 2093 1 35 10 - 3 7160 1 20 10 - 4 5110 1 40 10 -} -Group ü -{ - Mob 2105 - Type drop - 1 50013 1 1 - 2 8002 100 40 - 3 30081 1 1 - 4 50009 1 0.2 - 5 50722 1 2 -} -Group ιݻ˺ -{ - Kill_drop 700 - Mob 2106 - Type kill - 1 1062 1 65 10 - 2 1063 1 35 10 -} -Group ιݻ˺ -{ - Mob 2106 - Type drop - 1 50726 1 1 - 2 50009 1 0.2 -} -Group ιݻú -{ - Kill_drop 400 - Mob 2107 - Type kill - 1 13202 1 65 30 - 2 13203 1 35 30 -} -Group ιݻú -{ - Mob 2107 - Type drop - 1 50006 1 0.7 - 2 8003 50 40 - 3 30082 1 1 - 4 50725 1 2 -} -Group 縷ǹ -{ - Kill_drop 100 - Mob 2108 - Type kill - 1 17162 1 18 10 - 2 17163 1 9 10 - 3 17182 1 12 10 - 4 17183 1 6 10 - 5 17202 1 6 10 - 6 17203 1 3 10 -} -Group 縷ǹ -{ - Mob 2108 - Type drop - 1 92 1 0.2 - 2 2082 1 0.2 - 3 11841 1 0.2 - 4 15122 1 0.2 - 5 27002 30 50 - 6 27003 20 25 - 7 27005 20 50 - 8 27006 10 25 - 9 70008 1 0.1 - 10 50728 1 0.8 -} -Group Ź -{ - Level_limit 60 - Mob 2131 - Type limit - 1 16004 1 0.5 - 2 16024 1 0.5 - 3 16044 1 0.5 - 4 16064 1 0.5 - 5 13006 1 0.5 - 6 13194 1 0.5 - 7 13205 1 0.5 - 8 13100 1 0.1 - 9 50009 1 0.1 -} -Group ΰ -{ - Mob 2131 - Type drop - 1 50727 1 2 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2132 - Type limit - 1 16084 1 0.5 - 2 16104 1 0.5 - 3 16124 1 0.5 - 4 16144 1 0.5 - 5 17164 1 0.5 - 6 17184 1 0.5 - 7 17204 1 0.5 - 8 13080 1 0.1 - 9 50009 1 0.1 -} -Group ü -{ - Mob 2132 - Type drop - 1 50726 1 4 -} -Group ιݻ˺ -{ - Mob 2133 - Type drop - 1 50725 1 4 -} -Group ͵Ź -{ - Level_limit 60 - Mob 2133 - Type limit - 1 15164 1 0.5 - 2 15184 1 0.5 - 3 15204 1 0.5 - 4 15224 1 0.5 - 5 17104 1 0.5 - 6 17124 1 0.5 - 7 17144 1 0.5 - 8 13080 1 0.1 - 9 50009 1 0.1 -} -Group ιݻú -{ - Mob 2134 - Type drop - 1 50727 1 2 -} -Group ԵŹ -{ - Level_limit 60 - Mob 2134 - Type limit - 1 15084 1 0.5 - 2 15104 1 0.5 - 3 15124 1 0.5 - 4 15144 1 0.5 - 5 16164 1 0.5 - 6 16184 1 0.5 - 7 16204 1 0.5 - 8 13060 1 0.1 - 9 50009 1 0.1 -} -Group Ź -{ - Level_limit 60 - Mob 2135 - Type limit - 1 15004 1 0.5 - 2 15024 1 0.5 - 3 15044 1 0.5 - 4 15064 1 0.5 - 5 17044 1 0.5 - 6 17064 1 0.5 - 7 13060 1 0.1 - 8 50009 1 0.1 -} -Group 縷ǹ -{ - Mob 2135 - Type drop - 1 50725 1 4 -} -Group Ŵ縷ź -{ - Kill_drop 1 - Mob 2191 - Type kill - 1 50076 1 100 0 -} -Group Ŵ縷ź -{ - Mob 2191 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 80 -} -Group -{ - Kill_drop 0 - Mob 2201 - Type kill -} -Group -{ - Mob 2201 - Type drop - 1 90010 1 0.09 - 2 50722 1 1 -} -Group ȭ -{ - Kill_drop 1000 - Mob 2202 - Type kill - 1 50009 1 10 0 -} -Group ȭ -{ - Mob 2202 - Type drop - 1 90010 1 0.1 - 2 50727 1 2 -} -Group -{ - Kill_drop 1000 - Mob 2203 - Type kill - 1 132 1 65 20 - 2 133 1 35 20 -} -Group -{ - Mob 2203 - Type drop - 1 90010 1 0.2 - 2 50728 1 1 -} -Group -{ - Kill_drop 1000 - Mob 2204 - Type kill - 1 1092 1 65 20 - 2 1093 1 35 20 -} -Group -{ - Mob 2204 - Type drop - 1 90010 1 0.3 - 2 12280 1 0.041 - 3 12400 1 0.041 - 4 12540 1 0.041 - 5 12680 1 0.041 -} -Group ȭ -{ - Kill_drop 500 - Mob 2205 - Type kill - 1 3123 1 65 20 - 2 3124 1 35 20 -} -Group ȭ -{ - Mob 2205 - Type drop - 1 90010 1 0.4 - 2 50723 1 4 - 3 12280 1 0.041 - 4 12400 1 0.041 - 5 12540 1 0.041 - 6 12680 1 0.041 -} -Group ȭ -{ - Kill_drop 1 - Mob 2206 - Type kill - 1 50079 1 100 0 -} -Group ȭ -{ - Mob 2206 - Type drop - 1 27002 200 400 - 2 27003 100 400 - 3 27005 200 400 - 4 27006 100 400 - 5 90012 1 200 -} -Group ͸ -{ - Kill_drop 0 - Mob 2301 - Type kill -} -Group ͸ -{ - Mob 2301 - Type drop - 1 50727 1 2 -} -Group صձ͸ -{ - Kill_drop 2000 - Mob 2302 - Type kill - 1 50008 1 1 0 -} -Group صձ͸ -{ - Mob 2302 - Type drop - 1 50726 1 1 - 2 30192 1 0.5 -} -Group -{ - Kill_drop 1000 - Mob 2303 - Type kill - 1 11270 1 30 30 - 2 11470 1 30 30 - 3 11670 1 30 30 - 4 11870 1 30 30 - 5 11271 1 20 20 - 6 11471 1 20 20 - 7 11671 1 20 20 - 8 11871 1 20 20 - 9 11272 1 10 10 - 10 11472 1 10 10 - 11 11672 1 10 10 - 12 11872 1 10 10 - 13 50008 1 20 0 -} -Group -{ - Mob 2303 - Type drop - 1 50725 1 2 - 2 30192 1 0.05 -} -Group Refining_2304 -{ - Mob 2304 - Type drop - 1 30192 1 0.05 -} -Group ȭ͸ -{ - Kill_drop 15000 - Mob 2304 - Type kill - 1 11280 1 1 10 - 2 11880 1 1 10 - 3 11480 1 1 10 - 4 11680 1 1 10 -} -Group ͸ -{ - Kill_drop 10000 - Mob 2305 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ͸ -{ - Kill_drop 800 - Mob 2311 - Type kill - 1 50008 1 1 0 -} -Group ͸ -{ - Mob 2311 - Type drop - 1 50728 1 0.8 - 2 30197 1 0.03 -} -Group ص͸ -{ - Kill_drop 800 - Mob 2312 - Type kill - 1 50008 1 1 0 -} -Group ص͸ -{ - Mob 2312 - Type drop - 1 50724 1 1 - 2 30197 1 0.03 -} -Group -{ - Kill_drop 1000 - Mob 2313 - Type kill - 1 11272 1 20 30 - 2 11472 1 20 30 - 3 11672 1 20 30 - 4 11872 1 20 30 - 5 11273 1 10 30 - 6 11473 1 10 30 - 7 11673 1 10 30 - 8 11873 1 10 30 - 9 50008 1 20 0 -} -Group -{ - Mob 2313 - Type drop - 1 50726 1 1 - 2 30197 1 0.03 -} -Group -{ - Level_limit 86 - Mob 2313 - Type limit - 1 17204 1 0.03 - 2 17205 1 0.03 - 3 17206 1 0.03 - 4 3140 1 0.03 - 5 1110 1 0.03 - 6 2130 1 0.03 - 7 7140 1 0.03 - 8 5100 1 0.03 - 9 160 1 0.03 - 10 240 1 0.03 -} -Group ȭ͸ -{ - Kill_drop 6000 - Mob 2314 - Type kill - 1 11280 1 1 10 - 2 11880 1 1 10 - 3 11480 1 1 10 - 4 11680 1 1 10 -} -Group ȭ͸ -{ - Mob 2314 - Type drop - 1 50727 1 0.8 - 2 30197 1 0.03 -} -Group ȭ͸ -{ - Level_limit 86 - Mob 2314 - Type limit - 1 16204 1 0.03 - 2 16205 1 0.03 - 3 16206 1 0.03 - 4 3140 1 0.06 - 5 1110 1 0.06 - 6 2130 1 0.06 - 7 7140 1 0.06 - 8 5100 1 0.06 - 9 160 1 0.06 - 10 240 1 0.06 -} -Group ͸ -{ - Kill_drop 3000 - Mob 2315 - Type kill - 1 3140 1 1 10 - 2 1110 1 1 10 - 3 2130 1 1 10 - 4 7140 1 1 10 - 5 5100 1 1 10 - 6 160 1 1 10 - 7 240 1 1 10 - 8 150 1 1 10 - 9 5090 1 1 10 - 10 140 1 1 10 - 11 3130 1 1 10 - 12 1100 1 1 10 - 13 7130 1 1 10 - 14 2140 1 1 10 -} -Group ͸ -{ - Mob 2315 - Type drop - 1 50728 1 1 -} -Group ͸ -{ - Level_limit 86 - Mob 2315 - Type limit - 1 11291 1 0.03 - 2 11491 1 0.03 - 3 11891 1 0.03 - 4 11691 1 0.03 - 5 27987 1 0.09 - 6 14204 1 0.09 - 7 14205 1 0.09 - 8 14206 1 0.09 - 9 3140 1 0.15 - 10 1110 1 0.15 - 11 2130 1 0.15 - 12 7140 1 0.15 - 13 5100 1 0.15 - 14 160 1 0.15 - 15 240 1 0.15 -} -Group Setaou-K?pfer87 -{ - Level_limit 75 - Mob 2401 - Type limit - 1 250 1 0.07 - 2 12525 1 0.4 - 3 50060 1 0.04 - 4 27987 1 0.05 - 5 50721 5 0.63 - 6 50725 5 0.63 - 7 70050 1 0.2 - 8 166 1 0.08 - 9 164 1 0.17 - 10 15185 1 0.34 - 11 254 1 0.09 - 12 255 1 0.05 - 13 70031 1 0.004 - 14 11485 1 0.1 - 15 11285 1 0.1 - 16 190 1 0.04 - 17 180 1 0.04 - 18 50124 1 0.02 - 19 50121 1 0.06 -} -Group Setaou-J?er89 -{ - Level_limit 75 - Mob 2402 - Type limit - 1 1120 1 0.07 - 2 2180 1 0.07 - 3 8005 30 0.6 - 4 8005 60 0.42 - 5 12385 1 0.4 - 6 14184 1 0.25 - 7 27987 1 0.05 - 8 50722 5 0.63 - 9 50726 5 0.63 - 10 1106 1 0.08 - 11 2136 1 0.08 - 12 2184 1 0.09 - 13 1124 1 0.09 - 14 70031 1 0.007 - 15 11885 1 0.15 - 16 11685 1 0.15 - 17 2170 1 0.04 - 18 1130 1 0.04 - 19 50124 1 0.02 - 20 50120 1 0.06 -} -Group Setaou-Seherin89 -{ - Level_limit 75 - Mob 2403 - Type limit - 1 7150 1 0.17 - 2 12665 1 0.8 - 3 14164 1 0.34 - 4 17163 1 0.85 - 5 27987 1 0.1 - 6 50723 5 1.25 - 7 50727 5 1.25 - 8 5096 1 0.2 - 9 7136 1 0.2 - 10 11885 1 0.8 - 11 11685 1 0.4 - 12 15224 1 0.34 - 13 7154 1 0.15 - 14 7155 1 0.15 - 15 70031 1 0.007 - 16 5120 1 0.04 - 17 50124 1 0.02 - 18 50122 1 0.06 -} -Group Refine_2404 -{ - Mob 2404 - Type drop - 1 30199 1 0.13 -} -Group Setaou-Anf?rer90 -{ - Level_limit 75 - Mob 2404 - Type limit - 1 170 1 0.1 - 2 174 1 0.09 - 3 50060 1 0.08 - 4 50724 5 1.25 - 5 50728 5 1.25 - 6 70048 1 0.23 - 7 70051 1 0.39 - 8 3146 1 0.16 - 9 3136 1 0.16 - 10 11285 1 0.60 - 11 11485 1 0.20 - 12 15085 1 0.85 - 13 12245 1 0.8 - 14 3152 1 0.14 - 15 70031 1 0.007 - 16 181 1 0.05 - 17 191 1 0.05 - 18 1131 1 0.05 - 19 5121 1 0.05 - 20 2171 1 0.05 - 21 50120 1 0.02 - 22 50121 1 0.02 - 23 50122 1 0.02 -} -Group Setaou-Soldat91 -{ - Level_limit 75 - Mob 2411 - Type limit - 1 251 1 0.09 - 2 12526 1 0.1 - 3 14204 1 0.22 - 4 50060 1 0.08 - 5 27987 1 0.1 - 6 50721 5 0.65 - 7 50725 5 0.65 - 8 156 1 0.16 - 9 246 1 0.16 - 10 2144 1 0.16 - 11 70031 1 0.01 - 12 71056 1 0.005 - 13 182 1 0.1 - 14 192 1 0.1 - 15 50121 1 0.06 - 16 30196 1 0.02 -} -Group Setaou-J?er93 -{ - Level_limit 75 - Mob 2412 - Type limit - 1 1121 1 0.09 - 2 2181 1 0.09 - 3 8005 35 1.6 - 4 8005 55 0.85 - 5 12386 1 0.17 - 6 14186 1 0.28 - 7 27987 1 0.1 - 8 50009 1 0.34 - 9 50722 5 0.75 - 10 50726 5 0.75 - 11 144 1 0.16 - 12 1116 1 0.16 - 13 2146 1 0.16 - 14 70031 1 0.01 - 15 71056 1 0.005 - 16 2170 1 0.1 - 17 1130 1 0.1 - 18 50120 1 0.06 - 19 30196 1 0.03 -} -Group Refine_2413 -{ - Mob 2413 - Type drop - 1 30199 1 0.13 - 2 30196 1 0.07 -} -Group Setaou-Seherin95 -{ - Level_limit 75 - Mob 2413 - Type limit - 1 7151 1 0.1 - 2 12666 1 0.17 - 3 14166 1 0.26 - 4 15164 1 0.38 - 5 17164 1 0.41 - 6 17183 1 0.68 - 7 27987 1 0.1 - 8 50009 1 0.34 - 9 50723 5 1.25 - 10 50727 5 1.25 - 11 154 1 0.16 - 12 5106 1 0.16 - 13 7146 1 0.26 - 14 7144 1 0.26 - 15 70031 1 0.01 - 16 71056 1 0.005 - 17 5122 1 0.1 - 18 50122 1 0.06 -} -Group Refine_2414 -{ - Mob 2414 - Type drop - 1 30199 1 0.2 - 2 30196 1 0.07 -} -Group Setaou_Commander -{ - Level_limit 75 - Mob 2414 - Type limit - 1 182 1 0.2 - 2 192 1 0.2 - 3 1132 1 0.2 - 4 5122 1 0.2 - 5 2172 1 0.2 - 6 50120 1 0.02 - 7 50121 1 0.02 - 8 50122 1 0.02 -} -Group Setaou-General1 -{ - Level_limit 85 - Mob 2491 - Type drop - 1 30179 1 400 - 2 30196 1 1 -} -Group Setaou-General2 -{ - Level_limit 85 - Mob 2492 - Type drop - 1 30179 1 400 - 2 30179 2 100 - 3 30190 1 100 - 4 13063 1 100 - 5 14206 1 50 - 6 27987 1 100 - 7 70051 1 50 - 8 13083 1 100 - 9 70050 1 50 - 10 13103 1 100 - 11 15165 1 30 - 12 16203 1 50 - 13 17184 1 50 - 14 17203 1 30 - 15 13123 1 50 - 16 14143 1 30 - 17 15204 1 30 - 18 16184 1 50 -} -Group Water_Dragon -{ - Mob 2493 - Type drop - 1 30190 1 400 - 2 30190 2 50 - 3 12284 1 20 - 4 12404 1 20 - 5 12544 1 20 - 6 12684 1 20 - 7 15374 1 20 - 8 15394 1 20 - 9 15414 1 20 - 10 15434 1 20 - 11 27987 1 75 - 12 50124 1 20 - 13 50124 1 20 - 14 50124 1 20 - 15 50121 1 20 - 16 50121 1 40 - 17 50121 1 40 - 18 71123 1 5 - 19 71129 1 5 - 20 71083 1 1 - 21 25040 1 0.5 - 22 71085 1 0.5 - 23 71084 1 0.5 -} -Group Water_Dragon_HL -{ - Level_limit 90 - Mob 2493 - Type limit - 1 30190 4 5 - 2 27992 1 20 - 3 27993 1 10 - 4 27994 1 5 - 5 70024 1 0.5 - 6 50124 1 25 - 7 50124 1 25 - 8 50121 1 50 - 9 50121 1 50 - 10 50513 1 15 - 11 50513 1 15 - 12 71085 3 0.2 - 13 71084 3 0.2 -} -Group Setaou-General3 -{ - Level_limit 85 - Mob 2494 - Type drop - 1 30179 1 400 100 -} -Group Setaou-General4 -{ - Level_limit 85 - Mob 2495 - Type drop - 1 30179 1 400 - 2 30179 3 100 - 3 30190 1 100 - 4 11691 1 30 - 5 11491 1 30 - 6 11891 1 30 - 7 11291 1 30 - 8 13064 1 100 - 9 13084 1 30 - 10 13104 1 100 - 11 16204 1 50 - 12 17204 1 30 - 13 13124 1 100 - 14 15205 1 30 - 15 70050 1 50 - 16 70051 1 50 - 17 50009 1 100 - 18 27987 1 100 -} -Group -{ - Kill_drop 1 - Mob 5002 - Type kill - 1 134 1 46 30 - 2 135 1 20 30 - 3 1094 1 46 30 - 4 1095 1 20 30 - 5 3124 1 46 30 - 6 3125 1 20 30 - 7 2124 1 46 30 - 8 2125 1 20 30 - 9 5084 1 46 30 - 10 5085 1 20 30 - 11 7124 1 46 30 - 12 7125 1 20 30 - 13 11263 1 46 30 - 14 11264 1 20 30 - 15 11463 1 46 30 - 16 11464 1 20 30 - 17 11663 1 46 30 - 18 11664 1 20 30 - 19 11863 1 46 30 - 20 11864 1 20 30 - 21 13203 1 46 30 - 22 13204 1 20 30 - 23 70038 1 40 0 - 24 70048 1 40 0 - 25 70050 1 40 0 - 26 70051 1 40 0 - 27 70012 1 40 0 - 28 70037 1 40 0 - 29 70014 1 40 0 - 30 25040 1 40 0 -} -Group -{ - Mob 5002 - Type drop - 1 27002 100 400 - 2 27003 50 400 - 3 27005 100 400 - 4 27006 50 400 -} -Group ̺Ʈ_ٳ -{ - Kill_drop 1 - Mob 5004 - Type kill - 1 30202 1 1 0 -} -Group ϼ_ -{ - Kill_drop 550 - Mob 5101 - Type kill - 1 50050 1 20 0 -} -Group ϼ -{ - Mob 5101 - Type drop - 1 50722 1 2 -} -Group ϼ_ -{ - Kill_drop 250 - Mob 5102 - Type kill - 1 50050 1 20 0 -} -Group ϼ_ -{ - Kill_drop 250 - Mob 5103 - Type kill - 1 5042 1 65 10 - 2 82 1 65 10 - 3 83 1 35 10 - 4 5032 1 35 10 - 5 50050 1 100 0 -} -Group ϼ_ -{ - Kill_drop 100 - Mob 5104 - Type kill - 1 7073 1 20 10 - 2 7053 1 20 10 - 3 4023 1 20 10 - 4 1043 1 20 10 - 5 50050 1 20 0 -} -Group ϼ -{ - Mob 5104 - Type drop - 1 50721 1 1 -} -Group ߼_ -{ - Kill_drop 550 - Mob 5111 - Type kill - 1 50050 1 20 0 -} -Group ߼ -{ - Mob 5111 - Type drop - 1 50723 1 2 -} -Group ߼_ -{ - Kill_drop 300 - Mob 5112 - Type kill - 1 50050 1 20 0 -} -Group ߼_ -{ - Kill_drop 250 - Mob 5113 - Type kill - 1 7083 1 20 10 - 2 5053 1 10 10 - 3 50050 1 30 0 -} -Group ߼_ -{ - Kill_drop 100 - Mob 5114 - Type kill - 1 93 1 20 20 - 2 1053 1 20 20 - 3 50050 1 40 0 -} -Group ߼ -{ - Mob 5114 - Type drop - 1 50722 1 1 -} -Group ߼_ -{ - Kill_drop 100 - Mob 5115 - Type kill - 1 3083 1 20 20 - 2 50050 1 20 0 -} -Group ߼ -{ - Mob 5115 - Type drop - 1 50725 1 1 -} -Group ߼ -{ - Mob 5116 - Type drop - 1 50726 1 1 -} -Group 󼱵_ -{ - Kill_drop 550 - Mob 5121 - Type kill - 1 50050 1 20 0 -} -Group 󼱵 -{ - Mob 5121 - Type drop - 1 50726 1 1 -} -Group 󼱵_ -{ - Kill_drop 300 - Mob 5122 - Type kill - 1 50050 1 20 0 -} -Group 󼱵 -{ - Mob 5122 - Type drop - 1 50723 1 1 -} -Group 󼱵_ -{ - Kill_drop 250 - Mob 5123 - Type kill - 1 7103 1 20 10 - 2 50050 1 20 0 -} -Group 󼱵_ -{ - Kill_drop 100 - Mob 5124 - Type kill - 1 5073 1 20 10 - 2 50050 1 20 0 -} -Group 󼱵_ -{ - Kill_drop 80 - Mob 5125 - Type kill - 1 113 1 65 10 - 2 114 1 35 10 - 3 50050 1 100 0 -} -Group 󼱵 -{ - Mob 5125 - Type drop - 1 50724 1 1 -} -Group 󼱵_ݿ -{ - Kill_drop 30 - Mob 5126 - Type kill - 1 3113 1 65 10 - 2 3114 1 35 10 - 3 50050 1 100 0 -} -Group 󼱵ݿ -{ - Mob 5126 - Type drop - 1 50721 1 2 -} -Group 󼱵 -{ - Mob 5127 - Type drop - 1 50722 1 2 -} -Group ̻뼺 -{ - Kill_drop 10 - Mob 5161 - Type kill - 1 74 1 10 30 - 2 1034 1 10 30 - 3 2064 1 10 30 - 4 3064 1 10 30 - 5 5044 1 10 30 - 6 7064 1 10 30 -} -Group ̻뼺 -{ - Mob 5161 - Type drop - 1 50057 1 200 -} -Group õ뼺 -{ - Kill_drop 10 - Mob 5162 - Type kill - 1 104 1 10 30 - 2 1064 1 10 30 - 3 2094 1 10 30 - 4 3094 1 10 30 - 5 5064 1 10 30 - 6 7094 1 10 30 - 7 11253 1 10 30 - 8 11453 1 10 30 - 9 11653 1 10 30 - 10 11853 1 10 30 -} -Group õ뼺 -{ - Mob 5162 - Type drop - 1 50058 1 200 -} -Group õ뼺 -{ - Kill_drop 10 - Mob 5163 - Type kill - 1 134 1 10 30 - 2 1094 1 10 30 - 3 2124 1 10 30 - 4 5084 1 10 30 - 5 3124 1 10 30 - 6 7124 1 10 30 - 7 11272 1 10 30 - 8 11472 1 10 30 - 9 11672 1 10 30 - 10 11872 1 10 30 -} -Group õ뼺 -{ - Mob 5163 - Type drop - 1 50059 1 200 -} -Group 񸶼 -{ - Mob 8001 - Type drop - 1 20 1 20 - 2 4000 1 20 - 3 3010 1 20 - 4 2010 1 20 - 5 7010 1 20 - 6 11200 1 20 - 7 11400 1 20 - 8 11600 1 20 - 9 22 1 15 - 10 4002 1 15 - 11 3012 1 15 - 12 2012 1 15 - 13 7012 1 15 - 14 11202 1 15 - 15 11402 1 15 - 16 11602 1 15 - 17 11802 1 15 - 18 27002 50 100 - 19 27003 30 50 - 20 27005 30 50 - 21 27006 20 50 - 22 50300 1 100 -} -Group -{ - Mob 8002 - Type drop - 1 5000 1 20 - 2 11210 1 20 - 3 11410 1 20 - 4 11610 1 20 - 5 11810 1 20 - 6 30 1 20 - 7 1010 1 20 - 8 3020 1 20 - 9 2020 1 20 - 10 7020 1 20 - 11 5001 1 15 - 12 11211 1 15 - 13 11411 1 15 - 14 11611 1 15 - 15 11811 1 15 - 16 31 1 15 - 17 1011 1 15 - 18 3021 1 15 - 19 2021 1 15 - 20 7021 1 15 - 21 5002 1 10 - 22 11212 1 10 - 23 11412 1 10 - 24 11612 1 10 - 25 11812 1 10 - 26 32 1 5 - 27 1012 1 5 - 28 3022 1 5 - 29 2022 1 5 - 30 7022 1 5 - 31 27002 50 100 - 32 27003 30 50 - 33 27005 30 50 - 34 27006 20 50 - 35 50300 1 150 -} -Group -{ - Mob 8003 - Type drop - 1 40 1 20 - 2 4010 1 20 - 3 3030 1 20 - 4 2030 1 20 - 5 7030 1 20 - 6 5011 1 20 - 7 11210 1 20 - 8 11410 1 20 - 9 11610 1 20 - 10 11810 1 20 - 11 41 1 10 - 12 4011 1 10 - 13 3031 1 10 - 14 2031 1 10 - 15 7031 1 10 - 16 5010 1 10 - 17 11211 1 15 - 18 11411 1 15 - 19 11611 1 15 - 20 11811 1 15 - 21 42 1 5 - 22 4012 1 5 - 23 3032 1 5 - 24 2032 1 5 - 25 7032 1 5 - 26 5011 1 5 - 27 11212 1 10 - 28 11412 1 10 - 29 11612 1 10 - 30 11812 1 10 - 31 27002 50 100 - 32 27003 30 50 - 33 27005 30 50 - 34 27006 20 50 - 35 50300 1 150 -} -Group 帶 -{ - Mob 8004 - Type drop - 1 50 1 20 - 2 1020 1 20 - 3 3040 1 20 - 4 2040 1 20 - 5 5021 1 20 - 6 7041 1 20 - 7 51 1 15 - 8 1021 1 15 - 9 3041 1 15 - 10 2041 1 15 - 11 5020 1 15 - 12 7041 1 15 - 13 52 1 10 - 14 1022 1 10 - 15 3042 1 10 - 16 2042 1 10 - 17 5021 1 10 - 18 7041 1 10 - 19 11220 1 15 - 20 11420 1 15 - 21 11620 1 15 - 22 11820 1 15 - 23 11221 1 10 - 24 11421 1 10 - 25 11621 1 10 - 26 11821 1 10 - 27 27002 50 100 - 28 27003 30 50 - 29 27005 30 50 - 30 27006 20 50 - 31 50300 1 150 - 32 70014 1 1 - 33 70037 1 1 -} -Group 渶 -{ - Mob 8005 - Type drop - 1 60 1 20 - 2 4020 1 20 - 3 3050 1 20 - 4 2050 1 20 - 5 7050 1 20 - 6 61 1 15 - 7 4021 1 15 - 8 3051 1 15 - 9 2051 1 15 - 10 7051 1 15 - 11 62 1 10 - 12 4022 1 10 - 13 3052 1 10 - 14 2052 1 10 - 15 7052 1 10 - 16 11220 1 20 - 17 11420 1 20 - 18 11620 1 20 - 19 11820 1 20 - 20 11221 1 15 - 21 11421 1 15 - 22 11621 1 15 - 23 11821 1 15 - 24 11222 1 10 - 25 11422 1 10 - 26 11622 1 10 - 27 11822 1 10 - 28 27002 50 150 - 29 27003 30 100 - 30 27005 30 150 - 31 27006 20 100 - 32 50300 1 150 - 33 70014 1 1 - 34 70037 1 1 -} -Group ϸ -{ - Mob 8006 - Type drop - 1 70 1 20 - 2 1030 1 20 - 3 3060 1 20 - 4 2060 1 20 - 5 7060 1 20 - 6 5030 1 20 - 7 71 1 15 - 8 1031 1 15 - 9 3061 1 15 - 10 2061 1 15 - 11 7061 1 15 - 12 5030 1 20 - 13 11230 1 20 - 14 11430 1 20 - 15 11630 1 20 - 16 11830 1 20 - 17 72 1 10 - 18 1032 1 10 - 19 3062 1 10 - 20 2062 1 10 - 21 7062 1 10 - 22 5031 1 10 - 23 11231 1 10 - 24 11431 1 10 - 25 11631 1 10 - 26 11831 1 10 - 27 27002 50 150 - 28 27003 30 100 - 29 27005 30 150 - 30 27006 20 100 - 31 50300 1 200 - 32 70014 1 1 - 33 70037 1 1 -} -Group -{ - Mob 8007 - Type drop - 1 11230 1 20 - 2 11430 1 20 - 3 11630 1 20 - 4 11830 1 20 - 5 80 1 20 - 6 1040 1 20 - 7 3070 1 20 - 8 2070 1 20 - 9 7070 1 20 - 10 5040 1 20 - 11 11231 1 15 - 12 11431 1 15 - 13 11631 1 15 - 14 11831 1 15 - 15 81 1 15 - 16 1041 1 15 - 17 3071 1 15 - 18 2071 1 15 - 19 7071 1 15 - 20 5041 1 15 - 21 11232 1 10 - 22 11432 1 10 - 23 11632 1 10 - 24 11832 1 10 - 25 27002 50 150 - 26 27003 30 100 - 27 27005 30 150 - 28 27006 20 100 - 29 50300 1 200 - 30 70014 1 1 - 31 70037 1 1 -} -Group ȥ -{ - Mob 8008 - Type drop - 1 11240 1 20 - 2 11440 1 20 - 3 11640 1 20 - 4 11840 1 20 - 5 90 1 20 - 6 1050 1 20 - 7 3080 1 20 - 8 2080 1 20 - 9 7080 1 20 - 10 5050 1 20 - 11 11241 1 15 - 12 11441 1 15 - 13 11641 1 15 - 14 11841 1 15 - 15 91 1 15 - 16 1051 1 15 - 17 3081 1 15 - 18 2081 1 15 - 19 7081 1 15 - 20 5051 1 15 - 21 11242 1 10 - 22 11442 1 10 - 23 11642 1 10 - 24 11842 1 10 - 25 27002 50 150 - 26 27003 30 100 - 27 27005 30 150 - 28 27006 20 100 - 29 50300 1 200 - 30 70014 1 1 - 31 70037 1 1 -} -Group -{ - Mob 8009 - Type drop - 1 5050 1 20 - 2 100 1 20 - 3 1060 1 20 - 4 2090 1 20 - 5 7090 1 20 - 6 5051 1 20 - 7 11250 1 15 - 8 11450 1 15 - 9 11650 1 15 - 10 11850 1 15 - 11 101 1 15 - 12 1061 1 15 - 13 2091 1 15 - 14 7091 1 15 - 15 5052 1 15 - 16 11251 1 15 - 17 11451 1 15 - 18 11651 1 15 - 19 11851 1 15 - 20 102 1 10 - 21 1062 1 10 - 22 2092 1 10 - 23 7092 1 10 - 24 11252 1 10 - 25 11452 1 10 - 26 11652 1 10 - 27 11852 1 10 - 28 27002 50 150 - 29 27003 30 100 - 30 27005 30 150 - 31 27006 20 100 - 32 50300 1 200 - 33 70014 1 1 - 34 70037 1 1 -} -Group -{ - Mob 8010 - Type drop - 1 11250 1 20 - 2 11450 1 20 - 3 11650 1 20 - 4 11850 1 20 - 5 110 1 20 - 6 1070 1 20 - 7 2100 1 20 - 8 7100 1 20 - 9 5060 1 20 - 10 11251 1 15 - 11 11451 1 15 - 12 11651 1 15 - 13 11851 1 15 - 14 111 1 15 - 15 1071 1 15 - 16 2101 1 15 - 17 7101 1 15 - 18 5061 1 15 - 19 11252 1 10 - 20 11452 1 10 - 21 11652 1 10 - 22 11852 1 10 - 23 27002 50 150 - 24 27003 30 100 - 25 27005 30 150 - 26 27006 20 100 - 27 50300 1 250 - 28 70014 1 1 - 29 70037 1 1 -} -Group Ǹ -{ - Mob 8011 - Type drop - 1 120 1 30 - 2 1080 1 30 - 3 2110 1 30 - 4 7110 1 30 - 5 5070 1 30 - 6 121 1 20 - 7 1081 1 20 - 8 2111 1 20 - 9 7111 1 20 - 10 5071 1 20 - 11 122 1 15 - 12 1082 1 15 - 13 2112 1 15 - 14 7112 1 15 - 15 5072 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 250 - 21 70014 1 1 - 22 70037 1 1 -} -Group  -{ - Mob 8012 - Type drop - 1 130 1 30 - 2 1090 1 30 - 3 2120 1 30 - 4 7120 1 30 - 5 5080 1 30 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 1 - 22 70037 1 1 -} -Group 縶 -{ - Mob 8013 - Type drop - 1 120 1 25 - 2 1080 1 25 - 3 2110 1 25 - 4 7110 1 25 - 5 5070 1 25 - 6 121 1 20 - 7 1081 1 20 - 8 2111 1 20 - 9 7111 1 20 - 10 5071 1 20 - 11 122 1 15 - 12 1082 1 15 - 13 2112 1 15 - 14 7112 1 15 - 15 5072 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 1 - 22 70037 1 1 -} -Group 츶 -{ - Mob 8014 - Type drop - 1 130 1 25 - 2 1090 1 25 - 3 2120 1 25 - 4 7120 1 25 - 5 5080 1 25 - 6 131 1 20 - 7 1091 1 20 - 8 2121 1 20 - 9 7121 1 20 - 10 5081 1 20 - 11 132 1 15 - 12 1092 1 15 - 13 2122 1 15 - 14 7122 1 15 - 15 5082 1 15 - 16 27002 50 150 - 17 27003 30 100 - 18 27005 30 150 - 19 27006 20 100 - 20 50300 1 300 - 21 70014 1 50 - 22 70037 1 50 -} -Group -{ - Mob 8015 - Type drop - 1 110 1 10 - 2 1070 1 10 - 3 2100 1 10 - 4 7100 1 10 - 5 5060 1 10 - 6 111 1 5 - 7 1071 1 5 - 8 2101 1 5 - 9 7101 1 5 - 10 5061 1 1 - 11 27002 50 150 - 12 27003 30 100 - 13 27005 30 150 - 14 27006 20 100 - 15 50300 1 400 - 16 70014 1 1 - 17 70037 1 1 -} -Group Ǹ -{ - Mob 8016 - Type drop - 1 120 1 20 - 2 1080 1 20 - 3 2110 1 20 - 4 7110 1 20 - 5 5070 1 20 - 6 121 1 10 - 7 1081 1 10 - 8 2111 1 10 - 9 7111 1 10 - 10 5071 1 10 - 11 122 1 5 - 12 1082 1 5 - 13 2112 1 5 - 14 7112 1 5 - 15 5072 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group  -{ - Mob 8017 - Type drop - 1 130 1 20 - 2 1090 1 20 - 3 2120 1 20 - 4 7120 1 20 - 5 5080 1 20 - 6 131 1 10 - 7 1091 1 10 - 8 2121 1 10 - 9 7121 1 10 - 10 5081 1 10 - 11 132 1 5 - 12 1092 1 5 - 13 2122 1 5 - 14 7122 1 5 - 15 5082 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group 縶 -{ - Mob 8018 - Type drop - 1 120 1 15 - 2 1080 1 15 - 3 2110 1 15 - 4 7110 1 15 - 5 5070 1 15 - 6 121 1 10 - 7 1081 1 10 - 8 2111 1 10 - 9 7111 1 10 - 10 5071 1 10 - 11 122 1 5 - 12 1082 1 5 - 13 2112 1 5 - 14 7112 1 5 - 15 5072 1 5 - 16 27002 50 100 - 17 27003 30 200 - 18 27005 30 100 - 19 27006 20 150 - 20 50300 1 400 - 21 70014 1 1 - 22 70037 1 1 -} -Group 츶 -{ - Mob 8019 - Type drop - 1 130 1 15 - 2 1090 1 15 - 3 2120 1 15 - 4 7120 1 15 - 5 5080 1 15 - 6 131 1 10 - 7 1091 1 10 - 8 2121 1 10 - 9 7121 1 10 - 10 5081 1 10 - 11 132 1 5 - 12 1092 1 5 - 13 2122 1 5 - 14 27002 50 100 - 15 27003 30 200 - 16 27005 30 100 - 17 27006 20 150 - 18 50300 1 400 - 19 70014 1 1 - 20 70037 1 1 -} -Group dz -{ - Mob 8024 - Type drop - 1 3140 1 10 - 2 3141 1 5 - 3 1110 1 10 - 4 1111 1 5 - 5 2130 1 10 - 6 2131 1 5 - 7 7140 1 10 - 8 7141 1 5 - 9 5100 1 10 - 10 5101 1 5 - 11 160 1 10 - 12 161 1 5 - 13 240 1 10 - 14 241 1 5 - 15 27002 50 100 - 16 27003 30 200 - 17 27005 30 100 - 18 27006 20 150 - 19 70014 1 1 - 20 70037 1 1 - 21 12280 1 0.05 - 22 12400 1 0.05 - 23 12540 1 0.05 - 24 12680 1 0.05 - 25 12281 1 0.0125 - 26 12401 1 0.0125 - 27 12541 1 0.0125 - 28 12681 1 0.0125 -} -Group ȼ -{ - Mob 8025 - Type drop - 1 3141 1 10 - 2 3142 1 5 - 3 1111 1 10 - 4 1112 1 5 - 5 2131 1 10 - 6 2132 1 5 - 7 7141 1 10 - 8 7142 1 5 - 9 5101 1 10 - 10 5102 1 5 - 11 161 1 10 - 12 162 1 5 - 13 241 1 10 - 14 242 1 5 - 15 27002 50 100 - 16 27003 30 200 - 17 27005 30 100 - 18 27006 20 150 - 19 70014 1 1 - 20 70037 1 1 - 21 12280 1 0.05 - 22 12400 1 0.05 - 23 12540 1 0.05 - 24 12680 1 0.05 - 25 12281 1 0.0125 - 26 12401 1 0.0125 - 27 12541 1 0.0125 - 28 12681 1 0.0125 -} -Group 뼮 -{ - Mob 8026 - Type drop - 1 3142 1 10 - 2 3143 1 25 - 3 1112 1 15 - 4 1113 1 10 - 5 2132 1 25 - 6 2133 1 15 - 7 7142 1 10 - 8 7143 1 25 - 9 5102 1 15 - 10 5103 1 10 - 11 162 1 25 - 12 163 1 15 - 13 242 1 10 - 14 243 1 25 - 15 11681 1 15 - 16 11682 1 10 - 17 11881 1 25 - 18 11882 1 15 - 19 11481 1 10 - 20 11482 1 25 - 21 11281 1 15 - 22 11282 1 9 - 23 70038 1 15 - 24 25040 1 21 - 25 70048 1 20 - 26 70037 1 25 - 27 70014 1 25 - 28 72006 1 20 - 29 70005 1 20 - 30 27002 50 100 - 31 27003 30 200 - 32 27005 30 100 - 33 27006 20 150 - 34 70014 1 1 - 35 70037 1 1 -} -Group  -{ - Mob 8027 - Type drop - 1 151 1 5 - 2 152 1 15 - 3 153 1 10 - 4 5091 1 5 - 5 5092 1 15 - 6 5093 1 10 - 7 141 1 5 - 8 142 1 15 - 9 143 1 10 - 10 3131 1 5 - 11 3132 1 15 - 12 3133 1 10 - 13 1101 1 5 - 14 1102 1 15 - 15 1103 1 10 - 16 7131 1 5 - 17 7132 1 15 - 18 7133 1 10 - 19 2141 1 5 - 20 2142 1 15 - 21 2143 1 10 - 22 11681 1 5 - 23 11682 1 15 - 24 11683 1 10 - 25 11881 1 5 - 26 11882 1 15 - 27 11883 1 10 - 28 11481 1 5 - 29 11482 1 15 - 30 11483 1 10 - 31 11281 1 5 - 32 11282 1 15 - 33 11283 1 10 - 34 17164 1 9 - 35 17165 1 24 - 36 17166 1 14 - 37 16164 1 9 - 38 16165 1 24 - 39 16166 1 14 - 40 14164 1 9 - 41 14165 1 24 - 42 14166 1 14 - 43 70012 1 15 - 44 70038 1 15 - 45 25040 1 21 - 46 70048 1 20 - 47 70037 1 25 - 48 70014 1 25 - 49 72006 1 20 - 50 70005 1 20 - 51 27002 50 100 - 52 27003 30 200 - 53 27005 30 100 - 54 27006 20 150 - 55 50300 1 400 - 56 70014 1 1 - 57 70037 1 1 -} -Group ȭ -{ - Mob 11506 - Type drop - 1 50117 1 40 30 - 2 182 1 10 30 - 3 192 1 25 30 - 4 1132 1 10 30 - 5 2172 1 25 30 - 6 3162 1 10 30 - 7 5122 1 25 30 - 8 183 1 10 30 - 9 193 1 25 30 - 10 1133 1 10 30 - 11 2173 1 25 30 - 12 3163 1 10 30 - 13 5123 1 25 30 - 14 11293 1 10 30 - 15 11294 1 50 30 - 16 11693 1 20 30 - 17 11694 1 50 30 - 18 11493 1 20 30 - 19 11494 1 50 30 - 20 11893 1 20 30 - 21 11894 1 50 30 -} -Group ȭ -{ - Mob 11507 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11508 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11509 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group ȭ -{ - Mob 11510 - Type drop - 1 50117 1 40 30 - 2 182 1 20 30 - 3 192 1 20 30 - 4 1132 1 20 30 - 5 2172 1 20 30 - 6 3162 1 20 30 - 7 5122 1 20 30 - 8 183 1 20 30 - 9 193 1 20 30 - 10 1133 1 20 30 - 11 2173 1 20 30 - 12 3163 1 20 30 - 13 5123 1 20 30 - 14 11293 1 20 30 - 15 11294 1 20 30 - 16 11693 1 20 30 - 17 11694 1 20 30 - 18 11493 1 20 30 - 19 11494 1 20 30 - 20 11893 1 20 30 - 21 11894 1 20 30 -} -Group -{ - Mob 11041 - Type drop - 1 50726 1 2 -} -Group Setaou-Anf?rer97 -{ - Level_limit 85 - Mob 2475 - Type limit - 1 171 1 0.07 - 2 12246 1 0.12 - 3 14141 1 0.12 - 4 16183 1 0.21 - 5 50060 1 0.08 - 6 50009 1 0.34 - 7 50724 5 1.25 - 8 50728 5 1.25 - 9 244 1 0.34 - 10 146 1 0.27 - 11 1114 1 0.34 - 12 5104 1 0.34 - 13 70031 1 0.01 - 14 71056 1 0.005 -} -Group Setaou-Soldat80 -{ - Level_limit 80 - Mob 2431 - Type limit - 1 13063 1 0.16 - 2 14206 1 0.14 - 3 50060 1 0.08 - 4 27987 1 0.1 - 5 50721 5 1.25 - 6 50725 5 1.25 - 7 70051 1 0.39 - 8 16065 1 0.48 - 9 70031 1 0.01 -} -Group Setaou-J?er82 -{ - Level_limit 80 - Mob 2432 - Type limit - 1 13083 1 0.16 - 2 8005 10 0.94 - 3 8005 20 0.36 - 4 27987 1 0.1 - 5 50722 5 1.25 - 6 50726 5 1.25 - 7 70050 1 0.39 - 8 17104 1 0.22 - 9 70031 1 0.01 -} -Group Setaou-Seherin82 -{ - Level_limit 80 - Mob 2433 - Type limit - 1 13103 1 0.16 - 2 15165 1 0.17 - 3 16203 1 0.11 - 4 17184 1 0.27 - 5 17203 1 0.323 - 6 27987 1 0.1 - 7 50723 5 1.25 - 8 50727 5 1.25 - 9 17105 1 0.34 - 10 70031 1 0.01 -} -Group Setaou-Anf?rer83 -{ - Level_limit 80 - Mob 2434 - Type limit - 1 13123 1 0.16 - 2 14143 1 0.17 - 3 15204 1 0.22 - 4 16184 1 0.11 - 5 50060 1 0.08 - 6 27987 1 0.1 - 7 50724 5 1.25 - 8 50728 5 1.25 - 9 70031 1 0.01 -} -Group Setaou-Soldat84 -{ - Level_limit 80 - Mob 2451 - Type limit - 1 11690 1 0.06 - 2 11691 1 0.05 - 3 13064 1 0.11 - 4 50060 1 0.08 - 5 27987 1 0.1 - 6 50721 5 1.25 - 7 50725 5 1.25 - 8 70031 1 0.01 - 9 71056 1 0.005 -} -Group Setaou-J?er86 -{ - Level_limit 80 - Mob 2452 - Type limit - 1 11490 1 0.06 - 2 11491 1 0.05 - 3 13084 1 0.11 - 4 8005 10 0.94 - 5 8005 20 0.36 - 6 27987 1 0.1 - 7 50009 1 0.34 - 8 50722 5 1.25 - 9 50726 5 1.25 - 10 70031 1 0.01 - 11 71056 1 0.005 -} -Group Setaou-Seherin88 -{ - Level_limit 80 - Mob 2453 - Type limit - 1 11890 1 0.06 - 2 11891 1 0.05 - 3 13104 1 0.11 - 4 16204 1 0.17 - 5 17204 1 0.16 - 6 27987 1 0.1 - 7 50009 1 0.34 - 8 70031 1 0.01 - 9 71056 1 0.005 -} -Group Setaou-Anf?rer90 -{ - Level_limit 80 - Mob 2454 - Type limit - 1 11290 1 0.06 - 2 11291 1 0.05 - 3 13124 1 0.11 - 4 15205 1 0.17 - 5 50060 1 0.08 - 6 50009 1 0.34 - 7 70051 1 0.39 - 8 70050 1 0.39 - 9 70031 1 0.01 - 10 71056 1 0.005 -} ->>>>>>> .r11874 diff --git a/gamefiles/locale/english/mob_drop_item_hector.txt b/gamefiles/locale/english/mob_drop_item_hector.txt deleted file mode 100644 index b33780e..0000000 Binary files a/gamefiles/locale/english/mob_drop_item_hector.txt and /dev/null differ diff --git a/gamefiles/locale/english/ori_to_new_table.txt_bakcup b/gamefiles/locale/english/ori_to_new_table.txt_bakcup deleted file mode 100644 index c9ef833..0000000 --- a/gamefiles/locale/english/ori_to_new_table.txt_bakcup +++ /dev/null @@ -1,88 +0,0 @@ -25041 39001 -70005 39002 -70020 39003 -70024 39004 -70035 39005 -70038 39006 -70039 39007 -71001 39008 -71003 39009 -71014 39010 -71018 39011 -71019 39012 -71020 39013 -71021 39014 -71025 39015 -71026 39016 -71027 39017 -71028 39018 -71029 39019 -71030 39020 -71031 39021 -71032 39022 -71035 39023 -71044 39024 -71045 39025 -71050 39026 -71083 39027 -71084 39028 -71085 39029 -71094 39030 -71101 39031 -71107 39032 -71109 39033 -71110 39034 -71113 39035 -72701 39036 -72723 39037 -72724 39038 -72725 39039 -72727 39040 -72728 39041 -72729 39042 -22010 39043 -30320 39044 -25040 72301 -70003 72302 -70005 72303 -70024 72304 -70026 72305 -70027 72306 -70028 72307 -70035 72308 -70039 72309 -71001 72310 -71020 72311 -71028 72312 -71030 72313 -71032 72314 -27051 27001 -27052 27004 -27053 27100 -27054 27103 -76000 70020 -76001 71002 -76003 71101 -76004 72727 -76005 72727 -76006 27989 -76007 27989 -76008 71004 -76009 71032 -76010 30190 -76011 70003 -76012 71050 -76013 71085 -76014 71084 -76015 70024 -76016 25040 -76017 71014 -76018 71034 -76019 71095 -76020 71035 -76021 72723 -76022 72723 -76023 71151 -76024 71152 -71151 71084 -71152 71085 diff --git a/src/game/src/config.cpp b/src/game/src/config.cpp index c093fd7..aedf8b6 100644 --- a/src/game/src/config.cpp +++ b/src/game/src/config.cpp @@ -81,9 +81,10 @@ static std::set s_set_dwProcessCRC; string g_stHostname = ""; string g_table_postfix = ""; -string g_stQuestDir = "./quest"; -//string g_stQuestObjectDir = "./quest/object"; -string g_stDefaultQuestObjectDir = "./quest/object"; +string g_stBasePath = "data"; +string g_stMapPath = "data/map"; +string g_stQuestDir = "data/quest"; +string g_stDefaultQuestObjectDir = "data/quest/object"; std::set g_setQuestObjectDir; std::vector g_stAdminPageIP; @@ -509,17 +510,15 @@ void config_init(const string& st_localeServiceName) SPDLOG_INFO("CommonSQL connected"); - // 로케일 정보를 가져오자 - // <경고> 쿼리문에 절대 조건문(WHERE) 달지 마세요. (다른 지역에서 문제가 생길수 있습니다) + // Initialize locale settings { - char szQuery[512]; - snprintf(szQuery, sizeof(szQuery), "SELECT mKey, mValue FROM locale"); + std::string szQuery = "SELECT mKey, mValue FROM locale WHERE mKey = 'LANGUAGE'"; - std::unique_ptr pMsg(AccountDB::instance().DirectQuery(szQuery)); + std::unique_ptr pMsg(AccountDB::instance().DirectQuery(szQuery.c_str())); if (pMsg->Get()->uiNumRows == 0) { - SPDLOG_CRITICAL("COMMON_SQL: DirectQuery failed: {}", szQuery); + SPDLOG_CRITICAL("COMMON_SQL: LANGUAGE setting was not found in database!"); exit(EXIT_FAILURE); } @@ -528,7 +527,7 @@ void config_init(const string& st_localeServiceName) while (NULL != (row = mysql_fetch_row(pMsg->Get()->pSQLResult))) { // 로케일 세팅 - if (strcasecmp(row[0], "LOCALE") == 0) + if (strcasecmp(row[0], "LANGUAGE") == 0) { if (LocaleService_Init(row[1]) == false) { diff --git a/src/game/src/config.h b/src/game/src/config.h index 468b56b..6d0a264 100644 --- a/src/game/src/config.h +++ b/src/game/src/config.h @@ -75,8 +75,9 @@ extern std::string g_stClientVersion; extern bool g_bCheckClientVersion; extern void CheckClientVersion(); +extern std::string g_stBasePath; +extern std::string g_stMapPath; extern std::string g_stQuestDir; -//extern std::string g_stQuestObjectDir; extern std::set g_setQuestObjectDir; diff --git a/src/game/src/constants.cpp b/src/game/src/constants.cpp index d2c4e96..d03e04f 100644 --- a/src/game/src/constants.cpp +++ b/src/game/src/constants.cpp @@ -56,137 +56,7 @@ TBattleTypeStat BattleTypeStats[BATTLE_TYPE_MAX_NUM] = { -20, 20, -10, 0 }, // BATTLE_TYPE_SUPER_TANKER, }; -const DWORD * exp_table = NULL; - -const DWORD exp_table_euckr[PLAYER_EXP_TABLE_MAX + 1] = -{ - 0, // 0 - - 100, - 150, - 260, - 380, - 600, - - 1300, - 3300, - 5700, - 8700, - 12800, // 10 - 18000, - 25000, - 36000, - 52000, - 73000, - 100000, - 125000, - 160000, - 220000, - 280000, // 20 - 370000, - 540000, - 670000, - 880000, - 1000000, - - 1237000, - 1418000, - 1624000, - 1857000, - 2122000, // 30 - 2421000, - 2761000, - 3145000, - 3580000, - 4073000, - 4632000, - 5194000, - 5717000, - 6264000, - 6837000, // 40 - 7600000, - 8274000, - 8990000, - 9753000, - 10560000, - 11410000, - 12320000, - 13270000, - 14280000, - 15340000, // 50 - 16870000, - 18960000, - 19980000, - 21420000, - 22930000, - 24530000, - 26200000, - 27960000, - 29800000, - 32780000, // 60 - 36060000, - 39670000, - 43640000, - 48000000, - 52800000, - 58080000, - 63890000, - 70280000, - 77310000, - 85040000, // 70 - 93540000, - 102900000, - 113200000, - 124500000, - 137000000, - 150700000, - 165700000, - 236990000, - 260650000, - 286780000, // 80 - 315380000, - 346970000, - 381680000, - 419770000, - 461760000, - 508040000, - 558740000, - 614640000, - 676130000, - 743730000, // 90 - 1041222000, - 1145344200, - 1259878620, - 1385866482, - 1524453130, - 1676898443, - 1844588288, - 2029047116, - 2100000000, // 99 99레벨일 때 필요경험치 (100레벨이 되기 위한) - 2100000000, // 100 - 2100000000, - 2100000000, - 2100000000, - 2100000000, - 2100000000, // 105 - 2100000000, - 2100000000, - 2100000000, - 2100000000, - 2100000000, // 110 - 2100000000, - 2100000000, - 2100000000, - 2100000000, - 2100000000, // 115 - 2100000000, - 2100000000, - 2100000000, - 2100000000, - 2100000000, // 120 -}; - -const DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1] = +const DWORD exp_table[PLAYER_EXP_TABLE_MAX + 1] = { 0, // 0 300, @@ -311,137 +181,9 @@ const DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1] = 2500000000, // 120 }; -const DWORD exp_table_newcibn[PLAYER_EXP_TABLE_MAX + 1 ] = -{ - 300, // 0 - 800, // 1 - 1500, - 2500, - 4300, - 7200, - 11400, - 17000, - 24000, - 33000, - 46000, // 10 - 62000, - 83000, - 111000, - 149000, - 200000, - 268000, - 360000, - 482000, - 647000, - 868000, // 20 - 996000, - 1143000, - 1312000, - 1506000, - 1729000, - 1984000, - 2277000, - 2614000, - 3000000, - 3443000, // 30 - 3952000, - 4536000, - 5206000, - 5975000, - 6858000, - 7730000, - 8504000, - 9307000, - 10140000, - 11330000, // 40 - 12320000, - 13370000, - 14490000, - 15670000, - 16920000, - 18240000, - 19630000, - 21090000, - 22630000, - 24670000, // 50 - 26890000, - 29310000, - 31950000, - 34820000, - 37960000, - 41370000, - 45100000, - 49160000, - 53580000, - 58400000, // 60 - 63660000, - 69390000, - 75630000, - 82440000, - 89860000, - 97950000, - 106760000, - 136370000, - 151800000, - 168300000, // 70 - 250000000, - 340000000, - 450000000, - 570000000, - 690000000, - 810000000, - 912600000, - 1004000000, - 1094000000, - 1182000000, // 80 - 1269000000, - 1354000000, - 1438000000, - 1521000000, - 1603000000, - 1684000000, - 1764000000, - 1844000000, - 1922000000, - 2000000000, // 90 - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, // 99 99레벨일 때 필요경험치 (100레벨이 되기 위한).. 현재 CIBN이 어떻게 운영하고 있는 지 모르니 신규 테이블을 쓰지 않고 기존값 계속 연장 유지 - 2000000000, // 100 - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, // 105 - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, // 110 - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, // 115 - 2000000000, - 2000000000, - 2000000000, - 2000000000, - 2000000000, // 120 -}; - -const int * aiPercentByDeltaLev = NULL; -const int * aiPercentByDeltaLevForBoss = NULL; - // 적과 나와의 레벨차이에 의한 계산에 사용되는 테이블 // MIN(MAX_EXP_DELTA_OF_LEV - 1, (적렙 + 15) - 내렙)) -const int aiPercentByDeltaLevForBoss_euckr[MAX_EXP_DELTA_OF_LEV] = +const int aiPercentByDeltaLevForBoss[MAX_EXP_DELTA_OF_LEV] = { 1, // -15 0 3, // -14 1 @@ -478,7 +220,7 @@ const int aiPercentByDeltaLevForBoss_euckr[MAX_EXP_DELTA_OF_LEV] = -const int aiPercentByDeltaLev_euckr[MAX_EXP_DELTA_OF_LEV] = +const int aiPercentByDeltaLev[MAX_EXP_DELTA_OF_LEV] = { 1, // -15 0 5, // -14 1 @@ -695,33 +437,8 @@ Coord aArroundCoords[ARROUND_COORD_MAX_NUM] = { -707, 707 }, }; -const DWORD guild_exp_table[GUILD_MAX_LEVEL+1] = -{ - 0, - 15000UL, - 45000UL, - 90000UL, - 160000UL, - 235000UL, - 325000UL, - 430000UL, - 550000UL, - 685000UL, - 835000UL, - 1000000UL, - 1500000UL, - 2100000UL, - 2800000UL, - 3600000UL, - 4500000UL, - 6500000UL, - 8000000UL, - 10000000UL, - 42000000UL -}; - // INTERNATIONAL_VERSION 길드경험치 -const DWORD guild_exp_table2[GUILD_MAX_LEVEL+1] = +const DWORD guild_exp_table[GUILD_MAX_LEVEL+1] = { 0, 6000UL, @@ -979,43 +696,14 @@ const int aiGrandMasterSkillBookMaxCount[10] = }; // END_OF_ADD_GRANDMASTER_SKILL -const int CHN_aiPartyBonusExpPercentByMemberCount[9] = +// UPGRADE_PARTY_BONUS +const int aiPartyBonusExpPercentByMemberCount[9] = { 0, 0, 12, 18, 26, 40, 53, 70, 100 }; - - -// UPGRADE_PARTY_BONUS -const int KOR_aiPartyBonusExpPercentByMemberCount[9] = -{ - 0, - 0, - 30, // 66% * 2 - 100 - 60, // 53% * 3 - 100 - 75, // 44% * 4 - 100 - 90, // 38% * 5 - 100 - 105, // 34% * 6 - 100 - 110, // 30% * 7 - 100 - 140, // 30% * 8 - 100 -}; - -const int KOR_aiUniqueItemPartyBonusExpPercentByMemberCount[9] = -{ - 0, - 0, - 15*2, - 14*3, - 13*4, - 12*5, - 11*6, - 10*7, - 10*8, -}; // END_OF_UPGRADE_PARTY_BONUS -const int * aiChainLightningCountBySkillLevel = NULL; - -const int aiChainLightningCountBySkillLevel_euckr[SKILL_MAX_LEVEL+1] = +const int aiChainLightningCountBySkillLevel[SKILL_MAX_LEVEL+1] = { 0, // 0 2, // 1 diff --git a/src/game/src/constants.h b/src/game/src/constants.h index d3bf88f..b570bdf 100644 --- a/src/game/src/constants.h +++ b/src/game/src/constants.h @@ -97,23 +97,16 @@ extern TBattleTypeStat BattleTypeStats[BATTLE_TYPE_MAX_NUM]; extern const DWORD party_exp_distribute_table[PLAYER_MAX_LEVEL_CONST + 1]; -extern const DWORD exp_table_euckr[PLAYER_EXP_TABLE_MAX + 1]; -extern const DWORD exp_table_common[PLAYER_EXP_TABLE_MAX + 1]; -extern const DWORD exp_table_newcibn[PLAYER_EXP_TABLE_MAX + 1]; - -extern const DWORD* exp_table; +extern const DWORD exp_table[PLAYER_EXP_TABLE_MAX + 1]; extern const DWORD guild_exp_table[GUILD_MAX_LEVEL + 1]; -extern const DWORD guild_exp_table2[GUILD_MAX_LEVEL + 1]; #define MAX_EXP_DELTA_OF_LEV 31 #define PERCENT_LVDELTA(me, victim) aiPercentByDeltaLev[std::clamp((victim + 15) - me, 0, MAX_EXP_DELTA_OF_LEV - 1)] #define PERCENT_LVDELTA_BOSS(me, victim) aiPercentByDeltaLevForBoss[std::clamp((victim + 15) - me, 0, MAX_EXP_DELTA_OF_LEV - 1)] #define CALCULATE_VALUE_LVDELTA(me, victim, val) ((val * PERCENT_LVDELTA(me, victim)) / 100) -extern const int aiPercentByDeltaLev_euckr[MAX_EXP_DELTA_OF_LEV]; -extern const int aiPercentByDeltaLevForBoss_euckr[MAX_EXP_DELTA_OF_LEV]; -extern const int * aiPercentByDeltaLev; -extern const int * aiPercentByDeltaLevForBoss; +extern const int aiPercentByDeltaLev[MAX_EXP_DELTA_OF_LEV]; +extern const int aiPercentByDeltaLevForBoss[MAX_EXP_DELTA_OF_LEV]; #define ARROUND_COORD_MAX_NUM 161 extern Coord aArroundCoords[ARROUND_COORD_MAX_NUM]; @@ -144,7 +137,7 @@ extern const int aiSkillBookCountForLevelUp[10]; extern const int aiGrandMasterSkillBookCountForLevelUp[10]; extern const int aiGrandMasterSkillBookMinCount[10]; extern const int aiGrandMasterSkillBookMaxCount[10]; -extern const int CHN_aiPartyBonusExpPercentByMemberCount[9]; +extern const int aiPartyBonusExpPercentByMemberCount[9]; extern const int KOR_aiPartyBonusExpPercentByMemberCount[9]; extern const int KOR_aiUniqueItemPartyBonusExpPercentByMemberCount[9]; @@ -152,8 +145,7 @@ typedef std::map TItemAttrMap; extern TItemAttrMap g_map_itemAttr; extern TItemAttrMap g_map_itemRare; -extern const int * aiChainLightningCountBySkillLevel; -extern const int aiChainLightningCountBySkillLevel_euckr[SKILL_MAX_LEVEL + 1]; +extern const int aiChainLightningCountBySkillLevel[SKILL_MAX_LEVEL + 1]; extern const char * c_apszEmpireNames[EMPIRE_MAX_NUM]; extern const char * c_apszPrivNames[MAX_PRIV_NUM]; diff --git a/src/game/src/guild.cpp b/src/game/src/guild.cpp index d26805c..254b709 100644 --- a/src/game/src/guild.cpp +++ b/src/game/src/guild.cpp @@ -1465,7 +1465,7 @@ void CGuild::UpdateSkill(BYTE skill_point, BYTE* skill_levels) static DWORD __guild_levelup_exp(int level) { - return guild_exp_table2[level]; + return guild_exp_table[level]; } void CGuild::GuildPointChange(BYTE type, int amount, bool save) diff --git a/src/game/src/locale_service.cpp b/src/game/src/locale_service.cpp index aa85c81..184b4da 100644 --- a/src/game/src/locale_service.cpp +++ b/src/game/src/locale_service.cpp @@ -10,24 +10,15 @@ using namespace std; -extern string g_stQuestDir; -extern set g_setQuestObjectDir; - -string g_stServiceName; -string g_stServiceBasePath = "."; -string g_stServiceMapPath = "data/map"; +string g_stLanguage; string g_stLocale = "euckr"; string g_stLocaleFilename; -BYTE PK_PROTECT_LEVEL = 30; - -string g_stLocal = ""; -eLocalization g_eLocalType = LC_NOSET; +BYTE PK_PROTECT_LEVEL = 15; int (*check_name) (const char * str) = NULL; int (*is_twobyte) (const char * str) = NULL; -bool LC_InitLocalization( const std::string& szLocal ); int is_twobyte_gb2312(const char * str) { @@ -46,34 +37,6 @@ int is_twobyte_gb2312(const char * str) return 1; } -int is_twobyte_big5(const char * str) -{ - if (!str || !*str) - return 0; - - BYTE b1 = str[0]; - BYTE b2 = str[1]; - - BYTE b[2]; - - b[0] = b2; - b[1] = b1; - - WORD b12 = 0; - memcpy(&b12, b, 2); - - if (!(b1 & 0x80)) - return 0; - - if ((b12 < 0xa440 || b12 > 0xc67e) && (b12 < 0xc940 || b12 > 0xf9d5)) - { - SPDLOG_TRACE("twobyte_big5 {} {}", b1, b2); - return 0; - } - - return 1; -} - int check_name_independent(const char * str) { if (CBanwordManager::instance().CheckString(str, strlen(str))) @@ -89,180 +52,6 @@ int check_name_independent(const char * str) return 1; } -int check_name_gb2312(const char * str) -{ - static const BYTE exceptions[5][2] = - { - { 0xd7, 0xfa }, - { 0xd7, 0xfb }, - { 0xd7, 0xfc }, - { 0xd7, 0xfd }, - { 0xd7, 0xfe } - }; - - int i, j; - BYTE b1, b2; - - if (!str || !*str) - return 0; - - i = 0; - - size_t len = 0; - - while (str[i]) - { - if (str[i] & 0x80) - { - if (!str[i + 1]) - return 0; - - b1 = str[i++]; - b2 = str[i++]; - - // 중국 간체는 첫번째 바이트 범위가 b0 -> f7 까지고 - // 두번째 바이트 범위가 a1 -> fe 다. - if (b1 < 0xb0 || b1 > 0xf7 || b2 < 0xa1 || b2 > 0xfe) - return 0; - - // 예외가 있다. - for (j = 0; j < 5; j++) - if (b1 == exceptions[j][0] && b2 == exceptions[j][1]) - return 0; - - len++; - } - else - { - if (!isdigit(str[i]) && !isalpha(str[i])) - return 0; - - i++; - len++; - } - } - - if ( len > 6 ) return 0; - - return check_name_independent(str); -} - -int check_name_big5(const char * str ) -{ - int i; - BYTE b1, b2; - - if (!str || !*str) - return 0; - - i = 0; - - while (str[i]) - { - if (str[i] & 0x80) - { - if (!str[i + 1]) - return 0; - - b1 = str[i++]; - b2 = str[i++]; - - BYTE b[2]; - - b[0] = b2; - b[1] = b1; - - // 중국 번체 ( big5 : 홍콩 ) - // 범위는 다음과 같다. - // big5: 0xA140--0xF9D5 - // extended big5: 0x40--0x7E and 0xA1--0xFE - - // 0xa440-0xC67E - // 0xC940-0xF9D5 - // - /* - Plan Code Range Description - 1 A140H - A3E0H Symbol and Chinese Control Code - 1 A440H - C67EH Commonly Used Characters - 2 C940H - F9D5H Less Commonly Used Characters - UDF FA40H - FEFE User-Defined Characters - - 8E40H - A0FEH User-Defined Characters - - 8140H - 8DFEH User-Defined Characters - - 8181H - 8C82H User-Defined Characters - - F9D6H - F9F1H User-Defined Characters - */ - - WORD b12 = 0; - memcpy(&b12, b, 2); - - if ((b12 < 0xa440 || b12 > 0xc67e) && (b12 < 0xc940 || b12 > 0xf9d5)) - { - SPDLOG_TRACE("check_name_big5[{}][{}] {} {} {}", i - 2, str, b1, b2, b12); - return 0; - } - } - else - { - if (!isdigit(str[i]) && !isalpha(str[i])) - return 0; - - i++; - } - } - - return check_name_independent(str); -} - -int check_name_latin1(const char * str) -{ - int code; - const char* tmp; - - if (!str || !*str) - return 0; - - if (strlen(str) < 2) - return 0; - - for (tmp = str; *tmp; ++tmp) - { - // 한글이 아니고 빈칸이면 잘못된 것 - if (isspace(*tmp)) - return 0; - - // 한글이 아니고 숫자라면 적합하다. - if (isdigit(*tmp)) - continue; - - // 한글이 아니고 영문이라면 적합하다. - if (isalpha(*tmp)) - continue; - - unsigned char uc_tmp = *tmp; - - if (uc_tmp == 145 || uc_tmp == 146 || uc_tmp == 196 - || uc_tmp == 214 || uc_tmp == 220 || uc_tmp == 223 - || uc_tmp == 228 || uc_tmp == 246 || uc_tmp == 252 ) - continue; - code = *tmp; - code += 256; - - if (code < 176 || code > 200) - return 0; - - ++tmp; - - if (!*tmp) - break; - } - - return check_name_independent(str); -} - int check_name_alphabet(const char * str) { const char* tmp; @@ -284,86 +73,7 @@ int check_name_alphabet(const char * str) return check_name_independent(str); } -// DISABLE_SPECIAL_CHAR_NAMING -bool sjis_is_disable_name_char(const char* src) -{ - static const char* sjis_symbols = "?"; - if (strncmp(src, sjis_symbols, 2) == 0) - return true; - - return false; -} -// END_OF_DISABLE_SPECIAL_CHAR_NAMING - - - -//----------------------------------------------- -// CHECK SJIS STRING -//----------------------------------------------- -#define issjishead(c) ((0x81<=(c) && (c)<=0x9f) || \ - ((0xe0<=(c)) && (c)<=0xfc)) -#define issjistail(c) ((0x40<=(c) && (c)<=0x7e) || \ - (0x80<=(c) && (c)<=0xfc)) - -static int is_char_sjis(const char *p, const char *e) -{ - return (issjishead((BYTE) *p) && (e-p)>1 && issjistail((BYTE)p[1]) ? true : false); -} - -int is_twobyte_sjis(const char *str) -{ - if (str && str[0] && str[1]) - return issjishead((BYTE)str[0]) && issjistail((BYTE)str[1]); - else - return 0; -} - -int check_name_sjis(const char *str) -{ - const char *p = str; - const char *e = str + strlen(str); // NULL position - - // 일본은 캐릭터 이름길이 16byte 까지 - if ( strlen(str) < 2 || strlen(str) > 16 ) - return 0; - - while (*p) - { - if (is_char_sjis(p, e)) - { - // DISABLE_SPECIAL_CHAR_NAMING - if (sjis_is_disable_name_char(p)) - return false; - - // END_OF_DISABLE_SPECIAL_CHAR_NAMING - // 이문자는 허용되지 않는다. - if ((BYTE)p[0]==0x81 && (BYTE)p[1]==0x40) return false; - - p += 2; - continue; - } - else - { - // 영문이나 수자는 허용한다. - if (isalpha(*p) || isdigit(*p)) - { - p += 1; - continue; - } - else - { - return 0; - } - } - } - - - return check_name_independent(str); -} -//----------------------------------------------- -// END OF CHECK SJIS STRING -//----------------------------------------------- void LocaleService_LoadLocaleStringFile() { if (g_stLocaleFilename.empty()) @@ -390,748 +100,49 @@ void LocaleService_LoadEmpireTextConvertTables() } } -static void __LocaleService_Init_JAPAN() +bool LocaleService_Init(const std::string& language) { - g_stLocale = "sjis"; - g_stServiceBasePath = "locale/japan"; - g_stQuestDir = "locale/japan/quest"; - g_stServiceMapPath = "locale/japan/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/japan/quest/object"); - g_stLocaleFilename = "locale/japan/sjis_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_sjis; - is_twobyte = is_twobyte_sjis; - exp_table = exp_table_euckr; -} - -static void __LocaleService_Init_English() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/english"; - g_stQuestDir = "locale/english/quest"; - g_stServiceMapPath = "locale/english/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/english/quest/object"); - g_stLocaleFilename = "locale/english/locale_string.txt"; - - check_name = check_name_alphabet; -} - -static void __LocaleService_Init_HongKong() -{ - g_stLocale = "big5"; - g_stServiceBasePath = "locale/hongkong"; - g_stQuestDir = "locale/hongkong/quest"; - g_stServiceMapPath = "locale/hongkong/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/hongkong/quest/object"); - g_stLocaleFilename = "locale/hongkong/big5_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_big5; - is_twobyte = is_twobyte_big5; -} - -static void __LocaleService_Init_NewCIBN() -{ - g_stLocale = "gb2312"; - g_stServiceBasePath = "locale/newcibn"; - g_stQuestDir = "locale/newcibn/quest"; - g_stServiceMapPath = "locale/newcibn/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/newcibn/quest/object"); - g_stLocaleFilename = "locale/newcibn/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_gb2312; - is_twobyte = is_twobyte_gb2312; - //exp_table = exp_table_newcibn; -} - -static void __LocaleService_Init_Germany() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/germany"; - g_stQuestDir = "locale/germany/quest"; - g_stServiceMapPath = "locale/germany/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/germany/quest/object"); - g_stLocaleFilename = "locale/germany/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Korea() -{ - g_stLocale="euckr"; - g_stServiceBasePath = "locale/korea"; - g_stQuestDir = "locale/korea/quest"; - g_stServiceMapPath = "locale/korea/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/korea/quest/object"); - - g_iUseLocale = true; - exp_table = exp_table_euckr; -} - -static void __LocaleService_Init_France() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/france"; - g_stQuestDir = "locale/france/quest"; - g_stServiceMapPath = "locale/france/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/france/quest/object"); - g_stLocaleFilename = "locale/france/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Italy() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/italy"; - g_stQuestDir = "locale/italy/quest"; - g_stServiceMapPath = "locale/italy/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/italy/quest/object"); - g_stLocaleFilename = "locale/italy/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_spain() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/spain"; - g_stQuestDir = "locale/spain/quest"; - g_stServiceMapPath = "locale/spain/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/spain/quest/object"); - g_stLocaleFilename = "locale/spain/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_greek() -{ - g_stLocale="greek"; - g_stServiceBasePath = "locale/greek"; - g_stQuestDir = "locale/greek/quest"; - g_stServiceMapPath = "locale/greek/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/greek/quest/object"); - g_stLocaleFilename = "locale/greek/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_UK() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/uk"; - g_stQuestDir = "locale/uk/quest"; - g_stServiceMapPath = "locale/uk/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/uk/quest/object"); - g_stLocaleFilename = "locale/uk/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Turkey() -{ - g_stLocale="latin5"; - g_stServiceBasePath = "locale/turkey"; - g_stQuestDir = "locale/turkey/quest"; - g_stServiceMapPath = "locale/turkey/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/turkey/quest/object"); - g_stLocaleFilename = "locale/turkey/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Poland() -{ - g_stLocale="latin2"; - g_stServiceBasePath = "locale/poland"; - g_stQuestDir = "locale/poland/quest"; - g_stServiceMapPath = "locale/poland/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/poland/quest/object"); - g_stLocaleFilename = "locale/poland/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Portugal() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/portugal"; - g_stQuestDir = "locale/portugal/quest"; - g_stServiceMapPath = "locale/portugal/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/portugal/quest/object"); - g_stLocaleFilename = "locale/portugal/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Canada() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/canada"; - g_stQuestDir = "locale/canada/quest"; - g_stServiceMapPath = "locale/canada/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/canada/quest/object"); - g_stLocaleFilename = "locale/canada/locale_string.txt"; - - check_name = check_name_alphabet; - - g_iUseLocale = true; -} - -static void __LocaleService_Init_Brazil() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/brazil"; - g_stQuestDir = "locale/brazil/quest"; - g_stServiceMapPath = "locale/brazil/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/brazil/quest/object"); - g_stLocaleFilename = "locale/brazil/locale_string.txt"; - - check_name = check_name_alphabet; - - g_iUseLocale = true; -} - -static void __LocaleService_Init_YMIR() -{ - g_stLocaleFilename = ""; - - g_stServiceBasePath = "locale/" + g_stServiceName; - g_stServiceMapPath = g_stServiceBasePath + "/map"; - g_stQuestDir = g_stServiceBasePath + "/quest"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert(g_stQuestDir + "/object"); - - PK_PROTECT_LEVEL = 30; - - exp_table = exp_table_euckr; -} - -static void __LocaleService_Init_Russia() -{ - g_stLocale="cp1251"; - g_stServiceBasePath = "locale/russia"; - g_stQuestDir = "locale/russia/quest"; - g_stServiceMapPath = "locale/russia/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/russia/quest/object"); - g_stLocaleFilename = "locale/russia/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Denmark() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/denmark"; - g_stQuestDir = "locale/denmark/quest"; - g_stServiceMapPath = "locale/denmark/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/denmark/quest/object"); - g_stLocaleFilename = "locale/denmark/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Bulgaria() -{ - g_stLocale="cp1251"; - g_stServiceBasePath = "locale/bulgaria"; - g_stQuestDir = "locale/bulgaria/quest"; - g_stServiceMapPath = "locale/bulgaria/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/bulgaria/quest/object"); - g_stLocaleFilename = "locale/bulgaria/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Croatia() -{ - g_stLocale="cp1251"; - g_stServiceBasePath = "locale/croatia"; - g_stQuestDir = "locale/croatia/quest"; - g_stServiceMapPath = "locale/croatia/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/croatia/quest/object"); - g_stLocaleFilename = "locale/croatia/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Mexico() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/mexico"; - g_stQuestDir = "locale/mexico/quest"; - g_stServiceMapPath = "locale/mexico/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/mexico/quest/object"); - g_stLocaleFilename = "locale/mexico/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Arabia() -{ - g_stLocale="cp1256"; - g_stServiceBasePath = "locale/arabia"; - g_stQuestDir = "locale/arabia/quest"; - g_stServiceMapPath = "locale/arabia/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/arabia/quest/object"); - g_stLocaleFilename = "locale/arabia/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Czech() -{ - g_stLocale="latin2"; - g_stServiceBasePath = "locale/czech"; - g_stQuestDir = "locale/czech/quest"; - g_stServiceMapPath = "locale/czech/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/czech/quest/object"); - g_stLocaleFilename = "locale/czech/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Hungary() -{ - g_stLocale="latin2"; - g_stServiceBasePath = "locale/hungary"; - g_stQuestDir = "locale/hungary/quest"; - g_stServiceMapPath = "locale/hungary/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/hungary/quest/object"); - g_stLocaleFilename = "locale/hungary/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Romania() -{ - g_stLocale="latin2"; - g_stServiceBasePath = "locale/romania"; - g_stQuestDir = "locale/romania/quest"; - g_stServiceMapPath = "locale/romania/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/romania/quest/object"); - g_stLocaleFilename = "locale/romania/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Netherlands() -{ - g_stLocale="latin1"; - g_stServiceBasePath = "locale/netherlands"; - g_stQuestDir = "locale/netherlands/quest"; - g_stServiceMapPath = "locale/netherlands/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/netherlands/quest/object"); - g_stLocaleFilename = "locale/netherlands/locale_string.txt"; - - g_iUseLocale = true; - - check_name = check_name_alphabet; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Singapore() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/singapore"; - g_stQuestDir = "locale/singapore/quest"; - g_stServiceMapPath = "locale/singapore/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/singapore/quest/object"); - g_stLocaleFilename = "locale/singapore/locale_string.txt"; - - check_name = check_name_alphabet; - - g_iUseLocale = true; - //exp_table = exp_table_newcibn; 2013 09 11 CYH europe 과 동일하게 간다. -} - -static void __LocaleService_Init_Vietnam() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/vietnam"; - g_stQuestDir = "locale/vietnam/quest"; - g_stServiceMapPath = "locale/vietnam/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/vietnam/quest/object"); - g_stLocaleFilename = "locale/vietnam/locale_string.txt"; - - check_name = check_name_alphabet; - - g_iUseLocale = true; - exp_table = exp_table_newcibn; - -} - -static void __LocaleService_Init_Thailand() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/thailand"; - g_stQuestDir = "locale/thailand/quest"; - g_stServiceMapPath = "locale/thailand/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/thailand/quest/object"); - g_stLocaleFilename = "locale/thailand/locale_string.txt"; - - check_name = check_name_alphabet; - - g_iUseLocale = true; -} - -static void __LocaleService_Init_USA() -{ - g_stLocale = "latin1"; - g_stServiceBasePath = "locale/usa"; - g_stQuestDir = "locale/usa/quest"; - g_stServiceMapPath = "locale/usa/map"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert("locale/usa/quest/object"); - g_stLocaleFilename = "locale/usa/locale_string.txt"; - - g_iUseLocale = true; - check_name = check_name_alphabet; -} - -// World Edition version for korea -static void __LocaleService_Init_WE_Korea() -{ - g_stLocale = "euckr"; - -// g_stLocaleFilename = "locale/we_korea/locale_string.txt"; - - g_stServiceBasePath = "locale/" + g_stServiceName; - g_stServiceMapPath = g_stServiceBasePath + "/map"; - g_stQuestDir = g_stServiceBasePath + "/quest"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert(g_stQuestDir + "/object"); - - g_iUseLocale = true; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_Taiwan() -{ - g_stLocale = "big5"; - g_stServiceBasePath = "locale/" + g_stServiceName; - g_stServiceMapPath = g_stServiceBasePath + "/map"; - g_stQuestDir = g_stServiceBasePath + "/quest"; - - g_setQuestObjectDir.clear(); - g_setQuestObjectDir.insert(g_stQuestDir + "/object"); - g_stLocaleFilename = "locale/taiwan/locale_string.txt"; - - check_name = check_name_big5; - is_twobyte = is_twobyte_big5; - - g_iUseLocale = true; - - PK_PROTECT_LEVEL = 15; -} - -static void __LocaleService_Init_DEFAULT() -{ - __LocaleService_Init_English(); -} - -static void __CheckPlayerSlot(const std::string& service_name) -{ - if (PLAYER_PER_ACCOUNT != 4) + map localeConfiguration = { + {"en", {"latin1", false}}, + {"ae", {"cp1256"}}, + {"cz", {"latin2"}}, + {"de", {"latin1"}}, + {"dk", {"latin1"}}, + {"es", {"latin1"}}, + {"fr", {"latin1"}}, + {"gr", {"greek"}}, + {"hu", {"latin2"}}, + {"it", {"latin1"}}, + {"kr", {"euckr"}}, + {"nl", {"latin1"}}, + {"pl", {"latin2"}}, + {"pt", {"latin1"}}, + {"ro", {"latin2"}}, + {"ru", {"cp1251"}}, + {"tr", {"latin5"}}, + }; + + if (!g_stLanguage.empty()) { - SPDLOG_CRITICAL(" PLAYER_PER_ACCOUNT = {}", (int) PLAYER_PER_ACCOUNT); - exit(EXIT_FAILURE); - } -} - -bool LocaleService_Init(const std::string& c_rstServiceName) -{ - if (!g_stServiceName.empty()) - { - SPDLOG_ERROR("ALREADY exist service"); + SPDLOG_ERROR("Locale was already initialized!"); return false; } - g_stServiceName = c_rstServiceName; - - if ( "japan" == g_stServiceName) + if (localeConfiguration.find(language) == localeConfiguration.end()) { - __LocaleService_Init_JAPAN(); - } - else if ( "english" == g_stServiceName) - { - __LocaleService_Init_English(); - } - else if ( "hongkong" == g_stServiceName) - { - __LocaleService_Init_HongKong(); - } - else if ( "newcibn" == g_stServiceName) - { - __LocaleService_Init_NewCIBN(); - } - else if ( "germany" == g_stServiceName) - { - __LocaleService_Init_Germany(); - } - else if ( "korea" == g_stServiceName) - { - __LocaleService_Init_Korea(); - } - else if ( "france" == g_stServiceName) - { - __LocaleService_Init_France(); - } - else if ( "italy" == g_stServiceName) - { - __LocaleService_Init_Italy(); - } - else if ( "spain" == g_stServiceName) - { - __LocaleService_Init_spain(); - } - else if ( "greek" == g_stServiceName) - { - __LocaleService_Init_greek(); - } - else if ( "uk" == g_stServiceName) - { - __LocaleService_Init_UK(); - } - else if ( "turkey" == g_stServiceName) - { - __LocaleService_Init_Turkey(); - } - else if ( "poland" == g_stServiceName) - { - __LocaleService_Init_Poland(); - } - else if ( "portugal" == g_stServiceName) - { - __LocaleService_Init_Portugal(); - } - else if ( "canada" == g_stServiceName) - { - __LocaleService_Init_Canada(); - } - else if ( "brazil" == g_stServiceName) - { - __LocaleService_Init_Brazil(); - } - else if ( "ymir" == g_stServiceName) - { - __LocaleService_Init_YMIR(); - } - else if ( "russia" == g_stServiceName) - { - __LocaleService_Init_Russia(); - } - else if ( "denmark" == g_stServiceName) - { - __LocaleService_Init_Denmark(); - } - else if ( "bulgaria" == g_stServiceName) - { - __LocaleService_Init_Bulgaria(); - } - else if ( "croatia" == g_stServiceName) - { - __LocaleService_Init_Croatia(); - } - else if ( "mexico" == g_stServiceName) - { - __LocaleService_Init_Mexico(); - } - else if ( "arabia" == g_stServiceName) - { - __LocaleService_Init_Arabia(); - } - else if ( "czech" == g_stServiceName) - { - __LocaleService_Init_Czech(); - } - else if ( "romania" == g_stServiceName) - { - __LocaleService_Init_Romania(); - } - else if ( "hungary" == g_stServiceName) - { - __LocaleService_Init_Hungary(); - } - else if ( "netherlands" == g_stServiceName) - { - __LocaleService_Init_Netherlands(); - } - else if ( "singapore" == g_stServiceName) - { - __LocaleService_Init_Singapore(); - } - else if ( "vietnam" == g_stServiceName) - { - __LocaleService_Init_Vietnam(); - } - else if ( "thailand" == g_stServiceName) - { - __LocaleService_Init_Thailand(); - } - else if ("usa" == g_stServiceName) - { - __LocaleService_Init_USA(); - } - else if ("we_korea" == g_stServiceName) - { - __LocaleService_Init_WE_Korea(); // ver.World Edition for korea - } - else if ("taiwan" == g_stServiceName) - { - __LocaleService_Init_Taiwan(); - } - else - { - __LocaleService_Init_DEFAULT(); - } - - SPDLOG_INFO("Setting Locale \"{}\" (Path: {})", g_stServiceName.c_str(), g_stServiceBasePath.c_str()); - - __CheckPlayerSlot(g_stServiceName); - - if (false == LC_InitLocalization(c_rstServiceName)) + SPDLOG_ERROR("An unsupported language configuration was requested: {}", language); return false; + } + + g_stLanguage = language; + + g_stLocale = localeConfiguration[language].mysqlCharsetName; + g_iUseLocale = localeConfiguration[language].useLocaleString; + + if (g_iUseLocale) + g_stLocaleFilename = g_stBasePath + "/locale_string_" + language + ".txt"; + + SPDLOG_INFO("Setting language \"{}\"", g_stLanguage.c_str()); return true; } @@ -1139,119 +150,26 @@ bool LocaleService_Init(const std::string& c_rstServiceName) void LocaleService_TransferDefaultSetting() { if (!check_name) - check_name = check_name_independent; + check_name = check_name_alphabet; if (!is_twobyte) is_twobyte = is_twobyte_gb2312; - if (!exp_table) - exp_table = exp_table_common; - if (!CTableBySkill::instance().Check()) exit(EXIT_FAILURE); - - if (!aiPercentByDeltaLevForBoss) - aiPercentByDeltaLevForBoss = aiPercentByDeltaLevForBoss_euckr; - - if (!aiPercentByDeltaLev) - aiPercentByDeltaLev = aiPercentByDeltaLev_euckr; - - if (!aiChainLightningCountBySkillLevel) - aiChainLightningCountBySkillLevel = aiChainLightningCountBySkillLevel_euckr; } const std::string& LocaleService_GetBasePath() { - return g_stServiceBasePath; + return g_stBasePath; } const std::string& LocaleService_GetMapPath() { - return g_stServiceMapPath; + return g_stMapPath; } const std::string& LocaleService_GetQuestPath() { return g_stQuestDir; } - -bool LC_InitLocalization( const std::string& szLocal ) -{ - g_stLocal = szLocal; - - if ( !g_stLocal.compare("ymir") ) - g_eLocalType = LC_YMIR; - else if ( !g_stLocal.compare("japan") ) - g_eLocalType = LC_JAPAN; - else if ( !g_stLocal.compare("english") ) - g_eLocalType = LC_ENGLISH; - else if ( !g_stLocal.compare("hongkong") ) - g_eLocalType = LC_HONGKONG; - else if (!g_stLocal.compare("newcibn") ) - g_eLocalType = LC_NEWCIBN; - else if ( !g_stLocal.compare("germany") ) - g_eLocalType = LC_GERMANY; - else if ( !g_stLocal.compare("korea") ) - g_eLocalType = LC_KOREA; - else if ( !g_stLocal.compare("france") ) - g_eLocalType = LC_FRANCE; - else if ( !g_stLocal.compare("italy") ) - g_eLocalType = LC_ITALY; - else if ( !g_stLocal.compare("spain") ) - g_eLocalType = LC_SPAIN; - else if ( !g_stLocal.compare("greek") ) - g_eLocalType = LC_GREEK; - else if ( !g_stLocal.compare("uk") ) - g_eLocalType = LC_UK; - else if ( !g_stLocal.compare("turkey") ) - g_eLocalType = LC_TURKEY; - else if ( !g_stLocal.compare("poland") ) - g_eLocalType = LC_POLAND; - else if ( !g_stLocal.compare("portugal") ) - g_eLocalType = LC_PORTUGAL; - else if ( !g_stLocal.compare("canada") ) - g_eLocalType = LC_CANADA; - else if ( !g_stLocal.compare("brazil") ) - g_eLocalType = LC_BRAZIL; - else if ( !g_stLocal.compare("russia") ) - g_eLocalType = LC_RUSSIA; - else if ( !g_stLocal.compare("denmark") ) - g_eLocalType = LC_DENMARK; - else if ( !g_stLocal.compare("bulgaria") ) - g_eLocalType = LC_BULGARIA; - else if ( !g_stLocal.compare("croatia") ) - g_eLocalType = LC_CROATIA; - else if ( !g_stLocal.compare("mexico") ) - g_eLocalType = LC_MEXICO; - else if ( !g_stLocal.compare("arabia") ) - g_eLocalType = LC_ARABIA; - else if ( !g_stLocal.compare("czech") ) - g_eLocalType = LC_CZECH; - else if ( !g_stLocal.compare("romania") ) - g_eLocalType = LC_ROMANIA; - else if ( !g_stLocal.compare("hungary") ) - g_eLocalType = LC_HUNGARY; - else if ( !g_stLocal.compare("netherlands") ) - g_eLocalType = LC_NETHERLANDS; - else if ( !g_stLocal.compare("singapore") ) - g_eLocalType = LC_SINGAPORE; - else if ( !g_stLocal.compare("vietnam") ) - g_eLocalType = LC_VIETNAM; - else if ( !g_stLocal.compare("thailand") ) - g_eLocalType = LC_THAILAND; - else if ( !g_stLocal.compare("usa") ) - g_eLocalType = LC_USA; - else if ( !g_stLocal.compare("we_korea") ) // ver.WorldEdition for korea - g_eLocalType = LC_WE_KOREA; - else if ( !g_stLocal.compare("taiwan") ) - g_eLocalType = LC_TAIWAN; - else - return false; - - return true; -} - -eLocalization LC_GetLocalType() -{ - return g_eLocalType; -} diff --git a/src/game/src/locale_service.h b/src/game/src/locale_service.h index 1e26298..5b49cb0 100644 --- a/src/game/src/locale_service.h +++ b/src/game/src/locale_service.h @@ -1,7 +1,8 @@ -#ifndef __LOCALE_SERVCICE__ -#define __LOCALE_SERVCICE__ +#pragma once -bool LocaleService_Init(const std::string& c_rstServiceName); +extern std::string g_stLanguage; + +bool LocaleService_Init(const std::string& language); void LocaleService_LoadLocaleStringFile(); void LocaleService_LoadEmpireTextConvertTables(); void LocaleService_TransferDefaultSetting(); @@ -9,66 +10,8 @@ const std::string& LocaleService_GetBasePath(); const std::string& LocaleService_GetMapPath(); const std::string& LocaleService_GetQuestPath(); -enum eLocalization +struct LanguageSettings { - LC_NOSET = 0, - - LC_YMIR, - LC_JAPAN, - LC_ENGLISH, - LC_HONGKONG, - LC_NEWCIBN, - LC_GERMANY, - LC_KOREA, - LC_FRANCE, - LC_ITALY, - LC_SPAIN, - LC_UK, - LC_TURKEY, - LC_POLAND, - LC_PORTUGAL, - LC_CANADA, - LC_BRAZIL, - LC_GREEK, - LC_RUSSIA, - LC_DENMARK, - LC_BULGARIA, - LC_CROATIA, - LC_MEXICO, - LC_ARABIA, - LC_CZECH, - LC_ROMANIA, - LC_HUNGARY, - LC_NETHERLANDS, - LC_SINGAPORE, - LC_VIETNAM, - LC_THAILAND, - LC_USA, - LC_WE_KOREA, ///< World Edition version for korea - LC_TAIWAN, - - LC_MAX_VALUE + std::string mysqlCharsetName; + bool useLocaleString = true; }; - -eLocalization LC_GetLocalType(); - -bool LC_IsLocale( const eLocalization t ); -bool LC_IsYMIR(); -bool LC_IsJapan(); -bool LC_IsEnglish(); -bool LC_IsHongKong(); -bool LC_IsNewCIBN(); -bool LC_IsGermany(); -bool LC_IsKorea(); -bool LC_IsEurope(); -bool LC_IsCanada(); -bool LC_IsBrazil(); -bool LC_IsSingapore(); -bool LC_IsVietnam(); -bool LC_IsThailand(); -bool LC_IsWE_Korea(); -bool LC_IsTaiwan(); - -bool LC_IsWorldEdition(); - -#endif diff --git a/src/game/src/main.cpp b/src/game/src/main.cpp index 92ba44e..b8785ce 100644 --- a/src/game/src/main.cpp +++ b/src/game/src/main.cpp @@ -674,7 +674,7 @@ int start(int argc, char **argv) } else { - SPDLOG_INFO("MasterAuth {}", (int) LC_GetLocalType()); + SPDLOG_INFO("MasterAuth"); } } /* game server to spam server */ diff --git a/src/game/src/party.cpp b/src/game/src/party.cpp index 063c809..430c5a2 100644 --- a/src/game/src/party.cpp +++ b/src/game/src/party.cpp @@ -1684,7 +1684,7 @@ int CParty::ComputePartyBonusExpPercent() iBonusPartyExpFromItem = 30; } - return iBonusPartyExpFromItem + CHN_aiPartyBonusExpPercentByMemberCount[iMemberCount]; + return iBonusPartyExpFromItem + aiPartyBonusExpPercentByMemberCount[iMemberCount]; // END_OF_UPGRADE_PARTY_BONUS } diff --git a/src/game/src/questlua.cpp b/src/game/src/questlua.cpp index 4dc4fc4..e28177e 100644 --- a/src/game/src/questlua.cpp +++ b/src/game/src/questlua.cpp @@ -513,7 +513,7 @@ namespace quest { char translateFileName[256]; - snprintf(translateFileName, sizeof(translateFileName), "%s/translate.lua", LocaleService_GetBasePath().c_str()); + snprintf(translateFileName, sizeof(translateFileName), "%s/translate_%s.lua", LocaleService_GetBasePath().c_str(), g_stLanguage.c_str()); int translateLoadingResult = lua_dofile(L, translateFileName); SPDLOG_DEBUG("LoadTranslate({}), returns {}", translateFileName, translateLoadingResult);