├── .appveyor.yml
├── .editorconfig
├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug.yaml
│ ├── config.yml
│ ├── i-want-to-help.md
│ ├── map-issues.md
│ ├── missing-feature.md
│ └── missing-wrong-content.md
├── PULL_REQUEST_TEMPLATE.md
├── labeler.yml
└── workflows
│ ├── build-ubuntu.yml
│ ├── build-windows.yml
│ ├── codacy-analysis.yml
│ ├── codeql-analysis.yml
│ ├── labeler.yml
│ ├── reviewdog.yml
│ └── stale.yml
├── .gitignore
├── .reviewdog.yml
├── .travis.yml
├── CMakeLists.txt
├── CMakeSettings.json
├── CODE_OF_CONDUCT.md
├── Jenkinsfile
├── LICENSE
├── README.md
├── cmake
├── FindCryptoPP.cmake
├── FindGMP.cmake
├── FindLua.cmake
├── FindLuaJIT.cmake
├── FindMySQL.cmake
├── FindPugiXML.cmake
├── LoggingHelper.cmake
├── MessageColors.cmake
├── git_watcher.cmake
├── gitmetadata.h.in
├── otservbr-global.ico
└── otservbr-global.rc
├── config.lua.dist
├── data
├── XML
│ ├── events.xml
│ ├── familiars.xml
│ ├── groups.xml
│ ├── imbuements.xml
│ ├── mounts.xml
│ ├── outfits.xml
│ └── vocations.xml
├── chatchannels
│ ├── chatchannels.xml
│ └── scripts
│ │ ├── advertising-rook.lua
│ │ ├── advertising.lua
│ │ ├── english_chat.lua
│ │ ├── gamemaster.lua
│ │ ├── guild_leaders.lua
│ │ ├── help.lua
│ │ ├── loot.lua
│ │ ├── tutor.lua
│ │ └── world_chat.lua
├── events
│ ├── events.xml
│ └── scripts
│ │ ├── creature.lua
│ │ ├── monster.lua
│ │ ├── party.lua
│ │ ├── player.lua
│ │ └── scheduler
│ │ └── example.lua
├── global.lua
├── items
│ ├── items.otb
│ └── items.xml
├── lib
│ ├── compat
│ │ └── compat.lua
│ ├── core
│ │ ├── bit.lua
│ │ ├── combat.lua
│ │ ├── constants.lua
│ │ ├── container.lua
│ │ ├── core.lua
│ │ ├── creature.lua
│ │ ├── functions.lua
│ │ ├── game.lua
│ │ ├── imbuements.lua
│ │ ├── item.lua
│ │ ├── itemtype.lua
│ │ ├── monster.lua
│ │ ├── party.lua
│ │ ├── player.lua
│ │ ├── position.lua
│ │ ├── quests.lua
│ │ ├── storages.lua
│ │ ├── string.lua
│ │ ├── tables.lua
│ │ ├── teleport.lua
│ │ ├── tile.lua
│ │ └── vocation.lua
│ ├── debugging
│ │ └── dump.lua
│ ├── lib.lua
│ ├── others
│ │ ├── bath_tube.lua
│ │ ├── daily_reward_lib.lua
│ │ ├── dawnport_lib.lua
│ │ ├── modal_window_lib.lua
│ │ ├── others.lua
│ │ └── reward_boss_lib.lua
│ ├── quests
│ │ ├── bigfoot_burden.lua
│ │ ├── demon_oak.lua
│ │ ├── killing_in_the_name_of.lua
│ │ ├── quest.lua
│ │ ├── svargrond_arena.lua
│ │ ├── the_cursed_crystal.lua
│ │ ├── the_queen_of_the_banshees.lua
│ │ └── their_masters_voice.lua
│ └── tables
│ │ ├── achievements_lib.lua
│ │ ├── door.lua
│ │ ├── exercise_training.lua
│ │ ├── hireling_items.lua
│ │ ├── table.lua
│ │ ├── teleport_item_destinations.lua
│ │ ├── town.lua
│ │ ├── vocation.lua
│ │ └── window.lua
├── logs
│ └── .gitignore
├── migrations
│ ├── 0.lua
│ ├── 1.lua
│ ├── 10.lua
│ ├── 11.lua
│ ├── 12.lua
│ ├── 13.lua
│ ├── 14.lua
│ ├── 15.lua
│ ├── 16.lua
│ ├── 17.lua
│ ├── 18.lua
│ ├── 2.lua
│ ├── 3.lua
│ ├── 4.lua
│ ├── 5.lua
│ ├── 6.lua
│ ├── 7.lua
│ ├── 8.lua
│ └── 9.lua
├── modules
│ ├── lib
│ │ └── modules.lua
│ ├── modules.xml
│ └── scripts
│ │ ├── blessings
│ │ ├── assets.lua
│ │ └── blessings.lua
│ │ ├── cults_of_tibia
│ │ └── death.lua
│ │ ├── daily_reward
│ │ └── daily_reward.lua
│ │ ├── gamestore
│ │ ├── gamestore.lua
│ │ ├── init.lua
│ │ └── readme.md
│ │ ├── hirelings
│ │ └── hireling_module.lua
│ │ ├── prey_system
│ │ ├── assets.lua
│ │ └── prey.lua
│ │ └── questtrack
│ │ └── questtrack.lua
├── monster
│ ├── amphibics
│ │ ├── azure_frog.lua
│ │ ├── bog_frog.lua
│ │ ├── coral_frog.lua
│ │ ├── crimson_frog.lua
│ │ ├── deathspawn.lua
│ │ ├── filth_toad.lua
│ │ ├── green_frog.lua
│ │ ├── infernal_frog.lua
│ │ ├── orchid_frog.lua
│ │ ├── salamander.lua
│ │ └── toad.lua
│ ├── aquatics
│ │ ├── abyssal_calamary.lua
│ │ ├── blood_crab.lua
│ │ ├── calamary.lua
│ │ ├── crab.lua
│ │ ├── crustacea_gigantica.lua
│ │ ├── deathling_scout.lua
│ │ ├── deathling_spellsinger.lua
│ │ ├── deepling_brawler.lua
│ │ ├── deepling_elite.lua
│ │ ├── deepling_guard.lua
│ │ ├── deepling_master_librarian.lua
│ │ ├── deepling_scout.lua
│ │ ├── deepling_spellsinger.lua
│ │ ├── deepling_tyrant.lua
│ │ ├── deepling_warrior.lua
│ │ ├── deepling_worker.lua
│ │ ├── deepsea_blood_crab.lua
│ │ ├── fish.lua
│ │ ├── jellyfish.lua
│ │ ├── manta_ray.lua
│ │ ├── northern_pike.lua
│ │ ├── quara_constrictor.lua
│ │ ├── quara_constrictor_scout.lua
│ │ ├── quara_hydromancer.lua
│ │ ├── quara_hydromancer_scout.lua
│ │ ├── quara_mantassin.lua
│ │ ├── quara_mantassin_scout.lua
│ │ ├── quara_pincher.lua
│ │ ├── quara_pincher_scout.lua
│ │ ├── quara_predator.lua
│ │ ├── quara_predator_scout.lua
│ │ ├── renegade_quara_constrictor.lua
│ │ ├── renegade_quara_hydromancer.lua
│ │ ├── renegade_quara_mantassin.lua
│ │ ├── renegade_quara_pincher.lua
│ │ ├── renegade_quara_predator.lua
│ │ └── shark.lua
│ ├── birds
│ │ ├── agressive_chicken.lua
│ │ ├── agrestic_chicken.lua
│ │ ├── berserker_chicken.lua
│ │ ├── cave_parrot.lua
│ │ ├── chicken.lua
│ │ ├── demon_parrot.lua
│ │ ├── dire_penguin.lua
│ │ ├── flamingo.lua
│ │ ├── marsh_stalker.lua
│ │ ├── parrot.lua
│ │ ├── penguin.lua
│ │ ├── pigeon.lua
│ │ ├── seagull.lua
│ │ └── terror_bird.lua
│ ├── bosses
│ │ ├── ancient_lion_archer.lua
│ │ ├── ancient_lion_knight.lua
│ │ ├── ancient_lion_warlock.lua
│ │ ├── apocalypse.lua
│ │ ├── apprentice_sheng.lua
│ │ ├── armenius.lua
│ │ ├── bazir.lua
│ │ ├── bibby_bloodbath.lua
│ │ ├── big_boss_trolliver.lua
│ │ ├── black_knight.lua
│ │ ├── bullwark.lua
│ │ ├── chikhaton.lua
│ │ ├── clubarc_the_plunderer.lua
│ │ ├── custodian.lua
│ │ ├── dharalion.lua
│ │ ├── diblis_the_fair.lua
│ │ ├── diseased_bill.lua
│ │ ├── diseased_dan.lua
│ │ ├── diseased_fred.lua
│ │ ├── ekatrix.lua
│ │ ├── energized_raging_mage.lua
│ │ ├── fleshslicer.lua
│ │ ├── freegoiz.lua
│ │ ├── gaffir.lua
│ │ ├── general_murius.lua
│ │ ├── glitterscale.lua
│ │ ├── grandfather_tridian.lua
│ │ ├── gravelord_oshuran.lua
│ │ ├── groam.lua
│ │ ├── guard_captain_quaid.lua
│ │ ├── hairman_the_huge.lua
│ │ ├── heoni.lua
│ │ ├── incredibly_old_witch.lua
│ │ ├── infernatil.lua
│ │ ├── jesse_the_wicked.lua
│ │ ├── koshei_the_deathless.lua
│ │ ├── kraknaknork's_demon.lua
│ │ ├── kraknaknork.lua
│ │ ├── kroazur.lua
│ │ ├── lisa.lua
│ │ ├── mad_mage.lua
│ │ ├── mad_technomancer.lua
│ │ ├── morik_the_gladiator.lua
│ │ ├── munster.lua
│ │ ├── pythius_the_rotten.lua
│ │ ├── raging_mage.lua
│ │ ├── raxias.lua
│ │ ├── renegade_orc.lua
│ │ ├── robby_the_reckless.lua
│ │ ├── rukor_zad.lua
│ │ ├── smuggler_baron_silvertoe.lua
│ │ ├── spider_queen.lua
│ │ ├── splasher.lua
│ │ ├── teleskor.lua
│ │ ├── the_abomination.lua
│ │ ├── the_astral_source.lua
│ │ ├── the_blightfather.lua
│ │ ├── the_book_of_death.lua
│ │ ├── the_collector.lua
│ │ ├── the_evil_eye.lua
│ │ ├── the_first_dragon.lua
│ │ ├── the_frog_prince.lua
│ │ ├── verminor.lua
│ │ ├── visco.lua
│ │ ├── warlord_ruzad.lua
│ │ ├── weakened_demon.lua
│ │ ├── weakened_shlorg.lua
│ │ ├── williwasp.lua
│ │ ├── yaga_the_crone.lua
│ │ ├── zamuloshsummom.lua
│ │ ├── zarabustor.lua
│ │ ├── zavarash.lua
│ │ ├── zevelon_duskbringer.lua
│ │ ├── zoralurk.lua
│ │ └── zushuka.lua
│ ├── constructs
│ │ ├── animated_snowman.lua
│ │ ├── biting_book.lua
│ │ ├── clay_guardian.lua
│ │ ├── damaged_crystal_golem.lua
│ │ ├── damaged_worker_golem.lua
│ │ ├── diamond_servant.lua
│ │ ├── diamond_servant_replica.lua
│ │ ├── enraged_crystal_golem.lua
│ │ ├── eternal_guardian.lua
│ │ ├── glooth_golem.lua
│ │ ├── golden_servant.lua
│ │ ├── golden_servant_replica.lua
│ │ ├── ice_golem.lua
│ │ ├── infected_weeper.lua
│ │ ├── iron_servant.lua
│ │ ├── iron_servant_replica.lua
│ │ ├── lava_golem.lua
│ │ ├── magma_crawler.lua
│ │ ├── metal_gargoyle.lua
│ │ ├── orewalker.lua
│ │ ├── rotten_golem.lua
│ │ ├── rustheap_golem.lua
│ │ ├── sandstone_scorpion.lua
│ │ ├── stone_devourer.lua
│ │ ├── stone_golem.lua
│ │ ├── walker.lua
│ │ ├── war_golem.lua
│ │ ├── weeper.lua
│ │ └── worker_golem.lua
│ ├── dawnport
│ │ ├── brittle_skeleton.lua
│ │ ├── crazed_dwarf.lua
│ │ ├── dawn_bat.lua
│ │ ├── dawn_scorpion.lua
│ │ ├── dawnfly.lua
│ │ ├── juvenile_cyclops.lua
│ │ ├── lesser_fire_devil.lua
│ │ ├── meadow_strider.lua
│ │ ├── mountain_troll.lua
│ │ ├── muglex_clan_assassin.lua
│ │ ├── muglex_clan_footman.lua
│ │ ├── muglex_clan_scavenger.lua
│ │ ├── sacred_snake.lua
│ │ ├── salamander_trainer.lua
│ │ ├── scar_tribe_shaman.lua
│ │ ├── scar_tribe_warrior.lua
│ │ ├── spidris_elitesumom.lua
│ │ ├── troll-trained_salamander.lua
│ │ ├── troll_marauder.lua
│ │ ├── weakened_shlorg.lua
│ │ └── woodling.lua
│ ├── demons
│ │ ├── askarak_demon.lua
│ │ ├── askarak_lord.lua
│ │ ├── askarak_prince.lua
│ │ ├── brachiodemon.lua
│ │ ├── dark_torturer.lua
│ │ ├── dawnfire_asura.lua
│ │ ├── demon.lua
│ │ ├── demon_outcast.lua
│ │ ├── destroyer.lua
│ │ ├── diabolic_imp.lua
│ │ ├── duskbringer.lua
│ │ ├── fire_devil.lua
│ │ ├── floating_savant.lua
│ │ ├── frost_flower_asura.lua
│ │ ├── fury.lua
│ │ ├── gozzler.lua
│ │ ├── grimeleech.lua
│ │ ├── hellfire_fighter.lua
│ │ ├── hellflayer.lua
│ │ ├── hellhound.lua
│ │ ├── hellspawn.lua
│ │ ├── herald_of_gloom.lua
│ │ ├── infernal_demon.lua
│ │ ├── juggernaut.lua
│ │ ├── many_faces.lua
│ │ ├── midnight_asura.lua
│ │ ├── nightfiend.lua
│ │ ├── plaguesmith.lua
│ │ ├── shaburak_demon.lua
│ │ ├── shaburak_lord.lua
│ │ ├── shaburak_prince.lua
│ │ ├── shadow_hound.lua
│ │ ├── true_dawnfire_asura.lua
│ │ ├── true_frost_flower_asura.lua
│ │ ├── true_midnight_asura.lua
│ │ └── vexclaw.lua
│ ├── dragons
│ │ ├── dragon.lua
│ │ ├── dragon_hatchling.lua
│ │ ├── dragon_lord.lua
│ │ ├── dragon_lord_hatchling.lua
│ │ ├── draken_abomination.lua
│ │ ├── draken_elite.lua
│ │ ├── draken_spellweaver.lua
│ │ ├── draken_warmaster.lua
│ │ ├── elder_wyrm.lua
│ │ ├── frost_dragon.lua
│ │ ├── frost_dragon_hatchling.lua
│ │ ├── ghastly_dragon.lua
│ │ ├── haunted_dragon.lua
│ │ ├── hydra.lua
│ │ ├── ice_dragon.lua
│ │ └── wyrm.lua
│ ├── elementals
│ │ ├── cliff_strider.lua
│ │ ├── earth_elemental.lua
│ │ ├── energy_elemental.lua
│ │ ├── fire_elemental.lua
│ │ ├── high_voltage_elemental.lua
│ │ ├── ironblight.lua
│ │ ├── knowledge_elemental.lua
│ │ ├── lava_lurker.lua
│ │ ├── massive_earth_elemental.lua
│ │ ├── massive_energy_elemental.lua
│ │ ├── massive_fire_elemental.lua
│ │ ├── massive_water_elemental.lua
│ │ ├── raging_fire.lua
│ │ ├── ravenous_lava_lurker.lua
│ │ ├── turbulent_elemental.lua
│ │ └── water_elemental.lua
│ ├── event_creatures
│ │ ├── bones.lua
│ │ ├── eclipse_knight.lua
│ │ ├── essence_of_darkness.lua
│ │ ├── fluffy.lua
│ │ ├── grynch_clan_goblin.lua
│ │ ├── hacker.lua
│ │ ├── minishabaal.lua
│ │ ├── party_skeleton.lua
│ │ ├── pinata_dragon.lua
│ │ ├── primitive.lua
│ │ ├── spectral_scum.lua
│ │ ├── the_halloween_hare.lua
│ │ ├── the_mutated_pumpkin.lua
│ │ └── undead_minion.lua
│ ├── extra_dimensional
│ │ ├── breach_brood.lua
│ │ ├── courage_leech.lua
│ │ ├── dread_intruder.lua
│ │ ├── instable_breach_brood.lua
│ │ ├── instable_sparkion.lua
│ │ ├── reality_reaver.lua
│ │ ├── sparkion.lua
│ │ ├── stabilizing_dread_intruder.lua
│ │ ├── stabilizing_reality_reaver.lua
│ │ └── yielothax.lua
│ ├── fey
│ │ ├── arctic_faun.lua
│ │ ├── boogy.lua
│ │ ├── dark_faun.lua
│ │ ├── dryad.lua
│ │ ├── faun.lua
│ │ ├── nymph.lua
│ │ ├── pixie.lua
│ │ ├── pooka.lua
│ │ ├── swan_maiden.lua
│ │ ├── tainted_soul.lua
│ │ ├── twisted_pooka.lua
│ │ └── wisp.lua
│ ├── giants
│ │ ├── behemoth.lua
│ │ ├── cyclops.lua
│ │ ├── cyclops_drone.lua
│ │ ├── cyclops_smith.lua
│ │ ├── frost_giant.lua
│ │ ├── frost_giantess.lua
│ │ ├── ogre_brute.lua
│ │ ├── ogre_rowdy.lua
│ │ ├── ogre_ruffian.lua
│ │ ├── ogre_sage.lua
│ │ ├── ogre_savage.lua
│ │ ├── ogre_shaman.lua
│ │ ├── orclops_doomhauler.lua
│ │ └── orclops_ravager.lua
│ ├── humanoids
│ │ ├── broken_shaper.lua
│ │ ├── chakoya_toolshaper.lua
│ │ ├── chakoya_tribewarden.lua
│ │ ├── chakoya_windcaller.lua
│ │ ├── cheese_thief.lua
│ │ ├── corym_charlatan.lua
│ │ ├── corym_skirmisher.lua
│ │ ├── corym_vanguard.lua
│ │ ├── crazed_summer_rearguard.lua
│ │ ├── crazed_summer_vanguard.lua
│ │ ├── crazed_winter_rearguard.lua
│ │ ├── crazed_winter_vanguard.lua
│ │ ├── dwarf.lua
│ │ ├── dwarf_geomancer.lua
│ │ ├── dwarf_guard.lua
│ │ ├── dwarf_miner.lua
│ │ ├── dwarf_soldier.lua
│ │ ├── dworc_fleshhunter.lua
│ │ ├── dworc_venomsniper.lua
│ │ ├── dworc_voodoomaster.lua
│ │ ├── elf.lua
│ │ ├── elf_arcanist.lua
│ │ ├── elf_scout.lua
│ │ ├── elite_pirat.lua
│ │ ├── enslaved_dwarf.lua
│ │ ├── execowtioner.lua
│ │ ├── firestarter.lua
│ │ ├── frost_troll.lua
│ │ ├── furious_orc_berserker.lua
│ │ ├── furious_troll.lua
│ │ ├── glooth_powered_minotaur.lua
│ │ ├── goblin.lua
│ │ ├── goblin_assassin.lua
│ │ ├── goblin_leader.lua
│ │ ├── goblin_scavenger.lua
│ │ ├── insane_siren.lua
│ │ ├── island_troll.lua
│ │ ├── little_corym_charlatan.lua
│ │ ├── lost_basher.lua
│ │ ├── lost_berserker.lua
│ │ ├── lost_exile.lua
│ │ ├── lost_husher.lua
│ │ ├── lost_thrower.lua
│ │ ├── minotaur.lua
│ │ ├── minotaur_amazon.lua
│ │ ├── minotaur_archer.lua
│ │ ├── minotaur_bruiser.lua
│ │ ├── minotaur_cult_follower.lua
│ │ ├── minotaur_cult_prophet.lua
│ │ ├── minotaur_cult_zealot.lua
│ │ ├── minotaur_guard.lua
│ │ ├── minotaur_hunter.lua
│ │ ├── minotaur_invader.lua
│ │ ├── minotaur_mage.lua
│ │ ├── minotaur_occultist.lua
│ │ ├── minotaur_poacher.lua
│ │ ├── minotaur_totem.lua
│ │ ├── mooh'tah_warrior.lua
│ │ ├── moohtant.lua
│ │ ├── orc.lua
│ │ ├── orc_berserker.lua
│ │ ├── orc_leader.lua
│ │ ├── orc_marauder.lua
│ │ ├── orc_rider.lua
│ │ ├── orc_shaman.lua
│ │ ├── orc_spearman.lua
│ │ ├── orc_warlord.lua
│ │ ├── orc_warrior.lua
│ │ ├── pirat_artillerist.lua
│ │ ├── pirat_bombardier.lua
│ │ ├── pirat_cutthroat.lua
│ │ ├── pirat_mate.lua
│ │ ├── pirat_scoundrel.lua
│ │ ├── running_elite_orc_guard.lua
│ │ ├── shaper_matriarch.lua
│ │ ├── soul-broken_harbinger.lua
│ │ ├── swamp_troll.lua
│ │ ├── troll.lua
│ │ ├── troll_champion.lua
│ │ ├── troll_guard.lua
│ │ ├── troll_legionnaire.lua
│ │ ├── twisted_shaper.lua
│ │ ├── worm_priestess.lua
│ │ └── young_troll.lua
│ ├── humans
│ │ ├── acolyte_of_darkness.lua
│ │ ├── acolyte_of_the_cult.lua
│ │ ├── adept_of_the_cult.lua
│ │ ├── adventurer.lua
│ │ ├── amazon.lua
│ │ ├── angry_adventurer.lua
│ │ ├── assassin.lua
│ │ ├── bandit.lua
│ │ ├── barbarian_bloodwalker.lua
│ │ ├── barbarian_brutetamer.lua
│ │ ├── barbarian_headsplitter.lua
│ │ ├── barbarian_skullhunter.lua
│ │ ├── black_sphinx_acolyte.lua
│ │ ├── blood_hand.lua
│ │ ├── blood_priest.lua
│ │ ├── burning_gladiator.lua
│ │ ├── cobra_assassin.lua
│ │ ├── cobra_scout.lua
│ │ ├── cobra_vizier.lua
│ │ ├── crazed_beggar.lua
│ │ ├── crypt_defiler.lua
│ │ ├── dark_apprentice.lua
│ │ ├── dark_magician.lua
│ │ ├── dark_monk.lua
│ │ ├── enlightened_of_the_cult.lua
│ │ ├── feverish_citizen.lua
│ │ ├── gang_member.lua
│ │ ├── gladiator.lua
│ │ ├── glooth_bandit.lua
│ │ ├── glooth_brigand.lua
│ │ ├── grave_robber.lua
│ │ ├── hardened_usurper_archer.lua
│ │ ├── hardened_usurper_knight.lua
│ │ ├── hardened_usurper_warlock.lua
│ │ ├── hero.lua
│ │ ├── hunter.lua
│ │ ├── ice_witch.lua
│ │ ├── infernalist.lua
│ │ ├── lion_archer.lua
│ │ ├── lion_knight.lua
│ │ ├── lion_warlock.lua
│ │ ├── mad_scientist.lua
│ │ ├── monk.lua
│ │ ├── monk_of_the_order.lua
│ │ ├── mutated_human.lua
│ │ ├── necromancer.lua
│ │ ├── necromancer_servant.lua
│ │ ├── nomad.lua
│ │ ├── nomad_female.lua
│ │ ├── nomadfemale.lua
│ │ ├── novice_of_the_cult.lua
│ │ ├── pirate_buccaneer.lua
│ │ ├── pirate_corsair.lua
│ │ ├── pirate_cutthroat.lua
│ │ ├── pirate_marauder.lua
│ │ ├── poacher.lua
│ │ ├── priestess.lua
│ │ ├── priestess_of_the_wild_sun.lua
│ │ ├── renegade_knight.lua
│ │ ├── shadow_pupil.lua
│ │ ├── smuggler.lua
│ │ ├── stalker.lua
│ │ ├── usurper_archer.lua
│ │ ├── usurper_knight.lua
│ │ ├── usurper_warlock.lua
│ │ ├── valkyrie.lua
│ │ ├── vicious_squire.lua
│ │ ├── vile_grandmaster.lua
│ │ ├── warlock.lua
│ │ ├── wild_warrior.lua
│ │ └── witch.lua
│ ├── lycanthropes
│ │ ├── werebadger.lua
│ │ ├── werebear.lua
│ │ ├── wereboar.lua
│ │ ├── werefox.lua
│ │ ├── werehyaena.lua
│ │ ├── werehyaena_shaman.lua
│ │ ├── werelion.lua
│ │ ├── werelioness.lua
│ │ └── werewolf.lua
│ ├── magicals
│ │ ├── animated_feather.lua
│ │ ├── arachnophobica.lua
│ │ ├── armadile.lua
│ │ ├── blue_djinn.lua
│ │ ├── bog_raider.lua
│ │ ├── bonelord.lua
│ │ ├── brain_squid.lua
│ │ ├── braindeath.lua
│ │ ├── burning_book.lua
│ │ ├── choking_fear.lua
│ │ ├── crypt_warden.lua
│ │ ├── crystalcrusher.lua
│ │ ├── cursed_book.lua
│ │ ├── dragonling.lua
│ │ ├── efreet.lua
│ │ ├── elder_bonelord.lua
│ │ ├── energetic_book.lua
│ │ ├── energuardian_of_tales.lua
│ │ ├── enfeebled_silencer.lua
│ │ ├── fahim_the_wise.lua
│ │ ├── feral_sphinx.lua
│ │ ├── feversleep.lua
│ │ ├── flying_book.lua
│ │ ├── forest_fury.lua
│ │ ├── frazzlemaw.lua
│ │ ├── gargoyle.lua
│ │ ├── gazer.lua
│ │ ├── green_djinn.lua
│ │ ├── gryphon.lua
│ │ ├── guardian_of_tales.lua
│ │ ├── guzzlemaw.lua
│ │ ├── icecold_book.lua
│ │ ├── lamassu.lua
│ │ ├── lumbering_carnivor.lua
│ │ ├── manticore.lua
│ │ ├── marid.lua
│ │ ├── medusa.lua
│ │ ├── menacing_carnivor.lua
│ │ ├── midnight_panther.lua
│ │ ├── nightmare.lua
│ │ ├── nightmare_scion.lua
│ │ ├── nightstalker.lua
│ │ ├── phantasm.lua
│ │ ├── phantasm_summon.lua
│ │ ├── rage_squid.lua
│ │ ├── retching_horror.lua
│ │ ├── rorc.lua
│ │ ├── shiversleep.lua
│ │ ├── shock_head.lua
│ │ ├── sight_of_surrender.lua
│ │ ├── silencer.lua
│ │ ├── sphinx.lua
│ │ ├── spiky_carnivor.lua
│ │ ├── squid_warden.lua
│ │ ├── terrorsleep.lua
│ │ ├── thanatursus.lua
│ │ └── weakened_frazzlemaw.lua
│ ├── mammals
│ │ ├── badger.lua
│ │ ├── bat.lua
│ │ ├── bear.lua
│ │ ├── black_sheep.lua
│ │ ├── boar.lua
│ │ ├── brown_horse.lua
│ │ ├── cat.lua
│ │ ├── cave_rat.lua
│ │ ├── clomp.lua
│ │ ├── crystal_wolf.lua
│ │ ├── deer.lua
│ │ ├── desperate_white_deer.lua
│ │ ├── dog.lua
│ │ ├── donkey.lua
│ │ ├── doom_deer.lua
│ │ ├── dromedary.lua
│ │ ├── elephant.lua
│ │ ├── enraged_squirrel.lua
│ │ ├── enraged_white_deer.lua
│ │ ├── evil_sheep.lua
│ │ ├── evil_sheep_lord.lua
│ │ ├── exotic_bat.lua
│ │ ├── fox.lua
│ │ ├── ghost_wolf.lua
│ │ ├── ghoulish_hyaena.lua
│ │ ├── gloom_wolf.lua
│ │ ├── gnarlhound.lua
│ │ ├── grey_horse.lua
│ │ ├── horse.lua
│ │ ├── hot_dog.lua
│ │ ├── husky.lua
│ │ ├── hyaena.lua
│ │ ├── killer_rabbit.lua
│ │ ├── kongra.lua
│ │ ├── lion.lua
│ │ ├── mammoth.lua
│ │ ├── merlkin.lua
│ │ ├── modified_gnarlhound.lua
│ │ ├── mole.lua
│ │ ├── mushroom_sniffer.lua
│ │ ├── mutated_bat.lua
│ │ ├── mutated_rat.lua
│ │ ├── mutated_tiger.lua
│ │ ├── noble_lion.lua
│ │ ├── panda.lua
│ │ ├── pig.lua
│ │ ├── polar_bear.lua
│ │ ├── poodle.lua
│ │ ├── rabbit.lua
│ │ ├── rat.lua
│ │ ├── roaring_lion.lua
│ │ ├── sheep.lua
│ │ ├── sibang.lua
│ │ ├── silver_rabbit.lua
│ │ ├── skunk.lua
│ │ ├── squirrel.lua
│ │ ├── starving_wolf.lua
│ │ ├── stone_rhino.lua
│ │ ├── terrified_elephant.lua
│ │ ├── thieving_squirrel.lua
│ │ ├── thornfire_wolf.lua
│ │ ├── tiger.lua
│ │ ├── vampire_pig.lua
│ │ ├── vulcongra.lua
│ │ ├── war_wolf.lua
│ │ ├── water_buffalo.lua
│ │ ├── white_deer.lua
│ │ ├── white_lion.lua
│ │ ├── wild_dog.lua
│ │ ├── wild_horse.lua
│ │ ├── winter_wolf.lua
│ │ ├── wolf.lua
│ │ └── yeti.lua
│ ├── nostalgia
│ │ ├── old_bear.lua
│ │ ├── old_bonelord.lua
│ │ ├── old_bug.lua
│ │ ├── old_giant_spider.lua
│ │ ├── old_pig.lua
│ │ ├── old_spider.lua
│ │ ├── old_wasp.lua
│ │ └── old_wolf.lua
│ ├── plants
│ │ ├── bane_bringer.lua
│ │ ├── branchy_crawler.lua
│ │ ├── carniphila.lua
│ │ ├── cloak_of_terror.lua
│ │ ├── glooth_anemone.lua
│ │ ├── haunted_treeling.lua
│ │ ├── hideous_fungus.lua
│ │ ├── humongous_fungus.lua
│ │ ├── leaf_golem.lua
│ │ ├── omnivora.lua
│ │ ├── spit_nettle.lua
│ │ ├── swampling.lua
│ │ └── wilting_leaf_golem.lua
│ ├── quests
│ │ ├── a_pirates_tail_quest
│ │ │ └── tentuglys_head.lua
│ │ ├── ancient_tombs
│ │ │ ├── ashmunrah.lua
│ │ │ ├── dipthrah.lua
│ │ │ ├── horestis.lua
│ │ │ ├── mahrdis.lua
│ │ │ ├── morguthis.lua
│ │ │ ├── omruc.lua
│ │ │ ├── rahemos.lua
│ │ │ ├── shredderthrower.lua
│ │ │ ├── thalas.lua
│ │ │ └── vashresamun.lua
│ │ ├── annihilator
│ │ │ └── angry_demon.lua
│ │ ├── bigfoots_burden
│ │ │ ├── bosses
│ │ │ │ ├── abyssador.lua
│ │ │ │ ├── deathstrike.lua
│ │ │ │ └── gnomevil.lua
│ │ │ ├── humorless_fungus.lua
│ │ │ ├── minion_of_versperoth.lua
│ │ │ ├── strange_slime.lua
│ │ │ └── versperoth.lua
│ │ ├── cults_of_tibia
│ │ │ ├── animated_clomp.lua
│ │ │ ├── animated_cyclops.lua
│ │ │ ├── animated_guzzlemaw.lua
│ │ │ ├── animated_moohtant.lua
│ │ │ ├── animated_mummy.lua
│ │ │ ├── animated_ogre_brute.lua
│ │ │ ├── animated_ogre_savage.lua
│ │ │ ├── animated_ogre_shaman.lua
│ │ │ ├── animated_rhino.lua
│ │ │ ├── animated_rotworm.lua
│ │ │ ├── animated_skunk.lua
│ │ │ ├── animated_stone_golem.lua
│ │ │ ├── barkless_devotee.lua
│ │ │ ├── barkless_fanatic.lua
│ │ │ ├── bosses
│ │ │ │ ├── dorokoll_the_mystic.lua
│ │ │ │ ├── dorokoll_the_mystic_stop.lua
│ │ │ │ ├── eliz_the_unyielding.lua
│ │ │ │ ├── eliz_the_unyielding_stop.lua
│ │ │ │ ├── eshtaba_the_conjurer.lua
│ │ │ │ ├── eshtaba_the_conjurer_stop.lua
│ │ │ │ ├── essence_of_malice.lua
│ │ │ │ ├── last_planegazer.lua
│ │ │ │ ├── leiden.lua
│ │ │ │ ├── malkhar_deathbringer.lua
│ │ │ │ ├── malkhar_deathbringer_stop.lua
│ │ │ │ ├── mezlon_the_defiler.lua
│ │ │ │ ├── mezlon_the_defiler_stop.lua
│ │ │ │ ├── pillars
│ │ │ │ │ ├── containment_crystal.lua
│ │ │ │ │ ├── destroyed_pillar.lua
│ │ │ │ │ ├── pillar_of_death.lua
│ │ │ │ │ ├── pillar_of_draining.lua
│ │ │ │ │ ├── pillar_of_healing.lua
│ │ │ │ │ ├── pillar_of_protection.lua
│ │ │ │ │ └── pillar_of_summoning.lua
│ │ │ │ ├── ravennous_hunger.lua
│ │ │ │ ├── summons
│ │ │ │ │ ├── dark_soul.lua
│ │ │ │ │ ├── dread_minion.lua
│ │ │ │ │ ├── enraged_sand_brood.lua
│ │ │ │ │ ├── freed_soul.lua
│ │ │ │ │ ├── liquor_spirit.lua
│ │ │ │ │ ├── sand_brood.lua
│ │ │ │ │ ├── sand_vortex.lua
│ │ │ │ │ ├── security_golem.lua
│ │ │ │ │ ├── soul_reaper.lua
│ │ │ │ │ ├── sphere_of_wrath.lua
│ │ │ │ │ ├── stolen_soul.lua
│ │ │ │ │ ├── vermin_swarm.lua
│ │ │ │ │ └── voidshard.lua
│ │ │ │ ├── the_armored_voidborn.lua
│ │ │ │ ├── the_corruptor_of_souls.lua
│ │ │ │ ├── the_false_god.lua
│ │ │ │ ├── the_remorseless_corruptor.lua
│ │ │ │ ├── the_sandking.lua
│ │ │ │ ├── the_sandking_fake.lua
│ │ │ │ ├── the_sinister_hermit_clean.lua
│ │ │ │ ├── the_sinister_hermit_dirty.lua
│ │ │ │ ├── the_souldespoiler.lua
│ │ │ │ ├── the_source_of_corruption.lua
│ │ │ │ ├── the_unarmored_voidborn.lua
│ │ │ │ ├── wine_cask.lua
│ │ │ │ └── zarcorix_of_yalahar.lua
│ │ │ ├── containment_machine.lua
│ │ │ ├── cult_believer.lua
│ │ │ ├── cult_enforcer.lua
│ │ │ ├── cult_scholar.lua
│ │ │ ├── goldhanded_cultist.lua
│ │ │ ├── minotaur_idol.lua
│ │ │ ├── misguided_bully.lua
│ │ │ ├── misguided_shadow.lua
│ │ │ ├── misguided_thief.lua
│ │ │ ├── orc_cult_fanatic.lua
│ │ │ ├── orc_cult_inquisitor.lua
│ │ │ ├── orc_cult_minion.lua
│ │ │ ├── orc_cult_priest.lua
│ │ │ └── orc_cultist.lua
│ │ ├── dangerous_depth
│ │ │ ├── aggressive_lava.lua
│ │ │ ├── aggressive_matter.lua
│ │ │ ├── bosses
│ │ │ │ ├── ancient_spawn_of_morgathla.lua
│ │ │ │ ├── the_baron_from_below.lua
│ │ │ │ ├── the_count_of_the_core.lua
│ │ │ │ ├── the_duke_of_the_depths.lua
│ │ │ │ ├── the_duke_of_the_depths_immortal.lua
│ │ │ │ └── the_hungry_baron_from_below.lua
│ │ │ ├── captured_dwarf.lua
│ │ │ ├── ember_beast.lua
│ │ │ ├── fiery_blood.lua
│ │ │ ├── fiery_heart.lua
│ │ │ ├── gnome_pack_crawler.lua
│ │ │ ├── lava_lurker_attendant.lua
│ │ │ ├── lost_gnome.lua
│ │ │ ├── makeshift_home.lua
│ │ │ ├── organic_matter.lua
│ │ │ └── snail_slime.lua
│ │ ├── dark_trails
│ │ │ ├── canopic_jar.lua
│ │ │ ├── death_priest_shargon.lua
│ │ │ ├── depowered_minotaur.lua
│ │ │ ├── greater_canopic_jar.lua
│ │ │ ├── greater_death_minion.lua
│ │ │ ├── lesser_death_minion.lua
│ │ │ ├── minotaur_invader.lua
│ │ │ ├── minotaur_totem.lua
│ │ │ ├── superior_death_minion.lua
│ │ │ ├── the_ravager.lua
│ │ │ └── tremor_worm.lua
│ │ ├── feaster_of_souls
│ │ │ ├── irgix_the_flimsy.lua
│ │ │ ├── the_fear_feaster.lua
│ │ │ ├── unaz_the_mean.lua
│ │ │ └── vok_the_freakish.lua
│ │ ├── ferumbras_ascendant
│ │ │ ├── bosses
│ │ │ │ ├── ascending_ferumbras.lua
│ │ │ │ ├── death_dragon.lua
│ │ │ │ ├── destabilized_ferumbras.lua
│ │ │ │ ├── enraged_soul.lua
│ │ │ │ ├── ferumbras_mortal_shell.lua
│ │ │ │ ├── ferumbras_soul_splinter.lua
│ │ │ │ ├── mazoran.lua
│ │ │ │ ├── plagirath.lua
│ │ │ │ ├── ragiaz.lua
│ │ │ │ ├── razzagorn.lua
│ │ │ │ ├── redeemed_soul.lua
│ │ │ │ ├── shulgrax.lua
│ │ │ │ ├── sin_devourer.lua
│ │ │ │ ├── tarbaz.lua
│ │ │ │ ├── the_lord_of_the_lice.lua
│ │ │ │ ├── the_shatterer.lua
│ │ │ │ ├── zamulosh.lua
│ │ │ │ ├── zamulosh2.lua
│ │ │ │ └── zamulosh3.lua
│ │ │ ├── damned_soul.lua
│ │ │ ├── desperate_soul.lua
│ │ │ ├── disgusting_ooze.lua
│ │ │ ├── ferumbras_essence.lua
│ │ │ ├── lovely
│ │ │ │ ├── lovely_deer.lua
│ │ │ │ ├── lovely_frazzlemaw.lua
│ │ │ │ ├── lovely_polar_bear.lua
│ │ │ │ ├── lovely_rotworm.lua
│ │ │ │ ├── lovely_scorpion.lua
│ │ │ │ ├── lovely_snake.lua
│ │ │ │ ├── lovely_souleater.lua
│ │ │ │ └── lovely_yielothax.lua
│ │ │ ├── rage_of_mazoran.lua
│ │ │ ├── summons
│ │ │ │ ├── enthralled_demon.lua
│ │ │ │ ├── rift_fragment.lua
│ │ │ │ └── rift_invader.lua
│ │ │ └── traps
│ │ │ │ ├── bone_capsule.lua
│ │ │ │ ├── despair.lua
│ │ │ │ ├── electric_sparks.lua
│ │ │ │ ├── eruption_of_destruction.lua
│ │ │ │ ├── guilt.lua
│ │ │ │ └── void.lua
│ │ ├── forgotten_knowledge
│ │ │ ├── animated_sword.lua
│ │ │ ├── baby_dragon.lua
│ │ │ ├── bosses
│ │ │ │ ├── dragonking_zyrtarch.lua
│ │ │ │ ├── lady_tenebris.lua
│ │ │ │ ├── lloyd.lua
│ │ │ │ ├── melting_frozen_horror.lua
│ │ │ │ ├── mounted_thorn_knight.lua
│ │ │ │ ├── solid_frozen_horror.lua
│ │ │ │ ├── soul_of_dragonking_zyrtarch.lua
│ │ │ │ ├── the_blazing_time_guardian.lua
│ │ │ │ ├── the_enraged_thorn_knight.lua
│ │ │ │ ├── the_freezing_time_guardian.lua
│ │ │ │ ├── the_last_lore_keeper.lua
│ │ │ │ ├── the_shielded_thorn_knight.lua
│ │ │ │ ├── the_time_guardian.lua
│ │ │ │ └── thorn_steed.lua
│ │ │ ├── bound_astral_power.lua
│ │ │ ├── corrupted_soul.lua
│ │ │ ├── cosmic_energy_prism_a.lua
│ │ │ ├── cosmic_energy_prism_b.lua
│ │ │ ├── cosmic_energy_prism_c.lua
│ │ │ ├── cosmic_energy_prism_d.lua
│ │ │ ├── dragon_egg.lua
│ │ │ ├── dragon_servant.lua
│ │ │ ├── frozen_man.lua
│ │ │ ├── frozen_minion.lua
│ │ │ ├── icicle.lua
│ │ │ ├── lost_time.lua
│ │ │ ├── possessed_tree.lua
│ │ │ ├── shadow_fiend.lua
│ │ │ ├── shadow_tentacle.lua
│ │ │ ├── soulcatcher.lua
│ │ │ ├── sword_of_vegeance.lua
│ │ │ ├── sword_of_vengeance.lua
│ │ │ ├── the_distorted_astral_source.lua
│ │ │ ├── thorn_minion.lua
│ │ │ ├── time_keeper.lua
│ │ │ ├── time_waster.lua
│ │ │ ├── unbound_blightwalker.lua
│ │ │ ├── unbound_defiler.lua
│ │ │ ├── unbound_demon.lua
│ │ │ └── unbound_demon_outcast.lua
│ │ ├── grave_danger
│ │ │ ├── black_cobra.lua
│ │ │ ├── bosses
│ │ │ │ ├── count_vlarkorth.lua
│ │ │ │ ├── duke_krule.lua
│ │ │ │ ├── earl_osam.lua
│ │ │ │ ├── king_zelos.lua
│ │ │ │ ├── lord_azaram.lua
│ │ │ │ ├── scarlett_etzel.lua
│ │ │ │ ├── sir_baeloc.lua
│ │ │ │ └── sir_nictros.lua
│ │ │ ├── cart_packed_with_gold.lua
│ │ │ ├── condensed_sins.lua
│ │ │ ├── dark_druid.lua
│ │ │ ├── dark_knight.lua
│ │ │ ├── dark_paladin.lua
│ │ │ ├── dark_sorcerer.lua
│ │ │ ├── fetter.lua
│ │ │ ├── retainer_of_baeloc.lua
│ │ │ ├── risen_soldier.lua
│ │ │ ├── shard_of_magnor.lua
│ │ │ ├── soulless_minion.lua
│ │ │ ├── squire_of_nictros.lua
│ │ │ └── vampiric_blood.lua
│ │ ├── heart_of_destruction
│ │ │ ├── aftershock.lua
│ │ │ ├── anomaly.lua
│ │ │ ├── charged_anomaly.lua
│ │ │ ├── charged_disruption.lua
│ │ │ ├── charger.lua
│ │ │ ├── charging_outburst.lua
│ │ │ ├── crackler.lua
│ │ │ ├── damage_resonance.lua
│ │ │ ├── depolarized_crackler.lua
│ │ │ ├── disruption.lua
│ │ │ ├── eradicator.lua
│ │ │ ├── eradicator2.lua
│ │ │ ├── foreshock.lua
│ │ │ ├── frenzy.lua
│ │ │ ├── greed.lua
│ │ │ ├── outburst.lua
│ │ │ ├── overcharge.lua
│ │ │ ├── overcharged_disruption.lua
│ │ │ ├── realityquake.lua
│ │ │ ├── rupture.lua
│ │ │ ├── spark_of_destruction.lua
│ │ │ ├── the_destruction.lua
│ │ │ ├── the_hunger.lua
│ │ │ ├── the_rage.lua
│ │ │ ├── unstable_spark.lua
│ │ │ └── world_devourer.lua
│ │ ├── hero_of_rathleton
│ │ │ ├── deep_terror.lua
│ │ │ ├── empowered_glooth_horror.lua
│ │ │ ├── energy_pulse.lua
│ │ │ ├── feeble_glooth_horror.lua
│ │ │ ├── glooth-generator.lua
│ │ │ ├── glooth_horror.lua
│ │ │ ├── glooth_masher.lua
│ │ │ ├── glooth_slasher.lua
│ │ │ ├── glooth_trasher.lua
│ │ │ ├── professor_maxxen.lua
│ │ │ ├── strong_glooth_horror.lua
│ │ │ ├── tentacle_of_the_deep_terror.lua
│ │ │ └── weakened_glooth_horror.lua
│ │ ├── hidden_threats
│ │ │ └── cave_spider.lua
│ │ ├── in_service_of_yalahar
│ │ │ ├── azerus.lua
│ │ │ ├── azerus2.lua
│ │ │ ├── inky.lua
│ │ │ ├── rift_brood.lua
│ │ │ ├── rift_lord.lua
│ │ │ ├── rift_phantom.lua
│ │ │ ├── rift_scythe.lua
│ │ │ ├── rift_worm.lua
│ │ │ ├── sharptooth.lua
│ │ │ ├── tormented_ghost.lua
│ │ │ └── yalahari.lua
│ │ ├── isle_of_evil
│ │ │ ├── boogey.lua
│ │ │ ├── dirtbeard.lua
│ │ │ ├── doctor_perhaps.lua
│ │ │ ├── evil_mastermind.lua
│ │ │ ├── mephiles.lua
│ │ │ └── monstor.lua
│ │ ├── killing_in_the_name_of
│ │ │ ├── bretzecutioner.lua
│ │ │ ├── bruise_payne.lua
│ │ │ ├── deathbine.lua
│ │ │ ├── demodras.lua
│ │ │ ├── esmeralda.lua
│ │ │ ├── ethershreck.lua
│ │ │ ├── fazzrah.lua
│ │ │ ├── flameborn.lua
│ │ │ ├── fleshcrawler.lua
│ │ │ ├── gorgo.lua
│ │ │ ├── hemming.lua
│ │ │ ├── hide.lua
│ │ │ ├── kerberos.lua
│ │ │ ├── leviathan.lua
│ │ │ ├── paiz_the_pauperizer.lua
│ │ │ ├── ribstride.lua
│ │ │ ├── shardhead.lua
│ │ │ ├── stonecracker.lua
│ │ │ ├── sulphur_scuttler.lua
│ │ │ ├── the_bloodtusk.lua
│ │ │ ├── the_bloodweb.lua
│ │ │ ├── the_many.lua
│ │ │ ├── the_noxious_spawn.lua
│ │ │ ├── the_old_widow.lua
│ │ │ ├── the_snapper.lua
│ │ │ ├── thul.lua
│ │ │ ├── tiquandas_revenge.lua
│ │ │ ├── tormentor.lua
│ │ │ ├── tromphonyte.lua
│ │ │ └── zanakeph.lua
│ │ ├── kilmaresh
│ │ │ ├── a_shielded_astral_glyph.lua
│ │ │ ├── an_astral_glyph.lua
│ │ │ ├── bragrumol.lua
│ │ │ ├── earworm.lua
│ │ │ ├── mozradek.lua
│ │ │ ├── sun-marked_goanna.lua
│ │ │ ├── urmahlullu_the_immaculate.lua
│ │ │ ├── urmahlullu_the_tamed.lua
│ │ │ ├── urmahlullu_the_weakened.lua
│ │ │ ├── wildness_of_urmahlullu.lua
│ │ │ ├── wisdom_of_urmahlullu.lua
│ │ │ └── xogixath.lua
│ │ ├── liquid_black
│ │ │ ├── jaul.lua
│ │ │ ├── obujos.lua
│ │ │ └── tanjis.lua
│ │ ├── mysterious_ornate_chest
│ │ │ ├── an_observer_eye.lua
│ │ │ ├── an_observer_eye_(imune).lua
│ │ │ ├── reflection_of_mawhawk.lua
│ │ │ ├── reflection_of_obujos.lua
│ │ │ └── ugly_monster.lua
│ │ ├── pits_of_inferno
│ │ │ ├── countess_sorrow.lua
│ │ │ ├── demon_goblin.lua
│ │ │ ├── dracola.lua
│ │ │ ├── flamethrower.lua
│ │ │ ├── massacre.lua
│ │ │ ├── mr._punish.lua
│ │ │ ├── the_handmaiden.lua
│ │ │ ├── the_imperor.lua
│ │ │ └── the_plasmother.lua
│ │ ├── roshamuul
│ │ │ ├── bad_dream.lua
│ │ │ ├── flame_of_omrafir.lua
│ │ │ ├── gaz'haragoth.lua
│ │ │ ├── horadron.lua
│ │ │ ├── minion_of_gaz'haragoth.lua
│ │ │ ├── nightmare_of_gaz'haragoth.lua
│ │ │ ├── omrafir.lua
│ │ │ ├── prince_drazzak.lua
│ │ │ └── terofar.lua
│ │ ├── soul_war
│ │ │ └── mirror_image.lua
│ │ ├── svargrond_arena
│ │ │ ├── greenhorn
│ │ │ │ ├── achad.lua
│ │ │ │ ├── axeitus_headbanger.lua
│ │ │ │ ├── bloodpaw.lua
│ │ │ │ ├── bovinus.lua
│ │ │ │ ├── colerian_the_barbarian.lua
│ │ │ │ ├── cursed_gladiator.lua
│ │ │ │ ├── frostfur.lua
│ │ │ │ ├── orcus_the_cruel.lua
│ │ │ │ ├── rocky.lua
│ │ │ │ └── the_hairy_one.lua
│ │ │ ├── scrapper
│ │ │ │ ├── avalanche.lua
│ │ │ │ ├── drasilla.lua
│ │ │ │ ├── grimgor_guteater.lua
│ │ │ │ ├── kreebosh_the_exile.lua
│ │ │ │ ├── slim.lua
│ │ │ │ ├── spirit_of_earth.lua
│ │ │ │ ├── spirit_of_fire.lua
│ │ │ │ ├── spirit_of_water.lua
│ │ │ │ ├── the_dark_dancer.lua
│ │ │ │ └── the_hag.lua
│ │ │ └── warlord
│ │ │ │ ├── darakan_the_executioner.lua
│ │ │ │ ├── deathbringer.lua
│ │ │ │ ├── fallen_mooh'tah_master_ghar.lua
│ │ │ │ ├── gnorre_chyllson.lua
│ │ │ │ ├── norgle_glacierbeard.lua
│ │ │ │ ├── svoren_the_mad.lua
│ │ │ │ ├── the_masked_marauder.lua
│ │ │ │ ├── the_obliverator.lua
│ │ │ │ ├── the_pit_lord.lua
│ │ │ │ └── webster.lua
│ │ ├── the_curse_spreads
│ │ │ ├── black_vixen.lua
│ │ │ ├── bloodback.lua
│ │ │ ├── darkfang.lua
│ │ │ ├── feroxa.lua
│ │ │ ├── feroxa2.lua
│ │ │ ├── feroxa3.lua
│ │ │ ├── feroxa4.lua
│ │ │ ├── feroxa5.lua
│ │ │ ├── shadowpelt.lua
│ │ │ └── sharpclaw.lua
│ │ ├── the_dream_courts
│ │ │ ├── bosses
│ │ │ │ ├── alptramun.lua
│ │ │ │ ├── faceless_bane.lua
│ │ │ │ ├── izcandar_the_banished.lua
│ │ │ │ ├── malofur_mangrinder.lua
│ │ │ │ ├── maxxenius.lua
│ │ │ │ ├── plagueroot.lua
│ │ │ │ └── the_nightmare_beast.lua
│ │ │ ├── generator.lua
│ │ │ ├── horrible_dream.lua
│ │ │ ├── lucifuga_aranea.lua
│ │ │ ├── mind-wrecking_dream.lua
│ │ │ ├── nightmare_tendril.lua
│ │ │ ├── nightmarish_dream.lua
│ │ │ ├── plant_abomination.lua
│ │ │ ├── plant_attendant.lua
│ │ │ ├── the_cold_of_winter.lua
│ │ │ ├── the_heat_of_summer.lua
│ │ │ ├── unpleasant_dream.lua
│ │ │ └── whirling_blades.lua
│ │ ├── the_elemental_spheres
│ │ │ ├── blazing_fire_elemental.lua
│ │ │ ├── blistering_fire_elemental.lua
│ │ │ ├── charged_energy_elemental.lua
│ │ │ ├── earth_overlord.lua
│ │ │ ├── energy_overlord.lua
│ │ │ ├── fire_overlord.lua
│ │ │ ├── ice_overlord.lua
│ │ │ ├── jagged_earth_elemental.lua
│ │ │ ├── lord_of_the_elements.lua
│ │ │ ├── muddy_earth_elemental.lua
│ │ │ ├── overcharged_energy_elemental.lua
│ │ │ ├── roaring_water_elemental.lua
│ │ │ └── slick_water_elemental.lua
│ │ ├── the_explorer_society
│ │ │ ├── blue_butterfly.lua
│ │ │ ├── pink_butterfly.lua
│ │ │ ├── purple_butterfly.lua
│ │ │ ├── red_butterfly.lua
│ │ │ └── yellow_butterfly.lua
│ │ ├── the_first_dragon
│ │ │ ├── angry_plant.lua
│ │ │ ├── bosses
│ │ │ │ ├── fallen_challenger.lua
│ │ │ │ ├── gelidrazah_the_frozen.lua
│ │ │ │ ├── kalyassa.lua
│ │ │ │ ├── tazhadur.lua
│ │ │ │ ├── the_first_dragon.lua
│ │ │ │ └── zorvorax.lua
│ │ │ ├── dragon_essence.lua
│ │ │ ├── dragon_warden.lua
│ │ │ ├── dragon_wrath.lua
│ │ │ ├── haunted_dragon.lua
│ │ │ ├── ice_dragon.lua
│ │ │ ├── somewhat_beatable.lua
│ │ │ ├── spirit_of_fertility.lua
│ │ │ └── unbeatable_dragon.lua
│ │ ├── the_inquisition
│ │ │ ├── a_carved_stone_tile.lua
│ │ │ ├── annihilon.lua
│ │ │ ├── dreadbeast.lua
│ │ │ ├── eye_of_the_seven.lua
│ │ │ ├── golgordan.lua
│ │ │ ├── hellgorak.lua
│ │ │ ├── latrivan.lua
│ │ │ ├── madareth.lua
│ │ │ ├── the_count.lua
│ │ │ ├── the_weakened_count.lua
│ │ │ ├── ungreez.lua
│ │ │ ├── ushuriel.lua
│ │ │ └── zugurosh.lua
│ │ ├── the_new_frontier
│ │ │ ├── baron_brute.lua
│ │ │ ├── coldheart.lua
│ │ │ ├── doomhowl.lua
│ │ │ ├── dreadwing.lua
│ │ │ ├── fatality.lua
│ │ │ ├── haunter.lua
│ │ │ ├── incineron.lua
│ │ │ ├── menace.lua
│ │ │ ├── mooh'tah_master.lua
│ │ │ ├── rocko.lua
│ │ │ ├── shard_of_corruption.lua
│ │ │ ├── the_axeorcist.lua
│ │ │ ├── the_dreadorian.lua
│ │ │ ├── tirecz.lua
│ │ │ └── tremorak.lua
│ │ ├── the_order_of_lion
│ │ │ ├── bosses
│ │ │ │ ├── ancient_lion_archer.lua
│ │ │ │ ├── ancient_lion_knight.lua
│ │ │ │ ├── ancient_lion_warlock.lua
│ │ │ │ ├── drume.lua
│ │ │ │ └── kesar.lua
│ │ │ ├── lion_commander.lua
│ │ │ └── usurper_commander.lua
│ │ ├── the_percht_queens_island
│ │ │ ├── baleful_bunny.lua
│ │ │ ├── bonny_bunny.lua
│ │ │ ├── bright_percht_sleigh.lua
│ │ │ ├── cold_percht_sleigh.lua
│ │ │ ├── dark_percht_sleigh.lua
│ │ │ ├── percht.lua
│ │ │ ├── percht_minion.lua
│ │ │ ├── schiach.lua
│ │ │ ├── the_percht_queen.lua
│ │ │ └── warm_fire.lua
│ │ ├── the_secret_library
│ │ │ ├── biting_cold.lua
│ │ │ ├── bone_jaw.lua
│ │ │ ├── bosses
│ │ │ │ ├── brokul.lua
│ │ │ │ ├── ghulosh.lua
│ │ │ │ ├── gorzindel.lua
│ │ │ │ ├── grand_canon_dominus.lua
│ │ │ │ ├── grand_chaplain_gaunder.lua
│ │ │ │ ├── grand_commander_soeren.lua
│ │ │ │ ├── grand_master_oberon.lua
│ │ │ │ ├── preceptor_lazare.lua
│ │ │ │ ├── thawing_dragon_lord.lua
│ │ │ │ └── the_scourge_of_oblivion.lua
│ │ │ ├── brother_chill.lua
│ │ │ ├── brother_freeze.lua
│ │ │ ├── concentrated_death.lua
│ │ │ ├── dark_knowledge.lua
│ │ │ ├── dazed_leaf_golem.lua
│ │ │ ├── demon_blood.lua
│ │ │ ├── demon_slave.lua
│ │ │ ├── force_field.lua
│ │ │ ├── furious_scorpion.lua
│ │ │ ├── ghulosh'_deathgaze.lua
│ │ │ ├── imp_intruder.lua
│ │ │ ├── invading_demon.lua
│ │ │ ├── jailer.lua
│ │ │ ├── knowledge_raider.lua
│ │ │ ├── librarian.lua
│ │ │ ├── lokathmor.lua
│ │ │ ├── lokathmor_stuck.lua
│ │ │ ├── malicious_minion.lua
│ │ │ ├── mazzinor.lua
│ │ │ ├── mean_minion.lua
│ │ │ ├── neutral_deepling_warrior.lua
│ │ │ ├── oberons_bile.lua
│ │ │ ├── oberons_hate.lua
│ │ │ ├── oberons_ire.lua
│ │ │ ├── oberons_spite.lua
│ │ │ ├── ravenous_beyondling.lua
│ │ │ ├── rift_breacher.lua
│ │ │ ├── rift_minion.lua
│ │ │ ├── rift_spawn.lua
│ │ │ ├── spawn_of_havoc.lua
│ │ │ ├── stolen_knowledge_of_armor.lua
│ │ │ ├── stolen_knowledge_of_healing.lua
│ │ │ ├── stolen_knowledge_of_lifesteal.lua
│ │ │ ├── stolen_knowledge_of_spells.lua
│ │ │ ├── stolen_knowledge_of_summoning.lua
│ │ │ ├── stolen_tome_of_portals.lua
│ │ │ ├── supercharged_mazzinor.lua
│ │ │ ├── the_blazing_rose.lua
│ │ │ ├── the_book_of_secrets.lua
│ │ │ ├── the_devourer_of_secrets.lua
│ │ │ ├── the_diamond_blossom.lua
│ │ │ ├── the_lily_of_night.lua
│ │ │ ├── the_scion_of_havoc.lua
│ │ │ ├── the_spellstealer.lua
│ │ │ ├── war_servant.lua
│ │ │ ├── wild_knowledge.lua
│ │ │ └── yalahari_despoiler.lua
│ │ └── wrath_of_the_emperor
│ │ │ ├── fury_of_the_emperor.lua
│ │ │ ├── lizard_abomination.lua
│ │ │ ├── mutated_zalamon.lua
│ │ │ ├── scorn_of_the_emperor.lua
│ │ │ ├── snake_god_essence.lua
│ │ │ ├── snake_thing.lua
│ │ │ ├── spite_of_the_emperor.lua
│ │ │ ├── the_keeper.lua
│ │ │ └── wrath_of_the_emperor.lua
│ ├── raids
│ │ ├── arachir_the_ancient_one.lua
│ │ ├── barbaria.lua
│ │ ├── battlemaster_zunzu.lua
│ │ ├── brutus_bloodbeard.lua
│ │ ├── captain_jones.lua
│ │ ├── chayenne.lua
│ │ ├── chizzoron_the_distorter.lua
│ │ ├── control_tower.lua
│ │ ├── deadeye_devious.lua
│ │ ├── draptor.lua
│ │ ├── fernfang.lua
│ │ ├── ferumbras.lua
│ │ ├── fleabringer.lua
│ │ ├── foreman_kneebiter.lua
│ │ ├── frost_servant.lua
│ │ ├── furyosa.lua
│ │ ├── ghazbaran.lua
│ │ ├── giant_spider_wyda.lua
│ │ ├── glooth_battery.lua
│ │ ├── glooth_bomb.lua
│ │ ├── glooth_fairy.lua
│ │ ├── grand_mother_foulscale.lua
│ │ ├── grorlam.lua
│ │ ├── hirintror.lua
│ │ ├── lethal_lissy.lua
│ │ ├── man_in_the_cave.lua
│ │ ├── mawhawk.lua
│ │ ├── morgaroth.lua
│ │ ├── necropharus.lua
│ │ ├── ocyakao.lua
│ │ ├── orc_armor.lua
│ │ ├── orc_helmet.lua
│ │ ├── orc_sambackpack.lua
│ │ ├── orc_shield.lua
│ │ ├── orshabaal.lua
│ │ ├── ron_the_ripper.lua
│ │ ├── rottie_the_rotworm.lua
│ │ ├── rotworm_queen.lua
│ │ ├── sir_valorcrest.lua
│ │ ├── spyrat_facing_east.lua
│ │ ├── spyrat_facing_north.lua
│ │ ├── spyrat_facing_south.lua
│ │ ├── spyrat_facing_west.lua
│ │ ├── the_horned_fox.lua
│ │ ├── the_pale_count.lua
│ │ ├── the_voice_of_ruin.lua
│ │ ├── the_welter.lua
│ │ ├── tyrn.lua
│ │ ├── white_pale.lua
│ │ ├── xenia.lua
│ │ ├── yakchal.lua
│ │ ├── zomba.lua
│ │ └── zulazza_the_corruptor.lua
│ ├── reptiles
│ │ ├── adult_goanna.lua
│ │ ├── cobra.lua
│ │ ├── crocodile.lua
│ │ ├── dreadmaw.lua
│ │ ├── killer_caiman.lua
│ │ ├── lizard_chosen.lua
│ │ ├── lizard_dragon_priest.lua
│ │ ├── lizard_high_guard.lua
│ │ ├── lizard_legionnaire.lua
│ │ ├── lizard_magistratus.lua
│ │ ├── lizard_noble.lua
│ │ ├── lizard_sentinel.lua
│ │ ├── lizard_snakecharmer.lua
│ │ ├── lizard_templar.lua
│ │ ├── lizard_zaogun.lua
│ │ ├── sea_serpent.lua
│ │ ├── seacrest_serpent.lua
│ │ ├── serpent_spawn.lua
│ │ ├── snake.lua
│ │ ├── stampor.lua
│ │ ├── stonerefiner.lua
│ │ ├── thornback_tortoise.lua
│ │ ├── tortoise.lua
│ │ ├── wyvern.lua
│ │ ├── young_goanna.lua
│ │ └── young_sea_serpent.lua
│ ├── slimes
│ │ ├── acid_blob.lua
│ │ ├── death_blob.lua
│ │ ├── defiler.lua
│ │ ├── devourer.lua
│ │ ├── glooth_blob.lua
│ │ ├── ink_blob.lua
│ │ ├── mercury_blob.lua
│ │ ├── midnight_spawn.lua
│ │ ├── slime.lua
│ │ ├── son_of_verminor.lua
│ │ └── squidgy_slime.lua
│ ├── summons
│ │ ├── druid_familiar.lua
│ │ ├── knight_familiar.lua
│ │ ├── paladin_familiar.lua
│ │ └── sorcerer_familiar.lua
│ ├── traps
│ │ ├── deathslicer.lua
│ │ ├── deaththrower.lua
│ │ ├── demon_summoner.lua
│ │ ├── floor_blob.lua
│ │ ├── hell_hole.lua
│ │ ├── hive_pore.lua
│ │ ├── lavahole.lua
│ │ ├── magic_pillar.lua
│ │ ├── magicthrower.lua
│ │ ├── mechanical_fighter.lua
│ │ ├── mimic.lua
│ │ ├── pillar.lua
│ │ └── plaguethrower.lua
│ ├── undeads
│ │ ├── bane_of_light.lua
│ │ ├── banshee.lua
│ │ ├── betrayed_wraith.lua
│ │ ├── blightwalker.lua
│ │ ├── blood_beast.lua
│ │ ├── bonebeast.lua
│ │ ├── bony_sea_devil.lua
│ │ ├── burster_spectre.lua
│ │ ├── capricious_phantom.lua
│ │ ├── crypt_shambler.lua
│ │ ├── crypt_warrior.lua
│ │ ├── cursed_prospector.lua
│ │ ├── death_priest.lua
│ │ ├── demon_skeleton.lua
│ │ ├── distorted_phantom.lua
│ │ ├── druid's_apparition.lua
│ │ ├── elder_mummy.lua
│ │ ├── evil_prospector.lua
│ │ ├── falcon_knight.lua
│ │ ├── falcon_paladin.lua
│ │ ├── flimsy_lost_soul.lua
│ │ ├── freakish_lost_soul.lua
│ │ ├── gazer_spectre.lua
│ │ ├── ghost.lua
│ │ ├── ghoul.lua
│ │ ├── grave_guard.lua
│ │ ├── gravedigger.lua
│ │ ├── grim_reaper.lua
│ │ ├── hand_of_cursed_fate.lua
│ │ ├── hazardous_phantom.lua
│ │ ├── honour_guard.lua
│ │ ├── infernal_phantom.lua
│ │ ├── knight's_apparition.lua
│ │ ├── lich.lua
│ │ ├── lost_soul.lua
│ │ ├── mean_lost_soul.lua
│ │ ├── mould_phantom.lua
│ │ ├── mummy.lua
│ │ ├── paladin's_apparition.lua
│ │ ├── pirate_ghost.lua
│ │ ├── pirate_skeleton.lua
│ │ ├── putrid_mummy.lua
│ │ ├── ripper_spectre.lua
│ │ ├── rot_elemental.lua
│ │ ├── skeleton.lua
│ │ ├── skeleton_elite_warrior.lua
│ │ ├── skeleton_warrior.lua
│ │ ├── sorcerer's_apparition.lua
│ │ ├── souleater.lua
│ │ ├── spectre.lua
│ │ ├── tarnished_spirit.lua
│ │ ├── tomb_servant.lua
│ │ ├── undead_cavebear.lua
│ │ ├── undead_dragon.lua
│ │ ├── undead_elite_gladiator.lua
│ │ ├── undead_gladiator.lua
│ │ ├── undead_mine_worker.lua
│ │ ├── undead_prospector.lua
│ │ ├── vampire.lua
│ │ ├── vampire_bride.lua
│ │ ├── vampire_viscount.lua
│ │ ├── vibrant_phantom.lua
│ │ ├── vicious_manbat.lua
│ │ ├── white_shade.lua
│ │ └── zombie.lua
│ ├── vermins
│ │ ├── ancient_scarab.lua
│ │ ├── brimstone_bug.lua
│ │ ├── bug.lua
│ │ ├── burrowing_beetle.lua
│ │ ├── butterfly.lua
│ │ ├── carrion_worm.lua
│ │ ├── cave_devourer.lua
│ │ ├── centipede.lua
│ │ ├── chasm_spawn.lua
│ │ ├── cockroach.lua
│ │ ├── crawler.lua
│ │ ├── crystal_spider.lua
│ │ ├── deepworm.lua
│ │ ├── diremaw.lua
│ │ ├── drillworm.lua
│ │ ├── emerald_damselfly.lua
│ │ ├── exotic_cave_spider.lua
│ │ ├── giant_spider.lua
│ │ ├── hibernal_moth.lua
│ │ ├── hive_overseer.lua
│ │ ├── insect_swarm.lua
│ │ ├── insectoid_scout.lua
│ │ ├── insectoid_worker.lua
│ │ ├── kollos.lua
│ │ ├── lacewing_moth.lua
│ │ ├── ladybug.lua
│ │ ├── lancer_beetle.lua
│ │ ├── larva.lua
│ │ ├── lesser_swarmer.lua
│ │ ├── parasite.lua
│ │ ├── poison_spider.lua
│ │ ├── rotworm.lua
│ │ ├── sacred_spider.lua
│ │ ├── sandcrawler.lua
│ │ ├── scarab.lua
│ │ ├── scorpion.lua
│ │ ├── slug.lua
│ │ ├── spider.lua
│ │ ├── spidris.lua
│ │ ├── spidris_elite.lua
│ │ ├── spitter.lua
│ │ ├── swarmer.lua
│ │ ├── swarmer_hatchling.lua
│ │ ├── tarantula.lua
│ │ ├── terramite.lua
│ │ ├── tunnel_tyrant.lua
│ │ ├── wailing_widow.lua
│ │ ├── wasp.lua
│ │ ├── waspoid.lua
│ │ └── wiggler.lua
│ └── wild_magics
│ │ ├── wild_fire_magic.lua
│ │ ├── wild_fury_magic.lua
│ │ ├── wild_nature_magic.lua
│ │ └── wild_water_magic.lua
├── npc
│ ├── ....xml
│ ├── a_bearded_woman.xml
│ ├── a_beautiful_girl.xml
│ ├── a_beggar.xml
│ ├── a_behemoth.xml
│ ├── a_confused_frog.xml
│ ├── a_dark_priestess.xml
│ ├── a_dead_bureaucrat1.xml
│ ├── a_dead_bureaucrat2.xml
│ ├── a_dead_bureaucrat3.xml
│ ├── a_dead_bureaucrat4.xml
│ ├── a_dragon_lord.xml
│ ├── a_dragon_mother.xml
│ ├── a_drillworm.xml
│ ├── a_dwarven_ghost.xml
│ ├── a_fading_memory.xml
│ ├── a_fluffy_squirrel.xml
│ ├── a_frog.xml
│ ├── a_ghostly_guardian.xml
│ ├── a_ghostly_knight.xml
│ ├── a_ghostly_sage.xml
│ ├── a_ghostly_woman.xml
│ ├── a_ghostly_woman_ghostland.xml
│ ├── a_goblin_exile.xml
│ ├── a_grumpy_cyclops.xml
│ ├── a_lost_basher.xml
│ ├── a_lost_husher.xml
│ ├── a_lost_soul.xml
│ ├── a_lost_thrower.xml
│ ├── a_majestic_warwolf.xml
│ ├── a_nightmare_scion.xml
│ ├── a_prisoner.xml
│ ├── a_restless_soul.xml
│ ├── a_sleeping_dragon.xml
│ ├── a_starving_dog.xml
│ ├── a_strange_chalice.xml
│ ├── a_strange_fellow.xml
│ ├── a_swan.xml
│ ├── a_sweaty_cyclops.xml
│ ├── a_tainted_soul.xml
│ ├── a_tortured_soul.xml
│ ├── a_vulcongra.xml
│ ├── a_weakened_forest_fury.xml
│ ├── a_wrinkled_bonelord.xml
│ ├── a_wyrm.xml
│ ├── abran_ironeye.xml
│ ├── admiral_wyrmslicer.xml
│ ├── adrenius.xml
│ ├── ahmet.xml
│ ├── ajax.xml
│ ├── al_dee.xml
│ ├── alaistar.xml
│ ├── albert.xml
│ ├── albinius.xml
│ ├── aldo.xml
│ ├── alesar.xml
│ ├── alexander.xml
│ ├── alia.xml
│ ├── alissa.xml
│ ├── alkestios.xml
│ ├── allen.xml
│ ├── alternative_rock.xml
│ ├── alwin.xml
│ ├── alyxo.xml
│ ├── amanda.xml
│ ├── amarie.xml
│ ├── ambassador_of_rathleton.xml
│ ├── amber.xml
│ ├── an_ancient_priest.xml
│ ├── an_apparition.xml
│ ├── an_imprisoned_goblin.xml
│ ├── an_old_dragon_lord.xml
│ ├── an_orc_guard.xml
│ ├── anderson.xml
│ ├── andrew_lyze.xml
│ ├── anerui.xml
│ ├── aneus.xml
│ ├── angelina.xml
│ ├── angelo.xml
│ ├── angus.xml
│ ├── appaloosa.xml
│ ├── archery.xml
│ ├── archery_rook.xml
│ ├── ariella.xml
│ ├── arito.xml
│ ├── arkarra.xml
│ ├── arkhothep.xml
│ ├── arkulius.xml
│ ├── armenius_npc.xml
│ ├── arnold.xml
│ ├── aruda.xml
│ ├── ashari.xml
│ ├── ashtamor.xml
│ ├── asima.xml
│ ├── asnarus.xml
│ ├── asrak.xml
│ ├── asralius.xml
│ ├── atrad.xml
│ ├── atur.xml
│ ├── aurita.xml
│ ├── auron.xml
│ ├── avar_tar.xml
│ ├── awarness_of_the_emperor.xml
│ ├── azalea.xml
│ ├── azil.xml
│ ├── baa_leal.xml
│ ├── baltim.xml
│ ├── bambi_bonecrusher.xml
│ ├── barazbaz.xml
│ ├── barbara.xml
│ ├── barnabas_dee.xml
│ ├── barney.xml
│ ├── barry.xml
│ ├── bashira.xml
│ ├── basilisk.xml
│ ├── baxter.xml
│ ├── beatrice.xml
│ ├── benevola.xml
│ ├── benjamin.xml
│ ├── berenice.xml
│ ├── bertha.xml
│ ├── bertram.xml
│ ├── bezil.xml
│ ├── bigfoot_soldier.xml
│ ├── bill_the_worker.xml
│ ├── billy.xml
│ ├── black_bert.xml
│ ├── blind_orc.xml
│ ├── blossom_bonecrusher.xml
│ ├── bo_ques.xml
│ ├── bob_the_worker.xml
│ ├── bolfona.xml
│ ├── bonifacius.xml
│ ├── boozer.xml
│ ├── borkas.xml
│ ├── boveas.xml
│ ├── bozarn.xml
│ ├── bozo.xml
│ ├── braden.xml
│ ├── bradford.xml
│ ├── brasith.xml
│ ├── brengus.xml
│ ├── brewster.xml
│ ├── briasol.xml
│ ├── bright_percht_sleigh.xml
│ ├── brodrosch.xml
│ ├── broken_servant_sentry.xml
│ ├── brom.xml
│ ├── bron.xml
│ ├── bruce.xml
│ ├── bruno.xml
│ ├── brutus.xml
│ ├── buddel.xml
│ ├── buddel_helheim.xml
│ ├── buddel_okolnir.xml
│ ├── buddel_raider_camp.xml
│ ├── buddel_tyrsung.xml
│ ├── budrik.xml
│ ├── bunny_bonecrusher.xml
│ ├── busty_bonecrusher.xml
│ ├── cael.xml
│ ├── cameron.xml
│ ├── captain_bluebear.xml
│ ├── captain_breezelda.xml
│ ├── captain_chelop.xml
│ ├── captain_cookie.xml
│ ├── captain_dreadnought.xml
│ ├── captain_fearless.xml
│ ├── captain_greyhound.xml
│ ├── captain_gulliver.xml
│ ├── captain_haba.xml
│ ├── captain_haba_open_sea.xml
│ ├── captain_harava.xml
│ ├── captain_jack.xml
│ ├── captain_kurt.xml
│ ├── captain_max.xml
│ ├── captain_max_calassa.xml
│ ├── captain_pelagia.xml
│ ├── captain_seagull.xml
│ ├── captain_seahorse.xml
│ ├── captain_sinbeard.xml
│ ├── captain_tiberius.xml
│ ├── captain_waverider.xml
│ ├── captain_waverider_island.xml
│ ├── caramellia.xml
│ ├── carina.xml
│ ├── carlos.xml
│ ├── carlson.xml
│ ├── cassino.xml
│ ├── cedrik.xml
│ ├── ceiron.xml
│ ├── cerdras.xml
│ ├── cerebrir.xml
│ ├── chantalle.xml
│ ├── charles.xml
│ ├── charlotta.xml
│ ├── charos.xml
│ ├── chartan.xml
│ ├── chatterbone.xml
│ ├── chavis.xml
│ ├── chemar.xml
│ ├── chephan.xml
│ ├── chester_kahs.xml
│ ├── chief_grarkharok.xml
│ ├── chondur.xml
│ ├── chrak.xml
│ ├── chraknpc.xml
│ ├── christine.xml
│ ├── christoph.xml
│ ├── chrystal.xml
│ ├── chuck_the_worker.xml
│ ├── chuckles.xml
│ ├── cillia.xml
│ ├── cipfried.xml
│ ├── clark.xml
│ ├── cledwyn.xml
│ ├── clyde.xml
│ ├── cobranpc.xml
│ ├── cold_percht_sleigh.xml
│ ├── coltrayne.xml
│ ├── commander_stone.xml
│ ├── cornelia.xml
│ ├── cornell.xml
│ ├── corym_ratter.xml
│ ├── corym_servant.xml
│ ├── costello.xml
│ ├── cranky_lizard_crone.xml
│ ├── crowned_tree.xml
│ ├── cruleo.xml
│ ├── curos.xml
│ ├── dabui.xml
│ ├── dagomir.xml
│ ├── dalbrect.xml
│ ├── dallheim.xml
│ ├── dane.xml
│ ├── daniel_steelsoul.xml
│ ├── dankwart.xml
│ ├── danlon.xml
│ ├── dario.xml
│ ├── dark_percht_sleigh.xml
│ ├── dedoras.xml
│ ├── demon_skeleton_npc.xml
│ ├── demonguard.xml
│ ├── denominator.xml
│ ├── dermot.xml
│ ├── digger.xml
│ ├── dixi.xml
│ ├── djema.xml
│ ├── doctor_gnomedix.xml
│ ├── donald_mcronald.xml
│ ├── dorbin.xml
│ ├── dorian.xml
│ ├── doubleday.xml
│ ├── doug.xml
│ ├── dove.xml
│ ├── dr_merlay.xml
│ ├── dreadeye.xml
│ ├── dream_butterfly.xml
│ ├── dregor.xml
│ ├── drog.xml
│ ├── dronk.xml
│ ├── druid_yandur.xml
│ ├── drystan_wildweed.xml
│ ├── dukosch.xml
│ ├── duncan.xml
│ ├── duria.xml
│ ├── dustrunner.xml
│ ├── eathar.xml
│ ├── ebenizer.xml
│ ├── eclesius.xml
│ ├── edala.xml
│ ├── eddy.xml
│ ├── edgar-ellen.xml
│ ├── edmund.xml
│ ├── edoch.xml
│ ├── edowir.xml
│ ├── edron_guardsman.xml
│ ├── edvard.xml
│ ├── eighty.xml
│ ├── eirik.xml
│ ├── elane.xml
│ ├── elathriel.xml
│ ├── elbert.xml
│ ├── eleonore.xml
│ ├── elf_guard.xml
│ ├── elgar.xml
│ ├── eliyas.xml
│ ├── eliza.xml
│ ├── elliott.xml
│ ├── elvith.xml
│ ├── elyen_ravenlock.xml
│ ├── emberwing.xml
│ ├── emily.xml
│ ├── emma.xml
│ ├── emperor_kruzak.xml
│ ├── emperor_rehal.xml
│ ├── eranth.xml
│ ├── erayo.xml
│ ├── eremo.xml
│ ├── eroth.xml
│ ├── eruaran.xml
│ ├── eshaya.xml
│ ├── esrik.xml
│ ├── ethan.xml
│ ├── etzel.xml
│ ├── eva.xml
│ ├── evan.xml
│ ├── ezean.xml
│ ├── ezebeth.xml
│ ├── fa_hradin.xml
│ ├── fadil.xml
│ ├── falk.xml
│ ├── falonzo.xml
│ ├── faloriel.xml
│ ├── faluae.xml
│ ├── fayla.xml
│ ├── feizuhl.xml
│ ├── fenbala.xml
│ ├── fenech.xml
│ ├── fergus.xml
│ ├── ferks.xml
│ ├── ferryman_kamil.xml
│ ├── ferryman_kamilmeluna.xml
│ ├── ferus.xml
│ ├── fillias.xml
│ ├── finarfin.xml
│ ├── fiona.xml
│ ├── flint.xml
│ ├── flora.xml
│ ├── florentine.xml
│ ├── frafnar.xml
│ ├── frank_the_plank.xml
│ ├── frans.xml
│ ├── frederik.xml
│ ├── freezhild.xml
│ ├── frodo.xml
│ ├── frok_the_guard.xml
│ ├── frosty.xml
│ ├── fynn.xml
│ ├── fyodor.xml
│ ├── gabel.xml
│ ├── gail.xml
│ ├── galuna.xml
│ ├── gamel.xml
│ ├── gamon.xml
│ ├── garamond.xml
│ ├── gareth.xml
│ ├── gate_guardian.xml
│ ├── gederas.xml
│ ├── gelagos.xml
│ ├── gelidrazahs_thirst.xml
│ ├── george_the_boyscout.xml
│ ├── gerimor.xml
│ ├── gewen.xml
│ ├── ghorza.xml
│ ├── ghost_of_a_priest.xml
│ ├── ghostly_wolf.xml
│ ├── gladys.xml
│ ├── gnomad.xml
│ ├── gnomailion.xml
│ ├── gnomally.xml
│ ├── gnomargery.xml
│ ├── gnomaticus.xml
│ ├── gnombold.xml
│ ├── gnome.xml
│ ├── gnome_trooper.xml
│ ├── gnomegica.xml
│ ├── gnomejam.xml
│ ├── gnomelvis.xml
│ ├── gnomenursey.xml
│ ├── gnomeral.xml
│ ├── gnomercy.xml
│ ├── gnomerik.xml
│ ├── gnomerrow.xml
│ ├── gnomespector.xml
│ ├── gnomette.xml
│ ├── gnomewart.xml
│ ├── gnomillion.xml
│ ├── gnomilly.xml
│ ├── gnomincia.xml
│ ├── gnominus.xml
│ ├── gnomission.xml
│ ├── gnommander.xml
│ ├── gnomole.xml
│ ├── gnomus.xml
│ ├── gnomux.xml
│ ├── golem_guardian.xml
│ ├── gordon.xml
│ ├── gorn.xml
│ ├── graham.xml
│ ├── graubart.xml
│ ├── gree_dee.xml
│ ├── gregor.xml
│ ├── grizzly_adams.xml
│ ├── grodrik.xml
│ ├── grof_the_guard.xml
│ ├── grombur.xml
│ ├── grubokk.xml
│ ├── grumpy_stone.xml
│ ├── guard_bazaya.xml
│ ├── guard_inurta.xml
│ ├── guard_saros.xml
│ ├── guard_senet.xml
│ ├── guardian_of_the_deep_seas.xml
│ ├── guide_alexena.xml
│ ├── guide_behil.xml
│ ├── guide_davina.xml
│ ├── guide_edna.xml
│ ├── guide_elena.xml
│ ├── guide_jonathan.xml
│ ├── guide_kroak.xml
│ ├── guide_kunibert.xml
│ ├── guide_luke.xml
│ ├── guide_meruka.xml
│ ├── guide_rahlkora.xml
│ ├── guide_thelandil.xml
│ ├── guide_tiko.xml
│ ├── gundralph.xml
│ ├── gurbasch.xml
│ ├── h.l..xml
│ ├── habdel.xml
│ ├── hagor.xml
│ ├── hairycles.xml
│ ├── hal.xml
│ ├── halif.xml
│ ├── halvar.xml
│ ├── hamilton.xml
│ ├── hamish.xml
│ ├── hanna.xml
│ ├── hardek.xml
│ ├── harkath_bloodblade.xml
│ ├── harlow.xml
│ ├── harlow_vengoth.xml
│ ├── harlowtrade.xml
│ ├── harog.xml
│ ├── haroun.xml
│ ├── harsky.xml
│ ├── hawkyr.xml
│ ├── heavenly_messenger.xml
│ ├── helor.xml
│ ├── hemor_the_guard.xml
│ ├── henricus.xml
│ ├── herbert.xml
│ ├── hexel.xml
│ ├── hireling.xml
│ ├── hjaern.xml
│ ├── hofech.xml
│ ├── hoggle.xml
│ ├── hugo.xml
│ ├── humgolf.xml
│ ├── humnog_the_guard.xml
│ ├── humphrey.xml
│ ├── huntsman.xml
│ ├── hyacinth.xml
│ ├── ikassis.xml
│ ├── imalas.xml
│ ├── imbuement_assistant.xml
│ ├── imbul.xml
│ ├── inigo.xml
│ ├── inkaef.xml
│ ├── iptar-sin.xml
│ ├── irea.xml
│ ├── iriana.xml
│ ├── irmana.xml
│ ├── irvin.xml
│ ├── ishebad.xml
│ ├── ishina.xml
│ ├── isimov.xml
│ ├── iskan.xml
│ ├── isolde.xml
│ ├── ivalisse.xml
│ ├── iwan.xml
│ ├── iwar.xml
│ ├── iyad.xml
│ ├── izsh.xml
│ ├── jack.xml
│ ├── jack_drone.xml
│ ├── jack_fate.xml
│ ├── jack_fate_goroma.xml
│ ├── jack_the_worker.xml
│ ├── jacob.xml
│ ├── jagran.xml
│ ├── jakahr.xml
│ ├── james.xml
│ ├── jamesfrancis.xml
│ ├── janz.xml
│ ├── jason.xml
│ ├── jean_claude.xml
│ ├── jean_pierre.xml
│ ├── jefrey.xml
│ ├── jerom.xml
│ ├── jeronimo.xml
│ ├── jessica.xml
│ ├── jezzara.xml
│ ├── jimbin.xml
│ ├── jimmy.xml
│ ├── john.xml
│ ├── jondrin.xml
│ ├── jorge.xml
│ ├── jossel.xml
│ ├── julian.xml
│ ├── julius.xml
│ ├── junkar_mines.xml
│ ├── junkar_robsons.xml
│ ├── junkar_thais.xml
│ ├── kais.xml
│ ├── kallimae.xml
│ ├── kalvin.xml
│ ├── karith.xml
│ ├── karl.xml
│ ├── kasmir.xml
│ ├── kawill.xml
│ ├── kaya.xml
│ ├── kazzan.xml
│ ├── kendra.xml
│ ├── kendra_thais.xml
│ ├── kepar.xml
│ ├── kevin.xml
│ ├── khanna.xml
│ ├── kihil_the_guard.xml
│ ├── king_tibianus.xml
│ ├── kjesse.xml
│ ├── klaus.xml
│ ├── klesar.xml
│ ├── klom_stonecutter.xml
│ ├── knight_hykrion.xml
│ ├── kratos.xml
│ ├── kromrek.xml
│ ├── kroox.xml
│ ├── kulag_the_guard.xml
│ ├── lailene.xml
│ ├── lardoc_bashsmite.xml
│ ├── larek.xml
│ ├── larfion_the_shaman.xml
│ ├── lavirias.xml
│ ├── lazaran.xml
│ ├── lea.xml
│ ├── lector.xml
│ ├── lee_delle.xml
│ ├── leeland.xml
│ ├── legola.xml
│ ├── lesser_messenger_of_heaven.xml
│ ├── liane.xml
│ ├── lib
│ │ ├── npc.lua
│ │ └── npcsystem
│ │ │ ├── customModules.lua
│ │ │ ├── keywordhandler.lua
│ │ │ ├── modules.lua
│ │ │ ├── npchandler.lua
│ │ │ └── npcsystem.lua
│ ├── lightfoot.xml
│ ├── lily.xml
│ ├── lisander.xml
│ ├── livielle.xml
│ ├── lizard_tunnel_guard.xml
│ ├── llathriel.xml
│ ├── lokur.xml
│ ├── lora.xml
│ ├── lorbas.xml
│ ├── lorek.xml
│ ├── loria.xml
│ ├── lorietta.xml
│ ├── lothar.xml
│ ├── lou_toose.xml
│ ├── loui.xml
│ ├── lubo.xml
│ ├── lucius.xml
│ ├── lugri.xml
│ ├── lukosch.xml
│ ├── luna.xml
│ ├── lunch.xml
│ ├── lungelen.xml
│ ├── lurik.xml
│ ├── lynda.xml
│ ├── lyonel.xml
│ ├── maealil.xml
│ ├── maelyrra.xml
│ ├── maeryn.xml
│ ├── malor.xml
│ ├── malunga.xml
│ ├── marcus.xml
│ ├── maria.xml
│ ├── marina.xml
│ ├── maris.xml
│ ├── maris_fenrock.xml
│ ├── maris_mistrock.xml
│ ├── maritima.xml
│ ├── markwin.xml
│ ├── marlene.xml
│ ├── maro.xml
│ ├── marvik.xml
│ ├── marvin.xml
│ ├── maryza.xml
│ ├── maun.xml
│ ├── mazarius.xml
│ ├── mehkesh.xml
│ ├── melchior.xml
│ ├── melfar.xml
│ ├── melian.xml
│ ├── memech.xml
│ ├── menacing_mummy.xml
│ ├── menesto.xml
│ ├── meraya.xml
│ ├── messenger_of_heaven.xml
│ ├── messenger_of_santa.xml
│ ├── miles_the_guard.xml
│ ├── milos.xml
│ ├── mirabell.xml
│ ├── miraia.xml
│ ├── moe.xml
│ ├── morax.xml
│ ├── mordecai.xml
│ ├── morgan.xml
│ ├── morpel.xml
│ ├── mortimer.xml
│ ├── mortis.xml
│ ├── morun.xml
│ ├── mother_of_jack.xml
│ ├── mr._west.xml
│ ├── mr_brandon.xml
│ ├── mr_morris.xml
│ ├── mugluf.xml
│ ├── mugruu.xml
│ ├── muhad.xml
│ ├── muriel.xml
│ ├── murim.xml
│ ├── muzir.xml
│ ├── myra.xml
│ ├── mysterious_ornate_chest.xml
│ ├── nah_bob.xml
│ ├── naji.xml
│ ├── narsai.xml
│ ├── navigator.xml
│ ├── neill.xml
│ ├── nelliem.xml
│ ├── nelly.xml
│ ├── nemal.xml
│ ├── nezil.xml
│ ├── nibble.xml
│ ├── nicholas.xml
│ ├── nielson.xml
│ ├── nienna.xml
│ ├── nilsor.xml
│ ├── nina.xml
│ ├── ninev.xml
│ ├── ninos.xml
│ ├── nokmir.xml
│ ├── nomadnpc.xml
│ ├── noodles.xml
│ ├── noozer.xml
│ ├── nor.xml
│ ├── norbert.xml
│ ├── norf.xml
│ ├── norma.xml
│ ├── norman_the_foreman.xml
│ ├── normod.xml
│ ├── norris.xml
│ ├── nurik.xml
│ ├── nydala.xml
│ ├── nymph_challenging.xml
│ ├── oberon's_bile.xml
│ ├── oberon's_hate.xml
│ ├── oberon's_ire.xml
│ ├── oberon's_spite.xml
│ ├── obi.xml
│ ├── oblivion.xml
│ ├── ocelus.xml
│ ├── odemara.xml
│ ├── oiriz.xml
│ ├── old_adall.xml
│ ├── old_rock_boy.xml
│ ├── oldrak.xml
│ ├── oliver.xml
│ ├── olrik.xml
│ ├── omrabas.xml
│ ├── omur.xml
│ ├── one_eyed_joe.xml
│ ├── ongulf.xml
│ ├── orc_berserker_npc.xml
│ ├── oressa.xml
│ ├── ormuhn.xml
│ ├── orockle.xml
│ ├── ortheus.xml
│ ├── oswald.xml
│ ├── ottokar.xml
│ ├── padreia.xml
│ ├── paladin_narai.xml
│ ├── palimuth.xml
│ ├── palomino.xml
│ ├── paolo.xml
│ ├── parlan.xml
│ ├── partos.xml
│ ├── pat_the_worker.xml
│ ├── paulie.xml
│ ├── peaceful_pooka.xml
│ ├── peggy.xml
│ ├── pemaret.xml
│ ├── penny.xml
│ ├── perac.xml
│ ├── percy_silverhand.xml
│ ├── percybald.xml
│ ├── peremin.xml
│ ├── perod.xml
│ ├── peter.xml
│ ├── petros.xml
│ ├── phillip.xml
│ ├── pig_npc.xml
│ ├── pino.xml
│ ├── plunderpurse.xml
│ ├── polly.xml
│ ├── pompan.xml
│ ├── prezil.xml
│ ├── prisoner.xml
│ ├── puffels.xml
│ ├── pugwah.xml
│ ├── pukosch.xml
│ ├── pydar.xml
│ ├── pyro_peter.xml
│ ├── pyromental.xml
│ ├── pythius_the_rottennpc.xml
│ ├── quandons_ghost.xml
│ ├── queen_eloise.xml
│ ├── quentin.xml
│ ├── quero.xml
│ ├── rabaz.xml
│ ├── rachel.xml
│ ├── raffael.xml
│ ├── rafzan.xml
│ ├── rahkem.xml
│ ├── ramina.xml
│ ├── rapanaio.xml
│ ├── rapanaioboat.xml
│ ├── rapanaioisleofevil.xml
│ ├── rashid.xml
│ ├── rashid_custom.xml
│ ├── rata_mari.xml
│ ├── ray.xml
│ ├── raymond_striker.xml
│ ├── razan.xml
│ ├── rebel.xml
│ ├── red_lilly.xml
│ ├── redward.xml
│ ├── reed.xml
│ ├── rehon.xml
│ ├── repenter.xml
│ ├── richard.xml
│ ├── riddler.xml
│ ├── robert.xml
│ ├── robin.xml
│ ├── robson.xml
│ ├── rock_in_a_hard_place.xml
│ ├── rock_steady.xml
│ ├── rock_with_a_soft_spot.xml
│ ├── roderick.xml
│ ├── rodney.xml
│ ├── roger_the_worker.xml
│ ├── rokyn.xml
│ ├── romella.xml
│ ├── romir.xml
│ ├── rose.xml
│ ├── rosemarie.xml
│ ├── ross.xml
│ ├── roswitha.xml
│ ├── rotem_valos.xml
│ ├── rottin_wood.xml
│ ├── roughington.xml
│ ├── rowenna.xml
│ ├── rudolph.xml
│ ├── runtel_blackspark.xml
│ ├── ruprecht.xml
│ ├── saideh.xml
│ ├── salbra.xml
│ ├── sam.xml
│ ├── samir.xml
│ ├── sandomo.xml
│ ├── sandra.xml
│ ├── sane_mage.xml
│ ├── santa_claus.xml
│ ├── santiago.xml
│ ├── sarina.xml
│ ├── satsu.xml
│ ├── scott.xml
│ ├── scott_the_scout.xml
│ ├── scripts
│ │ ├── ....lua
│ │ ├── a_bearded_woman.lua
│ │ ├── a_beautiful_girl.lua
│ │ ├── a_beggar.lua
│ │ ├── a_confused_frog.lua
│ │ ├── a_dark_priestess.lua
│ │ ├── a_dead_bureaucrat1.lua
│ │ ├── a_dead_bureaucrat2.lua
│ │ ├── a_dead_bureaucrat3.lua
│ │ ├── a_dead_bureaucrat4.lua
│ │ ├── a_dragon_mother.lua
│ │ ├── a_dwarven_ghost.lua
│ │ ├── a_fading_memory.lua
│ │ ├── a_fluffy_squirrel.lua
│ │ ├── a_frog.lua
│ │ ├── a_ghostly_guardian.lua
│ │ ├── a_ghostly_knight.lua
│ │ ├── a_ghostly_sage.lua
│ │ ├── a_ghostly_woman.lua
│ │ ├── a_ghostly_woman_ghostland.lua
│ │ ├── a_goblin_exile.lua
│ │ ├── a_lost_soul.lua
│ │ ├── a_majestic_warwolf.lua
│ │ ├── a_prisoner.lua
│ │ ├── a_restless_soul.lua
│ │ ├── a_sleeping_dragon.lua
│ │ ├── a_starving_dog.lua
│ │ ├── a_strange_chalice.lua
│ │ ├── a_strange_fellow.lua
│ │ ├── a_swan.lua
│ │ ├── a_sweaty_cyclops.lua
│ │ ├── a_tainted_soul.lua
│ │ ├── a_tortured_soul.lua
│ │ ├── a_weakened_forest_fury.lua
│ │ ├── a_wrinkled_bonelord.lua
│ │ ├── abran_ironeye.lua
│ │ ├── admiral_wyrmslicer.lua
│ │ ├── adrenius.lua
│ │ ├── ahmet.lua
│ │ ├── ajax.lua
│ │ ├── al_dee.lua
│ │ ├── alaistar.lua
│ │ ├── albert.lua
│ │ ├── albinius.lua
│ │ ├── aldo.lua
│ │ ├── alesar.lua
│ │ ├── alexander.lua
│ │ ├── alia.lua
│ │ ├── alissa.lua
│ │ ├── alkestios.lua
│ │ ├── allen.lua
│ │ ├── alternative_rock.lua
│ │ ├── alwin.lua
│ │ ├── alyxo.lua
│ │ ├── amanda.lua
│ │ ├── amarie.lua
│ │ ├── ambassador_of_rathleton.lua
│ │ ├── amber.lua
│ │ ├── an_ancient_priest.lua
│ │ ├── an_apparition.lua
│ │ ├── an_imprisoned_goblin.lua
│ │ ├── an_old_dragon_lord.lua
│ │ ├── an_orc_guard.lua
│ │ ├── anderson.lua
│ │ ├── andrew_lyze.lua
│ │ ├── anerui.lua
│ │ ├── aneus.lua
│ │ ├── angelina.lua
│ │ ├── angelo.lua
│ │ ├── angus.lua
│ │ ├── appaloosa.lua
│ │ ├── archery.lua
│ │ ├── archeryrook.lua
│ │ ├── ariella.lua
│ │ ├── arito.lua
│ │ ├── arkarra.lua
│ │ ├── arkhothep.lua
│ │ ├── arkulius.lua
│ │ ├── armenius_npc.lua
│ │ ├── arnold.lua
│ │ ├── aruda.lua
│ │ ├── ashari.lua
│ │ ├── ashtamor.lua
│ │ ├── asima.lua
│ │ ├── asnarus.lua
│ │ ├── asrak.lua
│ │ ├── asralius.lua
│ │ ├── atrad.lua
│ │ ├── aurita.lua
│ │ ├── auron.lua
│ │ ├── avar_tar.lua
│ │ ├── awareness_of_the_emperor.lua
│ │ ├── azalea.lua
│ │ ├── azil.lua
│ │ ├── baa_leal.lua
│ │ ├── baltim.lua
│ │ ├── bambi_bonecrusher.lua
│ │ ├── bank.lua
│ │ ├── barazbaz.lua
│ │ ├── barbara.lua
│ │ ├── barnabas_dee.lua
│ │ ├── barney.lua
│ │ ├── barry.lua
│ │ ├── bashira.lua
│ │ ├── basilisk.lua
│ │ ├── baxter.lua
│ │ ├── beatrice.lua
│ │ ├── benevola.lua
│ │ ├── benjamin.lua
│ │ ├── berenice.lua
│ │ ├── bertha.lua
│ │ ├── bertram.lua
│ │ ├── bezil.lua
│ │ ├── bigfoot_soldier.lua
│ │ ├── bill_the_worker.lua
│ │ ├── billy.lua
│ │ ├── black_bert.lua
│ │ ├── blind_orc.lua
│ │ ├── blossom_bonecrusher.lua
│ │ ├── bo_ques.lua
│ │ ├── bob_the_worker.lua
│ │ ├── bolfona.lua
│ │ ├── bonifacius.lua
│ │ ├── boozer.lua
│ │ ├── borkas.lua
│ │ ├── boveas.lua
│ │ ├── bozarn.lua
│ │ ├── bozo.lua
│ │ ├── braden.lua
│ │ ├── bradford.lua
│ │ ├── brasith.lua
│ │ ├── brengus.lua
│ │ ├── brewster.lua
│ │ ├── briasol.lua
│ │ ├── bright_percht_sleigh.lua
│ │ ├── brodrosch.lua
│ │ ├── broken_servant_sentry.lua
│ │ ├── brom.lua
│ │ ├── bron.lua
│ │ ├── bruce.lua
│ │ ├── bruno.lua
│ │ ├── brutus.lua
│ │ ├── buddel.lua
│ │ ├── buddel_helheim.lua
│ │ ├── buddel_okolnir.lua
│ │ ├── buddel_raider_camp.lua
│ │ ├── buddel_tyrsung.lua
│ │ ├── budrik.lua
│ │ ├── bunny_bonecrusher.lua
│ │ ├── busty_bonecrusher.lua
│ │ ├── cael.lua
│ │ ├── cameron.lua
│ │ ├── captain_bluebear.lua
│ │ ├── captain_breezelda.lua
│ │ ├── captain_chelop.lua
│ │ ├── captain_cookie.lua
│ │ ├── captain_dreadnought.lua
│ │ ├── captain_fearless.lua
│ │ ├── captain_greyhound.lua
│ │ ├── captain_gulliver.lua
│ │ ├── captain_haba.lua
│ │ ├── captain_haba_open_sea.lua
│ │ ├── captain_harava.lua
│ │ ├── captain_jack.lua
│ │ ├── captain_kurt.lua
│ │ ├── captain_max.lua
│ │ ├── captain_max_calassa.lua
│ │ ├── captain_pelagia.lua
│ │ ├── captain_seagull.lua
│ │ ├── captain_seahorse.lua
│ │ ├── captain_sinbeard.lua
│ │ ├── captain_tiberius.lua
│ │ ├── captain_waverider.lua
│ │ ├── captain_waverider_island.lua
│ │ ├── caramellia.lua
│ │ ├── carina.lua
│ │ ├── carlos.lua
│ │ ├── carlson.lua
│ │ ├── cedrik.lua
│ │ ├── ceiron.lua
│ │ ├── cerdras.lua
│ │ ├── cerebrir.lua
│ │ ├── chantalle.lua
│ │ ├── charles.lua
│ │ ├── charlotta.lua
│ │ ├── charos.lua
│ │ ├── chartan.lua
│ │ ├── chatterbone.lua
│ │ ├── chavis.lua
│ │ ├── chemar.lua
│ │ ├── chephan.lua
│ │ ├── chester_kahs.lua
│ │ ├── chief_grarkharok.lua
│ │ ├── chondur.lua
│ │ ├── chrak.lua
│ │ ├── chraknpc.lua
│ │ ├── christine.lua
│ │ ├── christoph.lua
│ │ ├── chrystal.lua
│ │ ├── chuck_the_worker.lua
│ │ ├── chuckles.lua
│ │ ├── cillia.lua
│ │ ├── cipfried.lua
│ │ ├── clark.lua
│ │ ├── cledwyn.lua
│ │ ├── clyde.lua
│ │ ├── cobra.lua
│ │ ├── cold_percht_sleigh.lua
│ │ ├── coltrayne.lua
│ │ ├── commander_stone.lua
│ │ ├── cornelia.lua
│ │ ├── cornell.lua
│ │ ├── corym_ratter.lua
│ │ ├── corym_servant.lua
│ │ ├── costello.lua
│ │ ├── cranky_lizard_crone.lua
│ │ ├── crowned_tree.lua
│ │ ├── cruleo.lua
│ │ ├── curos.lua
│ │ ├── custom
│ │ │ └── cassino.lua
│ │ ├── dabui.lua
│ │ ├── dagomir.lua
│ │ ├── dalbrect.lua
│ │ ├── dallheim.lua
│ │ ├── dane.lua
│ │ ├── daniel_steelsoul.lua
│ │ ├── dankwart.lua
│ │ ├── danlon.lua
│ │ ├── dario.lua
│ │ ├── dark_percht_sleigh.lua
│ │ ├── dedoras.lua
│ │ ├── default.lua
│ │ ├── demonguard.lua
│ │ ├── denominator.lua
│ │ ├── dermot.lua
│ │ ├── digger.lua
│ │ ├── dixi.lua
│ │ ├── djema.lua
│ │ ├── doctor_gnomedix.lua
│ │ ├── donald_mcronald.lua
│ │ ├── dorbin.lua
│ │ ├── dorian.lua
│ │ ├── doubleday.lua
│ │ ├── doug.lua
│ │ ├── dove.lua
│ │ ├── dr_merlay.lua
│ │ ├── dreadeye.lua
│ │ ├── dream_butterfly.lua
│ │ ├── dregor.lua
│ │ ├── drog.lua
│ │ ├── dronk.lua
│ │ ├── druid_yandur.lua
│ │ ├── drystan_wildweed.lua
│ │ ├── dukosch.lua
│ │ ├── duncan.lua
│ │ ├── duria.lua
│ │ ├── dustrunner.lua
│ │ ├── eathar.lua
│ │ ├── eclesius.lua
│ │ ├── edala.lua
│ │ ├── eddy.lua
│ │ ├── edgar-ellen.lua
│ │ ├── edmund.lua
│ │ ├── edoch.lua
│ │ ├── edowir.lua
│ │ ├── edron_guardsman.lua
│ │ ├── edvard.lua
│ │ ├── eirik.lua
│ │ ├── elane.lua
│ │ ├── elathriel.lua
│ │ ├── eleonore.lua
│ │ ├── elf_guard.lua
│ │ ├── eliyas.lua
│ │ ├── eliza.lua
│ │ ├── elliott.lua
│ │ ├── elvith.lua
│ │ ├── elyen_ravenlock.lua
│ │ ├── emily.lua
│ │ ├── emma.lua
│ │ ├── emperor_kruzak.lua
│ │ ├── emperor_rehal.lua
│ │ ├── eranth.lua
│ │ ├── erayo.lua
│ │ ├── eremo.lua
│ │ ├── eroth.lua
│ │ ├── eruaran.lua
│ │ ├── eshaya.lua
│ │ ├── esrik.lua
│ │ ├── ethan.lua
│ │ ├── etzel.lua
│ │ ├── evan.lua
│ │ ├── ezean.lua
│ │ ├── ezebeth.lua
│ │ ├── fa_hradin.lua
│ │ ├── fadil.lua
│ │ ├── falk.lua
│ │ ├── falonzo.lua
│ │ ├── faloriel.lua
│ │ ├── faluae.lua
│ │ ├── fayla.lua
│ │ ├── feizuhl.lua
│ │ ├── fenbala.lua
│ │ ├── fenech.lua
│ │ ├── fergus.lua
│ │ ├── ferryman_kamil.lua
│ │ ├── ferryman_kamil_meluna.lua
│ │ ├── ferus.lua
│ │ ├── fillias.lua
│ │ ├── fiona.lua
│ │ ├── flint.lua
│ │ ├── flora.lua
│ │ ├── florentine.lua
│ │ ├── frafnar.lua
│ │ ├── frank_the_plank.lua
│ │ ├── frans.lua
│ │ ├── frederik.lua
│ │ ├── freezhild.lua
│ │ ├── frodo.lua
│ │ ├── frosty.lua
│ │ ├── fynn.lua
│ │ ├── fyodor.lua
│ │ ├── gabel.lua
│ │ ├── gail.lua
│ │ ├── galuna.lua
│ │ ├── gamel.lua
│ │ ├── gamon.lua
│ │ ├── garamond.lua
│ │ ├── gareth.lua
│ │ ├── gate_guardian.lua
│ │ ├── gederas.lua
│ │ ├── gelagos.lua
│ │ ├── gelidrazahs_thirst.lua
│ │ ├── george_the_boyscout.lua
│ │ ├── gerimor.lua
│ │ ├── gewen.lua
│ │ ├── ghorza.lua
│ │ ├── ghost_of_a_priest.lua
│ │ ├── ghostly_wolf.lua
│ │ ├── gladys.lua
│ │ ├── gnomad.lua
│ │ ├── gnomailion.lua
│ │ ├── gnomally.lua
│ │ ├── gnomargery.lua
│ │ ├── gnomaticus.lua
│ │ ├── gnombold.lua
│ │ ├── gnome.lua
│ │ ├── gnome_trooper.lua
│ │ ├── gnomegica.lua
│ │ ├── gnomejam.lua
│ │ ├── gnomelvis.lua
│ │ ├── gnomenursey.lua
│ │ ├── gnomeral.lua
│ │ ├── gnomercy.lua
│ │ ├── gnomerik.lua
│ │ ├── gnomerrow.lua
│ │ ├── gnomespector.lua
│ │ ├── gnomette.lua
│ │ ├── gnomewart.lua
│ │ ├── gnomilly.lua
│ │ ├── gnomincia.lua
│ │ ├── gnominus.lua
│ │ ├── gnomission.lua
│ │ ├── gnommander.lua
│ │ ├── gnomole.lua
│ │ ├── gnomus.lua
│ │ ├── gnomux.lua
│ │ ├── gordon.lua
│ │ ├── gorn.lua
│ │ ├── graham.lua
│ │ ├── graubart.lua
│ │ ├── gree_dee.lua
│ │ ├── gregor.lua
│ │ ├── grizzly_adams.lua
│ │ ├── grodrik.lua
│ │ ├── grof_the_guard.lua
│ │ ├── grombur.lua
│ │ ├── grubokk.lua
│ │ ├── grumpy_stone.lua
│ │ ├── guard_bazaya.lua
│ │ ├── guard_inurta.lua
│ │ ├── guard_saros.lua
│ │ ├── guard_senet.lua
│ │ ├── guardian_of_the_deep_seas.lua
│ │ ├── guide_alexena.lua
│ │ ├── guide_behil.lua
│ │ ├── guide_davina.lua
│ │ ├── guide_edna.lua
│ │ ├── guide_elena.lua
│ │ ├── guide_jonathan.lua
│ │ ├── guide_kroak.lua
│ │ ├── guide_kunibert.lua
│ │ ├── guide_luke.lua
│ │ ├── guide_meruka.lua
│ │ ├── guide_rahlkora.lua
│ │ ├── guide_thelandil.lua
│ │ ├── guide_tiko.lua
│ │ ├── gundralph.lua
│ │ ├── gurbasch.lua
│ │ ├── h.l..lua
│ │ ├── habdel.lua
│ │ ├── hagor.lua
│ │ ├── hairycles.lua
│ │ ├── hal.lua
│ │ ├── halif.lua
│ │ ├── halvar.lua
│ │ ├── hamilton.lua
│ │ ├── hamish.lua
│ │ ├── hanna.lua
│ │ ├── hardek.lua
│ │ ├── harkath_bloodblade.lua
│ │ ├── harlow.lua
│ │ ├── harlow_vengoth.lua
│ │ ├── harlowtrade.lua
│ │ ├── harog.lua
│ │ ├── haroun.lua
│ │ ├── harsky.lua
│ │ ├── hawkyr.lua
│ │ ├── helor.lua
│ │ ├── hemor_the_guard.lua
│ │ ├── henricus.lua
│ │ ├── herbert.lua
│ │ ├── hexel.lua
│ │ ├── hireling.lua
│ │ ├── hjaern.lua
│ │ ├── hofech.lua
│ │ ├── hoggle.lua
│ │ ├── hugo.lua
│ │ ├── humgolf.lua
│ │ ├── humnog_the_guard.lua
│ │ ├── humphrey.lua
│ │ ├── huntsman.lua
│ │ ├── hyacinth.lua
│ │ ├── ikassis.lua
│ │ ├── imalas.lua
│ │ ├── imbuement_assistant.lua
│ │ ├── imbul.lua
│ │ ├── inigo.lua
│ │ ├── inkaef.lua
│ │ ├── iptar-sin.lua
│ │ ├── irea.lua
│ │ ├── iriana.lua
│ │ ├── irmana.lua
│ │ ├── irvin.lua
│ │ ├── ishebad.lua
│ │ ├── ishina.lua
│ │ ├── isimov.lua
│ │ ├── iskan.lua
│ │ ├── isolde.lua
│ │ ├── ivalisse.lua
│ │ ├── iwan.lua
│ │ ├── iwar.lua
│ │ ├── iyad.lua
│ │ ├── izsh.lua
│ │ ├── jack.lua
│ │ ├── jack_drone.lua
│ │ ├── jack_fate.lua
│ │ ├── jack_fate_goroma.lua
│ │ ├── jack_the_worker.lua
│ │ ├── jacob.lua
│ │ ├── jagran.lua
│ │ ├── jakahr.lua
│ │ ├── james.lua
│ │ ├── jamesfrancis.lua
│ │ ├── janz.lua
│ │ ├── jason.lua
│ │ ├── jean_claude.lua
│ │ ├── jean_pierre.lua
│ │ ├── jerom.lua
│ │ ├── jeronimo.lua
│ │ ├── jezzara.lua
│ │ ├── jimbin.lua
│ │ ├── jimmy.lua
│ │ ├── john.lua
│ │ ├── jondrin.lua
│ │ ├── jorge.lua
│ │ ├── jossel.lua
│ │ ├── julian.lua
│ │ ├── julius.lua
│ │ ├── junkar_mines.lua
│ │ ├── junkar_robsons.lua
│ │ ├── junkar_thais.lua
│ │ ├── kais.lua
│ │ ├── kallimae.lua
│ │ ├── kalvin.lua
│ │ ├── karith.lua
│ │ ├── karl.lua
│ │ ├── kasmir.lua
│ │ ├── kawill.lua
│ │ ├── kaya.lua
│ │ ├── kazzan.lua
│ │ ├── kendra.lua
│ │ ├── kendra_thais.lua
│ │ ├── kepar.lua
│ │ ├── kevin.lua
│ │ ├── khanna.lua
│ │ ├── king_tibianus.lua
│ │ ├── kjesse.lua
│ │ ├── klaus.lua
│ │ ├── klesar.lua
│ │ ├── klom_stonecutter.lua
│ │ ├── knight_hykrion.lua
│ │ ├── kratos.lua
│ │ ├── kromrek.lua
│ │ ├── kroox.lua
│ │ ├── kulag_the_guard.lua
│ │ ├── lailene.lua
│ │ ├── lardoc_bashsmite.lua
│ │ ├── larek.lua
│ │ ├── larfion_the_shaman.lua
│ │ ├── lavirias.lua
│ │ ├── lazaran.lua
│ │ ├── lea.lua
│ │ ├── lector.lua
│ │ ├── lee_delle.lua
│ │ ├── leeland.lua
│ │ ├── legola.lua
│ │ ├── lesser_messenger_of_heaven.lua
│ │ ├── liane.lua
│ │ ├── lightfoot.lua
│ │ ├── lily.lua
│ │ ├── lisander.lua
│ │ ├── livielle.lua
│ │ ├── lizard_tunnel_guard.lua
│ │ ├── llathriel.lua
│ │ ├── lokur.lua
│ │ ├── lora.lua
│ │ ├── lorbas.lua
│ │ ├── lorek.lua
│ │ ├── loria.lua
│ │ ├── lorietta.lua
│ │ ├── lothar.lua
│ │ ├── lou_toose.lua
│ │ ├── loui.lua
│ │ ├── lubo.lua
│ │ ├── lucius.lua
│ │ ├── lugri.lua
│ │ ├── lukosch.lua
│ │ ├── luna.lua
│ │ ├── lunch.lua
│ │ ├── lungelen.lua
│ │ ├── lurik.lua
│ │ ├── lynda.lua
│ │ ├── lyonel.lua
│ │ ├── maealil.lua
│ │ ├── maelyrra.lua
│ │ ├── maeryn.lua
│ │ ├── malor.lua
│ │ ├── malunga.lua
│ │ ├── marcus.lua
│ │ ├── maria.lua
│ │ ├── marina.lua
│ │ ├── maris.lua
│ │ ├── maris_fenrock.lua
│ │ ├── maris_mistrock.lua
│ │ ├── maritima.lua
│ │ ├── markwin.lua
│ │ ├── marlene.lua
│ │ ├── maro.lua
│ │ ├── marvik.lua
│ │ ├── marvin.lua
│ │ ├── maryza.lua
│ │ ├── maun.lua
│ │ ├── mazarius.lua
│ │ ├── mehkesh.lua
│ │ ├── melchior.lua
│ │ ├── melfar.lua
│ │ ├── melian.lua
│ │ ├── memech.lua
│ │ ├── menacing_mummy.lua
│ │ ├── menesto.lua
│ │ ├── meraya.lua
│ │ ├── messenger_of_heaven.lua
│ │ ├── messenger_of_santa.lua
│ │ ├── miles_the_guard.lua
│ │ ├── milos.lua
│ │ ├── mirabell.lua
│ │ ├── miraia.lua
│ │ ├── moe.lua
│ │ ├── morax.lua
│ │ ├── mordecai.lua
│ │ ├── morgan.lua
│ │ ├── morpel.lua
│ │ ├── mortimer.lua
│ │ ├── mortis.lua
│ │ ├── morun.lua
│ │ ├── mother_of_jack.lua
│ │ ├── mr_brandon.lua
│ │ ├── mr_morris.lua
│ │ ├── mr_west.lua
│ │ ├── mugluf.lua
│ │ ├── mugruu.lua
│ │ ├── muhad.lua
│ │ ├── muriel.lua
│ │ ├── myra.lua
│ │ ├── mysterious_ornate_chest.lua
│ │ ├── nah_bob.lua
│ │ ├── narsai.lua
│ │ ├── navigator.lua
│ │ ├── neill.lua
│ │ ├── nelliem.lua
│ │ ├── nelly.lua
│ │ ├── nemal.lua
│ │ ├── nezil.lua
│ │ ├── nibble.lua
│ │ ├── nicholas.lua
│ │ ├── nielson.lua
│ │ ├── nienna.lua
│ │ ├── nilsor.lua
│ │ ├── nina.lua
│ │ ├── ninev.lua
│ │ ├── ninos.lua
│ │ ├── nokmir.lua
│ │ ├── nomad.lua
│ │ ├── noodles.lua
│ │ ├── noozer.lua
│ │ ├── nor.lua
│ │ ├── norbert.lua
│ │ ├── norf.lua
│ │ ├── norma.lua
│ │ ├── norman_the_foreman.lua
│ │ ├── normod.lua
│ │ ├── norris.lua
│ │ ├── nurik.lua
│ │ ├── nydala.lua
│ │ ├── nymph_challenging.lua
│ │ ├── oberon's_bile.lua
│ │ ├── oberon's_hate.lua
│ │ ├── oberon's_ire.lua
│ │ ├── oberon's_spite.lua
│ │ ├── obi.lua
│ │ ├── oblivion.lua
│ │ ├── ocelus.lua
│ │ ├── odemara.lua
│ │ ├── oiriz.lua
│ │ ├── old_adall.lua
│ │ ├── old_rock_boy.lua
│ │ ├── oldrak.lua
│ │ ├── oliver.lua
│ │ ├── olrik.lua
│ │ ├── omrabas.lua
│ │ ├── omur.lua
│ │ ├── one_eyed_joe.lua
│ │ ├── ongulf.lua
│ │ ├── orc_berserker_npc.lua
│ │ ├── oressa.lua
│ │ ├── ormuhn.lua
│ │ ├── orockle.lua
│ │ ├── ortheus.lua
│ │ ├── oswald.lua
│ │ ├── ottokar.lua
│ │ ├── padreia.lua
│ │ ├── paladin_narai.lua
│ │ ├── palimuth.lua
│ │ ├── palomino.lua
│ │ ├── paolo.lua
│ │ ├── parlan.lua
│ │ ├── partos.lua
│ │ ├── pat_the_worker.lua
│ │ ├── paulie.lua
│ │ ├── peaceful_pooka.lua
│ │ ├── peggy.lua
│ │ ├── pemaret.lua
│ │ ├── penny.lua
│ │ ├── perac.lua
│ │ ├── percy_silverhand.lua
│ │ ├── percybald.lua
│ │ ├── peremin.lua
│ │ ├── perod.lua
│ │ ├── peter.lua
│ │ ├── petros.lua
│ │ ├── phillip.lua
│ │ ├── pig_npc.lua
│ │ ├── pino.lua
│ │ ├── plunderpurse.lua
│ │ ├── polly.lua
│ │ ├── pompan.lua
│ │ ├── prezil.lua
│ │ ├── prisoner.lua
│ │ ├── puffels.lua
│ │ ├── pugwah.lua
│ │ ├── pukosch.lua
│ │ ├── pydar.lua
│ │ ├── pyro_peter.lua
│ │ ├── pyromental.lua
│ │ ├── pythius_the_rotten.lua
│ │ ├── quandons_ghost.lua
│ │ ├── queen_eloise.lua
│ │ ├── quentin.lua
│ │ ├── quero.lua
│ │ ├── rabaz.lua
│ │ ├── rachel.lua
│ │ ├── rafzan.lua
│ │ ├── rahkem.lua
│ │ ├── ramina.lua
│ │ ├── rapanaio.lua
│ │ ├── rapanaioboat.lua
│ │ ├── rapanaioisleofevil.lua
│ │ ├── rashid.lua
│ │ ├── rata_mari.lua
│ │ ├── ray.lua
│ │ ├── raymond_striker.lua
│ │ ├── razan.lua
│ │ ├── rebel.lua
│ │ ├── red_lilly.lua
│ │ ├── redward.lua
│ │ ├── reed.lua
│ │ ├── rehon.lua
│ │ ├── repenter.lua
│ │ ├── richard.lua
│ │ ├── riddler.lua
│ │ ├── robert.lua
│ │ ├── robin.lua
│ │ ├── robson.lua
│ │ ├── rock_in_a_hard_place.lua
│ │ ├── rock_steady.lua
│ │ ├── rock_with_a_soft_spot.lua
│ │ ├── roderick.lua
│ │ ├── rodney.lua
│ │ ├── roger_the_worker.lua
│ │ ├── romella.lua
│ │ ├── romir.lua
│ │ ├── rose.lua
│ │ ├── rosemarie.lua
│ │ ├── ross.lua
│ │ ├── roswitha.lua
│ │ ├── rotem_valos.lua
│ │ ├── rottin_wood.lua
│ │ ├── roughington.lua
│ │ ├── rowenna.lua
│ │ ├── rudolph.lua
│ │ ├── runtel_blackspark.lua
│ │ ├── ruprecht.lua
│ │ ├── saideh.lua
│ │ ├── salbra.lua
│ │ ├── sam.lua
│ │ ├── samir.lua
│ │ ├── sandomo.lua
│ │ ├── sandra.lua
│ │ ├── sane_mage.lua
│ │ ├── santa_claus.lua
│ │ ├── santiago.lua
│ │ ├── sarina.lua
│ │ ├── satsu.lua
│ │ ├── scott.lua
│ │ ├── scott_the_scout.lua
│ │ ├── scrutinon.lua
│ │ ├── scutty.lua
│ │ ├── sebastian.lua
│ │ ├── sebastian_nargor.lua
│ │ ├── ser_tybald.lua
│ │ ├── serafin.lua
│ │ ├── servant_sentry.lua
│ │ ├── seymour.lua
│ │ ├── shadowpunch.lua
│ │ ├── shalmar.lua
│ │ ├── shanar.lua
│ │ ├── shanoya.lua
│ │ ├── sharon.lua
│ │ ├── shauna.lua
│ │ ├── sherry_mcronald.lua
│ │ ├── shiantis.lua
│ │ ├── shimun.lua
│ │ ├── shiriel.lua
│ │ ├── shirith.lua
│ │ ├── shoddy_beggar.lua
│ │ ├── sholley.lua
│ │ ├── shortsighted_dwarf.lua
│ │ ├── siestaar.lua
│ │ ├── siflind.lua
│ │ ├── sigurd.lua
│ │ ├── silas.lua
│ │ ├── simon_the_beggar.lua
│ │ ├── sinatuki.lua
│ │ ├── sinclair.lua
│ │ ├── sirik.lua
│ │ ├── sister_of_jack.lua
│ │ ├── skeleton_guard.lua
│ │ ├── skip.lua
│ │ ├── skjaar.lua
│ │ ├── smiley.lua
│ │ ├── snake_eye.lua
│ │ ├── soilance.lua
│ │ ├── sorcerer_estrella.lua
│ │ ├── spectulus.lua
│ │ ├── stan.lua
│ │ ├── storkus.lua
│ │ ├── strange_pipe.lua
│ │ ├── strange_pipe1.lua
│ │ ├── strange_pipe2.lua
│ │ ├── strange_pipe3.lua
│ │ ├── stricken_soul.lua
│ │ ├── stutch.lua
│ │ ├── sven.lua
│ │ ├── svenson.lua
│ │ ├── swolt.lua
│ │ ├── sylvester.lua
│ │ ├── taegen.lua
│ │ ├── talesia.lua
│ │ ├── talila.lua
│ │ ├── talphion.lua
│ │ ├── tamara.lua
│ │ ├── tamed_lion.lua
│ │ ├── tamerin.lua
│ │ ├── tamoril.lua
│ │ ├── tanaro.lua
│ │ ├── tandros.lua
│ │ ├── tanyt.lua
│ │ ├── tarak_inner.lua
│ │ ├── tarak_sunken.lua
│ │ ├── tarun.lua
│ │ ├── tefrit.lua
│ │ ├── tehlim.lua
│ │ ├── telas.lua
│ │ ├── telas_golem.lua
│ │ ├── tereban.lua
│ │ ├── terrence.lua
│ │ ├── testserver_assistant.lua
│ │ ├── tezila.lua
│ │ ├── thanita.lua
│ │ ├── the_beggar_king.lua
│ │ ├── the_blind_prophet.lua
│ │ ├── the_bone_master.lua
│ │ ├── the_crone.lua
│ │ ├── the_destiny_seer.lua
│ │ ├── the_dream_master.lua
│ │ ├── the_empress.lua
│ │ ├── the_first_dragon.lua
│ │ ├── the_gate_keeper.lua
│ │ ├── the_librarian.lua
│ │ ├── the_oracle.lua
│ │ ├── the_orc_king.lua
│ │ ├── the_queen_of_the_banshees.lua
│ │ ├── theodore_loveless.lua
│ │ ├── thomas.lua
│ │ ├── thorgrin.lua
│ │ ├── thorwulf.lua
│ │ ├── tibra.lua
│ │ ├── tigo.lua
│ │ ├── tim_the_guard.lua
│ │ ├── timothy.lua
│ │ ├── timur.lua
│ │ ├── tired_tree.lua
│ │ ├── todd.lua
│ │ ├── tokel.lua
│ │ ├── tom.lua
│ │ ├── tomruk_the_ruddy.lua
│ │ ├── tony.lua
│ │ ├── tooth_fairy.lua
│ │ ├── toothless_tim.lua
│ │ ├── topsy.lua
│ │ ├── torence.lua
│ │ ├── tothdral.lua
│ │ ├── towncryer.lua
│ │ ├── trimegis.lua
│ │ ├── trisha.lua
│ │ ├── tristan.lua
│ │ ├── tulf.lua
│ │ ├── turvy.lua
│ │ ├── tylius.lua
│ │ ├── tyrias.lua
│ │ ├── ubaid.lua
│ │ ├── ukea.lua
│ │ ├── ula.lua
│ │ ├── ulala.lua
│ │ ├── ulrik.lua
│ │ ├── umar.lua
│ │ ├── uncle.lua
│ │ ├── undercover.lua
│ │ ├── urkalio.lua
│ │ ├── ursula.lua
│ │ ├── uso.lua
│ │ ├── ustan.lua
│ │ ├── uzgod.lua
│ │ ├── uzon.lua
│ │ ├── vad_inchi.lua
│ │ ├── valentina.lua
│ │ ├── valindara.lua
│ │ ├── vascalir.lua
│ │ ├── velvet.lua
│ │ ├── vera.lua
│ │ ├── vescu.lua
│ │ ├── victor.lua
│ │ ├── vigintius.lua
│ │ ├── vincent.lua
│ │ ├── virgil.lua
│ │ ├── vladruc.lua
│ │ ├── vulturenose.lua
│ │ ├── vuzrog.lua
│ │ ├── wally.lua
│ │ ├── walter_the_guard.lua
│ │ ├── warbert.lua
│ │ ├── weaponmaster.lua
│ │ ├── wentworth.lua
│ │ ├── willard.lua
│ │ ├── willem.lua
│ │ ├── william.lua
│ │ ├── willie.lua
│ │ ├── willow.lua
│ │ ├── woblin.lua
│ │ ├── wyat.lua
│ │ ├── wyda.lua
│ │ ├── wyrdin.lua
│ │ ├── xed.lua
│ │ ├── xelvar.lua
│ │ ├── xodet.lua
│ │ ├── xorlosh.lua
│ │ ├── yalahari.lua
│ │ ├── yaman.lua
│ │ ├── yana.lua
│ │ ├── yanni.lua
│ │ ├── yasir.lua
│ │ ├── yawno.lua
│ │ ├── yberius.lua
│ │ ├── yoem.lua
│ │ ├── yonan.lua
│ │ ├── yulas.lua
│ │ ├── zaidal.lua
│ │ ├── zalamon.lua
│ │ ├── zarak.lua
│ │ ├── zarifan.lua
│ │ ├── zebron.lua
│ │ ├── zedrulon_the_fallen.lua
│ │ ├── zerbrus.lua
│ │ ├── zeronex.lua
│ │ ├── zethra.lua
│ │ ├── zirella.lua
│ │ ├── zirkon.lua
│ │ ├── zizzle.lua
│ │ ├── zlak.lua
│ │ ├── zoltan.lua
│ │ ├── zora.lua
│ │ ├── ztiss.lua
│ │ ├── zuma_magehide.lua
│ │ ├── zumtah.lua
│ │ ├── zurak.lua
│ │ └── zurakarena.lua
│ ├── scrutinon.xml
│ ├── scutty.xml
│ ├── sebastian.xml
│ ├── sebastian_nargor.xml
│ ├── ser_tybald.xml
│ ├── serafin.xml
│ ├── servant_sentry.xml
│ ├── seymour.xml
│ ├── shadowpunch.xml
│ ├── shalmar.xml
│ ├── shanar.xml
│ ├── shanoya.xml
│ ├── sharon.xml
│ ├── shauna.xml
│ ├── sherry_mcronald.xml
│ ├── shiantis.xml
│ ├── shimun.xml
│ ├── shiriel.xml
│ ├── shirith.xml
│ ├── shoddy_beggar.xml
│ ├── sholley.xml
│ ├── shortsighted_dwarf.xml
│ ├── siestaar.xml
│ ├── siflind.xml
│ ├── sigurd.xml
│ ├── silas.xml
│ ├── simon_the_beggar.xml
│ ├── sinatuki.xml
│ ├── sinclair.xml
│ ├── sirik.xml
│ ├── sister_of_jack.xml
│ ├── skeleton_guard.xml
│ ├── skip.xml
│ ├── skjaar.xml
│ ├── smiley.xml
│ ├── snake_eye.xml
│ ├── soilance.xml
│ ├── sorcerer_estrella.xml
│ ├── spectulus.xml
│ ├── stan.xml
│ ├── storkus.xml
│ ├── strange_pipe.xml
│ ├── strange_pipe1.xml
│ ├── strange_pipe2.xml
│ ├── strange_pipe3.xml
│ ├── stricken_soul.xml
│ ├── stutch.xml
│ ├── suzy.xml
│ ├── sven.xml
│ ├── svenson.xml
│ ├── swolt.xml
│ ├── sylvester.xml
│ ├── taegen.xml
│ ├── talesia.xml
│ ├── talila.xml
│ ├── talphion.xml
│ ├── tamara.xml
│ ├── tamed_lion.xml
│ ├── tamerin.xml
│ ├── tamoril.xml
│ ├── tanaro.xml
│ ├── tandros.xml
│ ├── tanyt.xml
│ ├── tarak_inner.xml
│ ├── tarak_sunken.xml
│ ├── tarun.xml
│ ├── tefrit.xml
│ ├── tehlim.xml
│ ├── telas.xml
│ ├── telas_golem.xml
│ ├── tereban.xml
│ ├── terrence.xml
│ ├── tesha.xml
│ ├── testserver_assistant.xml
│ ├── tezila.xml
│ ├── thanita.xml
│ ├── the_beggar_king.xml
│ ├── the_blind_prophet.xml
│ ├── the_bone_master.xml
│ ├── the_crone.xml
│ ├── the_destiny_seer.xml
│ ├── the_dream_master.xml
│ ├── the_empress.xml
│ ├── the_first_dragon.xml
│ ├── the_gate_keeper.xml
│ ├── the_librarian.xml
│ ├── the_oracle.xml
│ ├── the_orc_king.xml
│ ├── the_queen_of_the_banshees.xml
│ ├── theodore_loveless.xml
│ ├── thomas.xml
│ ├── thorgrin.xml
│ ├── thorwulf.xml
│ ├── tibra.xml
│ ├── tigo.xml
│ ├── tim_the_guard.xml
│ ├── timothy.xml
│ ├── timur.xml
│ ├── tired_tree.xml
│ ├── todd.xml
│ ├── tokel.xml
│ ├── tom.xml
│ ├── tomruk_the_ruddy.xml
│ ├── tony.xml
│ ├── tooth_fairy.xml
│ ├── toothless_tim.xml
│ ├── topsy.xml
│ ├── torence.xml
│ ├── tothdral.xml
│ ├── towncryer.xml
│ ├── trimegis.xml
│ ├── trisha.xml
│ ├── tristan.xml
│ ├── tulf.xml
│ ├── turvy.xml
│ ├── tylius.xml
│ ├── tyrias.xml
│ ├── ubaid.xml
│ ├── ukea.xml
│ ├── ula.xml
│ ├── ulala.xml
│ ├── ulrik.xml
│ ├── umar.xml
│ ├── uncle.xml
│ ├── undal.xml
│ ├── urkalio.xml
│ ├── ursula.xml
│ ├── uso.xml
│ ├── ustan.xml
│ ├── uzgod.xml
│ ├── uzon.xml
│ ├── vad_inchi.xml
│ ├── valentina.xml
│ ├── valindara.xml
│ ├── vanys.xml
│ ├── vascalir.xml
│ ├── velvet.xml
│ ├── vera.xml
│ ├── vescu.xml
│ ├── victor.xml
│ ├── vigintius.xml
│ ├── vincent.xml
│ ├── virgil.xml
│ ├── vladruc.xml
│ ├── vulturenose.xml
│ ├── vuzrog.xml
│ ├── wally.xml
│ ├── walter_the_guard.xml
│ ├── warbert.xml
│ ├── weaponmaster.xml
│ ├── wentworth.xml
│ ├── wesley.xml
│ ├── willard.xml
│ ├── willem.xml
│ ├── william.xml
│ ├── willie.xml
│ ├── willow.xml
│ ├── woblin.xml
│ ├── wyat.xml
│ ├── wyda.xml
│ ├── wyrdin.xml
│ ├── xed.xml
│ ├── xelvar.xml
│ ├── xodet.xml
│ ├── xorlosh.xml
│ ├── yalahari_npc.xml
│ ├── yaman.xml
│ ├── yana.xml
│ ├── yanni.xml
│ ├── yasir.xml
│ ├── yawno.xml
│ ├── yberius.xml
│ ├── yoem.xml
│ ├── yonan.xml
│ ├── yulas.xml
│ ├── zaidal.xml
│ ├── zalamon.xml
│ ├── zarak.xml
│ ├── zarifan.xml
│ ├── zebron.xml
│ ├── zedrulon_the_fallen.xml
│ ├── zerbrus.xml
│ ├── zeronex.xml
│ ├── zethra.xml
│ ├── zirella.xml
│ ├── zirkon.xml
│ ├── zizzle.xml
│ ├── zlak.xml
│ ├── znozel.xml
│ ├── zoltan.xml
│ ├── zora.xml
│ ├── ztiss.xml
│ ├── zuma_magehide.xml
│ ├── zumtah.xml
│ ├── zurak.xml
│ └── zurakarena.xml
├── raids
│ ├── abdendriel
│ │ ├── badger.xml
│ │ ├── dragons.xml
│ │ ├── warwolf.xml
│ │ └── wasp_bear.xml
│ ├── ankrahmun
│ │ ├── bone_beast.xml
│ │ ├── cobra.xml
│ │ ├── gargoyle.xml
│ │ ├── nomad.xml
│ │ ├── scarab.xml
│ │ └── terramite.xml
│ ├── carlin
│ │ ├── orc.xml
│ │ └── yeti.xml
│ ├── chayenne
│ │ └── chayenne.xml
│ ├── darashia
│ │ ├── arachir_the_ancient_one.xml
│ │ ├── lions.xml
│ │ ├── minotaurs.xml
│ │ ├── necropharus.xml
│ │ ├── pirates.xml
│ │ ├── priestesses.xml
│ │ ├── the_pale_count.xml
│ │ ├── tyrn.xml
│ │ ├── undead_darashia.xml
│ │ └── white_pale.xml
│ ├── edron
│ │ ├── feroxa.xml
│ │ ├── goblins.xml
│ │ ├── mad_mage.xml
│ │ ├── orc.xml
│ │ ├── orshabaal.xml
│ │ ├── sir_valorcrest.xml
│ │ ├── warlock.xml
│ │ └── weakened_shlorg.xml
│ ├── farmine
│ │ ├── beetles.xml
│ │ ├── draptor.xml
│ │ ├── gnarlhounds.xml
│ │ ├── zevelon_duskbringer.xml
│ │ └── zulazza_the_corruptor.xml
│ ├── fury_gate
│ │ └── furyosa.xml
│ ├── kazordoon
│ │ ├── goblins.xml
│ │ └── horned.xml
│ ├── liberty_bay
│ │ ├── crustacea_gigantica_1.xml
│ │ ├── crustacea_gigantica_2.xml
│ │ ├── crustacea_gigantica_3.xml
│ │ ├── diblis_the_fair.xml
│ │ ├── ferumbras.xml
│ │ ├── morgaroth.xml
│ │ ├── quaras.xml
│ │ ├── tigers.xml
│ │ ├── tortoises.xml
│ │ └── undead_cavebear.xml
│ ├── oramond
│ │ ├── crustacea_gigantica_4.xml
│ │ └── crustacea_gigantica_5.xml
│ ├── port_hope
│ │ ├── kongras.xml
│ │ ├── lizards.xml
│ │ ├── midnight_panther_1.xml
│ │ ├── midnight_panther_2.xml
│ │ ├── midnight_panther_3.xml
│ │ ├── serpent_spawn.xml
│ │ ├── terrorbirds.xml
│ │ └── the_welter.xml
│ ├── raids.xml
│ ├── rookgaard
│ │ ├── munster.xml
│ │ ├── rats.xml
│ │ ├── rottie1.xml
│ │ ├── rottie2.xml
│ │ ├── sheng.xml
│ │ └── teleskor.xml
│ ├── roshamuul
│ │ ├── gaz_haragoth.xml
│ │ ├── mawhawk.xml
│ │ └── omrafir.xml
│ ├── svargrond
│ │ ├── barba_bittermor.xml
│ │ ├── barba_svar.xml
│ │ ├── barbarian.xml
│ │ ├── ghazbaran.xml
│ │ ├── hirintror.xml
│ │ ├── ice_golems.xml
│ │ ├── ocyakao.xml
│ │ └── zushuka.xml
│ ├── thais
│ │ ├── cyclops.xml
│ │ ├── orcs.xml
│ │ ├── rats.xml
│ │ └── wild_horses.xml
│ └── venore
│ │ ├── dharalion.xml
│ │ ├── elves.xml
│ │ ├── fernfang.xml
│ │ ├── feverish_citizen.xml
│ │ ├── hunter.xml
│ │ ├── orc_backpack.xml
│ │ ├── the_old_widow.xml
│ │ ├── undead.xml
│ │ └── water_buffalo.xml
├── reports
│ ├── bugs
│ │ └── .gitignore
│ └── players
│ │ └── .gitignore
├── scripts
│ ├── actions
│ │ ├── addons
│ │ │ ├── addons.lua
│ │ │ └── afflicted_outfit.lua
│ │ ├── adventurers_guild
│ │ │ ├── adventurers_stone.lua
│ │ │ └── magic_door.lua
│ │ ├── arena_pvp
│ │ │ ├── arena_10x10.lua
│ │ │ └── arena_2x2.lua
│ │ ├── dawnport
│ │ │ ├── lever.lua
│ │ │ └── vocation_door.lua
│ │ ├── door
│ │ │ ├── custom_door.lua
│ │ │ ├── key_door.lua
│ │ │ ├── level_door.lua
│ │ │ └── quest_door.lua
│ │ ├── falcons
│ │ │ └── falcon_shield.lua
│ │ ├── farmine
│ │ │ ├── boat.lua
│ │ │ ├── elevator_lever.lua
│ │ │ ├── oberon_lever.lua
│ │ │ └── temple_of_equilibrium_vines.lua
│ │ ├── kazordoon
│ │ │ ├── elevator_lever.lua
│ │ │ ├── ore_wagons.lua
│ │ │ ├── stone.lua
│ │ │ └── trap_door.lua
│ │ ├── mounts
│ │ │ ├── mounts.lua
│ │ │ └── music_box.lua
│ │ ├── object
│ │ │ ├── imbuement_shrine.lua
│ │ │ ├── market.lua
│ │ │ ├── moonlight_crystals.lua
│ │ │ └── stash.lua
│ │ ├── oramond
│ │ │ ├── elevator.lua
│ │ │ ├── sewer_grate.lua
│ │ │ ├── sewer_grate_teleport.lua
│ │ │ ├── teleport_north.lua
│ │ │ └── teleport_west.lua
│ │ ├── other
│ │ │ ├── bag_you_desire.lua
│ │ │ ├── baking.lua
│ │ │ ├── bath_tub.lua
│ │ │ ├── bed_modification_kits.lua
│ │ │ ├── blessing_charms.lua
│ │ │ ├── blueberry_bush.lua
│ │ │ ├── carpets.lua
│ │ │ ├── cask_kegs.lua
│ │ │ ├── catch_fish.lua
│ │ │ ├── check_bless.lua
│ │ │ ├── clay_lump.lua
│ │ │ ├── cobra_flask.lua
│ │ │ ├── construction_kits.lua
│ │ │ ├── costume_bags.lua
│ │ │ ├── create_sugar_oat.lua
│ │ │ ├── cup_cakes.lua
│ │ │ ├── cup_of_molten_gold.lua
│ │ │ ├── daily_reward_shrine.lua
│ │ │ ├── destroy.lua
│ │ │ ├── dice.lua
│ │ │ ├── dolls.lua
│ │ │ ├── door_shive1.lua
│ │ │ ├── door_shive2.lua
│ │ │ ├── down_floor.lua
│ │ │ ├── dryad_garden.lua
│ │ │ ├── enchanting.lua
│ │ │ ├── exercise_training.lua
│ │ │ ├── fireworks_rocket.lua
│ │ │ ├── fish_tank.lua
│ │ │ ├── fishing.lua
│ │ │ ├── fluids.lua
│ │ │ ├── food.lua
│ │ │ ├── gems.lua
│ │ │ ├── glooth_bag.lua
│ │ │ ├── gold_converter.lua
│ │ │ ├── golden_outfit_display.lua
│ │ │ ├── golden_outfit_memorial.lua
│ │ │ ├── hireling_food.lua
│ │ │ ├── hirelinglamp.lua
│ │ │ ├── jean_pierre_food.lua
│ │ │ ├── lottery_ticket.lua
│ │ │ ├── magic_gold_converter.lua
│ │ │ ├── magic_tree.lua
│ │ │ ├── mechanical_fishing.lua
│ │ │ ├── muck_remover.lua
│ │ │ ├── music.lua
│ │ │ ├── offline_training.lua
│ │ │ ├── offline_training_book.lua
│ │ │ ├── ore_wagon.lua
│ │ │ ├── others
│ │ │ │ ├── quest_system1.lua
│ │ │ │ └── quest_system2.lua
│ │ │ ├── party_hat.lua
│ │ │ ├── party_trumpet.lua
│ │ │ ├── piggy_bank.lua
│ │ │ ├── potions.lua
│ │ │ ├── rafzane_elevator.lua
│ │ │ ├── roasted_meat.lua
│ │ │ ├── string_of_mending.lua
│ │ │ ├── surprise_bag.lua
│ │ │ ├── surprise_box.lua
│ │ │ ├── sweet_heart.lua
│ │ │ ├── teleport.lua
│ │ │ ├── teleport_draw_well.lua
│ │ │ ├── teleport_item.lua
│ │ │ ├── temple_scroll.lua
│ │ │ ├── thais_exhibition.lua
│ │ │ ├── transform_to.lua
│ │ │ ├── trap.lua
│ │ │ ├── unrealized_dream.lua
│ │ │ ├── ursagrodon.lua
│ │ │ ├── voodoo_doll.lua
│ │ │ ├── watch.lua
│ │ │ └── windows.lua
│ │ ├── quests
│ │ │ ├── adventurers_guild
│ │ │ │ ├── treasure.lua
│ │ │ │ └── warrior_skeleton.lua
│ │ │ ├── barbarian_test
│ │ │ │ ├── horn.lua
│ │ │ │ └── mead.lua
│ │ │ ├── bigfoot_burden
│ │ │ │ ├── beer.lua
│ │ │ │ ├── crystal.lua
│ │ │ │ ├── extractor.lua
│ │ │ │ ├── matchmaker.lua
│ │ │ │ ├── mouthpiece.lua
│ │ │ │ ├── mushroom.lua
│ │ │ │ ├── music.lua
│ │ │ │ ├── package.lua
│ │ │ │ ├── pig.lua
│ │ │ │ ├── repair.lua
│ │ │ │ ├── rewards.lua
│ │ │ │ ├── shooting.lua
│ │ │ │ ├── spores.lua
│ │ │ │ ├── stone.lua
│ │ │ │ └── warzone1_crystal.lua
│ │ │ ├── chayenne_realm
│ │ │ │ ├── lever.lua
│ │ │ │ └── reward.lua
│ │ │ ├── children_of_the_revolution
│ │ │ │ ├── mission3_chest.lua
│ │ │ │ ├── mission3_poison_water.lua
│ │ │ │ ├── mission4_grease_oil.lua
│ │ │ │ └── zalamon_door.lua
│ │ │ ├── cults_of_tibia
│ │ │ │ ├── analyser.lua
│ │ │ │ ├── bosses_levers.lua
│ │ │ │ ├── counter_agent.lua
│ │ │ │ ├── crate.lua
│ │ │ │ ├── cult_symbol.lua
│ │ │ │ ├── document.lua
│ │ │ │ ├── last_object.lua
│ │ │ │ ├── lever_mota.lua
│ │ │ │ ├── magnifier.lua
│ │ │ │ ├── misguided.lua
│ │ │ │ └── torch.lua
│ │ │ ├── dangerous_depth
│ │ │ │ ├── crude_lava_pump.lua
│ │ │ │ ├── crude_lava_pump_achievements.lua
│ │ │ │ ├── gnome_chart.lua
│ │ │ │ ├── gnome_items.lua
│ │ │ │ ├── gnome_trignometre.lua
│ │ │ │ ├── gnomish_chest.lua
│ │ │ │ ├── gnomish_pesticide.lua
│ │ │ │ ├── lever_barrel.lua
│ │ │ │ ├── using_crystals.lua
│ │ │ │ ├── warzone_crystals.lua
│ │ │ │ └── wooden_trash.lua
│ │ │ ├── dark_trails
│ │ │ │ ├── corpse.lua
│ │ │ │ ├── lever_death_priest_shargon.lua
│ │ │ │ └── lever_the_ravager.lua
│ │ │ ├── dawnport
│ │ │ │ ├── legion_helmet.lua
│ │ │ │ ├── the_rare_herb.lua
│ │ │ │ └── vocation_reward.lua
│ │ │ ├── deepling_worldchange
│ │ │ │ ├── boxramp.lua
│ │ │ │ ├── coral.lua
│ │ │ │ ├── crystal.lua
│ │ │ │ ├── crystalvortex.lua
│ │ │ │ ├── golden_anchor.lua
│ │ │ │ ├── questfirst.lua
│ │ │ │ └── statue.lua
│ │ │ ├── demon_oak
│ │ │ │ ├── demon_oak.lua
│ │ │ │ ├── demon_oak_chest.lua
│ │ │ │ └── demon_oak_gravestone.lua
│ │ │ ├── devil_helmet
│ │ │ │ └── lever.lua
│ │ │ ├── dreamer_challenge
│ │ │ │ ├── documents.lua
│ │ │ │ ├── lever_brotherhood.lua
│ │ │ │ ├── lever_nightmare.lua
│ │ │ │ ├── stone_teleport.lua
│ │ │ │ ├── tic_tac.lua
│ │ │ │ ├── tic_tac_teleport.lua
│ │ │ │ └── walls.lua
│ │ │ ├── druid_outfit
│ │ │ │ └── waterskin.lua
│ │ │ ├── dwarven_legs
│ │ │ │ ├── ladder.lua
│ │ │ │ └── ore_wagon.lua
│ │ │ ├── elemental_spheres
│ │ │ │ ├── lever.lua
│ │ │ │ ├── lord_of_elements_lever.lua
│ │ │ │ ├── machine1.lua
│ │ │ │ ├── machine2.lua
│ │ │ │ ├── soils1.lua
│ │ │ │ └── soils2.lua
│ │ │ ├── explorer_society
│ │ │ │ ├── botanist.lua
│ │ │ │ ├── butterfly.lua
│ │ │ │ ├── dragon.lua
│ │ │ │ ├── findings.lua
│ │ │ │ ├── icicle.lua
│ │ │ │ ├── resonance.lua
│ │ │ │ ├── stone.lua
│ │ │ │ └── tracing_paper.lua
│ │ │ ├── fathers_burden
│ │ │ │ └── corpse.lua
│ │ │ ├── ferumbras_ascendant
│ │ │ │ ├── bone_flute.lua
│ │ │ │ ├── bone_flute_wall.lua
│ │ │ │ ├── boots_of_homecoming.lua
│ │ │ │ ├── color_levers.lua
│ │ │ │ ├── ferumbras_amulet.lua
│ │ │ │ ├── ferumbras_lever.lua
│ │ │ │ ├── ferumbras_mana_keg.lua
│ │ │ │ ├── flower_puzzle_lever.lua
│ │ │ │ ├── grave_flower.lua
│ │ │ │ ├── habitat_corrupted.lua
│ │ │ │ ├── habitat_desert.lua
│ │ │ │ ├── habitat_dimension.lua
│ │ │ │ ├── habitat_grass.lua
│ │ │ │ ├── habitat_ice.lua
│ │ │ │ ├── habitat_lever.lua
│ │ │ │ ├── habitat_mushroom.lua
│ │ │ │ ├── habitat_roshamuul.lua
│ │ │ │ ├── habitat_venom.lua
│ │ │ │ ├── lever_first.lua
│ │ │ │ ├── lever_four.lua
│ │ │ │ ├── lever_second.lua
│ │ │ │ ├── lever_third.lua
│ │ │ │ ├── mazoran_lever.lua
│ │ │ │ ├── mysterious_scroll.lua
│ │ │ │ ├── plagirath_lever.lua
│ │ │ │ ├── purified_soul.lua
│ │ │ │ ├── ragiaz_lever.lua
│ │ │ │ ├── rat_lever.lua
│ │ │ │ ├── razzagorn_lever.lua
│ │ │ │ ├── reward.lua
│ │ │ │ ├── sacrifice.lua
│ │ │ │ ├── scroll_of_ascension.lua
│ │ │ │ ├── shulgrax_lever.lua
│ │ │ │ ├── statue.lua
│ │ │ │ ├── tarbaz_lever.lua
│ │ │ │ ├── tarbaz_notes.lua
│ │ │ │ ├── teleportation_rod.lua
│ │ │ │ ├── the_shatterer_lever.lua
│ │ │ │ ├── the_shatterer_levers.lua
│ │ │ │ └── zamulosh_lever.lua
│ │ │ ├── first_dragon
│ │ │ │ ├── lair_entrance.lua
│ │ │ │ ├── lever.lua
│ │ │ │ ├── rewards.lua
│ │ │ │ ├── sacrifice_items.lua
│ │ │ │ └── treasure_chest.lua
│ │ │ ├── forgotten_knowledge
│ │ │ │ ├── bird_cage.lua
│ │ │ │ ├── dragonking_lever.lua
│ │ │ │ ├── fount.lua
│ │ │ │ ├── girl_picture.lua
│ │ │ │ ├── horror_lever.lua
│ │ │ │ ├── lantern.lua
│ │ │ │ ├── last_lore_lever.lua
│ │ │ │ ├── lloyd_lever.lua
│ │ │ │ ├── lost_time.lua
│ │ │ │ ├── old_desk.lua
│ │ │ │ ├── plant.lua
│ │ │ │ ├── secret_wall.lua
│ │ │ │ ├── servants_mechanism.lua
│ │ │ │ ├── tenebris_lever.lua
│ │ │ │ ├── thorn_knight_lever.lua
│ │ │ │ ├── time_guardian_lever.lua
│ │ │ │ └── time_machine.lua
│ │ │ ├── grave_danger
│ │ │ │ └── cobra_bastion
│ │ │ │ │ └── scarlett.lua
│ │ │ ├── gravedigger
│ │ │ │ ├── amforas.lua
│ │ │ │ ├── ashes.lua
│ │ │ │ ├── blood.lua
│ │ │ │ ├── bones.lua
│ │ │ │ ├── bookcase.lua
│ │ │ │ ├── brain.lua
│ │ │ │ ├── caixa.lua
│ │ │ │ ├── candles.lua
│ │ │ │ ├── cape.lua
│ │ │ │ ├── chalk.lua
│ │ │ │ ├── flask.lua
│ │ │ │ ├── hallowed.lua
│ │ │ │ ├── inscriptions.lua
│ │ │ │ ├── key1.lua
│ │ │ │ ├── key2.lua
│ │ │ │ ├── monks.lua
│ │ │ │ ├── palanca.lua
│ │ │ │ ├── pyramids1.lua
│ │ │ │ ├── pyramids2.lua
│ │ │ │ ├── sacrifice.lua
│ │ │ │ ├── scroll.lua
│ │ │ │ ├── statue.lua
│ │ │ │ ├── tears.lua
│ │ │ │ └── tincture.lua
│ │ │ ├── green_djinn
│ │ │ │ └── tear.lua
│ │ │ ├── grimvale
│ │ │ │ ├── closed_silvered_trap.lua
│ │ │ │ └── silver_liquid.lua
│ │ │ ├── heart_of_destruction
│ │ │ │ ├── anomaly_lever.lua
│ │ │ │ ├── charges_lever.lua
│ │ │ │ ├── cracklers_lever.lua
│ │ │ │ ├── devourer_access.lua
│ │ │ │ ├── eradicator_lever.lua
│ │ │ │ ├── final_lever.lua
│ │ │ │ ├── outburst_lever.lua
│ │ │ │ ├── quake_lever.lua
│ │ │ │ ├── reward.lua
│ │ │ │ ├── rupture_lever.lua
│ │ │ │ ├── sparkion_eggs.lua
│ │ │ │ └── sparks_lever.lua
│ │ │ ├── hero_of_rathleton
│ │ │ │ ├── machines_deep_terror.lua
│ │ │ │ ├── machines_glooth_horror.lua
│ │ │ │ ├── machines_lava.lua
│ │ │ │ ├── machines_professor_maxxen.lua
│ │ │ │ ├── raging_corpse.lua
│ │ │ │ └── reward.lua
│ │ │ ├── hot_cuisine
│ │ │ │ ├── cookbook1.lua
│ │ │ │ └── cookbook2.lua
│ │ │ ├── hunter_outfit
│ │ │ │ ├── all_hymn_piano_teleport.lua
│ │ │ │ └── music_sheet.lua
│ │ │ ├── ice_islands
│ │ │ │ ├── anthill.lua
│ │ │ │ ├── charm.lua
│ │ │ │ ├── cure.lua
│ │ │ │ ├── paint.lua
│ │ │ │ └── yakchal.lua
│ │ │ ├── in_service_of_yalahar
│ │ │ │ ├── charm.lua
│ │ │ │ ├── formula.lua
│ │ │ │ ├── ghost.lua
│ │ │ │ ├── last_fight.lua
│ │ │ │ ├── matrix.lua
│ │ │ │ ├── mechanism.lua
│ │ │ │ ├── morik_summon.lua
│ │ │ │ ├── mr_west_door.lua
│ │ │ │ ├── reward.lua
│ │ │ │ └── yalahar_machine_war_golems.lua
│ │ │ ├── inquisition
│ │ │ │ ├── brother_lever.lua
│ │ │ │ ├── rewards.lua
│ │ │ │ ├── ungreez_door.lua
│ │ │ │ └── vampire_hunt.lua
│ │ │ ├── kilmaresh
│ │ │ │ ├── augerfun.lua
│ │ │ │ ├── basin.lua
│ │ │ │ ├── books.lua
│ │ │ │ ├── cagekey.lua
│ │ │ │ ├── coruja.lua
│ │ │ │ ├── glasshoneyfun.lua
│ │ │ │ ├── lyre.lua
│ │ │ │ ├── peeler.lua
│ │ │ │ ├── peelerfun.lua
│ │ │ │ ├── pickenchanted.lua
│ │ │ │ ├── sangra.lua
│ │ │ │ ├── scissors.lua
│ │ │ │ ├── scissorsfun.lua
│ │ │ │ ├── tortoise.lua
│ │ │ │ ├── tumulo.lua
│ │ │ │ └── tumuloerro.lua
│ │ │ ├── koshei_amulet
│ │ │ │ ├── bag.lua
│ │ │ │ ├── boss.lua
│ │ │ │ └── switch.lua
│ │ │ ├── lions_rock
│ │ │ │ └── lions_rock.lua
│ │ │ ├── liquid_black
│ │ │ │ ├── chairteleport.lua
│ │ │ │ └── notescoordinates.lua
│ │ │ ├── lower_roshamuul
│ │ │ │ ├── bone.lua
│ │ │ │ ├── chalk.lua
│ │ │ │ ├── gravel.lua
│ │ │ │ ├── mixture.lua
│ │ │ │ ├── mortar.lua
│ │ │ │ ├── resonance_chamber.lua
│ │ │ │ └── trough.lua
│ │ │ ├── mysterious_ornate
│ │ │ │ └── mysterious_metal_egg.lua
│ │ │ ├── oramond
│ │ │ │ ├── chavis_tasks
│ │ │ │ │ └── to_take_roots.lua
│ │ │ │ ├── glooth_fairy_lever.lua
│ │ │ │ └── the_glooth_brothers_tasks
│ │ │ │ │ └── the_ancient_sewers.lua
│ │ │ ├── others
│ │ │ │ ├── black_knight_quest.lua
│ │ │ │ ├── calassa_comb_door.lua
│ │ │ │ ├── deeper_banuta_shortcut.lua
│ │ │ │ ├── desert_dungeon_lever_quest.lua
│ │ │ │ ├── ectoplasm_container.lua
│ │ │ │ ├── fire_bug.lua
│ │ │ │ ├── gooey_mass.lua
│ │ │ │ ├── hellgate_lever.lua
│ │ │ │ ├── holy_water.lua
│ │ │ │ ├── life_ring_lever.lua
│ │ │ │ ├── orc_edron_lever.lua
│ │ │ │ ├── plate_armor_quest.lua
│ │ │ │ ├── serpentine_tower_lever.lua
│ │ │ │ ├── serpentine_tower_torch.lua
│ │ │ │ ├── steal_from_thieves.lua
│ │ │ │ └── triangle_tower_lever.lua
│ │ │ ├── pits_of_inferno
│ │ │ │ ├── bazir_maze_lever.lua
│ │ │ │ ├── bazir_mirror.lua
│ │ │ │ ├── bazir_wrong_levers.lua
│ │ │ │ ├── fire_throne_lever.lua
│ │ │ │ ├── fountain.lua
│ │ │ │ ├── goshnar.lua
│ │ │ │ ├── ladder_levers.lua
│ │ │ │ ├── levers.lua
│ │ │ │ ├── maze_stone.lua
│ │ │ │ ├── oil.lua
│ │ │ │ ├── stone_lever.lua
│ │ │ │ ├── trap_lever.lua
│ │ │ │ └── walls.lua
│ │ │ ├── postman
│ │ │ │ ├── package.lua
│ │ │ │ ├── present.lua
│ │ │ │ └── waldos_posthorn.lua
│ │ │ ├── rottin_wood_and_married_men
│ │ │ │ ├── broken_wall.lua
│ │ │ │ ├── corpse.lua
│ │ │ │ └── trap.lua
│ │ │ ├── sea_of_light
│ │ │ │ └── sea_of_light.lua
│ │ │ ├── secret_library
│ │ │ │ └── brokul_lever.lua
│ │ │ ├── secret_service
│ │ │ │ ├── amazon_disguise_kit.lua
│ │ │ │ ├── lever.lua
│ │ │ │ ├── ring.lua
│ │ │ │ ├── rust_bugs.lua
│ │ │ │ └── tools.lua
│ │ │ ├── spike_tasks
│ │ │ │ ├── fertilizer.lua
│ │ │ │ ├── ghost_detector.lua
│ │ │ │ ├── lode_stone.lua
│ │ │ │ ├── nests.lua
│ │ │ │ ├── spirit_shovel.lua
│ │ │ │ ├── thermometer.lua
│ │ │ │ └── tuning_fork.lua
│ │ │ ├── spirit_hunters
│ │ │ │ └── magical_device.lua
│ │ │ ├── the_ancient_tombs
│ │ │ │ ├── active_teleport_switches.lua
│ │ │ │ ├── lever.lua
│ │ │ │ ├── oasis_lever_door.lua
│ │ │ │ └── ruins_instruments.lua
│ │ │ ├── the_ape_city
│ │ │ │ ├── mission9_catacombs_lever.lua
│ │ │ │ └── mission9_catacombs_snake_destroyer.lua
│ │ │ ├── the_cursed_crystal
│ │ │ │ ├── MedusaOil.lua
│ │ │ │ ├── Misc.lua
│ │ │ │ └── Ointment.lua
│ │ │ ├── the_hidden_city_of_beregar
│ │ │ │ ├── bargate_lever.lua
│ │ │ │ ├── coal_exit_wagons.lua
│ │ │ │ ├── coal_levers.lua
│ │ │ │ ├── coal_wagon.lua
│ │ │ │ ├── deeper_mine_wagon.lua
│ │ │ │ ├── gap_wagon.lua
│ │ │ │ ├── ore_wagon.lua
│ │ │ │ ├── tunnel_wagon.lua
│ │ │ │ ├── wagon_maze_exit.lua
│ │ │ │ └── wagon_maze_levers.lua
│ │ │ ├── the_lost_brother
│ │ │ │ └── asura_mirror.lua
│ │ │ ├── the_new_frontier
│ │ │ │ ├── arena.lua
│ │ │ │ ├── beaver.lua
│ │ │ │ ├── lever.lua
│ │ │ │ ├── outfit.lua
│ │ │ │ ├── retreat.lua
│ │ │ │ └── vine.lua
│ │ │ ├── the_outlaw_camp
│ │ │ │ ├── oven.lua
│ │ │ │ ├── power_burn.lua
│ │ │ │ └── power_switch.lua
│ │ │ ├── the_secret_library
│ │ │ │ ├── asura_mirror.lua
│ │ │ │ ├── basinfire.lua
│ │ │ │ ├── blacktp.lua
│ │ │ │ ├── bluetp.lua
│ │ │ │ ├── boattp.lua
│ │ │ │ ├── bone.lua
│ │ │ │ ├── bonedoor.lua
│ │ │ │ ├── book.lua
│ │ │ │ ├── corpse.lua
│ │ │ │ ├── energybasin.lua
│ │ │ │ ├── enterlibrary.lua
│ │ │ │ ├── eyekey.lua
│ │ │ │ ├── fish.lua
│ │ │ │ ├── greentp.lua
│ │ │ │ ├── leverdoor.lua
│ │ │ │ ├── leverruby.lua
│ │ │ │ ├── lotuskey.lua
│ │ │ │ ├── peacock.lua
│ │ │ │ ├── pinktp.lua
│ │ │ │ ├── sealedbook.lua
│ │ │ │ ├── skullground.lua
│ │ │ │ ├── statuedeeplings.lua
│ │ │ │ ├── strandhair.lua
│ │ │ │ └── telescop.lua
│ │ │ ├── the_shattered_isles
│ │ │ │ ├── nargor_maps.lua
│ │ │ │ └── tortoise_egg_nargor.lua
│ │ │ ├── the_tainted_soul
│ │ │ │ └── star_herb.lua
│ │ │ ├── the_thieves_guild
│ │ │ │ ├── climbing_vine.lua
│ │ │ │ ├── dwarf_disguise_kit.lua
│ │ │ │ ├── fish_napping_door.lua
│ │ │ │ ├── fish_napping_key.lua
│ │ │ │ └── note.lua
│ │ │ ├── the_travelling_trader
│ │ │ │ └── outlaw_camp_door.lua
│ │ │ ├── their_master_voice
│ │ │ │ └── slime_gobbler.lua
│ │ │ ├── threatened_dreams
│ │ │ │ ├── fur_of_a_wolf_whelp.lua
│ │ │ │ ├── lever.lua
│ │ │ │ ├── notes_of_a_poacher.lua
│ │ │ │ ├── poacher_chest.lua
│ │ │ │ └── poacher_use.lua
│ │ │ ├── tibia_tales
│ │ │ │ ├── exterminator_flask.lua
│ │ │ │ └── ultimate_booze_beer_bottle.lua
│ │ │ ├── tinder_box
│ │ │ │ ├── reward.lua
│ │ │ │ └── tinder_box.lua
│ │ │ ├── unnatural_selection
│ │ │ │ └── mission5_ray_of_light.lua
│ │ │ ├── what_a_foolish
│ │ │ │ ├── cat_basket.lua
│ │ │ │ ├── contract.lua
│ │ │ │ ├── crate.lua
│ │ │ │ ├── cushion.lua
│ │ │ │ ├── disguise.lua
│ │ │ │ ├── flask.lua
│ │ │ │ ├── watch.lua
│ │ │ │ └── worn_cloth.lua
│ │ │ └── wrath_of_the_emperor
│ │ │ │ ├── mission01_crate.lua
│ │ │ │ ├── mission01_lights.lua
│ │ │ │ ├── mission02_firstcontact_repair_teleport.lua
│ │ │ │ ├── mission03_the_keeper.lua
│ │ │ │ ├── mission04_sacrament_of_the_snake_sceptre.lua
│ │ │ │ ├── mission08_uninvited_guests_lever.lua
│ │ │ │ ├── mission09_the_sleeping_dragon_mixture.lua
│ │ │ │ ├── mission10_a_message_of_freedom_sceptre.lua
│ │ │ │ ├── mission11_payback_time_lever.lua
│ │ │ │ └── mission12_just_rewards.lua
│ │ ├── rookgaard
│ │ │ ├── banana_quest.lua
│ │ │ ├── bearroom_quest_lever.lua
│ │ │ ├── chest.lua
│ │ │ ├── doublet_quest.lua
│ │ │ ├── honey_flower_quest.lua
│ │ │ ├── katana_quest_door.lua
│ │ │ ├── katana_quest_lever.lua
│ │ │ └── sewer_lever.lua
│ │ ├── roshamuul
│ │ │ └── prison
│ │ │ │ ├── golden.lua
│ │ │ │ └── keys.lua
│ │ ├── shrines
│ │ │ └── feyrist_exit.lua
│ │ ├── spellbook.lua
│ │ ├── system
│ │ │ └── quest_reward_common.lua
│ │ ├── tools
│ │ │ ├── bricklayer_kit.lua
│ │ │ ├── crowbar.lua
│ │ │ ├── grinder.lua
│ │ │ ├── hammer.lua
│ │ │ ├── juice_squeezer.lua
│ │ │ ├── kitchen_knife.lua
│ │ │ ├── lock_pick.lua
│ │ │ ├── machete.lua
│ │ │ ├── noxious_claw.lua
│ │ │ ├── pick.lua
│ │ │ ├── present.lua
│ │ │ ├── rake.lua
│ │ │ ├── rope.lua
│ │ │ ├── rust_remover.lua
│ │ │ ├── saw.lua
│ │ │ ├── scythe.lua
│ │ │ ├── shovel.lua
│ │ │ ├── sickle.lua
│ │ │ ├── skinning.lua
│ │ │ ├── spoon.lua
│ │ │ └── toolgear.lua
│ │ ├── valuables
│ │ │ └── random_items.lua
│ │ ├── worldboard.lua
│ │ └── worldchanges
│ │ │ ├── deeplings
│ │ │ └── bosses_reward.lua
│ │ │ └── the_mummys_curse
│ │ │ └── horestis_jars.lua
│ ├── creaturescripts
│ │ ├── customs
│ │ │ └── freequests.lua
│ │ ├── monster
│ │ │ ├── gaz_haragoth_heal.lua
│ │ │ ├── greater_minion.lua
│ │ │ ├── hirintror_heal.lua
│ │ │ ├── lower_roshamuul.lua
│ │ │ ├── necromantic_minion.lua
│ │ │ ├── northern_pike.lua
│ │ │ ├── omrafir_explode.lua
│ │ │ ├── shared_life.lua
│ │ │ ├── shargon_growth_check.lua
│ │ │ ├── shlorg_teleport.lua
│ │ │ ├── superior_minion.lua
│ │ │ ├── the_pale_count_kill.lua
│ │ │ ├── the_welter_egg.lua
│ │ │ ├── urmahlullu_change.lua
│ │ │ ├── white_deer.lua
│ │ │ ├── white_deer_scout.lua
│ │ │ ├── white_pale_heal.lua
│ │ │ ├── wyda.lua
│ │ │ └── zavarash_hide.lua
│ │ ├── others
│ │ │ ├── advance_save.lua
│ │ │ ├── adventure_blessing_login.lua
│ │ │ ├── bestiary_kill.lua
│ │ │ ├── boss_reward_chest.lua
│ │ │ ├── dawnport.lua
│ │ │ ├── droploot.lua
│ │ │ ├── familiars.lua
│ │ │ ├── hireling_logout.lua
│ │ │ ├── login.lua
│ │ │ ├── login_events.lua
│ │ │ ├── logout.lua
│ │ │ ├── modal_window_helper.lua
│ │ │ ├── offline_training.lua
│ │ │ ├── player_death.lua
│ │ │ ├── prey_loot.lua
│ │ │ ├── regenerate_stamina.lua
│ │ │ └── rookgaard_advance.lua
│ │ └── quests
│ │ │ ├── adventurers_guild
│ │ │ └── the_great_dragon_hunt.lua
│ │ │ ├── bigfoot_burden
│ │ │ ├── boss_room_kick.lua
│ │ │ ├── bosses_warzone.lua
│ │ │ ├── parasite.lua
│ │ │ ├── versperoth_kill.lua
│ │ │ └── wiggler_kill.lua
│ │ │ ├── cults_of_tibia
│ │ │ ├── bosses_mission_cults.lua
│ │ │ ├── carlin_vortex_spawn.lua
│ │ │ ├── check_tile.lua
│ │ │ ├── destroyed_pillar.lua
│ │ │ ├── essence_of_malice.lua
│ │ │ ├── evaporate.lua
│ │ │ ├── glowing_rubbish_amulet.lua
│ │ │ ├── leiden_heal.lua
│ │ │ ├── machine.lua
│ │ │ ├── minotaur_task_count.lua
│ │ │ ├── pillar_health.lua
│ │ │ ├── sandking.lua
│ │ │ ├── spawn_boss.lua
│ │ │ ├── splash.lua
│ │ │ └── zarcorix_reflect_damage.lua
│ │ │ ├── dangerous_depths
│ │ │ ├── bosses_mission_depths.lua
│ │ │ ├── fiery_heart.lua
│ │ │ ├── lost_exile_task.lua
│ │ │ ├── snail_slime_kill.lua
│ │ │ └── the_baron_from_below.lua
│ │ │ ├── dark_trails
│ │ │ ├── kill_death_priest_shargon.lua
│ │ │ ├── kill_the_ravager.lua
│ │ │ └── think_the_ravager_heal.lua
│ │ │ ├── dawnport
│ │ │ ├── goblin_kill.lua
│ │ │ ├── minotaur_kill.lua
│ │ │ └── troll_kill.lua
│ │ │ ├── elemental_spheres
│ │ │ └── overlord_kill.lua
│ │ │ ├── ferumbras_ascendant
│ │ │ ├── bone_capsule.lua
│ │ │ ├── bosses_kill.lua
│ │ │ ├── death_dragon.lua
│ │ │ ├── disgusting_ooze_death.lua
│ │ │ ├── ferumbras_mortal_shell_death.lua
│ │ │ ├── ferumbras_soul_splinter.lua
│ │ │ ├── rift_invader_death.lua
│ │ │ ├── the_shatterer_kill.lua
│ │ │ └── zamulosh_clone.lua
│ │ │ ├── firewalker_boots
│ │ │ └── pythius_the_rotten_kill.lua
│ │ │ ├── first_dragon
│ │ │ ├── death_angry_plant.lua
│ │ │ ├── death_dragon_essence.lua
│ │ │ ├── death_fallen.lua
│ │ │ ├── death_first_dragon.lua
│ │ │ ├── death_somewhat_beatable.lua
│ │ │ └── kill_dragon.lua
│ │ │ ├── forgotten_knowledge
│ │ │ ├── astral_glyph_death.lua
│ │ │ ├── astral_source.lua
│ │ │ ├── bosses_kill.lua
│ │ │ ├── bound_astral_power.lua
│ │ │ ├── corrupted_soul.lua
│ │ │ ├── distorted_source.lua
│ │ │ ├── dragon_egg.lua
│ │ │ ├── energy_prism.lua
│ │ │ ├── energy_prism_death.lua
│ │ │ ├── healthchange_forgotten.lua
│ │ │ ├── lloyd_preparedeath.lua
│ │ │ ├── possessed_tree.lua
│ │ │ ├── replica_servants.lua
│ │ │ ├── thorn_knight_death.lua
│ │ │ └── time_guardian_health.lua
│ │ │ ├── grave_danger
│ │ │ └── cobra_bastion
│ │ │ │ └── scarlett.lua
│ │ │ ├── grimvale
│ │ │ └── feroxa_transform.lua
│ │ │ ├── heart_of_destruction
│ │ │ ├── aftershock_transform.lua
│ │ │ ├── anomaly_transform.lua
│ │ │ ├── charged_anomaly_death.lua
│ │ │ ├── charged_disruption_transform.lua
│ │ │ ├── charger_spawn.lua
│ │ │ ├── charging_out_death.lua
│ │ │ ├── crackler_transform.lua
│ │ │ ├── depolarized_death.lua
│ │ │ ├── depolarized_transform.lua
│ │ │ ├── devourer_player_death.lua
│ │ │ ├── disruption_transform.lua
│ │ │ ├── eradicator_transform.lua
│ │ │ ├── foreshock_transform.lua
│ │ │ ├── heart_boss_death.lua
│ │ │ ├── heart_minion_death.lua
│ │ │ ├── outburst_charge.lua
│ │ │ ├── overcharge_death.lua
│ │ │ ├── rupture_heal.lua
│ │ │ ├── rupture_resonance.lua
│ │ │ ├── shocks_death.lua
│ │ │ ├── spark_death.lua
│ │ │ └── spark_devourer_death.lua
│ │ │ ├── hero_of_rathleton
│ │ │ ├── bosses_kill.lua
│ │ │ ├── glooth_horror.lua
│ │ │ └── tentacle.lua
│ │ │ ├── in_service_of_yalahar
│ │ │ ├── azerus_kill.lua
│ │ │ ├── diseased_trio_kill.lua
│ │ │ └── quara_leader_kill.lua
│ │ │ ├── inquisition
│ │ │ ├── inquisition_boss.lua
│ │ │ └── inquisition_ungreez.lua
│ │ │ ├── killing_in_the_name_of
│ │ │ ├── kill.lua
│ │ │ └── minotaur_kill.lua
│ │ │ ├── kilmaresh
│ │ │ ├── bragrumol.lua
│ │ │ ├── fafnar.lua
│ │ │ ├── mozradek.lua
│ │ │ └── xogixath.lua
│ │ │ ├── liquid_black
│ │ │ └── deepling_boss_kill.lua
│ │ │ ├── raging_mage_tower
│ │ │ ├── energized_raging_mage_kill.lua
│ │ │ ├── raging_mage_1.lua
│ │ │ ├── raging_mage_2.lua
│ │ │ ├── raging_mage_kill.lua
│ │ │ └── yielothax_kill.lua
│ │ │ ├── secret_service
│ │ │ └── black_knight_kill.lua
│ │ │ ├── spike_tasks
│ │ │ ├── lower_spike_kill.lua
│ │ │ ├── middle_spike_kill.lua
│ │ │ └── upper_spike_kill.lua
│ │ │ ├── svargrond_arena
│ │ │ └── arena_kill.lua
│ │ │ ├── the_first_dragon
│ │ │ ├── death_angry_plant.lua
│ │ │ ├── death_dragon_essence.lua
│ │ │ ├── death_fallen.lua
│ │ │ ├── death_first_dragon.lua
│ │ │ ├── death_somewhat_beatable.lua
│ │ │ └── kill_dragon.lua
│ │ │ ├── the_new_frontier
│ │ │ ├── shard_of_corruption_kill.lua
│ │ │ └── tirecz_kill.lua
│ │ │ ├── their_masters_voice
│ │ │ ├── mage_death.lua
│ │ │ └── servant_death.lua
│ │ │ ├── thieves_guild
│ │ │ └── nomad_kill.lua
│ │ │ └── wrath_of_the_emperor
│ │ │ ├── bosses_kill.lua
│ │ │ ├── keeper_kill.lua
│ │ │ ├── lizard_magistratus_kill.lua
│ │ │ ├── lizard_noble_kill.lua
│ │ │ └── zalamon_kill.lua
│ ├── custom
│ │ ├── discord_specialwebhook.lua
│ │ ├── monster_training_machine.lua
│ │ ├── movement_trainer_entrance.lua
│ │ └── movement_trainer_exit.lua
│ ├── globalevents
│ │ ├── cobra_flask.lua
│ │ ├── customs
│ │ │ ├── rain.lua
│ │ │ └── save_interval.lua
│ │ ├── dawnport_magic_effect.lua
│ │ ├── others
│ │ │ ├── check_inbox.lua
│ │ │ ├── check_mount.lua
│ │ │ ├── guild_war.lua
│ │ │ ├── hireling_save.lua
│ │ │ ├── online_record.lua
│ │ │ ├── server_save.lua
│ │ │ ├── spawns_npc_by_time.lua
│ │ │ └── startup.lua
│ │ ├── quests
│ │ │ ├── demon_oak_voices.lua
│ │ │ ├── druid_outfits_blooming_griffinclaw.lua
│ │ │ ├── ferumbras_ascendant_effect_1.lua
│ │ │ ├── ferumbras_ascendant_effect_2.lua
│ │ │ ├── grimvale_feroxa.lua
│ │ │ ├── pits_of_inferno_bosses.lua
│ │ │ ├── secret_library_grand_canon_dominus.lua
│ │ │ ├── secret_library_grand_chaplain_gaunder.lua
│ │ │ ├── secret_library_grand_commander_soeren.lua
│ │ │ ├── secret_library_preceptor_lazare.lua
│ │ │ ├── secret_library_spawn_damage.lua
│ │ │ └── their_master_voice_mad_mage.lua
│ │ ├── spawn
│ │ │ ├── gray_island_bosses.lua
│ │ │ ├── grimvale_respawn.lua
│ │ │ ├── mawhawk.lua
│ │ │ ├── raids.lua
│ │ │ ├── rashid.lua
│ │ │ └── thawing_dragon_lord.lua
│ │ ├── update.lua
│ │ └── worldchanges
│ │ │ ├── fury_gates.lua
│ │ │ ├── nightmare_isle.lua
│ │ │ ├── their_masters_voice.lua
│ │ │ └── yasir.lua
│ ├── lib
│ │ ├── create_functions.lua
│ │ ├── defaults_move_event.lua
│ │ ├── helper_constructors.lua
│ │ ├── register_actions.lua
│ │ ├── register_bestiary_charm.lua
│ │ ├── register_monster_type.lua
│ │ ├── register_movements.lua
│ │ └── register_spells.lua
│ ├── modules
│ │ └── bestiary_charms.lua
│ ├── movements
│ │ ├── equipment
│ │ │ └── unscripted_equipments.lua
│ │ ├── oramond
│ │ │ ├── oramond_entrance.lua
│ │ │ ├── oramond_movements.lua
│ │ │ ├── oramond_teleport.lua
│ │ │ ├── seacrest.lua
│ │ │ ├── teleport.lua
│ │ │ └── voting_oramond.lua
│ │ ├── others
│ │ │ ├── bath_tub.lua
│ │ │ ├── cake.lua
│ │ │ ├── closing_door.lua
│ │ │ ├── dawnport_tiles.lua
│ │ │ ├── dawnport_vocation_trial.lua
│ │ │ ├── decay.lua
│ │ │ ├── dough.lua
│ │ │ ├── drowning.lua
│ │ │ ├── noxious_claw.lua
│ │ │ ├── remove-create_item.lua
│ │ │ ├── snow.lua
│ │ │ ├── swimming.lua
│ │ │ ├── teleport.lua
│ │ │ ├── tiles.lua
│ │ │ ├── trap.lua
│ │ │ └── walkback.lua
│ │ ├── quests
│ │ │ ├── assassin_outfit
│ │ │ │ └── erayo_house.lua
│ │ │ ├── bigfoot_burden
│ │ │ │ ├── gnomebase_teleport.lua
│ │ │ │ ├── task_endurance.lua
│ │ │ │ ├── task_shooting.lua
│ │ │ │ ├── task_truffles.lua
│ │ │ │ ├── task_x_ray.lua
│ │ │ │ ├── versperoth_spawn.lua
│ │ │ │ ├── warzone_boss.lua
│ │ │ │ └── warzone_teleport.lua
│ │ │ ├── bright_sword
│ │ │ │ └── entrance.lua
│ │ │ ├── chayenne_realm
│ │ │ │ └── enter_realm.lua
│ │ │ ├── children_of_the_revolution
│ │ │ │ ├── click.lua
│ │ │ │ ├── spy.lua
│ │ │ │ ├── stair.lua
│ │ │ │ ├── symbol.lua
│ │ │ │ ├── teleport.lua
│ │ │ │ └── temple.lua
│ │ │ ├── cults_of_tibia
│ │ │ │ ├── begin_task.lua
│ │ │ │ ├── boss_timer.lua
│ │ │ │ ├── check_oasis.lua
│ │ │ │ ├── energy_fence.lua
│ │ │ │ ├── geyser.lua
│ │ │ │ ├── ice.lua
│ │ │ │ ├── ice_death.lua
│ │ │ │ ├── looktype.lua
│ │ │ │ ├── orc_teleport.lua
│ │ │ │ ├── river_teleport.lua
│ │ │ │ ├── sand_entrance.lua
│ │ │ │ ├── sandking.lua
│ │ │ │ ├── tar.lua
│ │ │ │ └── task_teleport.lua
│ │ │ ├── dangerous_depth
│ │ │ │ ├── boss_entrance.lua
│ │ │ │ ├── energy_entrance.lua
│ │ │ │ ├── gnome_avalanche.lua
│ │ │ │ ├── gnome_ordnance.lua
│ │ │ │ ├── gnomes_ordnance_end.lua
│ │ │ │ ├── lava_damage.lua
│ │ │ │ ├── lost_exiles.lua
│ │ │ │ └── warzone_entrance.lua
│ │ │ ├── dark_trails
│ │ │ │ └── necrometer_tile_access.lua
│ │ │ ├── dawnport
│ │ │ │ └── legion_helmet.lua
│ │ │ ├── deeplings_worldchange
│ │ │ │ └── deepling_bosses.lua
│ │ │ ├── demon_oak
│ │ │ │ ├── area_damage.lua
│ │ │ │ ├── entrance.lua
│ │ │ │ └── squares.lua
│ │ │ ├── devil_helmet
│ │ │ │ └── sewer.lua
│ │ │ ├── dreamer_challenge
│ │ │ │ ├── carrot.lua
│ │ │ │ ├── clock_tile.lua
│ │ │ │ ├── court_teleport.lua
│ │ │ │ ├── death_ring.lua
│ │ │ │ ├── death_ring_teleport.lua
│ │ │ │ ├── fire_bug_teleport.lua
│ │ │ │ ├── riddle.lua
│ │ │ │ ├── riddle_teleport.lua
│ │ │ │ ├── sacrifice_teleport.lua
│ │ │ │ ├── stone_teleport.lua
│ │ │ │ ├── teleport.lua
│ │ │ │ ├── tic_teleport.lua
│ │ │ │ ├── tower.lua
│ │ │ │ └── wall_teleport.lua
│ │ │ ├── edron_rope
│ │ │ │ └── rope.lua
│ │ │ ├── elemental_spheres
│ │ │ │ ├── aoe_teleport_out.lua
│ │ │ │ ├── soil_entrance.lua
│ │ │ │ ├── soil_exit.lua
│ │ │ │ └── summon_overlord.lua
│ │ │ ├── explorer_society
│ │ │ │ ├── calassa.lua
│ │ │ │ ├── carving_teleport_liberty_bay.lua
│ │ │ │ └── carvingteleport_port_hope.lua
│ │ │ ├── extension_mota
│ │ │ │ └── extension_mota.lua
│ │ │ ├── ferumbras_ascendant
│ │ │ │ ├── blue_gem.lua
│ │ │ │ ├── boss_teleport.lua
│ │ │ │ ├── desperate_soul.lua
│ │ │ │ ├── entrance.lua
│ │ │ │ ├── flower_puzzle.lua
│ │ │ │ ├── gate_of_deathstruction.lua
│ │ │ │ ├── green_gem.lua
│ │ │ │ ├── habitats_access.lua
│ │ │ │ ├── lovely_monsters.lua
│ │ │ │ ├── mazoran_fire.lua
│ │ │ │ ├── plagirath_access.lua
│ │ │ │ ├── razzagorn_access.lua
│ │ │ │ ├── red_gem.lua
│ │ │ │ ├── seal.lua
│ │ │ │ ├── shulgrax_lever.lua
│ │ │ │ ├── stair.lua
│ │ │ │ ├── vortex.lua
│ │ │ │ └── zamulosh_teleport.lua
│ │ │ ├── feyrist
│ │ │ │ ├── kroazur_entrance.lua
│ │ │ │ └── kroazur_exit.lua
│ │ │ ├── first_dragon
│ │ │ │ ├── entrance_teleport.lua
│ │ │ │ ├── exit_teleport.lua
│ │ │ │ ├── flower_bowl.lua
│ │ │ │ ├── heaven_blossom.lua
│ │ │ │ ├── last_teleport.lua
│ │ │ │ └── zorvorax_secrets.lua
│ │ │ ├── forgotten_knowledge
│ │ │ │ ├── cave_entrance.lua
│ │ │ │ ├── challenger.lua
│ │ │ │ ├── dragonking_vortex.lua
│ │ │ │ ├── entrance_teleport.lua
│ │ │ │ ├── fount.lua
│ │ │ │ ├── ice_teleport.lua
│ │ │ │ ├── lava_teleport.lua
│ │ │ │ ├── servant_teleport.lua
│ │ │ │ └── teleport_tree.lua
│ │ │ ├── formogar_mine_hoist
│ │ │ │ └── hoist.lua
│ │ │ ├── grimvale
│ │ │ │ ├── silvered_trap.lua
│ │ │ │ └── strangely_glowing_mark.lua
│ │ │ ├── heart_of_destruction
│ │ │ │ ├── teleport.lua
│ │ │ │ ├── teleport_heart.lua
│ │ │ │ ├── vortex_anomaly.lua
│ │ │ │ ├── vortex_crackler.lua
│ │ │ │ └── vortex_hunger.lua
│ │ │ ├── hero_of_rathleton
│ │ │ │ ├── deep_terror.lua
│ │ │ │ ├── exit.lua
│ │ │ │ ├── fast_way.lua
│ │ │ │ ├── glooth_horror.lua
│ │ │ │ ├── lava.lua
│ │ │ │ └── professor_maxxen.lua
│ │ │ ├── in_service_of_yalahar
│ │ │ │ ├── demon_teleport.lua
│ │ │ │ ├── last_fight_teleport.lua
│ │ │ │ ├── morik.lua
│ │ │ │ ├── quara_vortex.lua
│ │ │ │ └── yalahar_machine_war_golems.lua
│ │ │ ├── inquisition
│ │ │ │ ├── entrance.lua
│ │ │ │ ├── reward_room_text.lua
│ │ │ │ └── teleport_main.lua
│ │ │ ├── killing_in_the_name_of
│ │ │ │ └── boss.lua
│ │ │ ├── kilmaresh
│ │ │ │ ├── firetp.lua
│ │ │ │ ├── pisatile.lua
│ │ │ │ └── tpvoc.lua
│ │ │ ├── krailos
│ │ │ │ └── access_depot.lua
│ │ │ ├── lions_rock
│ │ │ │ └── lions_rock.lua
│ │ │ ├── liquid_black
│ │ │ │ ├── ladder.lua
│ │ │ │ ├── quick_access.lua
│ │ │ │ └── shortcut.lua
│ │ │ ├── nightmare_isles
│ │ │ │ ├── teleport.lua
│ │ │ │ └── teleport_ladder.lua
│ │ │ ├── pits_of_inferno
│ │ │ │ ├── bazir_tile.lua
│ │ │ │ ├── check_throne.lua
│ │ │ │ ├── drawbridge.lua
│ │ │ │ ├── fire_tile.lua
│ │ │ │ ├── holy_tible_tile.lua
│ │ │ │ ├── ladder.lua
│ │ │ │ ├── pumin_teleport.lua
│ │ │ │ ├── second_trap.lua
│ │ │ │ ├── shortcuts.lua
│ │ │ │ ├── stone.lua
│ │ │ │ ├── throne.lua
│ │ │ │ ├── tile_teleport.lua
│ │ │ │ └── trap.lua
│ │ │ ├── secret_service
│ │ │ │ ├── amazon.lua
│ │ │ │ └── pirate.lua
│ │ │ ├── svargrond_arena
│ │ │ │ ├── arena_enter.lua
│ │ │ │ ├── arena_pit.lua
│ │ │ │ └── arena_trophy.lua
│ │ │ ├── the_ancient_tombs
│ │ │ │ ├── craft_helmet.lua
│ │ │ │ ├── enter_ashmunrah_teleport_switche_done.lua
│ │ │ │ ├── enter_diprath_teleport_switche_done.lua
│ │ │ │ ├── enter_thalas_poison_tile.lua
│ │ │ │ ├── enter_thalas_teleport_switches_done.lua
│ │ │ │ ├── peninsula_tomb_maze.lua
│ │ │ │ ├── step_morguthis_blue_flames.lua
│ │ │ │ └── tomb_teleport.lua
│ │ │ ├── the_ape_city
│ │ │ │ ├── mission4_parchment_decyphering.lua
│ │ │ │ └── mission9_the_deepest_catacomb_teleport.lua
│ │ │ ├── the_cursed_crystal
│ │ │ │ └── StepIn_CursedCrystal.lua
│ │ │ ├── the_gravedigger_of_drefia
│ │ │ │ ├── dormitory_teleport.lua
│ │ │ │ ├── necromancer_servant.lua
│ │ │ │ ├── sacrifice_teleport.lua
│ │ │ │ └── teleport.lua
│ │ │ ├── the_hidden_city_of_beregar
│ │ │ │ ├── bellow.lua
│ │ │ │ ├── elevator.lua
│ │ │ │ ├── gap.lua
│ │ │ │ ├── ore_wagon.lua
│ │ │ │ ├── pythius_boss_teleport.lua
│ │ │ │ ├── pythius_teleport.lua
│ │ │ │ └── tunnel.lua
│ │ │ ├── the_ice_islands
│ │ │ │ ├── helheim.lua
│ │ │ │ └── nibelor_dog_led.lua
│ │ │ ├── the_new_frontier
│ │ │ │ ├── jail_exit.lua
│ │ │ │ ├── minotaur_boss.lua
│ │ │ │ ├── trap.lua
│ │ │ │ └── wayout.lua
│ │ │ ├── the_secret_library
│ │ │ │ ├── boat.lua
│ │ │ │ ├── golem_teleport.lua
│ │ │ │ ├── pink_teleport.lua
│ │ │ │ └── teleport.lua
│ │ │ ├── the_sharttered_isles
│ │ │ │ ├── energy_barrier.lua
│ │ │ │ └── teleport.lua
│ │ │ ├── the_spike_tasks
│ │ │ │ ├── geomantic_charges.lua
│ │ │ │ └── spike_teleport.lua
│ │ │ ├── their_master_voice
│ │ │ │ └── entrance.lua
│ │ │ ├── threatened_dreams
│ │ │ │ └── swan_feathers.lua
│ │ │ ├── unnatural_selection
│ │ │ │ ├── mission2_all_around_the_world.lua
│ │ │ │ └── mission3_dance_dance_evolution.lua
│ │ │ ├── waterfall
│ │ │ │ └── waterfall.lua
│ │ │ ├── what_a_foolish
│ │ │ │ └── destroy_pies.lua
│ │ │ ├── white_pearl
│ │ │ │ └── white_pearl.lua
│ │ │ └── wrath_of_the_emperor
│ │ │ │ ├── boss_teleport.lua
│ │ │ │ ├── crate.lua
│ │ │ │ ├── entrance_teleport.lua
│ │ │ │ ├── keeper.lua
│ │ │ │ ├── prison.lua
│ │ │ │ ├── realm_teleport.lua
│ │ │ │ ├── sleeping_dragon_teleport.lua
│ │ │ │ ├── teleport_rebel_to_zlak.lua
│ │ │ │ ├── teleport_to_zalamon.lua
│ │ │ │ └── teleports_muggy_plains.lua
│ │ ├── rookgaard
│ │ │ ├── level_bridge.lua
│ │ │ ├── premium_bridge.lua
│ │ │ └── rook_village.lua
│ │ └── teleport
│ │ │ ├── adventurers_guild.lua
│ │ │ ├── citizen.lua
│ │ │ ├── citizen_svargrond.lua
│ │ │ ├── deeper_banuta_shortcut_teleport.lua
│ │ │ ├── falcon_castle.lua
│ │ │ ├── fibula.lua
│ │ │ ├── gray_beach_vortex.lua
│ │ │ ├── item_teleports.lua
│ │ │ ├── lower_roshamuul.lua
│ │ │ ├── magician_quarter.lua
│ │ │ ├── port_hope_deathling.lua
│ │ │ ├── roshamuul_carpet.lua
│ │ │ ├── schrodingers_island_teleport_lvl_999.lua
│ │ │ ├── schrodingers_island_teleport_lvl_999_exit.lua
│ │ │ ├── shrine_entrance.lua
│ │ │ ├── shrine_exit.lua
│ │ │ ├── sorcerer_guild_thais.lua
│ │ │ ├── teleport_ab_dendriel.lua
│ │ │ ├── tomb_coal_basin.lua
│ │ │ ├── turtles.lua
│ │ │ ├── vengoth_teleport.lua
│ │ │ └── yalahar_demon.lua
│ ├── quests
│ │ ├── alawars_vault
│ │ │ └── action-lever.lua
│ │ ├── behemoth
│ │ │ └── action-lever.lua
│ │ ├── deeper_fibula
│ │ │ └── action-draw_well.lua
│ │ ├── demon_helmet
│ │ │ ├── action-lever.lua
│ │ │ └── movement-walls.lua
│ │ ├── draconia
│ │ │ ├── action-lever.lua
│ │ │ ├── movement-escape.lua
│ │ │ └── movement-exit_teleport.lua
│ │ ├── giant_smithhammer
│ │ │ └── lever.lua
│ │ ├── kilmaresh
│ │ │ └── 1-fafnars-wrath
│ │ │ │ ├── 2-ambassadors-treason.lua
│ │ │ │ ├── 3-urmahlullu-the-immaculate.lua
│ │ │ │ ├── 6-mind-travel.lua
│ │ │ │ ├── 7-four-masks.lua
│ │ │ │ └── 8-blessing-the-statues.lua
│ │ ├── parchment_room
│ │ │ └── parchment.lua
│ │ ├── thais_lighthouse
│ │ │ ├── action-lever.lua
│ │ │ └── movement-stair.lua
│ │ ├── the_annihilator
│ │ │ ├── door.lua
│ │ │ └── lever.lua
│ │ ├── the_order_of_lion
│ │ │ ├── action-bounac_entrance.lua
│ │ │ ├── action-drume.lua
│ │ │ ├── action-elevator.lua
│ │ │ ├── creatureevent-commander_kills.lua
│ │ │ └── moveevent-drume_entrance.lua
│ │ ├── the_paradox_tower
│ │ │ ├── action-fifth_floor_lever.lua
│ │ │ ├── action-four_floor_lever.lua
│ │ │ ├── action-second_floor_lever.lua
│ │ │ ├── action-third_floor_lever.lua
│ │ │ ├── movement-first_floor_stair.lua
│ │ │ ├── movement-last_floor_reward.lua
│ │ │ ├── movement-poison.lua
│ │ │ ├── movement-sacrifice_skulls.lua
│ │ │ └── movement-third_floor_ghoul.lua
│ │ ├── the_queen_of_the_banshees
│ │ │ ├── action-1-first_seal_lever.lua
│ │ │ ├── action-3-third_seal_lever.lua
│ │ │ ├── action-6-sixth_seal_lever.lua
│ │ │ ├── movement-1-first_seal_close_mw.lua
│ │ │ ├── movement-1-first_seal_flame.lua
│ │ │ ├── movement-1-first_seal_teleport_back.lua
│ │ │ ├── movement-2-second_seal_flame.lua
│ │ │ ├── movement-2-second_seal_pearl.lua
│ │ │ ├── movement-3-third_seal_flame.lua
│ │ │ ├── movement-3-third_seal_warlock_tile.lua
│ │ │ ├── movement-4-fourth_seal_flame.lua
│ │ │ ├── movement-4-fourth_seal_sacrifice.lua
│ │ │ ├── movement-5-fifth_seal_flame.lua
│ │ │ ├── movement-5-fifth_seal_path.lua
│ │ │ ├── movement-6-sixth_seal_flame.lua
│ │ │ └── movement-7-last_seal_flame.lua
│ │ └── the_rookie_guard
│ │ │ ├── mission02_defence.lua
│ │ │ ├── mission03_rational_request.lua
│ │ │ ├── mission04_home_brewed.lua
│ │ │ ├── mission05_web_terror.lua
│ │ │ ├── mission06_run_like_wolf.lua
│ │ │ ├── mission07_attack.lua
│ │ │ ├── mission09_rock_troll.lua
│ │ │ ├── mission10_tomb_raiding.lua
│ │ │ ├── mission11_sweet_poison.lua
│ │ │ ├── mission12_into_fortress.lua
│ │ │ └── missions.lua
│ ├── spells
│ │ ├── #example.lua
│ │ ├── attack
│ │ │ ├── annihilation.lua
│ │ │ ├── apprentice's_strike.lua
│ │ │ ├── berserk.lua
│ │ │ ├── brutal_strike.lua
│ │ │ ├── buzz.lua
│ │ │ ├── chill_out.lua
│ │ │ ├── curse.lua
│ │ │ ├── death_strike.lua
│ │ │ ├── divine_caldera.lua
│ │ │ ├── divine_missile.lua
│ │ │ ├── electrify.lua
│ │ │ ├── energy_beam.lua
│ │ │ ├── energy_strike.lua
│ │ │ ├── energy_wave.lua
│ │ │ ├── envenom.lua
│ │ │ ├── eternal_winter.lua
│ │ │ ├── ethereal_spear.lua
│ │ │ ├── fierce_berserk.lua
│ │ │ ├── fire_wave.lua
│ │ │ ├── flame_strike.lua
│ │ │ ├── front_sweep.lua
│ │ │ ├── great_energy_beam.lua
│ │ │ ├── great_fire_wave.lua
│ │ │ ├── groundshaker.lua
│ │ │ ├── hells_core.lua
│ │ │ ├── holy_flash.lua
│ │ │ ├── ice_strike.lua
│ │ │ ├── ice_wave.lua
│ │ │ ├── ignite.lua
│ │ │ ├── inflict_wound.lua
│ │ │ ├── lightning.lua
│ │ │ ├── mud_attack.lua
│ │ │ ├── physical_strike.lua
│ │ │ ├── practice_fire_wave.lua
│ │ │ ├── rage_of_the_skies.lua
│ │ │ ├── scorch.lua
│ │ │ ├── strong_energy_strike.lua
│ │ │ ├── strong_ethereal_spear.lua
│ │ │ ├── strong_flame_strike.lua
│ │ │ ├── strong_ice_strike.lua
│ │ │ ├── strong_ice_wave.lua
│ │ │ ├── strong_terra_strike.lua
│ │ │ ├── terra_strike.lua
│ │ │ ├── terra_wave.lua
│ │ │ ├── ultimate_energy_strike.lua
│ │ │ ├── ultimate_flame_strike.lua
│ │ │ ├── ultimate_ice_strike.lua
│ │ │ ├── ultimate_terra_strike.lua
│ │ │ ├── whirlwind_throw.lua
│ │ │ └── wrath_of_nature.lua
│ │ ├── conjuring
│ │ │ ├── Conjure_Diamond_Arrow.lua
│ │ │ ├── Conjure_Royal_Star.lua
│ │ │ ├── Conjure_Spectral_Bolt.lua
│ │ │ ├── Conjure_Wand_of_Darkness.lua
│ │ │ ├── animate_dead_rune.lua
│ │ │ ├── arrow_call.lua
│ │ │ ├── avalanche_rune.lua
│ │ │ ├── blank_rune.lua
│ │ │ ├── chameleon_rune.lua
│ │ │ ├── conjure_arrow.lua
│ │ │ ├── conjure_bolt.lua
│ │ │ ├── conjure_explosive_arrow.lua
│ │ │ ├── conjure_piercing_bolt.lua
│ │ │ ├── conjure_poisoned_arrow.lua
│ │ │ ├── conjure_power_bolt.lua
│ │ │ ├── conjure_sniper_arrow.lua
│ │ │ ├── convince_creature_rune.lua
│ │ │ ├── cure_poison_rune.lua
│ │ │ ├── destroy_field_rune.lua
│ │ │ ├── disintegrate_rune.lua
│ │ │ ├── enchant_spear.lua
│ │ │ ├── enchant_staff.lua
│ │ │ ├── energy_bomb_rune.lua
│ │ │ ├── energy_field_rune.lua
│ │ │ ├── energy_wall_rune.lua
│ │ │ ├── explosion_rune.lua
│ │ │ ├── fire_bomb_rune.lua
│ │ │ ├── fire_field_rune.lua
│ │ │ ├── fire_wall_rune.lua
│ │ │ ├── fireball_rune.lua
│ │ │ ├── great_fireball_rune.lua
│ │ │ ├── heavy_magic_missile_rune.lua
│ │ │ ├── holy_missile_rune.lua
│ │ │ ├── icicle_rune.lua
│ │ │ ├── intense_healing_rune.lua
│ │ │ ├── light_magic_missile_rune.lua
│ │ │ ├── light_stone_shower_rune.lua
│ │ │ ├── lightest_magic_missile_rune.lua
│ │ │ ├── lightest_missile_rune.lua
│ │ │ ├── magic_wall_rune.lua
│ │ │ ├── paralyze_rune.lua
│ │ │ ├── poison_bomb_rune.lua
│ │ │ ├── poison_field_rune.lua
│ │ │ ├── poison_wall_rune.lua
│ │ │ ├── soulfire_rune.lua
│ │ │ ├── stalagmite_rune.lua
│ │ │ ├── stone_shower_rune.lua
│ │ │ ├── sudden_death_rune.lua
│ │ │ ├── thunderstorm_rune.lua
│ │ │ ├── ultimate_healing_rune.lua
│ │ │ └── wild_growth_rune.lua
│ │ ├── healing
│ │ │ ├── bruise_bane.lua
│ │ │ ├── cure_bleeding.lua
│ │ │ ├── cure_burning.lua
│ │ │ ├── cure_curse.lua
│ │ │ ├── cure_electrification.lua
│ │ │ ├── cure_poison.lua
│ │ │ ├── divine_healing.lua
│ │ │ ├── fair_wound_cleansing.lua
│ │ │ ├── heal_friend.lua
│ │ │ ├── heal_monsters.lua
│ │ │ ├── heal_monsters_9x9.lua
│ │ │ ├── intense_healing.lua
│ │ │ ├── intense_recovery.lua
│ │ │ ├── intense_wound_cleansing.lua
│ │ │ ├── light_healing.lua
│ │ │ ├── magic_patch.lua
│ │ │ ├── mass_healing.lua
│ │ │ ├── nature's_embrace.lua
│ │ │ ├── practice_healing.lua
│ │ │ ├── recovery.lua
│ │ │ ├── restoration.lua
│ │ │ ├── salvation.lua
│ │ │ ├── ultimate_healing.lua
│ │ │ └── wound_cleansing.lua
│ │ ├── house
│ │ │ ├── edit_door_list.lua
│ │ │ ├── edit_guest_list.lua
│ │ │ ├── edit_subowner_list.lua
│ │ │ └── kick.lua
│ │ ├── monster
│ │ │ ├── abyssador_paralyze.lua
│ │ │ ├── abyssador_poison_wave.lua
│ │ │ ├── abyssador_skill_reducer_1.lua
│ │ │ ├── abyssador_skill_reducer_2.lua
│ │ │ ├── aftershock_wave.lua
│ │ │ ├── aggresive_lava_wave.lua
│ │ │ ├── ancient_scarab_paralyze.lua
│ │ │ ├── annihilon_paralyze.lua
│ │ │ ├── annihilon_skill_reducer.lua
│ │ │ ├── anomaly_break.lua
│ │ │ ├── anomaly_wave.lua
│ │ │ ├── apprentice_sheng_summon.lua
│ │ │ ├── arachir_the_ancient_one_summon.lua
│ │ │ ├── arachnophobica_wavedice.lua
│ │ │ ├── arachnophobica_waveenergy.lua
│ │ │ ├── arkhothep_curse.lua
│ │ │ ├── arkhothep_paralyze.lua
│ │ │ ├── arkhothep_summon.lua
│ │ │ ├── arthei_summon.lua
│ │ │ ├── ashfalor_summon.lua
│ │ │ ├── askarak_wave.lua
│ │ │ ├── azerus_electrify.lua
│ │ │ ├── azerus_skill_reducer_1.lua
│ │ │ ├── azerus_skill_reducer_2.lua
│ │ │ ├── azerus_skill_reducer_3.lua
│ │ │ ├── azerus_soulfire_1.lua
│ │ │ ├── azerus_soulfire_2.lua
│ │ │ ├── azerus_summon_1.lua
│ │ │ ├── azerus_summon_2.lua
│ │ │ ├── azerus_summon_3.lua
│ │ │ ├── azerus_summon_4.lua
│ │ │ ├── bane_of_light_paralyze.lua
│ │ │ ├── banshee_paralyze.lua
│ │ │ ├── barbarian_brutetamer_skill_reducer.lua
│ │ │ ├── betrayed_wraith_paralyze.lua
│ │ │ ├── betrayed_wraith_skill_reducer.lua
│ │ │ ├── bibby_bloodbath_paralyze.lua
│ │ │ ├── big_boss_trolliver_summon.lua
│ │ │ ├── big_death_wave.lua
│ │ │ ├── big_energy_purple_wave.lua
│ │ │ ├── big_energy_purple_wave2.lua
│ │ │ ├── big_energy_wave.lua
│ │ │ ├── big_explosion_wave.lua
│ │ │ ├── big_lifedrain_wave.lua
│ │ │ ├── big_skill_reducer.lua
│ │ │ ├── blightwalker_curse.lua
│ │ │ ├── blightwalker_paralyze.lua
│ │ │ ├── blood_hand_paralyze.lua
│ │ │ ├── bog_raider_paralyze.lua
│ │ │ ├── bonebeast_paralyze.lua
│ │ │ ├── boogey_summon.lua
│ │ │ ├── braindeath_paralyze.lua
│ │ │ ├── breach_brood_reducer.lua
│ │ │ ├── brimstone_bug_paralyze.lua
│ │ │ ├── brimstone_bug_wave.lua
│ │ │ ├── bullwark_paralyze.lua
│ │ │ ├── bullwark_summon.lua
│ │ │ ├── burning_gladiator_firering.lua
│ │ │ ├── burning_gladiator_firex.lua
│ │ │ ├── canopic_jar_heal.lua
│ │ │ ├── carniphila_paralyze.lua
│ │ │ ├── chakoya_freeze.lua
│ │ │ ├── charge_vortex.lua
│ │ │ ├── charged_energy_elemental_electrify.lua
│ │ │ ├── chizzoron_the_distorter_paralyze.lua
│ │ │ ├── chizzoron_the_distorter_summon.lua
│ │ │ ├── choking_fear_drown.lua
│ │ │ ├── choking_fear_paralyze.lua
│ │ │ ├── cliff_strider_electrify.lua
│ │ │ ├── cliff_strider_skill_reducer.lua
│ │ │ ├── coldheart_paralyze.lua
│ │ │ ├── corym_vanguard_wave.lua
│ │ │ ├── crystal_spider_paralyze_1.lua
│ │ │ ├── crystal_spider_paralyze_2.lua
│ │ │ ├── crystal_wolf_wave.lua
│ │ │ ├── cults_of_tibia_armor_buff.lua
│ │ │ ├── dark_torturer_skill_reducer.lua
│ │ │ ├── death_blob_curse.lua
│ │ │ ├── death_priest_shargon_curse.lua
│ │ │ ├── death_priest_shargon_dazzle.lua
│ │ │ ├── death_priest_shargon_summon.lua
│ │ │ ├── deathbringer_drown.lua
│ │ │ ├── deathstrike_freeze.lua
│ │ │ ├── deathstrike_manadrain.lua
│ │ │ ├── deathstrike_paralyze.lua
│ │ │ ├── deepling_spellsinger_skill_reducer.lua
│ │ │ ├── defiler_paralyze_1.lua
│ │ │ ├── defiler_paralyze_2.lua
│ │ │ ├── defiler_paralyze_3.lua
│ │ │ ├── demon_outcast_skill_reducer.lua
│ │ │ ├── demon_paralyze.lua
│ │ │ ├── demon_summon.lua
│ │ │ ├── destruction_summon.lua
│ │ │ ├── devourer_paralyze.lua
│ │ │ ├── devourer_summon.lua
│ │ │ ├── devourer_wave.lua
│ │ │ ├── devovorga_curse.lua
│ │ │ ├── dharalion_skill_reducer.lua
│ │ │ ├── diabolic_imp_skill_reducer.lua
│ │ │ ├── diblis_the_fair_summon.lua
│ │ │ ├── dipthrah_skill_reducer.lua
│ │ │ ├── dire_penguin_paralyze.lua
│ │ │ ├── dirtbeard_summon.lua
│ │ │ ├── diseased_paralyze.lua
│ │ │ ├── djinn_cancel_invisibility.lua
│ │ │ ├── djinn_electrify.lua
│ │ │ ├── djinn_electrify_2.lua
│ │ │ ├── djinn_paralyze.lua
│ │ │ ├── doctor_perhaps_summon.lua
│ │ │ ├── dragonling_paralyze.lua
│ │ │ ├── dragonling_wave.lua
│ │ │ ├── draken_abomination_curse.lua
│ │ │ ├── draken_abomination_summon.lua
│ │ │ ├── draken_elite_soulfire.lua
│ │ │ ├── dread_intruder_wave.lua
│ │ │ ├── dreadbeast_skill_reducer.lua
│ │ │ ├── dreadbeast_summon.lua
│ │ │ ├── dreadwing_curse.lua
│ │ │ ├── dreadwing_skill_reducer.lua
│ │ │ ├── drillworm_paralyze.lua
│ │ │ ├── dryad_paralyze.lua
│ │ │ ├── dwarf_henchman_drown.lua
│ │ │ ├── dworc_paralyze.lua
│ │ │ ├── elder_bonelord_paralyze.lua
│ │ │ ├── elder_mummy_paralyze.lua
│ │ │ ├── elder_wyrm_electrify.lua
│ │ │ ├── elder_wyrm_wave.lua
│ │ │ ├── emberBeastArea.lua
│ │ │ ├── emberBeastHur.lua
│ │ │ ├── emperor_summon.lua
│ │ │ ├── energized_raging_mage_skill_reducer.lua
│ │ │ ├── energy_elemental_electrify.lua
│ │ │ ├── energy_overlord_paralyze.lua
│ │ │ ├── energy_pulse_explosion.lua
│ │ │ ├── enslaved_dwarf_skill_reducer_1.lua
│ │ │ ├── enslaved_dwarf_skill_reducer_2.lua
│ │ │ ├── eruption_of_destruction_explosion.lua
│ │ │ ├── essence_of_darkness_curse.lua
│ │ │ ├── essence_of_darkness_paralyze.lua
│ │ │ ├── evil_sheep_lord_summon.lua
│ │ │ ├── explosion_wave.lua
│ │ │ ├── feroxa_summon.lua
│ │ │ ├── ferumbras_electrify.lua
│ │ │ ├── ferumbras_soulfire.lua
│ │ │ ├── feverish_citizen_drunk.lua
│ │ │ ├── feversleep_skill_reducer.lua
│ │ │ ├── fire_overlord_paralyze.lua
│ │ │ ├── fire_overlord_soulfire.lua
│ │ │ ├── firestarter_soulfire.lua
│ │ │ ├── flamecaller_zazrak_summon.lua
│ │ │ ├── forest_fury_skill_reducer_1.lua
│ │ │ ├── forest_fury_skill_reducer_2.lua
│ │ │ ├── frazzlemaw_paralyze.lua
│ │ │ ├── freed_soul_spell.lua
│ │ │ ├── frost_dragon_paralyze_1.lua
│ │ │ ├── frost_dragon_paralyze_2.lua
│ │ │ ├── frost_dragon_paralyze_3.lua
│ │ │ ├── frozen_minion_beam.lua
│ │ │ ├── frozen_minion_heal.lua
│ │ │ ├── frozen_minion_wave.lua
│ │ │ ├── fury_paralyze.lua
│ │ │ ├── fury_skill_reducer_1.lua
│ │ │ ├── fury_skill_reducer_2.lua
│ │ │ ├── furyosa_deathball.lua
│ │ │ ├── furyosa_heal.lua
│ │ │ ├── furyosa_manadrain.lua
│ │ │ ├── furyosa_skill_reducer.lua
│ │ │ ├── furyosa_soulfire.lua
│ │ │ ├── furyosa_summon.lua
│ │ │ ├── gaz'haragoth_death.lua
│ │ │ ├── gaz'haragoth_iceball.lua
│ │ │ ├── gaz'haragoth_paralyze.lua
│ │ │ ├── gaz'haragoth_summon.lua
│ │ │ ├── generator.lua
│ │ │ ├── ghastly_dragon_curse.lua
│ │ │ ├── ghastly_dragon_paralyze.lua
│ │ │ ├── ghastly_dragon_wave.lua
│ │ │ ├── ghazbaran_paralyze.lua
│ │ │ ├── ghazbaran_skill_reducer_1.lua
│ │ │ ├── ghazbaran_skill_reducer_2.lua
│ │ │ ├── ghazbaran_summon.lua
│ │ │ ├── ghoulish_hyaena_wave.lua
│ │ │ ├── glooth-generator_summon.lua
│ │ │ ├── glooth_anemone_summon.lua
│ │ │ ├── glooth_battery_heal.lua
│ │ │ ├── glooth_bomb_walkthrough.lua
│ │ │ ├── glooth_fairy_healing.lua
│ │ │ ├── glooth_fairy_paralyze.lua
│ │ │ ├── glooth_fairy_skill_reducer.lua
│ │ │ ├── gnomevil_drunk.lua
│ │ │ ├── gnomevil_electrify.lua
│ │ │ ├── gnomevil_skill_reducer_1.lua
│ │ │ ├── gnomevil_skill_reducer_2.lua
│ │ │ ├── gnomevil_soulfire.lua
│ │ │ ├── gnorre_chyllson_drown.lua
│ │ │ ├── gnorre_chyllson_paralyze.lua
│ │ │ ├── gnorre_chyllson_skill_reducer.lua
│ │ │ ├── grand_mother_foulscale_summon.lua
│ │ │ ├── grandfather_tridian_paralyze.lua
│ │ │ ├── greater_jar_summon.lua
│ │ │ ├── haunted_treeling_paralyze.lua
│ │ │ ├── haunter_curse.lua
│ │ │ ├── haunter_electrify.lua
│ │ │ ├── hell_hole_summon.lua
│ │ │ ├── hellfire_fighter_soulfire.lua
│ │ │ ├── hellgorak_skill_reducer.lua
│ │ │ ├── hellspawn_soulfire.lua
│ │ │ ├── hideous_fungus_paralyze.lua
│ │ │ ├── hideous_fungus_poison.lua
│ │ │ ├── hideous_fungus_summon.lua
│ │ │ ├── hirintror_freeze.lua
│ │ │ ├── hirintror_heal.lua
│ │ │ ├── hirintror_skill_reducer.lua
│ │ │ ├── hirintror_summon.lua
│ │ │ ├── hive_pore_summon.lua
│ │ │ ├── horadron_heal.lua
│ │ │ ├── horadron_paralyze.lua
│ │ │ ├── horestis_paralyze.lua
│ │ │ ├── hot_dog_soulfire.lua
│ │ │ ├── hot_dog_wave.lua
│ │ │ ├── humongous_fungus_paralyze.lua
│ │ │ ├── humongous_fungus_poison.lua
│ │ │ ├── hunger_summon.lua
│ │ │ ├── ice_crystal_bomb.lua
│ │ │ ├── ice_golem_paralyze.lua
│ │ │ ├── ice_golem_skill_reducer.lua
│ │ │ ├── ice_overlord_freeze.lua
│ │ │ ├── ice_overlord_paralyze.lua
│ │ │ ├── ice_witch_paralyze.lua
│ │ │ ├── icecle_heal.lua
│ │ │ ├── incineron_soulfire.lua
│ │ │ ├── infected_weeper_summon.lua
│ │ │ ├── ironblight_freeze.lua
│ │ │ ├── ironblight_skill_reducer.lua
│ │ │ ├── jaul_paralyze.lua
│ │ │ ├── jewelry_chest_summon.lua
│ │ │ ├── killer_rabbit_summon.lua
│ │ │ ├── koshei_the_deathless_curse.lua
│ │ │ ├── koshei_the_deathless_paralyze.lua
│ │ │ ├── kraknaknork_explosion_wave.lua
│ │ │ ├── kraknaknork_ice_wave.lua
│ │ │ ├── kraknaknork_paralyze.lua
│ │ │ ├── kraknaknork_poison_wave.lua
│ │ │ ├── lancer_beetle_curse.lua
│ │ │ ├── lancer_beetle_skill_reducer.lua
│ │ │ ├── lava_golem_soulfire.lua
│ │ │ ├── lava_golem_soulfire2.lua
│ │ │ ├── leaf_golem_paralyze.lua
│ │ │ ├── lersatio_summon.lua
│ │ │ ├── lethal_lissy_skill_reducer.lua
│ │ │ ├── lich_paralyze.lua
│ │ │ ├── lisa_heal.lua
│ │ │ ├── lisa_paralyze.lua
│ │ │ ├── lisa_skill_reducer.lua
│ │ │ ├── lisa_summon.lua
│ │ │ ├── lisa_wave.lua
│ │ │ ├── lizard_dragon_priest_summon.lua
│ │ │ ├── lizard_gate_guardian_summon.lua
│ │ │ ├── lizard_magistratus_curse.lua
│ │ │ ├── lizard_wave.lua
│ │ │ ├── lizard_wave_2.lua
│ │ │ ├── lloyd_wave.lua
│ │ │ ├── lloyd_wave2.lua
│ │ │ ├── lloyd_wave3.lua
│ │ │ ├── lord_of_the_elements_paralyze.lua
│ │ │ ├── lord_of_the_elements_skill_reducer.lua
│ │ │ ├── lord_of_the_elements_soulfire.lua
│ │ │ ├── lord_of_the_elements_summon.lua
│ │ │ ├── lost_berserker_skill_reducer.lua
│ │ │ ├── lost_soul_paralyze.lua
│ │ │ ├── lost_thrower_skill_reducer.lua
│ │ │ ├── madareth_pillar_skill_reducer.lua
│ │ │ ├── madareth_skill_reducer.lua
│ │ │ ├── magic_pillar_summon.lua
│ │ │ ├── magma_crawler_skill_reducer.lua
│ │ │ ├── magma_crawler_soulfire.lua
│ │ │ ├── magma_crawler_soulfire_2.lua
│ │ │ ├── magma_crawler_wave.lua
│ │ │ ├── mahrdis_soulfire.lua
│ │ │ ├── mamma_longlegs_paralyze.lua
│ │ │ ├── man_in_the_cave_summon.lua
│ │ │ ├── massive_energy_elemental_electrify.lua
│ │ │ ├── massive_fire_elemental_soulfire.lua
│ │ │ ├── mawhawk_summon.lua
│ │ │ ├── mawhawk_ue.lua
│ │ │ ├── maxxen_teleport.lua
│ │ │ ├── mazoran_fire.lua
│ │ │ ├── mazoran_summon.lua
│ │ │ ├── medusa_paralyze.lua
│ │ │ ├── mephiles_skill_reducer.lua
│ │ │ ├── mephiles_summon.lua
│ │ │ ├── metal_gargoyle_curse.lua
│ │ │ ├── mindmasher_drown.lua
│ │ │ ├── mindmasher_summon.lua
│ │ │ ├── minotaur_amazon_paralyze.lua
│ │ │ ├── minotaur_wallbreaker_walkthrough.lua
│ │ │ ├── monstor_summon.lua
│ │ │ ├── mooh'tah_master_skill_reducer.lua
│ │ │ ├── morgaroth_paralyze.lua
│ │ │ ├── morgaroth_skill_reducer_1.lua
│ │ │ ├── morgaroth_skill_reducer_2.lua
│ │ │ ├── morgaroth_summon.lua
│ │ │ ├── morik_the_gladiator_summon.lua
│ │ │ ├── mummy_paralyze.lua
│ │ │ ├── munster_summon.lua
│ │ │ ├── mutated_bat_curse.lua
│ │ │ ├── mutated_human_paralyze.lua
│ │ │ ├── mutated_rat_paralyze.lua
│ │ │ ├── nightstalker_paralyze.lua
│ │ │ ├── obujos_skill_reducer_1.lua
│ │ │ ├── obujos_skill_reducer_2.lua
│ │ │ ├── ocyakao_freeze.lua
│ │ │ ├── omrafir_beam.lua
│ │ │ ├── omrafir_healing_2.lua
│ │ │ ├── omrafir_summon.lua
│ │ │ ├── omrafir_wave.lua
│ │ │ ├── orewalker_skill_reducer_1.lua
│ │ │ ├── orewalker_wave.lua
│ │ │ ├── orshabaal_skill_reducer.lua
│ │ │ ├── outburst_explode.lua
│ │ │ ├── phantasm_drown.lua
│ │ │ ├── pirate_corsair_skill_reducer.lua
│ │ │ ├── pixie_skill_reducer.lua
│ │ │ ├── plagirath_bog.lua
│ │ │ ├── plagirath_heal.lua
│ │ │ ├── plagirath_summon.lua
│ │ │ ├── plaguesmith_paralyze.lua
│ │ │ ├── plaguesmith_wave.lua
│ │ │ ├── priestess_firering.lua
│ │ │ ├── prince_drazzak_druid.lua
│ │ │ ├── prince_drazzak_knight.lua
│ │ │ ├── prince_drazzak_paladin.lua
│ │ │ ├── prince_drazzak_sorcerer.lua
│ │ │ ├── prince_drazzak_summon.lua
│ │ │ ├── prince_drazzak_tp.lua
│ │ │ ├── prince_drazzak_wave.lua
│ │ │ ├── pythius_the_rotten_curse.lua
│ │ │ ├── pythius_the_rotten_paralyze.lua
│ │ │ ├── pythius_the_rotten_summon.lua
│ │ │ ├── quara_constrictor_electrify.lua
│ │ │ ├── quara_constrictor_freeze.lua
│ │ │ ├── rage_summon.lua
│ │ │ ├── ragiaz_transform.lua
│ │ │ ├── raging_mage_skill_reducer_1.lua
│ │ │ ├── raging_mage_skill_reducer_2.lua
│ │ │ ├── ravennousLavaLurkerTarget.lua
│ │ │ ├── ravennousLavaLurkerWave.lua
│ │ │ ├── razzagorn_summon.lua
│ │ │ ├── reality_reaver_wave.lua
│ │ │ ├── remorseless_wave.lua
│ │ │ ├── renegade_knight.lua
│ │ │ ├── retching_horror_paralyze.lua
│ │ │ ├── rift_brood_electrify.lua
│ │ │ ├── root_branchy_rotten.lua
│ │ │ ├── rot_elemental_paralyze.lua
│ │ │ ├── rupture_wave.lua
│ │ │ ├── rustheap_golem_electrify.lua
│ │ │ ├── rustheap_golem_wave.lua
│ │ │ ├── salamander_trainer_summon.lua
│ │ │ ├── sea_serpent_drown.lua
│ │ │ ├── seacrest_serpent_wave.lua
│ │ │ ├── serpent_spawn_paralyze.lua
│ │ │ ├── shaburak_wave.lua
│ │ │ ├── shadow_hound_curse.lua
│ │ │ ├── shargon_heal.lua
│ │ │ ├── shlorg_paralyze.lua
│ │ │ ├── shock_head_paralyze.lua
│ │ │ ├── shock_head_skill_reducer_1.lua
│ │ │ ├── shock_head_skill_reducer_2.lua
│ │ │ ├── shulgrax_summon.lua
│ │ │ ├── silencer_skill_reducer.lua
│ │ │ ├── single_cloud_chain.lua
│ │ │ ├── single_death_chain.lua
│ │ │ ├── single_ice_chain.lua
│ │ │ ├── sir_valorcrest_summon.lua
│ │ │ ├── slime_puddle_paralyze.lua
│ │ │ ├── soulcatcher_summon.lua
│ │ │ ├── souleater_drown.lua
│ │ │ ├── souleater_wave.lua
│ │ │ ├── source_of_corruption_wave.lua
│ │ │ ├── spawn_of_the_welter_heal.lua
│ │ │ ├── spawn_of_the_welter_heal2.lua
│ │ │ ├── spectre_drown.lua
│ │ │ ├── spider_queen_wrap.lua
│ │ │ ├── spirit_of_earth_paralyze.lua
│ │ │ ├── spitter_paralyze.lua
│ │ │ ├── stampor_skill_reducer.lua
│ │ │ ├── stone_devourer_paralyze.lua
│ │ │ ├── summonchallenge.lua
│ │ │ ├── svoren_the_mad_paralyze.lua
│ │ │ ├── swampling_paralyze.lua
│ │ │ ├── tanjis_skill_reducer.lua
│ │ │ ├── tarbaz_tp.lua
│ │ │ ├── tenebris_summon.lua
│ │ │ ├── tenebris_ultimate.lua
│ │ │ ├── terofar_curse.lua
│ │ │ ├── terofar_heal.lua
│ │ │ ├── terofar_skill_reducer_1.lua
│ │ │ ├── terofar_skill_reducer_2.lua
│ │ │ ├── thalas_summon.lua
│ │ │ ├── the_abomination_paralyze.lua
│ │ │ ├── the_abomination_summon.lua
│ │ │ ├── the_blightfather_summon.lua
│ │ │ ├── the_dark_dancer_summon.lua
│ │ │ ├── the_dreadorian_curse.lua
│ │ │ ├── the_dreadorian_drown.lua
│ │ │ ├── the_dreadorian_soulfire.lua
│ │ │ ├── the_imperor_summon.lua
│ │ │ ├── the_pale_count_bomb.lua
│ │ │ ├── the_pale_count_manadrain.lua
│ │ │ ├── the_pale_count_summon.lua
│ │ │ ├── the_pale_count_wave.lua
│ │ │ ├── the_ravager_heal.lua
│ │ │ ├── the_voice_of_ruin_paralyze.lua
│ │ │ ├── the_welter_heal.lua
│ │ │ ├── the_welter_heal2.lua
│ │ │ ├── the_welter_paralyze.lua
│ │ │ ├── the_welter_summon.lua
│ │ │ ├── the_welter_summon2.lua
│ │ │ ├── thorn_summon.lua
│ │ │ ├── thul_paralyze.lua
│ │ │ ├── thul_summon.lua
│ │ │ ├── time_guardian.lua
│ │ │ ├── time_guardian_lost_time.lua
│ │ │ ├── time_guardiann.lua
│ │ │ ├── twins_skill_reducer.lua
│ │ │ ├── twisted_shaper_ice.lua
│ │ │ ├── tyrn_electrify.lua
│ │ │ ├── tyrn_heal.lua
│ │ │ ├── tyrn_skill_reducer.lua
│ │ │ ├── undead_cavebear_curse.lua
│ │ │ ├── undead_dragon_curse.lua
│ │ │ ├── undead_jester_paralyze.lua
│ │ │ ├── undead_jester_summon.lua
│ │ │ ├── urmahlullu_ring.lua
│ │ │ ├── ushuriel_curse.lua
│ │ │ ├── ushuriel_electrify.lua
│ │ │ ├── vampire_paralyze.lua
│ │ │ ├── vampire_viscount_paralyze.lua
│ │ │ ├── verminor_paralyze.lua
│ │ │ ├── verminor_summon.lua
│ │ │ ├── vile_grandmaster.lua
│ │ │ ├── vulcongra_soulfire.lua
│ │ │ ├── walker_skill_reducer.lua
│ │ │ ├── war_golem_electrify.lua
│ │ │ ├── war_golem_skill_reducer.lua
│ │ │ ├── warden_ring.lua
│ │ │ ├── warden_x.lua
│ │ │ ├── warlock_skill_reducer.lua
│ │ │ ├── wave_t.lua
│ │ │ ├── webster_paralyze.lua
│ │ │ ├── weeper_paralyze.lua
│ │ │ ├── weeper_skill_reducer.lua
│ │ │ ├── werelion_wave.lua
│ │ │ ├── werewolf_skill_reducer.lua
│ │ │ ├── werewolf_summon.lua
│ │ │ ├── white_pale_heal.lua
│ │ │ ├── white_pale_paralyze.lua
│ │ │ ├── white_pale_summon.lua
│ │ │ ├── white_shade_paralyze.lua
│ │ │ ├── wiggler_paralyze.lua
│ │ │ ├── wilting_leaf_golem_paralyze.lua
│ │ │ ├── woodling_paralyze.lua
│ │ │ ├── worm_priestess_paralyze.lua
│ │ │ ├── wyrm_wave.lua
│ │ │ ├── wyvern_drunk.lua
│ │ │ ├── young_sea_serpent_drown.lua
│ │ │ ├── zamulosh_invisible.lua
│ │ │ ├── zamulosh_tp.lua
│ │ │ ├── zavarash2_paralyze.lua
│ │ │ ├── zavarash_heal.lua
│ │ │ ├── zavarash_paralyze.lua
│ │ │ ├── zugurosh_pillar_skill_reducer.lua
│ │ │ ├── zugurosh_soulfire.lua
│ │ │ ├── zulazza_the_corruptor_paralyze.lua
│ │ │ ├── zulazza_the_corruptor_skill_reducer.lua
│ │ │ ├── zushuka_freeze.lua
│ │ │ ├── zushuka_heal.lua
│ │ │ └── zushuka_paralyze.lua
│ │ ├── party
│ │ │ ├── enchant_party.lua
│ │ │ ├── heal_party.lua
│ │ │ ├── protect_party.lua
│ │ │ └── train_party.lua
│ │ ├── runes
│ │ │ ├── animate_dead_rune.lua
│ │ │ ├── antidote_rune.lua
│ │ │ ├── avalanche.lua
│ │ │ ├── chameleon.lua
│ │ │ ├── convince_creature.lua
│ │ │ ├── desintegrate_rune.lua
│ │ │ ├── destroy_field_rune.lua
│ │ │ ├── energy_bomb.lua
│ │ │ ├── energy_field.lua
│ │ │ ├── energy_wall.lua
│ │ │ ├── explosion.lua
│ │ │ ├── fire_bomb.lua
│ │ │ ├── fire_field.lua
│ │ │ ├── fire_wall.lua
│ │ │ ├── fireball.lua
│ │ │ ├── great_fireball.lua
│ │ │ ├── heavy_magic_missile.lua
│ │ │ ├── holy_missile.lua
│ │ │ ├── icicle.lua
│ │ │ ├── intense_healing_rune.lua
│ │ │ ├── light_magic_missile.lua
│ │ │ ├── light_stone_shower.lua
│ │ │ ├── lightest_magic_missile.lua
│ │ │ ├── lightest_missile.lua
│ │ │ ├── magic_wall.lua
│ │ │ ├── paralyze_rune.lua
│ │ │ ├── poison_bomb.lua
│ │ │ ├── poison_field.lua
│ │ │ ├── poison_wall.lua
│ │ │ ├── soul_fire.lua
│ │ │ ├── stalagmite.lua
│ │ │ ├── stone_shower.lua
│ │ │ ├── sudden_death.lua
│ │ │ ├── thunderstorm.lua
│ │ │ ├── ultimate_healing_rune.lua
│ │ │ └── wild_growth.lua
│ │ ├── summon
│ │ │ ├── druid_familiar.lua
│ │ │ ├── knight_familiar.lua
│ │ │ ├── paladin_familiar.lua
│ │ │ ├── sorcerer_familiar.lua
│ │ │ └── summon_creature.lua
│ │ └── support
│ │ │ ├── blood_rage.lua
│ │ │ ├── cancel_invisibility.lua
│ │ │ ├── cancel_magic_shield.lua
│ │ │ ├── challenge.lua
│ │ │ ├── charge.lua
│ │ │ ├── chivalrous_challenge.lua
│ │ │ ├── creature_illusion.lua
│ │ │ ├── divine_dazzle.lua
│ │ │ ├── expose_weakness.lua
│ │ │ ├── find_person.lua
│ │ │ ├── food.lua
│ │ │ ├── great_light.lua
│ │ │ ├── haste.lua
│ │ │ ├── invisible.lua
│ │ │ ├── levitate.lua
│ │ │ ├── light.lua
│ │ │ ├── magic_rope.lua
│ │ │ ├── magic_shield.lua
│ │ │ ├── protector.lua
│ │ │ ├── sap_strength.lua
│ │ │ ├── sharpshooter.lua
│ │ │ ├── strong_haste.lua
│ │ │ ├── swift_foot.lua
│ │ │ └── ultimate_light.lua
│ ├── talkactions
│ │ ├── god
│ │ │ ├── add_outfit.lua
│ │ │ ├── add_skill.lua
│ │ │ ├── alladdons.lua
│ │ │ ├── allmounts.lua
│ │ │ ├── attributes.lua
│ │ │ ├── ban.lua
│ │ │ ├── bless_status.lua
│ │ │ ├── broadcast.lua
│ │ │ ├── charms.lua
│ │ │ ├── clean.lua
│ │ │ ├── close_server.lua
│ │ │ ├── count_monsters.lua
│ │ │ ├── create hirelinglamp.lua
│ │ │ ├── create_item.lua
│ │ │ ├── create_monster.lua
│ │ │ ├── create_npc.lua
│ │ │ ├── create_summon.lua
│ │ │ ├── down.lua
│ │ │ ├── getlook.lua
│ │ │ ├── ghost.lua
│ │ │ ├── gold_highscore.lua
│ │ │ ├── house_owner.lua
│ │ │ ├── info.lua
│ │ │ ├── ip_ban.lua
│ │ │ ├── kick.lua
│ │ │ ├── looktype.lua
│ │ │ ├── magiceffect.lua
│ │ │ ├── mc_check.lua
│ │ │ ├── open_server.lua
│ │ │ ├── position.lua
│ │ │ ├── push_creature.lua
│ │ │ ├── push_town.lua
│ │ │ ├── reload.lua
│ │ │ ├── remove_thing.lua
│ │ │ ├── save.lua
│ │ │ ├── set_light.lua
│ │ │ ├── skip_tiles.lua
│ │ │ ├── spy.lua
│ │ │ ├── start_raid.lua
│ │ │ ├── storage_add.lua
│ │ │ ├── storage_get.lua
│ │ │ ├── storage_set.lua
│ │ │ ├── teleport_to_creature.lua
│ │ │ ├── teleport_to_town.lua
│ │ │ ├── unban.lua
│ │ │ └── up.lua
│ │ └── player
│ │ │ ├── aol.lua
│ │ │ ├── bless.lua
│ │ │ ├── buy_house.lua
│ │ │ ├── leave_house.lua
│ │ │ ├── online.lua
│ │ │ ├── sell_house.lua
│ │ │ ├── server_info.lua
│ │ │ ├── tibia_timer.lua
│ │ │ └── tutor_position.lua
│ └── weapons
│ │ ├── dawnport_weapon.lua
│ │ ├── scripts
│ │ ├── burst_arrow.lua
│ │ ├── diamond_arrow.lua
│ │ ├── poison_arrow.lua
│ │ └── viper_star.lua
│ │ └── unscripted_weapons.lua
├── stages.lua
├── startup
│ ├── README.md
│ ├── others
│ │ ├── bitwise_flags.lua
│ │ ├── functions.lua
│ │ ├── hireling_lib.lua
│ │ └── others.lua
│ ├── startup.lua
│ └── tables
│ │ ├── chest.lua
│ │ ├── corpse.lua
│ │ ├── door_key.lua
│ │ ├── door_level.lua
│ │ ├── door_quest.lua
│ │ ├── item.lua
│ │ ├── item_daily_reward.lua
│ │ ├── item_unmoveable.lua
│ │ ├── lever.lua
│ │ ├── npc_spawn.lua
│ │ ├── tables.lua
│ │ ├── teleport.lua
│ │ ├── teleport_item.lua
│ │ ├── tile.lua
│ │ ├── tile_pick.lua
│ │ └── writeable.lua
├── update.lua
└── world
│ ├── custom
│ ├── otservbr-custom-houses.xml
│ ├── otservbr-custom-spawn.xml
│ └── otservbr-custom.otbm
│ ├── feroxa
│ ├── final.otbm
│ └── middle.otbm
│ ├── furygates
│ ├── abdendriel.otbm
│ ├── ankrahmun.otbm
│ ├── carlin.otbm
│ ├── darashia.otbm
│ ├── edron.otbm
│ ├── kazordoon.otbm
│ ├── libertybay.otbm
│ ├── porthope.otbm
│ ├── thais.otbm
│ └── venore.otbm
│ ├── nightmareisle
│ ├── ankrahmun-north.otbm
│ ├── darashia-north.otbm
│ └── darashia-west.otbm
│ ├── otservbr-house.xml
│ ├── otservbr-spawn.xml
│ ├── world.zip
│ ├── worldchanges
│ ├── folhas-house.xml
│ ├── folhas-spawn.xml
│ ├── folhas.otbm
│ ├── habitats.otbm
│ ├── ouro-house.xml
│ ├── ouro-spawn.xml
│ └── ouro.otbm
│ └── yasir
│ ├── ankrahmun.otbm
│ ├── carlin.otbm
│ └── libertybay.otbm
├── docker
├── .gitignore
├── DOCKER.md
├── data
│ ├── 01-test_account.sql
│ ├── 02-test_account_players.sql
│ ├── download-myaac.sh
│ ├── login.py
│ └── web
│ │ └── .gitignore
├── docker-compose.yml
├── login
│ └── Dockerfile
├── mysql
│ └── Dockerfile
├── server
│ └── Dockerfile
└── test-server.sh
├── docs
├── Doxyfile.in
└── config.ld.in
├── key.pem
├── recompile.sh
├── schema.sql
├── sonar-project.properties
├── src
├── CMakeLists.txt
├── config
│ ├── configmanager.cpp
│ └── configmanager.h
├── creatures
│ ├── appearance
│ │ ├── mounts
│ │ │ ├── mounts.cpp
│ │ │ └── mounts.h
│ │ └── outfit
│ │ │ ├── outfit.cpp
│ │ │ └── outfit.h
│ ├── combat
│ │ ├── combat.cpp
│ │ ├── combat.h
│ │ ├── condition.cpp
│ │ ├── condition.h
│ │ ├── spells.cpp
│ │ └── spells.h
│ ├── creature.cpp
│ ├── creature.h
│ ├── interactions
│ │ ├── chat.cpp
│ │ └── chat.h
│ ├── monsters
│ │ ├── monster.cpp
│ │ ├── monster.h
│ │ ├── monsters.cpp
│ │ └── monsters.h
│ ├── npc
│ │ ├── npc.cpp
│ │ └── npc.h
│ ├── players
│ │ ├── account
│ │ │ ├── account.cpp
│ │ │ └── account.hpp
│ │ ├── grouping
│ │ │ ├── familiars.cpp
│ │ │ ├── familiars.h
│ │ │ ├── groups.cpp
│ │ │ ├── groups.h
│ │ │ ├── guild.cpp
│ │ │ ├── guild.h
│ │ │ ├── party.cpp
│ │ │ └── party.h
│ │ ├── imbuements
│ │ │ ├── imbuements.cpp
│ │ │ └── imbuements.h
│ │ ├── management
│ │ │ ├── ban.cpp
│ │ │ ├── ban.h
│ │ │ ├── waitlist.cpp
│ │ │ └── waitlist.h
│ │ ├── player.cpp
│ │ ├── player.h
│ │ └── vocations
│ │ │ ├── vocation.cpp
│ │ │ └── vocation.h
│ └── spawn
│ │ ├── spawn.cpp
│ │ └── spawn.h
├── database
│ ├── database.cpp
│ ├── database.h
│ ├── databasemanager.cpp
│ ├── databasemanager.h
│ ├── databasetasks.cpp
│ └── databasetasks.h
├── game
│ ├── game.cpp
│ ├── game.h
│ ├── gamestore.cpp
│ ├── gamestore.h
│ ├── movement
│ │ ├── position.cpp
│ │ ├── position.h
│ │ ├── teleport.cpp
│ │ └── teleport.h
│ └── scheduling
│ │ ├── scheduler.cpp
│ │ ├── scheduler.h
│ │ ├── tasks.cpp
│ │ └── tasks.h
├── icon
│ └── otservbr-global.ico
├── io
│ ├── fileloader.cpp
│ ├── fileloader.h
│ ├── iobestiary.cpp
│ ├── iobestiary.h
│ ├── ioguild.cpp
│ ├── ioguild.h
│ ├── iologindata.cpp
│ ├── iologindata.h
│ ├── iomap.cpp
│ ├── iomap.h
│ ├── iomapserialize.cpp
│ ├── iomapserialize.h
│ ├── iomarket.cpp
│ └── iomarket.h
├── items
│ ├── bed.cpp
│ ├── bed.h
│ ├── containers
│ │ ├── container.cpp
│ │ ├── container.h
│ │ ├── depot
│ │ │ ├── depotchest.cpp
│ │ │ ├── depotchest.h
│ │ │ ├── depotlocker.cpp
│ │ │ └── depotlocker.h
│ │ ├── inbox
│ │ │ ├── inbox.cpp
│ │ │ └── inbox.h
│ │ ├── mailbox
│ │ │ ├── mailbox.cpp
│ │ │ └── mailbox.h
│ │ └── rewards
│ │ │ ├── reward.cpp
│ │ │ ├── reward.h
│ │ │ ├── rewardchest.cpp
│ │ │ └── rewardchest.h
│ ├── cylinder.cpp
│ ├── cylinder.h
│ ├── decay
│ │ ├── decay.cpp
│ │ └── decay.h
│ ├── item.cpp
│ ├── item.h
│ ├── itemloader.h
│ ├── items.cpp
│ ├── items.h
│ ├── thing.cpp
│ ├── thing.h
│ ├── tile.cpp
│ ├── tile.h
│ ├── trashholder.cpp
│ ├── trashholder.h
│ └── weapons
│ │ ├── weapons.cpp
│ │ └── weapons.h
├── lua
│ ├── callbacks
│ │ ├── creaturecallback.cpp
│ │ └── creaturecallback.h
│ ├── creature
│ │ ├── actions.cpp
│ │ ├── actions.h
│ │ ├── creatureevent.cpp
│ │ ├── creatureevent.h
│ │ ├── events.cpp
│ │ ├── events.h
│ │ ├── movement.cpp
│ │ ├── movement.h
│ │ ├── raids.cpp
│ │ ├── raids.h
│ │ ├── talkaction.cpp
│ │ └── talkaction.h
│ ├── global
│ │ ├── baseevents.cpp
│ │ ├── baseevents.h
│ │ ├── globalevent.cpp
│ │ └── globalevent.h
│ ├── modules
│ │ ├── modules.cpp
│ │ └── modules.h
│ └── scripts
│ │ ├── luascript.cpp
│ │ ├── luascript.h
│ │ ├── scripts.cpp
│ │ └── scripts.h
├── map
│ ├── house
│ │ ├── house.cpp
│ │ ├── house.h
│ │ ├── housetile.cpp
│ │ └── housetile.h
│ ├── map.cpp
│ ├── map.h
│ └── town.h
├── otpch.cpp
├── otpch.h
├── otserv.cpp
├── security
│ ├── rsa.cpp
│ ├── rsa.h
│ ├── xtea.cpp
│ └── xtea.h
├── server
│ ├── network
│ │ ├── connection
│ │ │ ├── connection.cpp
│ │ │ └── connection.h
│ │ ├── message
│ │ │ ├── networkmessage.cpp
│ │ │ ├── networkmessage.h
│ │ │ ├── outputmessage.cpp
│ │ │ └── outputmessage.h
│ │ ├── protocol
│ │ │ ├── protocol.cpp
│ │ │ ├── protocol.h
│ │ │ ├── protocolgame.cpp
│ │ │ ├── protocolgame.h
│ │ │ ├── protocollogin.cpp
│ │ │ ├── protocollogin.h
│ │ │ ├── protocolstatus.cpp
│ │ │ └── protocolstatus.h
│ │ └── webhook
│ │ │ ├── webhook.cpp
│ │ │ └── webhook.h
│ ├── server.cpp
│ ├── server.h
│ ├── signals.cpp
│ └── signals.h
└── utils
│ ├── const.h
│ ├── definitions.h
│ ├── enums.h
│ ├── lockfree.h
│ ├── pugicast.h
│ ├── thread_holder_base.h
│ ├── tools.cpp
│ ├── tools.h
│ ├── wildcardtree.cpp
│ └── wildcardtree.h
├── tests
├── CMakeLists.txt
├── Dockerfile.database
├── account_test.cpp
├── build_and_run.sh
├── catch.hpp
├── docker-compose.yaml
└── main.cpp
└── vcpkg.json
/.appveyor.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.appveyor.yml
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.github/FUNDING.yml
--------------------------------------------------------------------------------
/.github/labeler.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.github/labeler.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.gitignore
--------------------------------------------------------------------------------
/.reviewdog.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.reviewdog.yml
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/.travis.yml
--------------------------------------------------------------------------------
/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/CMakeLists.txt
--------------------------------------------------------------------------------
/CMakeSettings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/CMakeSettings.json
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/Jenkinsfile:
--------------------------------------------------------------------------------
1 | TestServer()
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/README.md
--------------------------------------------------------------------------------
/cmake/FindCryptoPP.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindCryptoPP.cmake
--------------------------------------------------------------------------------
/cmake/FindGMP.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindGMP.cmake
--------------------------------------------------------------------------------
/cmake/FindLua.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindLua.cmake
--------------------------------------------------------------------------------
/cmake/FindLuaJIT.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindLuaJIT.cmake
--------------------------------------------------------------------------------
/cmake/FindMySQL.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindMySQL.cmake
--------------------------------------------------------------------------------
/cmake/FindPugiXML.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/FindPugiXML.cmake
--------------------------------------------------------------------------------
/cmake/LoggingHelper.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/LoggingHelper.cmake
--------------------------------------------------------------------------------
/cmake/MessageColors.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/MessageColors.cmake
--------------------------------------------------------------------------------
/cmake/git_watcher.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/git_watcher.cmake
--------------------------------------------------------------------------------
/cmake/gitmetadata.h.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/gitmetadata.h.in
--------------------------------------------------------------------------------
/cmake/otservbr-global.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/otservbr-global.ico
--------------------------------------------------------------------------------
/cmake/otservbr-global.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/cmake/otservbr-global.rc
--------------------------------------------------------------------------------
/config.lua.dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/config.lua.dist
--------------------------------------------------------------------------------
/data/XML/events.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/events.xml
--------------------------------------------------------------------------------
/data/XML/familiars.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/familiars.xml
--------------------------------------------------------------------------------
/data/XML/groups.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/groups.xml
--------------------------------------------------------------------------------
/data/XML/imbuements.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/imbuements.xml
--------------------------------------------------------------------------------
/data/XML/mounts.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/mounts.xml
--------------------------------------------------------------------------------
/data/XML/outfits.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/outfits.xml
--------------------------------------------------------------------------------
/data/XML/vocations.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/XML/vocations.xml
--------------------------------------------------------------------------------
/data/events/events.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/events/events.xml
--------------------------------------------------------------------------------
/data/global.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/global.lua
--------------------------------------------------------------------------------
/data/items/items.otb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/items/items.otb
--------------------------------------------------------------------------------
/data/items/items.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/items/items.xml
--------------------------------------------------------------------------------
/data/lib/core/bit.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/bit.lua
--------------------------------------------------------------------------------
/data/lib/core/combat.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/combat.lua
--------------------------------------------------------------------------------
/data/lib/core/core.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/core.lua
--------------------------------------------------------------------------------
/data/lib/core/game.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/game.lua
--------------------------------------------------------------------------------
/data/lib/core/item.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/item.lua
--------------------------------------------------------------------------------
/data/lib/core/monster.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/monster.lua
--------------------------------------------------------------------------------
/data/lib/core/party.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/party.lua
--------------------------------------------------------------------------------
/data/lib/core/player.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/player.lua
--------------------------------------------------------------------------------
/data/lib/core/quests.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/quests.lua
--------------------------------------------------------------------------------
/data/lib/core/string.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/string.lua
--------------------------------------------------------------------------------
/data/lib/core/tile.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/core/tile.lua
--------------------------------------------------------------------------------
/data/lib/lib.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/lib/lib.lua
--------------------------------------------------------------------------------
/data/logs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/logs/.gitignore
--------------------------------------------------------------------------------
/data/migrations/0.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/0.lua
--------------------------------------------------------------------------------
/data/migrations/1.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/1.lua
--------------------------------------------------------------------------------
/data/migrations/10.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/10.lua
--------------------------------------------------------------------------------
/data/migrations/11.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/11.lua
--------------------------------------------------------------------------------
/data/migrations/12.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/12.lua
--------------------------------------------------------------------------------
/data/migrations/13.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/13.lua
--------------------------------------------------------------------------------
/data/migrations/14.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/14.lua
--------------------------------------------------------------------------------
/data/migrations/15.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/15.lua
--------------------------------------------------------------------------------
/data/migrations/16.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/16.lua
--------------------------------------------------------------------------------
/data/migrations/17.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/17.lua
--------------------------------------------------------------------------------
/data/migrations/18.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/18.lua
--------------------------------------------------------------------------------
/data/migrations/2.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/2.lua
--------------------------------------------------------------------------------
/data/migrations/3.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/3.lua
--------------------------------------------------------------------------------
/data/migrations/4.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/4.lua
--------------------------------------------------------------------------------
/data/migrations/5.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/5.lua
--------------------------------------------------------------------------------
/data/migrations/6.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/6.lua
--------------------------------------------------------------------------------
/data/migrations/7.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/7.lua
--------------------------------------------------------------------------------
/data/migrations/8.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/8.lua
--------------------------------------------------------------------------------
/data/migrations/9.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/migrations/9.lua
--------------------------------------------------------------------------------
/data/npc/....xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/....xml
--------------------------------------------------------------------------------
/data/npc/a_beggar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_beggar.xml
--------------------------------------------------------------------------------
/data/npc/a_behemoth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_behemoth.xml
--------------------------------------------------------------------------------
/data/npc/a_frog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_frog.xml
--------------------------------------------------------------------------------
/data/npc/a_prisoner.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_prisoner.xml
--------------------------------------------------------------------------------
/data/npc/a_swan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_swan.xml
--------------------------------------------------------------------------------
/data/npc/a_wyrm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/a_wyrm.xml
--------------------------------------------------------------------------------
/data/npc/adrenius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/adrenius.xml
--------------------------------------------------------------------------------
/data/npc/ahmet.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ahmet.xml
--------------------------------------------------------------------------------
/data/npc/ajax.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ajax.xml
--------------------------------------------------------------------------------
/data/npc/al_dee.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/al_dee.xml
--------------------------------------------------------------------------------
/data/npc/alaistar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alaistar.xml
--------------------------------------------------------------------------------
/data/npc/albert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/albert.xml
--------------------------------------------------------------------------------
/data/npc/albinius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/albinius.xml
--------------------------------------------------------------------------------
/data/npc/aldo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/aldo.xml
--------------------------------------------------------------------------------
/data/npc/alesar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alesar.xml
--------------------------------------------------------------------------------
/data/npc/alexander.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alexander.xml
--------------------------------------------------------------------------------
/data/npc/alia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alia.xml
--------------------------------------------------------------------------------
/data/npc/alissa.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alissa.xml
--------------------------------------------------------------------------------
/data/npc/alkestios.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alkestios.xml
--------------------------------------------------------------------------------
/data/npc/allen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/allen.xml
--------------------------------------------------------------------------------
/data/npc/alwin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alwin.xml
--------------------------------------------------------------------------------
/data/npc/alyxo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/alyxo.xml
--------------------------------------------------------------------------------
/data/npc/amanda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/amanda.xml
--------------------------------------------------------------------------------
/data/npc/amarie.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/amarie.xml
--------------------------------------------------------------------------------
/data/npc/amber.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/amber.xml
--------------------------------------------------------------------------------
/data/npc/anderson.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/anderson.xml
--------------------------------------------------------------------------------
/data/npc/anerui.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/anerui.xml
--------------------------------------------------------------------------------
/data/npc/aneus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/aneus.xml
--------------------------------------------------------------------------------
/data/npc/angelina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/angelina.xml
--------------------------------------------------------------------------------
/data/npc/angelo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/angelo.xml
--------------------------------------------------------------------------------
/data/npc/angus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/angus.xml
--------------------------------------------------------------------------------
/data/npc/appaloosa.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/appaloosa.xml
--------------------------------------------------------------------------------
/data/npc/archery.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/archery.xml
--------------------------------------------------------------------------------
/data/npc/ariella.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ariella.xml
--------------------------------------------------------------------------------
/data/npc/arito.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/arito.xml
--------------------------------------------------------------------------------
/data/npc/arkarra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/arkarra.xml
--------------------------------------------------------------------------------
/data/npc/arkhothep.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/arkhothep.xml
--------------------------------------------------------------------------------
/data/npc/arkulius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/arkulius.xml
--------------------------------------------------------------------------------
/data/npc/arnold.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/arnold.xml
--------------------------------------------------------------------------------
/data/npc/aruda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/aruda.xml
--------------------------------------------------------------------------------
/data/npc/ashari.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ashari.xml
--------------------------------------------------------------------------------
/data/npc/ashtamor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ashtamor.xml
--------------------------------------------------------------------------------
/data/npc/asima.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/asima.xml
--------------------------------------------------------------------------------
/data/npc/asnarus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/asnarus.xml
--------------------------------------------------------------------------------
/data/npc/asrak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/asrak.xml
--------------------------------------------------------------------------------
/data/npc/asralius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/asralius.xml
--------------------------------------------------------------------------------
/data/npc/atrad.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/atrad.xml
--------------------------------------------------------------------------------
/data/npc/atur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/atur.xml
--------------------------------------------------------------------------------
/data/npc/aurita.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/aurita.xml
--------------------------------------------------------------------------------
/data/npc/auron.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/auron.xml
--------------------------------------------------------------------------------
/data/npc/avar_tar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/avar_tar.xml
--------------------------------------------------------------------------------
/data/npc/azalea.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/azalea.xml
--------------------------------------------------------------------------------
/data/npc/azil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/azil.xml
--------------------------------------------------------------------------------
/data/npc/baa_leal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/baa_leal.xml
--------------------------------------------------------------------------------
/data/npc/baltim.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/baltim.xml
--------------------------------------------------------------------------------
/data/npc/barazbaz.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/barazbaz.xml
--------------------------------------------------------------------------------
/data/npc/barbara.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/barbara.xml
--------------------------------------------------------------------------------
/data/npc/barney.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/barney.xml
--------------------------------------------------------------------------------
/data/npc/barry.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/barry.xml
--------------------------------------------------------------------------------
/data/npc/bashira.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bashira.xml
--------------------------------------------------------------------------------
/data/npc/basilisk.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/basilisk.xml
--------------------------------------------------------------------------------
/data/npc/baxter.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/baxter.xml
--------------------------------------------------------------------------------
/data/npc/beatrice.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/beatrice.xml
--------------------------------------------------------------------------------
/data/npc/benevola.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/benevola.xml
--------------------------------------------------------------------------------
/data/npc/benjamin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/benjamin.xml
--------------------------------------------------------------------------------
/data/npc/berenice.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/berenice.xml
--------------------------------------------------------------------------------
/data/npc/bertha.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bertha.xml
--------------------------------------------------------------------------------
/data/npc/bertram.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bertram.xml
--------------------------------------------------------------------------------
/data/npc/bezil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bezil.xml
--------------------------------------------------------------------------------
/data/npc/billy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/billy.xml
--------------------------------------------------------------------------------
/data/npc/black_bert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/black_bert.xml
--------------------------------------------------------------------------------
/data/npc/blind_orc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/blind_orc.xml
--------------------------------------------------------------------------------
/data/npc/bo_ques.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bo_ques.xml
--------------------------------------------------------------------------------
/data/npc/bolfona.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bolfona.xml
--------------------------------------------------------------------------------
/data/npc/bonifacius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bonifacius.xml
--------------------------------------------------------------------------------
/data/npc/boozer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/boozer.xml
--------------------------------------------------------------------------------
/data/npc/borkas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/borkas.xml
--------------------------------------------------------------------------------
/data/npc/boveas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/boveas.xml
--------------------------------------------------------------------------------
/data/npc/bozarn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bozarn.xml
--------------------------------------------------------------------------------
/data/npc/bozo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bozo.xml
--------------------------------------------------------------------------------
/data/npc/braden.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/braden.xml
--------------------------------------------------------------------------------
/data/npc/bradford.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bradford.xml
--------------------------------------------------------------------------------
/data/npc/brasith.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brasith.xml
--------------------------------------------------------------------------------
/data/npc/brengus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brengus.xml
--------------------------------------------------------------------------------
/data/npc/brewster.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brewster.xml
--------------------------------------------------------------------------------
/data/npc/briasol.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/briasol.xml
--------------------------------------------------------------------------------
/data/npc/brodrosch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brodrosch.xml
--------------------------------------------------------------------------------
/data/npc/brom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brom.xml
--------------------------------------------------------------------------------
/data/npc/bron.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bron.xml
--------------------------------------------------------------------------------
/data/npc/bruce.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bruce.xml
--------------------------------------------------------------------------------
/data/npc/bruno.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/bruno.xml
--------------------------------------------------------------------------------
/data/npc/brutus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/brutus.xml
--------------------------------------------------------------------------------
/data/npc/buddel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/buddel.xml
--------------------------------------------------------------------------------
/data/npc/budrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/budrik.xml
--------------------------------------------------------------------------------
/data/npc/cael.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cael.xml
--------------------------------------------------------------------------------
/data/npc/cameron.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cameron.xml
--------------------------------------------------------------------------------
/data/npc/caramellia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/caramellia.xml
--------------------------------------------------------------------------------
/data/npc/carina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/carina.xml
--------------------------------------------------------------------------------
/data/npc/carlos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/carlos.xml
--------------------------------------------------------------------------------
/data/npc/carlson.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/carlson.xml
--------------------------------------------------------------------------------
/data/npc/cassino.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cassino.xml
--------------------------------------------------------------------------------
/data/npc/cedrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cedrik.xml
--------------------------------------------------------------------------------
/data/npc/ceiron.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ceiron.xml
--------------------------------------------------------------------------------
/data/npc/cerdras.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cerdras.xml
--------------------------------------------------------------------------------
/data/npc/cerebrir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cerebrir.xml
--------------------------------------------------------------------------------
/data/npc/chantalle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chantalle.xml
--------------------------------------------------------------------------------
/data/npc/charles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/charles.xml
--------------------------------------------------------------------------------
/data/npc/charlotta.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/charlotta.xml
--------------------------------------------------------------------------------
/data/npc/charos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/charos.xml
--------------------------------------------------------------------------------
/data/npc/chartan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chartan.xml
--------------------------------------------------------------------------------
/data/npc/chavis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chavis.xml
--------------------------------------------------------------------------------
/data/npc/chemar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chemar.xml
--------------------------------------------------------------------------------
/data/npc/chephan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chephan.xml
--------------------------------------------------------------------------------
/data/npc/chondur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chondur.xml
--------------------------------------------------------------------------------
/data/npc/chrak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chrak.xml
--------------------------------------------------------------------------------
/data/npc/chraknpc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chraknpc.xml
--------------------------------------------------------------------------------
/data/npc/christine.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/christine.xml
--------------------------------------------------------------------------------
/data/npc/christoph.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/christoph.xml
--------------------------------------------------------------------------------
/data/npc/chrystal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chrystal.xml
--------------------------------------------------------------------------------
/data/npc/chuckles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/chuckles.xml
--------------------------------------------------------------------------------
/data/npc/cillia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cillia.xml
--------------------------------------------------------------------------------
/data/npc/cipfried.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cipfried.xml
--------------------------------------------------------------------------------
/data/npc/clark.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/clark.xml
--------------------------------------------------------------------------------
/data/npc/cledwyn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cledwyn.xml
--------------------------------------------------------------------------------
/data/npc/clyde.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/clyde.xml
--------------------------------------------------------------------------------
/data/npc/cobranpc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cobranpc.xml
--------------------------------------------------------------------------------
/data/npc/coltrayne.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/coltrayne.xml
--------------------------------------------------------------------------------
/data/npc/cornelia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cornelia.xml
--------------------------------------------------------------------------------
/data/npc/cornell.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cornell.xml
--------------------------------------------------------------------------------
/data/npc/costello.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/costello.xml
--------------------------------------------------------------------------------
/data/npc/cruleo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/cruleo.xml
--------------------------------------------------------------------------------
/data/npc/curos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/curos.xml
--------------------------------------------------------------------------------
/data/npc/dabui.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dabui.xml
--------------------------------------------------------------------------------
/data/npc/dagomir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dagomir.xml
--------------------------------------------------------------------------------
/data/npc/dalbrect.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dalbrect.xml
--------------------------------------------------------------------------------
/data/npc/dallheim.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dallheim.xml
--------------------------------------------------------------------------------
/data/npc/dane.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dane.xml
--------------------------------------------------------------------------------
/data/npc/dankwart.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dankwart.xml
--------------------------------------------------------------------------------
/data/npc/danlon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/danlon.xml
--------------------------------------------------------------------------------
/data/npc/dario.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dario.xml
--------------------------------------------------------------------------------
/data/npc/dedoras.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dedoras.xml
--------------------------------------------------------------------------------
/data/npc/demonguard.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/demonguard.xml
--------------------------------------------------------------------------------
/data/npc/dermot.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dermot.xml
--------------------------------------------------------------------------------
/data/npc/digger.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/digger.xml
--------------------------------------------------------------------------------
/data/npc/dixi.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dixi.xml
--------------------------------------------------------------------------------
/data/npc/djema.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/djema.xml
--------------------------------------------------------------------------------
/data/npc/dorbin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dorbin.xml
--------------------------------------------------------------------------------
/data/npc/dorian.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dorian.xml
--------------------------------------------------------------------------------
/data/npc/doubleday.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/doubleday.xml
--------------------------------------------------------------------------------
/data/npc/doug.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/doug.xml
--------------------------------------------------------------------------------
/data/npc/dove.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dove.xml
--------------------------------------------------------------------------------
/data/npc/dr_merlay.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dr_merlay.xml
--------------------------------------------------------------------------------
/data/npc/dreadeye.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dreadeye.xml
--------------------------------------------------------------------------------
/data/npc/dregor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dregor.xml
--------------------------------------------------------------------------------
/data/npc/drog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/drog.xml
--------------------------------------------------------------------------------
/data/npc/dronk.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dronk.xml
--------------------------------------------------------------------------------
/data/npc/dukosch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dukosch.xml
--------------------------------------------------------------------------------
/data/npc/duncan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/duncan.xml
--------------------------------------------------------------------------------
/data/npc/duria.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/duria.xml
--------------------------------------------------------------------------------
/data/npc/dustrunner.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/dustrunner.xml
--------------------------------------------------------------------------------
/data/npc/eathar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eathar.xml
--------------------------------------------------------------------------------
/data/npc/ebenizer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ebenizer.xml
--------------------------------------------------------------------------------
/data/npc/eclesius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eclesius.xml
--------------------------------------------------------------------------------
/data/npc/edala.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/edala.xml
--------------------------------------------------------------------------------
/data/npc/eddy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eddy.xml
--------------------------------------------------------------------------------
/data/npc/edmund.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/edmund.xml
--------------------------------------------------------------------------------
/data/npc/edoch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/edoch.xml
--------------------------------------------------------------------------------
/data/npc/edowir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/edowir.xml
--------------------------------------------------------------------------------
/data/npc/edvard.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/edvard.xml
--------------------------------------------------------------------------------
/data/npc/eighty.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eighty.xml
--------------------------------------------------------------------------------
/data/npc/eirik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eirik.xml
--------------------------------------------------------------------------------
/data/npc/elane.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elane.xml
--------------------------------------------------------------------------------
/data/npc/elathriel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elathriel.xml
--------------------------------------------------------------------------------
/data/npc/elbert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elbert.xml
--------------------------------------------------------------------------------
/data/npc/eleonore.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eleonore.xml
--------------------------------------------------------------------------------
/data/npc/elf_guard.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elf_guard.xml
--------------------------------------------------------------------------------
/data/npc/elgar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elgar.xml
--------------------------------------------------------------------------------
/data/npc/eliyas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eliyas.xml
--------------------------------------------------------------------------------
/data/npc/eliza.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eliza.xml
--------------------------------------------------------------------------------
/data/npc/elliott.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elliott.xml
--------------------------------------------------------------------------------
/data/npc/elvith.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/elvith.xml
--------------------------------------------------------------------------------
/data/npc/emberwing.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/emberwing.xml
--------------------------------------------------------------------------------
/data/npc/emily.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/emily.xml
--------------------------------------------------------------------------------
/data/npc/emma.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/emma.xml
--------------------------------------------------------------------------------
/data/npc/eranth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eranth.xml
--------------------------------------------------------------------------------
/data/npc/erayo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/erayo.xml
--------------------------------------------------------------------------------
/data/npc/eremo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eremo.xml
--------------------------------------------------------------------------------
/data/npc/eroth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eroth.xml
--------------------------------------------------------------------------------
/data/npc/eruaran.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eruaran.xml
--------------------------------------------------------------------------------
/data/npc/eshaya.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eshaya.xml
--------------------------------------------------------------------------------
/data/npc/esrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/esrik.xml
--------------------------------------------------------------------------------
/data/npc/ethan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ethan.xml
--------------------------------------------------------------------------------
/data/npc/etzel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/etzel.xml
--------------------------------------------------------------------------------
/data/npc/eva.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/eva.xml
--------------------------------------------------------------------------------
/data/npc/evan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/evan.xml
--------------------------------------------------------------------------------
/data/npc/ezean.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ezean.xml
--------------------------------------------------------------------------------
/data/npc/ezebeth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ezebeth.xml
--------------------------------------------------------------------------------
/data/npc/fa_hradin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fa_hradin.xml
--------------------------------------------------------------------------------
/data/npc/fadil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fadil.xml
--------------------------------------------------------------------------------
/data/npc/falk.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/falk.xml
--------------------------------------------------------------------------------
/data/npc/falonzo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/falonzo.xml
--------------------------------------------------------------------------------
/data/npc/faloriel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/faloriel.xml
--------------------------------------------------------------------------------
/data/npc/faluae.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/faluae.xml
--------------------------------------------------------------------------------
/data/npc/fayla.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fayla.xml
--------------------------------------------------------------------------------
/data/npc/feizuhl.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/feizuhl.xml
--------------------------------------------------------------------------------
/data/npc/fenbala.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fenbala.xml
--------------------------------------------------------------------------------
/data/npc/fenech.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fenech.xml
--------------------------------------------------------------------------------
/data/npc/fergus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fergus.xml
--------------------------------------------------------------------------------
/data/npc/ferks.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ferks.xml
--------------------------------------------------------------------------------
/data/npc/ferus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ferus.xml
--------------------------------------------------------------------------------
/data/npc/fillias.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fillias.xml
--------------------------------------------------------------------------------
/data/npc/finarfin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/finarfin.xml
--------------------------------------------------------------------------------
/data/npc/fiona.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fiona.xml
--------------------------------------------------------------------------------
/data/npc/flint.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/flint.xml
--------------------------------------------------------------------------------
/data/npc/flora.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/flora.xml
--------------------------------------------------------------------------------
/data/npc/florentine.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/florentine.xml
--------------------------------------------------------------------------------
/data/npc/frafnar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/frafnar.xml
--------------------------------------------------------------------------------
/data/npc/frans.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/frans.xml
--------------------------------------------------------------------------------
/data/npc/frederik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/frederik.xml
--------------------------------------------------------------------------------
/data/npc/freezhild.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/freezhild.xml
--------------------------------------------------------------------------------
/data/npc/frodo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/frodo.xml
--------------------------------------------------------------------------------
/data/npc/frosty.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/frosty.xml
--------------------------------------------------------------------------------
/data/npc/fynn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fynn.xml
--------------------------------------------------------------------------------
/data/npc/fyodor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/fyodor.xml
--------------------------------------------------------------------------------
/data/npc/gabel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gabel.xml
--------------------------------------------------------------------------------
/data/npc/gail.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gail.xml
--------------------------------------------------------------------------------
/data/npc/galuna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/galuna.xml
--------------------------------------------------------------------------------
/data/npc/gamel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gamel.xml
--------------------------------------------------------------------------------
/data/npc/gamon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gamon.xml
--------------------------------------------------------------------------------
/data/npc/garamond.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/garamond.xml
--------------------------------------------------------------------------------
/data/npc/gareth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gareth.xml
--------------------------------------------------------------------------------
/data/npc/gederas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gederas.xml
--------------------------------------------------------------------------------
/data/npc/gelagos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gelagos.xml
--------------------------------------------------------------------------------
/data/npc/gerimor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gerimor.xml
--------------------------------------------------------------------------------
/data/npc/gewen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gewen.xml
--------------------------------------------------------------------------------
/data/npc/ghorza.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ghorza.xml
--------------------------------------------------------------------------------
/data/npc/gladys.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gladys.xml
--------------------------------------------------------------------------------
/data/npc/gnomad.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomad.xml
--------------------------------------------------------------------------------
/data/npc/gnomailion.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomailion.xml
--------------------------------------------------------------------------------
/data/npc/gnomally.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomally.xml
--------------------------------------------------------------------------------
/data/npc/gnomargery.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomargery.xml
--------------------------------------------------------------------------------
/data/npc/gnomaticus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomaticus.xml
--------------------------------------------------------------------------------
/data/npc/gnombold.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnombold.xml
--------------------------------------------------------------------------------
/data/npc/gnome.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnome.xml
--------------------------------------------------------------------------------
/data/npc/gnomegica.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomegica.xml
--------------------------------------------------------------------------------
/data/npc/gnomejam.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomejam.xml
--------------------------------------------------------------------------------
/data/npc/gnomelvis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomelvis.xml
--------------------------------------------------------------------------------
/data/npc/gnomeral.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomeral.xml
--------------------------------------------------------------------------------
/data/npc/gnomercy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomercy.xml
--------------------------------------------------------------------------------
/data/npc/gnomerik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomerik.xml
--------------------------------------------------------------------------------
/data/npc/gnomerrow.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomerrow.xml
--------------------------------------------------------------------------------
/data/npc/gnomette.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomette.xml
--------------------------------------------------------------------------------
/data/npc/gnomewart.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomewart.xml
--------------------------------------------------------------------------------
/data/npc/gnomillion.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomillion.xml
--------------------------------------------------------------------------------
/data/npc/gnomilly.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomilly.xml
--------------------------------------------------------------------------------
/data/npc/gnomincia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomincia.xml
--------------------------------------------------------------------------------
/data/npc/gnominus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnominus.xml
--------------------------------------------------------------------------------
/data/npc/gnomission.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomission.xml
--------------------------------------------------------------------------------
/data/npc/gnommander.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnommander.xml
--------------------------------------------------------------------------------
/data/npc/gnomole.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomole.xml
--------------------------------------------------------------------------------
/data/npc/gnomus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomus.xml
--------------------------------------------------------------------------------
/data/npc/gnomux.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gnomux.xml
--------------------------------------------------------------------------------
/data/npc/gordon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gordon.xml
--------------------------------------------------------------------------------
/data/npc/gorn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gorn.xml
--------------------------------------------------------------------------------
/data/npc/graham.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/graham.xml
--------------------------------------------------------------------------------
/data/npc/graubart.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/graubart.xml
--------------------------------------------------------------------------------
/data/npc/gree_dee.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gree_dee.xml
--------------------------------------------------------------------------------
/data/npc/gregor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gregor.xml
--------------------------------------------------------------------------------
/data/npc/grodrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/grodrik.xml
--------------------------------------------------------------------------------
/data/npc/grombur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/grombur.xml
--------------------------------------------------------------------------------
/data/npc/grubokk.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/grubokk.xml
--------------------------------------------------------------------------------
/data/npc/guide_edna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/guide_edna.xml
--------------------------------------------------------------------------------
/data/npc/guide_luke.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/guide_luke.xml
--------------------------------------------------------------------------------
/data/npc/guide_tiko.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/guide_tiko.xml
--------------------------------------------------------------------------------
/data/npc/gundralph.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gundralph.xml
--------------------------------------------------------------------------------
/data/npc/gurbasch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/gurbasch.xml
--------------------------------------------------------------------------------
/data/npc/h.l..xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/h.l..xml
--------------------------------------------------------------------------------
/data/npc/habdel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/habdel.xml
--------------------------------------------------------------------------------
/data/npc/hagor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hagor.xml
--------------------------------------------------------------------------------
/data/npc/hairycles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hairycles.xml
--------------------------------------------------------------------------------
/data/npc/hal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hal.xml
--------------------------------------------------------------------------------
/data/npc/halif.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/halif.xml
--------------------------------------------------------------------------------
/data/npc/halvar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/halvar.xml
--------------------------------------------------------------------------------
/data/npc/hamilton.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hamilton.xml
--------------------------------------------------------------------------------
/data/npc/hamish.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hamish.xml
--------------------------------------------------------------------------------
/data/npc/hanna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hanna.xml
--------------------------------------------------------------------------------
/data/npc/hardek.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hardek.xml
--------------------------------------------------------------------------------
/data/npc/harlow.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/harlow.xml
--------------------------------------------------------------------------------
/data/npc/harog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/harog.xml
--------------------------------------------------------------------------------
/data/npc/haroun.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/haroun.xml
--------------------------------------------------------------------------------
/data/npc/harsky.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/harsky.xml
--------------------------------------------------------------------------------
/data/npc/hawkyr.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hawkyr.xml
--------------------------------------------------------------------------------
/data/npc/helor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/helor.xml
--------------------------------------------------------------------------------
/data/npc/henricus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/henricus.xml
--------------------------------------------------------------------------------
/data/npc/herbert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/herbert.xml
--------------------------------------------------------------------------------
/data/npc/hexel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hexel.xml
--------------------------------------------------------------------------------
/data/npc/hireling.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hireling.xml
--------------------------------------------------------------------------------
/data/npc/hjaern.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hjaern.xml
--------------------------------------------------------------------------------
/data/npc/hofech.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hofech.xml
--------------------------------------------------------------------------------
/data/npc/hoggle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hoggle.xml
--------------------------------------------------------------------------------
/data/npc/hugo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hugo.xml
--------------------------------------------------------------------------------
/data/npc/humgolf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/humgolf.xml
--------------------------------------------------------------------------------
/data/npc/humphrey.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/humphrey.xml
--------------------------------------------------------------------------------
/data/npc/huntsman.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/huntsman.xml
--------------------------------------------------------------------------------
/data/npc/hyacinth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/hyacinth.xml
--------------------------------------------------------------------------------
/data/npc/ikassis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ikassis.xml
--------------------------------------------------------------------------------
/data/npc/imalas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/imalas.xml
--------------------------------------------------------------------------------
/data/npc/imbul.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/imbul.xml
--------------------------------------------------------------------------------
/data/npc/inigo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/inigo.xml
--------------------------------------------------------------------------------
/data/npc/inkaef.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/inkaef.xml
--------------------------------------------------------------------------------
/data/npc/iptar-sin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iptar-sin.xml
--------------------------------------------------------------------------------
/data/npc/irea.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/irea.xml
--------------------------------------------------------------------------------
/data/npc/iriana.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iriana.xml
--------------------------------------------------------------------------------
/data/npc/irmana.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/irmana.xml
--------------------------------------------------------------------------------
/data/npc/irvin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/irvin.xml
--------------------------------------------------------------------------------
/data/npc/ishebad.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ishebad.xml
--------------------------------------------------------------------------------
/data/npc/ishina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ishina.xml
--------------------------------------------------------------------------------
/data/npc/isimov.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/isimov.xml
--------------------------------------------------------------------------------
/data/npc/iskan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iskan.xml
--------------------------------------------------------------------------------
/data/npc/isolde.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/isolde.xml
--------------------------------------------------------------------------------
/data/npc/ivalisse.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ivalisse.xml
--------------------------------------------------------------------------------
/data/npc/iwan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iwan.xml
--------------------------------------------------------------------------------
/data/npc/iwar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iwar.xml
--------------------------------------------------------------------------------
/data/npc/iyad.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/iyad.xml
--------------------------------------------------------------------------------
/data/npc/izsh.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/izsh.xml
--------------------------------------------------------------------------------
/data/npc/jack.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jack.xml
--------------------------------------------------------------------------------
/data/npc/jack_drone.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jack_drone.xml
--------------------------------------------------------------------------------
/data/npc/jack_fate.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jack_fate.xml
--------------------------------------------------------------------------------
/data/npc/jacob.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jacob.xml
--------------------------------------------------------------------------------
/data/npc/jagran.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jagran.xml
--------------------------------------------------------------------------------
/data/npc/jakahr.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jakahr.xml
--------------------------------------------------------------------------------
/data/npc/james.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/james.xml
--------------------------------------------------------------------------------
/data/npc/janz.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/janz.xml
--------------------------------------------------------------------------------
/data/npc/jason.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jason.xml
--------------------------------------------------------------------------------
/data/npc/jefrey.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jefrey.xml
--------------------------------------------------------------------------------
/data/npc/jerom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jerom.xml
--------------------------------------------------------------------------------
/data/npc/jeronimo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jeronimo.xml
--------------------------------------------------------------------------------
/data/npc/jessica.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jessica.xml
--------------------------------------------------------------------------------
/data/npc/jezzara.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jezzara.xml
--------------------------------------------------------------------------------
/data/npc/jimbin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jimbin.xml
--------------------------------------------------------------------------------
/data/npc/jimmy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jimmy.xml
--------------------------------------------------------------------------------
/data/npc/john.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/john.xml
--------------------------------------------------------------------------------
/data/npc/jondrin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jondrin.xml
--------------------------------------------------------------------------------
/data/npc/jorge.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jorge.xml
--------------------------------------------------------------------------------
/data/npc/jossel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/jossel.xml
--------------------------------------------------------------------------------
/data/npc/julian.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/julian.xml
--------------------------------------------------------------------------------
/data/npc/julius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/julius.xml
--------------------------------------------------------------------------------
/data/npc/kais.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kais.xml
--------------------------------------------------------------------------------
/data/npc/kallimae.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kallimae.xml
--------------------------------------------------------------------------------
/data/npc/kalvin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kalvin.xml
--------------------------------------------------------------------------------
/data/npc/karith.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/karith.xml
--------------------------------------------------------------------------------
/data/npc/karl.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/karl.xml
--------------------------------------------------------------------------------
/data/npc/kasmir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kasmir.xml
--------------------------------------------------------------------------------
/data/npc/kawill.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kawill.xml
--------------------------------------------------------------------------------
/data/npc/kaya.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kaya.xml
--------------------------------------------------------------------------------
/data/npc/kazzan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kazzan.xml
--------------------------------------------------------------------------------
/data/npc/kendra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kendra.xml
--------------------------------------------------------------------------------
/data/npc/kepar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kepar.xml
--------------------------------------------------------------------------------
/data/npc/kevin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kevin.xml
--------------------------------------------------------------------------------
/data/npc/khanna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/khanna.xml
--------------------------------------------------------------------------------
/data/npc/kjesse.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kjesse.xml
--------------------------------------------------------------------------------
/data/npc/klaus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/klaus.xml
--------------------------------------------------------------------------------
/data/npc/klesar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/klesar.xml
--------------------------------------------------------------------------------
/data/npc/kratos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kratos.xml
--------------------------------------------------------------------------------
/data/npc/kromrek.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kromrek.xml
--------------------------------------------------------------------------------
/data/npc/kroox.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/kroox.xml
--------------------------------------------------------------------------------
/data/npc/lailene.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lailene.xml
--------------------------------------------------------------------------------
/data/npc/larek.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/larek.xml
--------------------------------------------------------------------------------
/data/npc/lavirias.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lavirias.xml
--------------------------------------------------------------------------------
/data/npc/lazaran.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lazaran.xml
--------------------------------------------------------------------------------
/data/npc/lea.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lea.xml
--------------------------------------------------------------------------------
/data/npc/lector.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lector.xml
--------------------------------------------------------------------------------
/data/npc/lee_delle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lee_delle.xml
--------------------------------------------------------------------------------
/data/npc/leeland.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/leeland.xml
--------------------------------------------------------------------------------
/data/npc/legola.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/legola.xml
--------------------------------------------------------------------------------
/data/npc/liane.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/liane.xml
--------------------------------------------------------------------------------
/data/npc/lib/npc.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lib/npc.lua
--------------------------------------------------------------------------------
/data/npc/lightfoot.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lightfoot.xml
--------------------------------------------------------------------------------
/data/npc/lily.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lily.xml
--------------------------------------------------------------------------------
/data/npc/lisander.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lisander.xml
--------------------------------------------------------------------------------
/data/npc/livielle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/livielle.xml
--------------------------------------------------------------------------------
/data/npc/llathriel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/llathriel.xml
--------------------------------------------------------------------------------
/data/npc/lokur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lokur.xml
--------------------------------------------------------------------------------
/data/npc/lora.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lora.xml
--------------------------------------------------------------------------------
/data/npc/lorbas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lorbas.xml
--------------------------------------------------------------------------------
/data/npc/lorek.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lorek.xml
--------------------------------------------------------------------------------
/data/npc/loria.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/loria.xml
--------------------------------------------------------------------------------
/data/npc/lorietta.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lorietta.xml
--------------------------------------------------------------------------------
/data/npc/lothar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lothar.xml
--------------------------------------------------------------------------------
/data/npc/lou_toose.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lou_toose.xml
--------------------------------------------------------------------------------
/data/npc/loui.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/loui.xml
--------------------------------------------------------------------------------
/data/npc/lubo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lubo.xml
--------------------------------------------------------------------------------
/data/npc/lucius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lucius.xml
--------------------------------------------------------------------------------
/data/npc/lugri.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lugri.xml
--------------------------------------------------------------------------------
/data/npc/lukosch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lukosch.xml
--------------------------------------------------------------------------------
/data/npc/luna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/luna.xml
--------------------------------------------------------------------------------
/data/npc/lunch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lunch.xml
--------------------------------------------------------------------------------
/data/npc/lungelen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lungelen.xml
--------------------------------------------------------------------------------
/data/npc/lurik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lurik.xml
--------------------------------------------------------------------------------
/data/npc/lynda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lynda.xml
--------------------------------------------------------------------------------
/data/npc/lyonel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/lyonel.xml
--------------------------------------------------------------------------------
/data/npc/maealil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maealil.xml
--------------------------------------------------------------------------------
/data/npc/maelyrra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maelyrra.xml
--------------------------------------------------------------------------------
/data/npc/maeryn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maeryn.xml
--------------------------------------------------------------------------------
/data/npc/malor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/malor.xml
--------------------------------------------------------------------------------
/data/npc/malunga.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/malunga.xml
--------------------------------------------------------------------------------
/data/npc/marcus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/marcus.xml
--------------------------------------------------------------------------------
/data/npc/maria.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maria.xml
--------------------------------------------------------------------------------
/data/npc/marina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/marina.xml
--------------------------------------------------------------------------------
/data/npc/maris.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maris.xml
--------------------------------------------------------------------------------
/data/npc/maritima.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maritima.xml
--------------------------------------------------------------------------------
/data/npc/markwin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/markwin.xml
--------------------------------------------------------------------------------
/data/npc/marlene.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/marlene.xml
--------------------------------------------------------------------------------
/data/npc/maro.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maro.xml
--------------------------------------------------------------------------------
/data/npc/marvik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/marvik.xml
--------------------------------------------------------------------------------
/data/npc/marvin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/marvin.xml
--------------------------------------------------------------------------------
/data/npc/maryza.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maryza.xml
--------------------------------------------------------------------------------
/data/npc/maun.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/maun.xml
--------------------------------------------------------------------------------
/data/npc/mazarius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mazarius.xml
--------------------------------------------------------------------------------
/data/npc/mehkesh.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mehkesh.xml
--------------------------------------------------------------------------------
/data/npc/melchior.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/melchior.xml
--------------------------------------------------------------------------------
/data/npc/melfar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/melfar.xml
--------------------------------------------------------------------------------
/data/npc/melian.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/melian.xml
--------------------------------------------------------------------------------
/data/npc/memech.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/memech.xml
--------------------------------------------------------------------------------
/data/npc/menesto.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/menesto.xml
--------------------------------------------------------------------------------
/data/npc/meraya.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/meraya.xml
--------------------------------------------------------------------------------
/data/npc/milos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/milos.xml
--------------------------------------------------------------------------------
/data/npc/mirabell.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mirabell.xml
--------------------------------------------------------------------------------
/data/npc/miraia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/miraia.xml
--------------------------------------------------------------------------------
/data/npc/moe.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/moe.xml
--------------------------------------------------------------------------------
/data/npc/morax.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/morax.xml
--------------------------------------------------------------------------------
/data/npc/mordecai.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mordecai.xml
--------------------------------------------------------------------------------
/data/npc/morgan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/morgan.xml
--------------------------------------------------------------------------------
/data/npc/morpel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/morpel.xml
--------------------------------------------------------------------------------
/data/npc/mortimer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mortimer.xml
--------------------------------------------------------------------------------
/data/npc/mortis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mortis.xml
--------------------------------------------------------------------------------
/data/npc/morun.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/morun.xml
--------------------------------------------------------------------------------
/data/npc/mr._west.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mr._west.xml
--------------------------------------------------------------------------------
/data/npc/mr_brandon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mr_brandon.xml
--------------------------------------------------------------------------------
/data/npc/mr_morris.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mr_morris.xml
--------------------------------------------------------------------------------
/data/npc/mugluf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mugluf.xml
--------------------------------------------------------------------------------
/data/npc/mugruu.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/mugruu.xml
--------------------------------------------------------------------------------
/data/npc/muhad.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/muhad.xml
--------------------------------------------------------------------------------
/data/npc/muriel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/muriel.xml
--------------------------------------------------------------------------------
/data/npc/murim.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/murim.xml
--------------------------------------------------------------------------------
/data/npc/muzir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/muzir.xml
--------------------------------------------------------------------------------
/data/npc/myra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/myra.xml
--------------------------------------------------------------------------------
/data/npc/nah_bob.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nah_bob.xml
--------------------------------------------------------------------------------
/data/npc/naji.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/naji.xml
--------------------------------------------------------------------------------
/data/npc/narsai.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/narsai.xml
--------------------------------------------------------------------------------
/data/npc/navigator.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/navigator.xml
--------------------------------------------------------------------------------
/data/npc/neill.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/neill.xml
--------------------------------------------------------------------------------
/data/npc/nelliem.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nelliem.xml
--------------------------------------------------------------------------------
/data/npc/nelly.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nelly.xml
--------------------------------------------------------------------------------
/data/npc/nemal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nemal.xml
--------------------------------------------------------------------------------
/data/npc/nezil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nezil.xml
--------------------------------------------------------------------------------
/data/npc/nibble.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nibble.xml
--------------------------------------------------------------------------------
/data/npc/nicholas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nicholas.xml
--------------------------------------------------------------------------------
/data/npc/nielson.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nielson.xml
--------------------------------------------------------------------------------
/data/npc/nienna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nienna.xml
--------------------------------------------------------------------------------
/data/npc/nilsor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nilsor.xml
--------------------------------------------------------------------------------
/data/npc/nina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nina.xml
--------------------------------------------------------------------------------
/data/npc/ninev.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ninev.xml
--------------------------------------------------------------------------------
/data/npc/ninos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ninos.xml
--------------------------------------------------------------------------------
/data/npc/nokmir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nokmir.xml
--------------------------------------------------------------------------------
/data/npc/nomadnpc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nomadnpc.xml
--------------------------------------------------------------------------------
/data/npc/noodles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/noodles.xml
--------------------------------------------------------------------------------
/data/npc/noozer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/noozer.xml
--------------------------------------------------------------------------------
/data/npc/nor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nor.xml
--------------------------------------------------------------------------------
/data/npc/norbert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/norbert.xml
--------------------------------------------------------------------------------
/data/npc/norf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/norf.xml
--------------------------------------------------------------------------------
/data/npc/norma.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/norma.xml
--------------------------------------------------------------------------------
/data/npc/normod.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/normod.xml
--------------------------------------------------------------------------------
/data/npc/norris.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/norris.xml
--------------------------------------------------------------------------------
/data/npc/nurik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nurik.xml
--------------------------------------------------------------------------------
/data/npc/nydala.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/nydala.xml
--------------------------------------------------------------------------------
/data/npc/obi.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/obi.xml
--------------------------------------------------------------------------------
/data/npc/oblivion.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oblivion.xml
--------------------------------------------------------------------------------
/data/npc/ocelus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ocelus.xml
--------------------------------------------------------------------------------
/data/npc/odemara.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/odemara.xml
--------------------------------------------------------------------------------
/data/npc/oiriz.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oiriz.xml
--------------------------------------------------------------------------------
/data/npc/old_adall.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/old_adall.xml
--------------------------------------------------------------------------------
/data/npc/oldrak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oldrak.xml
--------------------------------------------------------------------------------
/data/npc/oliver.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oliver.xml
--------------------------------------------------------------------------------
/data/npc/olrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/olrik.xml
--------------------------------------------------------------------------------
/data/npc/omrabas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/omrabas.xml
--------------------------------------------------------------------------------
/data/npc/omur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/omur.xml
--------------------------------------------------------------------------------
/data/npc/ongulf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ongulf.xml
--------------------------------------------------------------------------------
/data/npc/oressa.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oressa.xml
--------------------------------------------------------------------------------
/data/npc/ormuhn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ormuhn.xml
--------------------------------------------------------------------------------
/data/npc/orockle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/orockle.xml
--------------------------------------------------------------------------------
/data/npc/ortheus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ortheus.xml
--------------------------------------------------------------------------------
/data/npc/oswald.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/oswald.xml
--------------------------------------------------------------------------------
/data/npc/ottokar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ottokar.xml
--------------------------------------------------------------------------------
/data/npc/padreia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/padreia.xml
--------------------------------------------------------------------------------
/data/npc/palimuth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/palimuth.xml
--------------------------------------------------------------------------------
/data/npc/palomino.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/palomino.xml
--------------------------------------------------------------------------------
/data/npc/paolo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/paolo.xml
--------------------------------------------------------------------------------
/data/npc/parlan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/parlan.xml
--------------------------------------------------------------------------------
/data/npc/partos.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/partos.xml
--------------------------------------------------------------------------------
/data/npc/paulie.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/paulie.xml
--------------------------------------------------------------------------------
/data/npc/peggy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/peggy.xml
--------------------------------------------------------------------------------
/data/npc/pemaret.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pemaret.xml
--------------------------------------------------------------------------------
/data/npc/penny.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/penny.xml
--------------------------------------------------------------------------------
/data/npc/perac.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/perac.xml
--------------------------------------------------------------------------------
/data/npc/percybald.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/percybald.xml
--------------------------------------------------------------------------------
/data/npc/peremin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/peremin.xml
--------------------------------------------------------------------------------
/data/npc/perod.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/perod.xml
--------------------------------------------------------------------------------
/data/npc/peter.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/peter.xml
--------------------------------------------------------------------------------
/data/npc/petros.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/petros.xml
--------------------------------------------------------------------------------
/data/npc/phillip.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/phillip.xml
--------------------------------------------------------------------------------
/data/npc/pig_npc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pig_npc.xml
--------------------------------------------------------------------------------
/data/npc/pino.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pino.xml
--------------------------------------------------------------------------------
/data/npc/polly.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/polly.xml
--------------------------------------------------------------------------------
/data/npc/pompan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pompan.xml
--------------------------------------------------------------------------------
/data/npc/prezil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/prezil.xml
--------------------------------------------------------------------------------
/data/npc/prisoner.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/prisoner.xml
--------------------------------------------------------------------------------
/data/npc/puffels.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/puffels.xml
--------------------------------------------------------------------------------
/data/npc/pugwah.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pugwah.xml
--------------------------------------------------------------------------------
/data/npc/pukosch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pukosch.xml
--------------------------------------------------------------------------------
/data/npc/pydar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pydar.xml
--------------------------------------------------------------------------------
/data/npc/pyro_peter.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pyro_peter.xml
--------------------------------------------------------------------------------
/data/npc/pyromental.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/pyromental.xml
--------------------------------------------------------------------------------
/data/npc/quentin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/quentin.xml
--------------------------------------------------------------------------------
/data/npc/quero.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/quero.xml
--------------------------------------------------------------------------------
/data/npc/rabaz.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rabaz.xml
--------------------------------------------------------------------------------
/data/npc/rachel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rachel.xml
--------------------------------------------------------------------------------
/data/npc/raffael.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/raffael.xml
--------------------------------------------------------------------------------
/data/npc/rafzan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rafzan.xml
--------------------------------------------------------------------------------
/data/npc/rahkem.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rahkem.xml
--------------------------------------------------------------------------------
/data/npc/ramina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ramina.xml
--------------------------------------------------------------------------------
/data/npc/rapanaio.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rapanaio.xml
--------------------------------------------------------------------------------
/data/npc/rashid.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rashid.xml
--------------------------------------------------------------------------------
/data/npc/rata_mari.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rata_mari.xml
--------------------------------------------------------------------------------
/data/npc/ray.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ray.xml
--------------------------------------------------------------------------------
/data/npc/razan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/razan.xml
--------------------------------------------------------------------------------
/data/npc/rebel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rebel.xml
--------------------------------------------------------------------------------
/data/npc/red_lilly.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/red_lilly.xml
--------------------------------------------------------------------------------
/data/npc/redward.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/redward.xml
--------------------------------------------------------------------------------
/data/npc/reed.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/reed.xml
--------------------------------------------------------------------------------
/data/npc/rehon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rehon.xml
--------------------------------------------------------------------------------
/data/npc/repenter.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/repenter.xml
--------------------------------------------------------------------------------
/data/npc/richard.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/richard.xml
--------------------------------------------------------------------------------
/data/npc/riddler.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/riddler.xml
--------------------------------------------------------------------------------
/data/npc/robert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/robert.xml
--------------------------------------------------------------------------------
/data/npc/robin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/robin.xml
--------------------------------------------------------------------------------
/data/npc/robson.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/robson.xml
--------------------------------------------------------------------------------
/data/npc/roderick.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/roderick.xml
--------------------------------------------------------------------------------
/data/npc/rodney.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rodney.xml
--------------------------------------------------------------------------------
/data/npc/rokyn.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rokyn.xml
--------------------------------------------------------------------------------
/data/npc/romella.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/romella.xml
--------------------------------------------------------------------------------
/data/npc/romir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/romir.xml
--------------------------------------------------------------------------------
/data/npc/rose.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rose.xml
--------------------------------------------------------------------------------
/data/npc/rosemarie.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rosemarie.xml
--------------------------------------------------------------------------------
/data/npc/ross.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ross.xml
--------------------------------------------------------------------------------
/data/npc/roswitha.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/roswitha.xml
--------------------------------------------------------------------------------
/data/npc/rowenna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rowenna.xml
--------------------------------------------------------------------------------
/data/npc/rudolph.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/rudolph.xml
--------------------------------------------------------------------------------
/data/npc/ruprecht.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ruprecht.xml
--------------------------------------------------------------------------------
/data/npc/saideh.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/saideh.xml
--------------------------------------------------------------------------------
/data/npc/salbra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/salbra.xml
--------------------------------------------------------------------------------
/data/npc/sam.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sam.xml
--------------------------------------------------------------------------------
/data/npc/samir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/samir.xml
--------------------------------------------------------------------------------
/data/npc/sandomo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sandomo.xml
--------------------------------------------------------------------------------
/data/npc/sandra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sandra.xml
--------------------------------------------------------------------------------
/data/npc/sane_mage.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sane_mage.xml
--------------------------------------------------------------------------------
/data/npc/santiago.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/santiago.xml
--------------------------------------------------------------------------------
/data/npc/sarina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sarina.xml
--------------------------------------------------------------------------------
/data/npc/satsu.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/satsu.xml
--------------------------------------------------------------------------------
/data/npc/scott.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/scott.xml
--------------------------------------------------------------------------------
/data/npc/scrutinon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/scrutinon.xml
--------------------------------------------------------------------------------
/data/npc/scutty.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/scutty.xml
--------------------------------------------------------------------------------
/data/npc/sebastian.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sebastian.xml
--------------------------------------------------------------------------------
/data/npc/ser_tybald.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ser_tybald.xml
--------------------------------------------------------------------------------
/data/npc/serafin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/serafin.xml
--------------------------------------------------------------------------------
/data/npc/seymour.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/seymour.xml
--------------------------------------------------------------------------------
/data/npc/shalmar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shalmar.xml
--------------------------------------------------------------------------------
/data/npc/shanar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shanar.xml
--------------------------------------------------------------------------------
/data/npc/shanoya.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shanoya.xml
--------------------------------------------------------------------------------
/data/npc/sharon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sharon.xml
--------------------------------------------------------------------------------
/data/npc/shauna.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shauna.xml
--------------------------------------------------------------------------------
/data/npc/shiantis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shiantis.xml
--------------------------------------------------------------------------------
/data/npc/shimun.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shimun.xml
--------------------------------------------------------------------------------
/data/npc/shiriel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shiriel.xml
--------------------------------------------------------------------------------
/data/npc/shirith.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/shirith.xml
--------------------------------------------------------------------------------
/data/npc/sholley.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sholley.xml
--------------------------------------------------------------------------------
/data/npc/siestaar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/siestaar.xml
--------------------------------------------------------------------------------
/data/npc/siflind.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/siflind.xml
--------------------------------------------------------------------------------
/data/npc/sigurd.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sigurd.xml
--------------------------------------------------------------------------------
/data/npc/silas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/silas.xml
--------------------------------------------------------------------------------
/data/npc/sinatuki.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sinatuki.xml
--------------------------------------------------------------------------------
/data/npc/sinclair.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sinclair.xml
--------------------------------------------------------------------------------
/data/npc/sirik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sirik.xml
--------------------------------------------------------------------------------
/data/npc/skip.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/skip.xml
--------------------------------------------------------------------------------
/data/npc/skjaar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/skjaar.xml
--------------------------------------------------------------------------------
/data/npc/smiley.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/smiley.xml
--------------------------------------------------------------------------------
/data/npc/snake_eye.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/snake_eye.xml
--------------------------------------------------------------------------------
/data/npc/soilance.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/soilance.xml
--------------------------------------------------------------------------------
/data/npc/spectulus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/spectulus.xml
--------------------------------------------------------------------------------
/data/npc/stan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/stan.xml
--------------------------------------------------------------------------------
/data/npc/storkus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/storkus.xml
--------------------------------------------------------------------------------
/data/npc/stutch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/stutch.xml
--------------------------------------------------------------------------------
/data/npc/suzy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/suzy.xml
--------------------------------------------------------------------------------
/data/npc/sven.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sven.xml
--------------------------------------------------------------------------------
/data/npc/svenson.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/svenson.xml
--------------------------------------------------------------------------------
/data/npc/swolt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/swolt.xml
--------------------------------------------------------------------------------
/data/npc/sylvester.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/sylvester.xml
--------------------------------------------------------------------------------
/data/npc/taegen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/taegen.xml
--------------------------------------------------------------------------------
/data/npc/talesia.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/talesia.xml
--------------------------------------------------------------------------------
/data/npc/talila.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/talila.xml
--------------------------------------------------------------------------------
/data/npc/talphion.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/talphion.xml
--------------------------------------------------------------------------------
/data/npc/tamara.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tamara.xml
--------------------------------------------------------------------------------
/data/npc/tamed_lion.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tamed_lion.xml
--------------------------------------------------------------------------------
/data/npc/tamerin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tamerin.xml
--------------------------------------------------------------------------------
/data/npc/tamoril.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tamoril.xml
--------------------------------------------------------------------------------
/data/npc/tanaro.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tanaro.xml
--------------------------------------------------------------------------------
/data/npc/tandros.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tandros.xml
--------------------------------------------------------------------------------
/data/npc/tanyt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tanyt.xml
--------------------------------------------------------------------------------
/data/npc/tarun.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tarun.xml
--------------------------------------------------------------------------------
/data/npc/tefrit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tefrit.xml
--------------------------------------------------------------------------------
/data/npc/tehlim.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tehlim.xml
--------------------------------------------------------------------------------
/data/npc/telas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/telas.xml
--------------------------------------------------------------------------------
/data/npc/tereban.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tereban.xml
--------------------------------------------------------------------------------
/data/npc/terrence.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/terrence.xml
--------------------------------------------------------------------------------
/data/npc/tesha.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tesha.xml
--------------------------------------------------------------------------------
/data/npc/tezila.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tezila.xml
--------------------------------------------------------------------------------
/data/npc/thanita.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/thanita.xml
--------------------------------------------------------------------------------
/data/npc/the_crone.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/the_crone.xml
--------------------------------------------------------------------------------
/data/npc/the_oracle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/the_oracle.xml
--------------------------------------------------------------------------------
/data/npc/thomas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/thomas.xml
--------------------------------------------------------------------------------
/data/npc/thorgrin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/thorgrin.xml
--------------------------------------------------------------------------------
/data/npc/thorwulf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/thorwulf.xml
--------------------------------------------------------------------------------
/data/npc/tibra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tibra.xml
--------------------------------------------------------------------------------
/data/npc/tigo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tigo.xml
--------------------------------------------------------------------------------
/data/npc/timothy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/timothy.xml
--------------------------------------------------------------------------------
/data/npc/timur.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/timur.xml
--------------------------------------------------------------------------------
/data/npc/tired_tree.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tired_tree.xml
--------------------------------------------------------------------------------
/data/npc/todd.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/todd.xml
--------------------------------------------------------------------------------
/data/npc/tokel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tokel.xml
--------------------------------------------------------------------------------
/data/npc/tom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tom.xml
--------------------------------------------------------------------------------
/data/npc/tony.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tony.xml
--------------------------------------------------------------------------------
/data/npc/topsy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/topsy.xml
--------------------------------------------------------------------------------
/data/npc/torence.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/torence.xml
--------------------------------------------------------------------------------
/data/npc/tothdral.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tothdral.xml
--------------------------------------------------------------------------------
/data/npc/towncryer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/towncryer.xml
--------------------------------------------------------------------------------
/data/npc/trimegis.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/trimegis.xml
--------------------------------------------------------------------------------
/data/npc/trisha.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/trisha.xml
--------------------------------------------------------------------------------
/data/npc/tristan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tristan.xml
--------------------------------------------------------------------------------
/data/npc/tulf.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tulf.xml
--------------------------------------------------------------------------------
/data/npc/turvy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/turvy.xml
--------------------------------------------------------------------------------
/data/npc/tylius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tylius.xml
--------------------------------------------------------------------------------
/data/npc/tyrias.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/tyrias.xml
--------------------------------------------------------------------------------
/data/npc/ubaid.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ubaid.xml
--------------------------------------------------------------------------------
/data/npc/ukea.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ukea.xml
--------------------------------------------------------------------------------
/data/npc/ula.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ula.xml
--------------------------------------------------------------------------------
/data/npc/ulala.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ulala.xml
--------------------------------------------------------------------------------
/data/npc/ulrik.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ulrik.xml
--------------------------------------------------------------------------------
/data/npc/umar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/umar.xml
--------------------------------------------------------------------------------
/data/npc/uncle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/uncle.xml
--------------------------------------------------------------------------------
/data/npc/undal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/undal.xml
--------------------------------------------------------------------------------
/data/npc/urkalio.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/urkalio.xml
--------------------------------------------------------------------------------
/data/npc/ursula.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ursula.xml
--------------------------------------------------------------------------------
/data/npc/uso.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/uso.xml
--------------------------------------------------------------------------------
/data/npc/ustan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ustan.xml
--------------------------------------------------------------------------------
/data/npc/uzgod.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/uzgod.xml
--------------------------------------------------------------------------------
/data/npc/uzon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/uzon.xml
--------------------------------------------------------------------------------
/data/npc/vad_inchi.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vad_inchi.xml
--------------------------------------------------------------------------------
/data/npc/valentina.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/valentina.xml
--------------------------------------------------------------------------------
/data/npc/valindara.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/valindara.xml
--------------------------------------------------------------------------------
/data/npc/vanys.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vanys.xml
--------------------------------------------------------------------------------
/data/npc/vascalir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vascalir.xml
--------------------------------------------------------------------------------
/data/npc/velvet.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/velvet.xml
--------------------------------------------------------------------------------
/data/npc/vera.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vera.xml
--------------------------------------------------------------------------------
/data/npc/vescu.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vescu.xml
--------------------------------------------------------------------------------
/data/npc/victor.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/victor.xml
--------------------------------------------------------------------------------
/data/npc/vigintius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vigintius.xml
--------------------------------------------------------------------------------
/data/npc/vincent.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vincent.xml
--------------------------------------------------------------------------------
/data/npc/virgil.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/virgil.xml
--------------------------------------------------------------------------------
/data/npc/vladruc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vladruc.xml
--------------------------------------------------------------------------------
/data/npc/vuzrog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/vuzrog.xml
--------------------------------------------------------------------------------
/data/npc/wally.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wally.xml
--------------------------------------------------------------------------------
/data/npc/warbert.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/warbert.xml
--------------------------------------------------------------------------------
/data/npc/wentworth.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wentworth.xml
--------------------------------------------------------------------------------
/data/npc/wesley.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wesley.xml
--------------------------------------------------------------------------------
/data/npc/willard.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/willard.xml
--------------------------------------------------------------------------------
/data/npc/willem.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/willem.xml
--------------------------------------------------------------------------------
/data/npc/william.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/william.xml
--------------------------------------------------------------------------------
/data/npc/willie.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/willie.xml
--------------------------------------------------------------------------------
/data/npc/willow.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/willow.xml
--------------------------------------------------------------------------------
/data/npc/woblin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/woblin.xml
--------------------------------------------------------------------------------
/data/npc/wyat.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wyat.xml
--------------------------------------------------------------------------------
/data/npc/wyda.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wyda.xml
--------------------------------------------------------------------------------
/data/npc/wyrdin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/wyrdin.xml
--------------------------------------------------------------------------------
/data/npc/xed.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/xed.xml
--------------------------------------------------------------------------------
/data/npc/xelvar.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/xelvar.xml
--------------------------------------------------------------------------------
/data/npc/xodet.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/xodet.xml
--------------------------------------------------------------------------------
/data/npc/xorlosh.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/xorlosh.xml
--------------------------------------------------------------------------------
/data/npc/yaman.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yaman.xml
--------------------------------------------------------------------------------
/data/npc/yana.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yana.xml
--------------------------------------------------------------------------------
/data/npc/yanni.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yanni.xml
--------------------------------------------------------------------------------
/data/npc/yasir.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yasir.xml
--------------------------------------------------------------------------------
/data/npc/yawno.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yawno.xml
--------------------------------------------------------------------------------
/data/npc/yberius.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yberius.xml
--------------------------------------------------------------------------------
/data/npc/yoem.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yoem.xml
--------------------------------------------------------------------------------
/data/npc/yonan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yonan.xml
--------------------------------------------------------------------------------
/data/npc/yulas.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/yulas.xml
--------------------------------------------------------------------------------
/data/npc/zaidal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zaidal.xml
--------------------------------------------------------------------------------
/data/npc/zalamon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zalamon.xml
--------------------------------------------------------------------------------
/data/npc/zarak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zarak.xml
--------------------------------------------------------------------------------
/data/npc/zarifan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zarifan.xml
--------------------------------------------------------------------------------
/data/npc/zebron.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zebron.xml
--------------------------------------------------------------------------------
/data/npc/zerbrus.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zerbrus.xml
--------------------------------------------------------------------------------
/data/npc/zeronex.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zeronex.xml
--------------------------------------------------------------------------------
/data/npc/zethra.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zethra.xml
--------------------------------------------------------------------------------
/data/npc/zirella.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zirella.xml
--------------------------------------------------------------------------------
/data/npc/zirkon.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zirkon.xml
--------------------------------------------------------------------------------
/data/npc/zizzle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zizzle.xml
--------------------------------------------------------------------------------
/data/npc/zlak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zlak.xml
--------------------------------------------------------------------------------
/data/npc/znozel.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/znozel.xml
--------------------------------------------------------------------------------
/data/npc/zoltan.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zoltan.xml
--------------------------------------------------------------------------------
/data/npc/zora.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zora.xml
--------------------------------------------------------------------------------
/data/npc/ztiss.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/ztiss.xml
--------------------------------------------------------------------------------
/data/npc/zumtah.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zumtah.xml
--------------------------------------------------------------------------------
/data/npc/zurak.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zurak.xml
--------------------------------------------------------------------------------
/data/npc/zurakarena.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/npc/zurakarena.xml
--------------------------------------------------------------------------------
/data/raids/raids.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/raids/raids.xml
--------------------------------------------------------------------------------
/data/stages.lua:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/stages.lua
--------------------------------------------------------------------------------
/data/startup/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/startup/README.md
--------------------------------------------------------------------------------
/data/update.lua:
--------------------------------------------------------------------------------
1 | updated = false
--------------------------------------------------------------------------------
/data/world/custom/otservbr-custom-houses.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/data/world/world.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/data/world/world.zip
--------------------------------------------------------------------------------
/data/world/worldchanges/folhas-house.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/data/world/worldchanges/ouro-house.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/docker/.gitignore:
--------------------------------------------------------------------------------
1 | data/web/*
2 |
--------------------------------------------------------------------------------
/docker/DOCKER.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docker/DOCKER.md
--------------------------------------------------------------------------------
/docker/data/login.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docker/data/login.py
--------------------------------------------------------------------------------
/docker/login/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docker/login/Dockerfile
--------------------------------------------------------------------------------
/docker/mysql/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM mariadb:10
2 |
3 | COPY schema.sql /docker-entrypoint-initdb.d/
4 |
--------------------------------------------------------------------------------
/docker/test-server.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docker/test-server.sh
--------------------------------------------------------------------------------
/docs/Doxyfile.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docs/Doxyfile.in
--------------------------------------------------------------------------------
/docs/config.ld.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/docs/config.ld.in
--------------------------------------------------------------------------------
/key.pem:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/key.pem
--------------------------------------------------------------------------------
/recompile.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/recompile.sh
--------------------------------------------------------------------------------
/schema.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/schema.sql
--------------------------------------------------------------------------------
/src/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/CMakeLists.txt
--------------------------------------------------------------------------------
/src/creatures/npc/npc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/creatures/npc/npc.h
--------------------------------------------------------------------------------
/src/database/database.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/database/database.h
--------------------------------------------------------------------------------
/src/game/game.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/game/game.cpp
--------------------------------------------------------------------------------
/src/game/game.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/game/game.h
--------------------------------------------------------------------------------
/src/game/gamestore.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/game/gamestore.cpp
--------------------------------------------------------------------------------
/src/game/gamestore.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/game/gamestore.h
--------------------------------------------------------------------------------
/src/io/fileloader.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/fileloader.cpp
--------------------------------------------------------------------------------
/src/io/fileloader.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/fileloader.h
--------------------------------------------------------------------------------
/src/io/iobestiary.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iobestiary.cpp
--------------------------------------------------------------------------------
/src/io/iobestiary.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iobestiary.h
--------------------------------------------------------------------------------
/src/io/ioguild.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/ioguild.cpp
--------------------------------------------------------------------------------
/src/io/ioguild.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/ioguild.h
--------------------------------------------------------------------------------
/src/io/iologindata.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iologindata.cpp
--------------------------------------------------------------------------------
/src/io/iologindata.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iologindata.h
--------------------------------------------------------------------------------
/src/io/iomap.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iomap.cpp
--------------------------------------------------------------------------------
/src/io/iomap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iomap.h
--------------------------------------------------------------------------------
/src/io/iomapserialize.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iomapserialize.h
--------------------------------------------------------------------------------
/src/io/iomarket.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iomarket.cpp
--------------------------------------------------------------------------------
/src/io/iomarket.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/io/iomarket.h
--------------------------------------------------------------------------------
/src/items/bed.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/bed.cpp
--------------------------------------------------------------------------------
/src/items/bed.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/bed.h
--------------------------------------------------------------------------------
/src/items/cylinder.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/cylinder.cpp
--------------------------------------------------------------------------------
/src/items/cylinder.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/cylinder.h
--------------------------------------------------------------------------------
/src/items/decay/decay.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/decay/decay.h
--------------------------------------------------------------------------------
/src/items/item.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/item.cpp
--------------------------------------------------------------------------------
/src/items/item.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/item.h
--------------------------------------------------------------------------------
/src/items/itemloader.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/itemloader.h
--------------------------------------------------------------------------------
/src/items/items.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/items.cpp
--------------------------------------------------------------------------------
/src/items/items.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/items.h
--------------------------------------------------------------------------------
/src/items/thing.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/thing.cpp
--------------------------------------------------------------------------------
/src/items/thing.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/thing.h
--------------------------------------------------------------------------------
/src/items/tile.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/tile.cpp
--------------------------------------------------------------------------------
/src/items/tile.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/tile.h
--------------------------------------------------------------------------------
/src/items/trashholder.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/items/trashholder.h
--------------------------------------------------------------------------------
/src/map/house/house.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/map/house/house.cpp
--------------------------------------------------------------------------------
/src/map/house/house.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/map/house/house.h
--------------------------------------------------------------------------------
/src/map/map.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/map/map.cpp
--------------------------------------------------------------------------------
/src/map/map.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/map/map.h
--------------------------------------------------------------------------------
/src/map/town.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/map/town.h
--------------------------------------------------------------------------------
/src/otpch.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/otpch.cpp
--------------------------------------------------------------------------------
/src/otpch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/otpch.h
--------------------------------------------------------------------------------
/src/otserv.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/otserv.cpp
--------------------------------------------------------------------------------
/src/security/rsa.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/security/rsa.cpp
--------------------------------------------------------------------------------
/src/security/rsa.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/security/rsa.h
--------------------------------------------------------------------------------
/src/security/xtea.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/security/xtea.cpp
--------------------------------------------------------------------------------
/src/security/xtea.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/security/xtea.h
--------------------------------------------------------------------------------
/src/server/server.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/server/server.cpp
--------------------------------------------------------------------------------
/src/server/server.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/server/server.h
--------------------------------------------------------------------------------
/src/server/signals.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/server/signals.cpp
--------------------------------------------------------------------------------
/src/server/signals.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/server/signals.h
--------------------------------------------------------------------------------
/src/utils/const.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/const.h
--------------------------------------------------------------------------------
/src/utils/definitions.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/definitions.h
--------------------------------------------------------------------------------
/src/utils/enums.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/enums.h
--------------------------------------------------------------------------------
/src/utils/lockfree.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/lockfree.h
--------------------------------------------------------------------------------
/src/utils/pugicast.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/pugicast.h
--------------------------------------------------------------------------------
/src/utils/tools.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/tools.cpp
--------------------------------------------------------------------------------
/src/utils/tools.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/src/utils/tools.h
--------------------------------------------------------------------------------
/tests/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/tests/CMakeLists.txt
--------------------------------------------------------------------------------
/tests/Dockerfile.database:
--------------------------------------------------------------------------------
1 | FROM mariadb:10
2 |
3 | WORKDIR /docker-entrypoint-initdb.d
4 | COPY schema.sql ./
5 |
--------------------------------------------------------------------------------
/tests/account_test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/tests/account_test.cpp
--------------------------------------------------------------------------------
/tests/build_and_run.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/tests/build_and_run.sh
--------------------------------------------------------------------------------
/tests/catch.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/tests/catch.hpp
--------------------------------------------------------------------------------
/tests/main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/tests/main.cpp
--------------------------------------------------------------------------------
/vcpkg.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opentibiabr/otservbr-global-archived/HEAD/vcpkg.json
--------------------------------------------------------------------------------