├── .gitignore ├── .pylintrc ├── CREDITS.md ├── LICENSE ├── README.md ├── data ├── assets │ ├── directional.xcf │ ├── icon.xcf │ ├── player.xcf │ ├── spawn.xcf │ └── waypoint.xcf ├── fonts │ ├── NotoSans-Bold.ttf │ └── NotoSans-Regular.ttf ├── maps │ ├── classic_maps │ │ ├── Lavastorm_1.txt │ │ ├── nektulos.txt │ │ ├── nektulos_1.txt │ │ ├── nektulos_2.txt │ │ └── nektulos_3.txt │ ├── directional.png │ ├── map_files │ │ ├── AirPlane_1.txt │ │ ├── Akanon_1.txt │ │ ├── Arena_1.txt │ │ ├── Befallen_1.txt │ │ ├── Beholder_1.txt │ │ ├── Blackburrow_1.txt │ │ ├── BurningWood_1.txt │ │ ├── Cabeast_1.txt │ │ ├── Cabwest_1.txt │ │ ├── Cauldron_1.txt │ │ ├── CazicThule_1.txt │ │ ├── Charasis_1.txt │ │ ├── Chardok_1.txt │ │ ├── CityMist_1.txt │ │ ├── CobaltScar_1.txt │ │ ├── Crushbone_1.txt │ │ ├── Crystal_1.txt │ │ ├── Dalnir_1.txt │ │ ├── Droga_1.txt │ │ ├── EastKarana_1.txt │ │ ├── EastWastes_1.txt │ │ ├── Ecommons_1.txt │ │ ├── EmeraldJungle_1.txt │ │ ├── ErudnExt_1.txt │ │ ├── ErudnInt_1.txt │ │ ├── ErudsXing_1.txt │ │ ├── Everfrost_1.txt │ │ ├── FearPlane_1.txt │ │ ├── Feerrott_1.txt │ │ ├── FelwitheA_1.txt │ │ ├── FelwitheB_1.txt │ │ ├── FieldOfBone_1.txt │ │ ├── Firiona_1.txt │ │ ├── FreportE_1.txt │ │ ├── FreportN_1.txt │ │ ├── FreportW_1.txt │ │ ├── FrontierMtns_1.txt │ │ ├── FrozenShadow_1.txt │ │ ├── Gfaydark_1.txt │ │ ├── Greatdivide_1.txt │ │ ├── Grobb_1.txt │ │ ├── Growthplane_1.txt │ │ ├── GukBottom_1.txt │ │ ├── GukTop_1.txt │ │ ├── Halas_1.txt │ │ ├── HatePlane_1.txt │ │ ├── Highkeep_1.txt │ │ ├── Hole_1.txt │ │ ├── Iceclad_1.txt │ │ ├── Kael_1.txt │ │ ├── Kaesora_1.txt │ │ ├── KaladimA_1.txt │ │ ├── KaladimB_1.txt │ │ ├── Karnor_1.txt │ │ ├── Kedge_1.txt │ │ ├── Kithicor_1.txt │ │ ├── Kurn_1.txt │ │ ├── LakeRathe_1.txt │ │ ├── LakeofIllOmen_1.txt │ │ ├── Lavastorm_1.txt │ │ ├── Lfaydark_1.txt │ │ ├── Mischiefplane_1.txt │ │ ├── Mistmoore_1.txt │ │ ├── Misty_1.txt │ │ ├── Najena_1.txt │ │ ├── Necropolis_1.txt │ │ ├── Nektulos_1.txt │ │ ├── NeriakA_1.txt │ │ ├── NeriakB_1.txt │ │ ├── NeriakC_1.txt │ │ ├── NorthKarana_1.txt │ │ ├── Nro_1.txt │ │ ├── Nurga_1.txt │ │ ├── Oasis_1.txt │ │ ├── Oggok_1.txt │ │ ├── Paineel_1.txt │ │ ├── Paw_1.txt │ │ ├── Permafrost_1.txt │ │ ├── QRG_1.txt │ │ ├── Qcat_1.txt │ │ ├── Qey2HH1_1.txt │ │ ├── Qeynos2_1.txt │ │ ├── Qeynos_1.txt │ │ ├── Qeytoqrg_1.txt │ │ ├── Rathemtn_1.txt │ │ ├── Rivervale_1.txt │ │ ├── Runnyeye_1.txt │ │ ├── Sebilis_1.txt │ │ ├── Sirens_1.txt │ │ ├── Skyfire_1.txt │ │ ├── Skyshrine_1.txt │ │ ├── Sleeper_1.txt │ │ ├── SolTemple_1.txt │ │ ├── SoldungA_1.txt │ │ ├── SoldungB_1.txt │ │ ├── SouthKarana_1.txt │ │ ├── Sro_1.txt │ │ ├── Steamfont_1.txt │ │ ├── Stonebrunt_1.txt │ │ ├── Swampofnohope_1.txt │ │ ├── Templeveeshan_1.txt │ │ ├── Thurgadina_1.txt │ │ ├── Thurgadinb_1.txt │ │ ├── Timorous_1.txt │ │ ├── Tox_1.txt │ │ ├── Trakanon_1.txt │ │ ├── Unrest_1.txt │ │ ├── Veeshan_1.txt │ │ ├── Velketor_1.txt │ │ ├── Wakening_1.txt │ │ ├── Warrens_1.txt │ │ ├── WarsliksWood_1.txt │ │ ├── Westwastes_1.txt │ │ ├── airplane.txt │ │ ├── airplane_2.txt │ │ ├── airplane_3.txt │ │ ├── akanon.txt │ │ ├── akanon_2.txt │ │ ├── akanon_3.txt │ │ ├── arena.txt │ │ ├── arena_2.txt │ │ ├── arena_3.txt │ │ ├── befallen.txt │ │ ├── befallen_2.txt │ │ ├── befallen_3.txt │ │ ├── beholder.txt │ │ ├── beholder_2.txt │ │ ├── beholder_3.txt │ │ ├── blackburrow.txt │ │ ├── blackburrow_2.txt │ │ ├── blackburrow_3.txt │ │ ├── burningwood.txt │ │ ├── burningwood_2.txt │ │ ├── burningwood_3.txt │ │ ├── butcher.txt │ │ ├── butcher_1.txt │ │ ├── butcher_2.txt │ │ ├── butcher_3.txt │ │ ├── cabeast.txt │ │ ├── cabeast_2.txt │ │ ├── cabeast_3.txt │ │ ├── cabwest.txt │ │ ├── cabwest_2.txt │ │ ├── cabwest_3.txt │ │ ├── cauldron.txt │ │ ├── cauldron_2.txt │ │ ├── cauldron_3.txt │ │ ├── cazicthule.txt │ │ ├── cazicthule_2.txt │ │ ├── cazicthule_3.txt │ │ ├── charasis.txt │ │ ├── charasis_2.txt │ │ ├── charasis_3.txt │ │ ├── chardok.txt │ │ ├── chardok_2.txt │ │ ├── chardok_3.txt │ │ ├── citymist.txt │ │ ├── citymist_2.txt │ │ ├── citymist_3.txt │ │ ├── cobaltscar.txt │ │ ├── cobaltscar_2.txt │ │ ├── cobaltscar_3.txt │ │ ├── commons.txt │ │ ├── crushbone.txt │ │ ├── crushbone_2.txt │ │ ├── crushbone_3.txt │ │ ├── crystal.txt │ │ ├── crystal_2.txt │ │ ├── crystal_3.txt │ │ ├── dalnir.txt │ │ ├── dalnir_2.txt │ │ ├── dalnir_3.txt │ │ ├── dreadlands.txt │ │ ├── dreadlands_1.txt │ │ ├── dreadlands_2.txt │ │ ├── dreadlands_3.txt │ │ ├── droga.txt │ │ ├── droga_2.txt │ │ ├── droga_3.txt │ │ ├── eastkarana.txt │ │ ├── eastkarana_2.txt │ │ ├── eastkarana_3.txt │ │ ├── eastwastes.txt │ │ ├── eastwastes_2.txt │ │ ├── eastwastes_3.txt │ │ ├── ecommons.txt │ │ ├── emeraldjungle.txt │ │ ├── emeraldjungle_2.txt │ │ ├── emeraldjungle_3.txt │ │ ├── erudnext.txt │ │ ├── erudnext_2.txt │ │ ├── erudnext_3.txt │ │ ├── erudnint.txt │ │ ├── erudnint_2.txt │ │ ├── erudnint_3.txt │ │ ├── erudsxing.txt │ │ ├── erudsxing_2.txt │ │ ├── erudsxing_3.txt │ │ ├── everfrost.txt │ │ ├── everfrost_2.txt │ │ ├── everfrost_3.txt │ │ ├── fearplane.txt │ │ ├── fearplane_2.txt │ │ ├── fearplane_3.txt │ │ ├── feerrott.txt │ │ ├── feerrott_2.txt │ │ ├── feerrott_3.txt │ │ ├── feerrott_4.txt │ │ ├── felwithea.txt │ │ ├── felwithea_2.txt │ │ ├── felwithea_3.txt │ │ ├── felwitheb.txt │ │ ├── felwitheb_2.txt │ │ ├── felwitheb_3.txt │ │ ├── fieldofbone.txt │ │ ├── fieldofbone_2.txt │ │ ├── fieldofbone_3.txt │ │ ├── firiona.txt │ │ ├── firiona_2.txt │ │ ├── firiona_3.txt │ │ ├── freporte.txt │ │ ├── freporte_2.txt │ │ ├── freportn.txt │ │ ├── freportw.txt │ │ ├── frontiermtns.txt │ │ ├── frontiermtns_2.txt │ │ ├── frontiermtns_3.txt │ │ ├── frozenshadow.txt │ │ ├── frozenshadow_2.txt │ │ ├── frozenshadow_3.txt │ │ ├── gfaydark.txt │ │ ├── gfaydark_2.txt │ │ ├── gfaydark_3.txt │ │ ├── greatdivide.txt │ │ ├── greatdivide_2.txt │ │ ├── greatdivide_3.txt │ │ ├── grobb.txt │ │ ├── grobb_2.txt │ │ ├── grobb_3.txt │ │ ├── growthplane.txt │ │ ├── growthplane_2.txt │ │ ├── growthplane_3.txt │ │ ├── gukbottom.txt │ │ ├── gukbottom_2.txt │ │ ├── gukbottom_3.txt │ │ ├── guktop.txt │ │ ├── guktop_2.txt │ │ ├── guktop_3.txt │ │ ├── halas.txt │ │ ├── halas_2.txt │ │ ├── halas_3.txt │ │ ├── hateplane.txt │ │ ├── hateplane_2.txt │ │ ├── hateplane_3.txt │ │ ├── highkeep.txt │ │ ├── highkeep_2.txt │ │ ├── highkeep_3.txt │ │ ├── highpass.txt │ │ ├── hole.txt │ │ ├── hole_2.txt │ │ ├── hole_3.txt │ │ ├── iceclad.txt │ │ ├── iceclad_2.txt │ │ ├── iceclad_3.txt │ │ ├── innothule.txt │ │ ├── innothule_2.txt │ │ ├── kael.txt │ │ ├── kael_2.txt │ │ ├── kael_3.txt │ │ ├── kaesora.txt │ │ ├── kaesora_2.txt │ │ ├── kaesora_3.txt │ │ ├── kaladima.txt │ │ ├── kaladima_2.txt │ │ ├── kaladima_3.txt │ │ ├── kaladimb.txt │ │ ├── kaladimb_2.txt │ │ ├── kaladimb_3.txt │ │ ├── karnor.txt │ │ ├── karnor_2.txt │ │ ├── karnor_3.txt │ │ ├── kedge.txt │ │ ├── kedge_2.txt │ │ ├── kedge_3.txt │ │ ├── kerraridge.txt │ │ ├── kerraridge_2.txt │ │ ├── kithicor.txt │ │ ├── kithicor_2.txt │ │ ├── kithicor_3.txt │ │ ├── kurn.txt │ │ ├── kurn_2.txt │ │ ├── kurn_3.txt │ │ ├── lakeofillomen.txt │ │ ├── lakeofillomen_2.txt │ │ ├── lakeofillomen_3.txt │ │ ├── lakerathe.txt │ │ ├── lakerathe_2.txt │ │ ├── lakerathe_3.txt │ │ ├── lfaydark.txt │ │ ├── lfaydark_2.txt │ │ ├── lfaydark_3.txt │ │ ├── mischiefplane.txt │ │ ├── mischiefplane_2.txt │ │ ├── mischiefplane_3.txt │ │ ├── mischiefplane_4.txt │ │ ├── mistmoore.txt │ │ ├── mistmoore_2.txt │ │ ├── mistmoore_3.txt │ │ ├── misty.txt │ │ ├── misty_2.txt │ │ ├── najena.txt │ │ ├── najena_2.txt │ │ ├── najena_3.txt │ │ ├── necropolis.txt │ │ ├── necropolis_2.txt │ │ ├── necropolis_3.txt │ │ ├── nektulos.txt │ │ ├── nektulos_2.txt │ │ ├── nektulos_3.txt │ │ ├── neriaka.txt │ │ ├── neriaka_2.txt │ │ ├── neriaka_3.txt │ │ ├── neriakb.txt │ │ ├── neriakb_2.txt │ │ ├── neriakb_3.txt │ │ ├── neriakc.txt │ │ ├── neriakc_2.txt │ │ ├── neriakc_3.txt │ │ ├── northkarana.txt │ │ ├── northkarana_2.txt │ │ ├── northkarana_3.txt │ │ ├── nro.txt │ │ ├── nurga.txt │ │ ├── nurga_2.txt │ │ ├── nurga_3.txt │ │ ├── oasis.txt │ │ ├── oggok.txt │ │ ├── oggok_2.txt │ │ ├── oggok_3.txt │ │ ├── oot.txt │ │ ├── oot_2.txt │ │ ├── overthere.txt │ │ ├── overthere_1.txt │ │ ├── overthere_2.txt │ │ ├── overthere_3.txt │ │ ├── paineel.txt │ │ ├── paineel_2.txt │ │ ├── paineel_3.txt │ │ ├── paw.txt │ │ ├── paw_2.txt │ │ ├── paw_3.txt │ │ ├── permafrost.txt │ │ ├── permafrost_2.txt │ │ ├── permafrost_3.txt │ │ ├── qcat.txt │ │ ├── qcat_2.txt │ │ ├── qcat_3.txt │ │ ├── qey2hh1.txt │ │ ├── qey2hh1_2.txt │ │ ├── qey2hh1_3.txt │ │ ├── qeynos.txt │ │ ├── qeynos2.txt │ │ ├── qeynos2_2.txt │ │ ├── qeynos2_3.txt │ │ ├── qeynos_2.txt │ │ ├── qeynos_3.txt │ │ ├── qeytoqrg.txt │ │ ├── qeytoqrg_2.txt │ │ ├── qeytoqrg_3.txt │ │ ├── qrg.txt │ │ ├── qrg_2.txt │ │ ├── qrg_3.txt │ │ ├── rathemtn.txt │ │ ├── rathemtn_2.txt │ │ ├── rathemtn_3.txt │ │ ├── rivervale.txt │ │ ├── rivervale_2.txt │ │ ├── rivervale_3.txt │ │ ├── runnyeye.txt │ │ ├── runnyeye_2.txt │ │ ├── runnyeye_3.txt │ │ ├── sebilis.txt │ │ ├── sebilis_2.txt │ │ ├── sebilis_3.txt │ │ ├── sirens.txt │ │ ├── sirens_2.txt │ │ ├── sirens_3.txt │ │ ├── skyfire.txt │ │ ├── skyfire_2.txt │ │ ├── skyfire_3.txt │ │ ├── skyshrine.txt │ │ ├── skyshrine_2.txt │ │ ├── skyshrine_3.txt │ │ ├── sleeper.txt │ │ ├── sleeper_2.txt │ │ ├── sleeper_3.txt │ │ ├── soldunga.txt │ │ ├── soldunga_2.txt │ │ ├── soldunga_3.txt │ │ ├── soldungb.txt │ │ ├── soldungb_2.txt │ │ ├── soldungb_3.txt │ │ ├── soltemple.txt │ │ ├── soltemple_2.txt │ │ ├── soltemple_3.txt │ │ ├── southkarana.txt │ │ ├── southkarana_2.txt │ │ ├── southkarana_3.txt │ │ ├── sro.txt │ │ ├── sro_2.txt │ │ ├── steamfont.txt │ │ ├── steamfont_2.txt │ │ ├── stonebrunt.txt │ │ ├── stonebrunt_2.txt │ │ ├── stonebrunt_3.txt │ │ ├── swampofnohope.txt │ │ ├── swampofnohope_2.txt │ │ ├── swampofnohope_3.txt │ │ ├── templeveeshan.txt │ │ ├── templeveeshan_2.txt │ │ ├── templeveeshan_3.txt │ │ ├── thurgadina.txt │ │ ├── thurgadina_2.txt │ │ ├── thurgadina_3.txt │ │ ├── thurgadinb.txt │ │ ├── thurgadinb_2.txt │ │ ├── thurgadinb_3.txt │ │ ├── timorous.txt │ │ ├── timorous_2.txt │ │ ├── timorous_3.txt │ │ ├── tox.txt │ │ ├── tox_2.txt │ │ ├── trakanon.txt │ │ ├── trakanon_2.txt │ │ ├── trakanon_3.txt │ │ ├── unrest.txt │ │ ├── unrest_2.txt │ │ ├── unrest_3.txt │ │ ├── veeshan.txt │ │ ├── veeshan_2.txt │ │ ├── veeshan_3.txt │ │ ├── velketor.txt │ │ ├── velketor_2.txt │ │ ├── velketor_3.txt │ │ ├── wakening.txt │ │ ├── wakening_2.txt │ │ ├── wakening_3.txt │ │ ├── warrens.txt │ │ ├── warrens_2.txt │ │ ├── warrens_3.txt │ │ ├── warslikswood.txt │ │ ├── warslikswood_2.txt │ │ ├── warslikswood_3.txt │ │ ├── westwastes.txt │ │ ├── westwastes_2.txt │ │ └── westwastes_3.txt │ ├── map_keys.ini │ ├── map_keys_who.ini │ ├── map_mover.py │ ├── map_timers.csv │ ├── otheruser.png │ ├── spawn.png │ ├── user.png │ └── waypoint.png ├── spells │ ├── spells01.png │ ├── spells02.png │ ├── spells03.png │ ├── spells04.png │ ├── spells05.png │ ├── spells06.png │ ├── spells07.png │ └── spells_us.txt └── ui │ ├── _.css │ ├── icon.ico │ └── icon.png ├── locationserver ├── Dockerfile ├── README.md ├── __init__.py ├── docker-compose.yml ├── fake_loc_sender.py ├── location_server.py └── requirements.txt ├── nparse.py ├── nparse_py.spec ├── pyproject.toml ├── requirements.txt ├── splash.png ├── splash.psd └── src └── nParse ├── helpers ├── __init__.py ├── alert.py ├── application.py ├── config.py ├── location_service.py ├── logreader.py ├── parser.py └── settings.py └── parsers ├── __init__.py ├── discord.py ├── maps ├── __init__.py ├── mapcanvas.py ├── mapclasses.py ├── mapdata.py └── window.py └── spells.py /.gitignore: -------------------------------------------------------------------------------- 1 | # PyCharm 2 | 3 | .idea/ 4 | .vscode/ 5 | 6 | # Byte-compiled / optimized / DLL files 7 | __pycache__/ 8 | *.py[cod] 9 | *.py~ 10 | *.un~ 11 | *.pyc 12 | 13 | # C extensions 14 | *.so 15 | 16 | # Distribution / packaging 17 | .Python 18 | env/ 19 | venv/ 20 | .venv/ 21 | bin/ 22 | build/ 23 | develop-eggs/ 24 | dist/ 25 | eggs/ 26 | parts/ 27 | sdist/ 28 | var/ 29 | *.egg-info/ 30 | .installed.cfg 31 | *.egg 32 | *.zip 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .cache 43 | .pytest_cache 44 | nosetests.xml 45 | coverage.xml 46 | 47 | # Translations 48 | *.mo 49 | 50 | # Mr Developer 51 | .mr.developer.cfg 52 | .project 53 | .pydevproject 54 | 55 | # Rope 56 | .ropeproject 57 | 58 | # Django stuff: 59 | *.log 60 | *.pot 61 | 62 | # Sphinx documentation 63 | docs/_build/ 64 | 65 | # Parse 99 66 | 67 | wiki/ 68 | old/ 69 | nparse.config.json 70 | -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- 1 | splash.png: 2 | - Splash screen made by Mindflux of P99Green. 3 | - Original art by Keith A. Parkinson. -------------------------------------------------------------------------------- /data/assets/directional.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/assets/directional.xcf -------------------------------------------------------------------------------- /data/assets/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/assets/icon.xcf -------------------------------------------------------------------------------- /data/assets/player.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/assets/player.xcf -------------------------------------------------------------------------------- /data/assets/spawn.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/assets/spawn.xcf -------------------------------------------------------------------------------- /data/assets/waypoint.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/assets/waypoint.xcf -------------------------------------------------------------------------------- /data/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /data/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /data/maps/classic_maps/nektulos_1.txt: -------------------------------------------------------------------------------- 1 | P -535.2208, -1016.1753, -11.5765, 0, 0, 0, 2, Halflings 2 | -------------------------------------------------------------------------------- /data/maps/classic_maps/nektulos_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/classic_maps/nektulos_2.txt -------------------------------------------------------------------------------- /data/maps/classic_maps/nektulos_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/classic_maps/nektulos_3.txt -------------------------------------------------------------------------------- /data/maps/directional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/directional.png -------------------------------------------------------------------------------- /data/maps/map_files/AirPlane_1.txt: -------------------------------------------------------------------------------- 1 | P -232.9645, 1077.601, 807.625, 0, 0, 240, 2, Sirran_the_Lunatic 2 | P 542.5208, -767.8946, 169.5514, 0, 0, 240, 2, Sirran_the_Lunatic 3 | P -320.2468, -540.44, -58.8417, 0, 0, 240, 2, Sirran_the_Lunatic 4 | P 531.4669, 213.7313, -326.6249, 0, 0, 240, 2, Sirran_the_Lunatic 5 | P -600.7273, -1385.5967, -660.6843, 0, 0, 240, 2, Key_Master(M) 6 | P -604.2722, -1341.7119, -765.9824, 0, 0, 240, 2, Master_of_Elements 7 | P -235.353, 1068.3089, 803.3074, 0, 0, 0, 2, /say_"llaw_eht_htiw_eno_ma_I" 8 | P 957.2152, 1034.4638, 1088.8136, 0, 0, 240, 2, Sirran_the_Lunatic 9 | -------------------------------------------------------------------------------- /data/maps/map_files/Arena_1.txt: -------------------------------------------------------------------------------- 1 | P -169.3017, 1026.9294, 46.7946, 0, 0, 240, 3, Soulbinder 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Befallen_1.txt: -------------------------------------------------------------------------------- 1 | P -22.6081, 200.6916, -13.8416, 0, 0, 240, 3, Zeek(Q) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Beholder_1.txt: -------------------------------------------------------------------------------- 1 | P 529, -1258, 0, 0, 0, 240, 2, Diggs_Duggun(Q) 2 | P 906.7718, -96.7399, -8.9671, 0, 0, 240, 2, Pox_Soth(Q) 3 | P -627.6127, -988.7757, 6.148, 0, 0, 240, 2, Sellernee_Churntide 4 | P 67.2052, -67.2651, -5.392, 0, 0, 240, 2, Bessudra_Hesen 5 | P 154.68, -1036.174, 13.957, 0, 0, 240, 2, Brellgour_Lynx 6 | P 1772.5685, -767.2883, 4.699, 0, 0, 240, 2, Mistenee_Jann 7 | -------------------------------------------------------------------------------- /data/maps/map_files/Blackburrow_1.txt: -------------------------------------------------------------------------------- 1 | L 51.649, -148.664, -37.9979, 76.5986, -156.5775, -37.9979, 0, 127, 0 2 | L 76.5986, -156.5775, -37.9979, 94.4955, -168.6418, -37.9979, 0, 127, 0 3 | L 94.4955, -168.6418, -37.9979, 84.9029, -176.1519, -37.9979, 0, 127, 0 4 | L 84.9029, -176.1519, -37.9979, 68.1774, -176.4243, -37.9979, 0, 127, 0 5 | L 68.1774, -176.4243, -37.9979, 55.594, -174.3855, -37.9979, 0, 127, 0 6 | L 55.594, -174.3855, -37.9979, 47.4756, -158.2547, -37.9979, 0, 127, 0 7 | L 47.4756, -158.2547, -37.9979, 51.649, -148.664, -37.9979, 0, 127, 0 8 | P 52.7575, 101.6659, -54.5065, 0, 0, 127, 2, Scout_Malityn 9 | -------------------------------------------------------------------------------- /data/maps/map_files/BurningWood_1.txt: -------------------------------------------------------------------------------- 1 | P 2312.7863, -1845.3948, -240.5012, 0, 0, 127, 2, Drethall 2 | P 2123.4108, -3389.7802, -217.241, 0, 0, 127, 2, Naxot_Deepwater(Cle1.0) 3 | P 3497.7087, -6292.6728, -250.7495, 0, 0, 240, 2, Juikanazza_Deepfinder 4 | P -1313.6176, -1611.1908, -278.441, 0, 0, 127, 2, Lehell_Sithmoor 5 | P -2257.5405, -3266.4396, -254.4213, 0, 0, 127, 2, Fellgoona_Trogue 6 | P 628.144, 4604.4296, 198.1347, 0, 0, 127, 2, Doacaan_Drakay 7 | -------------------------------------------------------------------------------- /data/maps/map_files/Cabwest_1.txt: -------------------------------------------------------------------------------- 1 | P -656.8753, -172.2843, 1.2378, 0, 0, 240, 3, Lithriss_(Spells) 2 | P -755.2595, -329.6977, 42.892, 0, 0, 240, 3, Visar_(Gems) 3 | P -511.1243, 36.1084, -0.4659, 0, 0, 240, 3, Jondin_(Potions) 4 | P -514.257, -404.3263, 1.884, 0, 0, 240, 3, Klok_(Alchemy) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/Cauldron_1.txt: -------------------------------------------------------------------------------- 1 | P 826.1625, 230.3864, 240.6674, 0, 0, 240, 2, Conium_(Poison_M) 2 | P 186.9841, -1344.4709, 170.2083, 0, 0, 240, 2, Symperbell_Moor 3 | P 112.8847, -2519.7429, 395.1686, 0, 0, 240, 2, Coan_Selendru 4 | -------------------------------------------------------------------------------- /data/maps/map_files/CazicThule_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/CazicThule_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Charasis_1.txt: -------------------------------------------------------------------------------- 1 | P 16.351, -283.7717, -179.779, 0, 0, 240, 3, Gandan_Tailfist(Q) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Chardok_1.txt: -------------------------------------------------------------------------------- 1 | P -858.225, 33.579, 99.9959, 0, 0, 240, 3, Herald_Telchia(Q) 2 | P -38.2008, -35.6477, -99.8104, 0, 0, 127, 3, Tani_Cogswin(Q) 3 | P 123.8582, 63.6456, -259.7479, 0, 0, 240, 3, Vault_Master_Shu'zo(Banker) 4 | P -353.1057, 89.2342, -299.8727, 0, 0, 240, 3, Hanggle_Baron_Dry'dn(M) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/CityMist_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/CityMist_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/CobaltScar_1.txt: -------------------------------------------------------------------------------- 1 | P 1485.0000, -233.0000, 73.6350, 0, 0, 127, 2, Blumblum_Swigwater(Druid1.5(M) 2 | P 1513.0000, -182.0000, 73.8220, 0, 0, 240, 2, Bloogy_(Baker) 3 | -------------------------------------------------------------------------------- /data/maps/map_files/Crushbone_1.txt: -------------------------------------------------------------------------------- 1 | P -158, 644, 0, 0, 0, 0, 2, Succor_Point 2 | P -118.8649, 212.199, 80.188, 0, 0, 0, 3, Trainer_Hill 3 | P -426.5, -73.9698, -16.9987, 0, 0, 0, 2, Slaver_Caves 4 | P -41.8562, -164.6229, 17.1582, 0, 0, 0, 2, Throne_Room 5 | -------------------------------------------------------------------------------- /data/maps/map_files/Crystal_1.txt: -------------------------------------------------------------------------------- 1 | P -298.0000, 184.0000, 0.0000, 127, 64, 0, 2, Bank 2 | P -758.0000, 265.0000, 0.0000, 127, 64, 0, 2, Broken_Bridge 3 | P 939.1472, 589.2308, -538.4664, 127, 0, 0, 2, Queen 4 | P -692.0000, 176.0000, 0.0000, 127, 64, 0, 2, Waterfall 5 | P -60.0000, 569.0000, 0.0000, 0, 127, 0, 3, to_Eastern_Waste 6 | P -303.0000, -487.0000, 0.0000, 0, 0, 0, 1, Succor 7 | -------------------------------------------------------------------------------- /data/maps/map_files/Dalnir_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Dalnir_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Droga_1.txt: -------------------------------------------------------------------------------- 1 | P -1297.865, 217.8636, -255.7479, 0, 0, 240, 2, Pagik_Tsissum 2 | P -1745.2192, -470.9456, -255.7478, 0, 0, 240, 2, Jeren_Manri 3 | -------------------------------------------------------------------------------- /data/maps/map_files/EastKarana_1.txt: -------------------------------------------------------------------------------- 1 | P 2399, 3790, -47.4979, 0, 0, 240, 2, Sharna_(M) 2 | P 137, 891, 11.1579, 0, 0, 240, 2, Julie_(M) 3 | P 2722, -1328, 6.144, 0, 0, 127, 2, Balthazar_(M) 4 | P 2757, -1306, 6.144, 0, 0, 240, 2, Lucetta_(M) 5 | P 2634, -1198, 4.5529, 0, 0, 240, 2, Sorn_(M) 6 | P 2503, -1309, 6.822, 0, 0, 240, 2, Silvia_(Tailor) 7 | P 12, 886, 0, 0, 0, 127, 2, Bryan_(Fletcher) 8 | P 99, 856, 0, 0, 0, 240, 2, Bradly_(M) 9 | P 194, 732, 0, 0, 0, 240, 2, Paulina_(M) 10 | P 2645, -1228, 0, 0, 0, 240, 2, Stace_(M) 11 | P 6074.3999, 1799.5552, 2.4394, 0, 0, 240, 2, Milea_Clothspinner 12 | P -863.5734, 22.2488, -40.1405, 0, 0, 240, 2, Squire_Wimbley 13 | P 1809.9862, 3405.6653, 1.5432, 0, 0, 240, 2, Leon 14 | P 5995.3461, 1731.9418, 387.33, 0, 0, 240, 2, Donrigin_Fleetfoot 15 | P 3144.9555, 307.9186, 6.518, 0, 0, 240, 2, Felodius_Sworddancer 16 | P 2677, -1529, 1.2259, 0, 0, 240, 2, Tanrak_(Weapons) 17 | P -212.3095, 24.3272, 0.8068, 0, 0, 240, 2, Mile_Marker 18 | P 79, -14, 0, 0, 0, 240, 2, Mile_Marker 19 | P 3795.5171, 2414.4133, 99.4823, 0, 127, 127, 3, X 20 | P 1784.7818, 3459.185, 0.2, 0, 0, 240, 2, Ganelorn_Oast* 21 | -------------------------------------------------------------------------------- /data/maps/map_files/EastWastes_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/EastWastes_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Ecommons_1.txt: -------------------------------------------------------------------------------- 1 | P 6.506, 1662.6854, 3.7509, 0, 0, 0, 3, Rushka_(Spells) 2 | P 132.4103, 1681.2938, 3.7509, 0, 0, 0, 3, Shady_(Merchant) 3 | P -3755.6426, -980.27, -49.524, 0, 0, 0, 3, Joryd_(Fletcher) 4 | P -4056.6707, -340.485, -49.274, 0, 0, 0, 3, Romya_(Merchant) 5 | P -4740.1752, -234.1753, -49.1293, 0, 0, 0, 3, Katha_(Gems) 6 | P -3064.7029, 315.4241, -51.5936, 0, 0, 0, 3, Loric_(Tailor) 7 | P -237.5206, 118.718, -48.9185, 0, 0, 0, 3, Parthar_(Brewer) 8 | P -27.4851, 134.6939, -50.7259, 0, 0, 0, 3, Merra_(Pottery) 9 | P 853.1781, -185.535, -49.4759, 0, 0, 0, 3, Ponila_(Weapons) 10 | P 789.344, 121.467, -49.6009, 0, 0, 0, 3, Pardor_(Merchant) 11 | P 846.7277, 183.9857, -49.8509, 0, 0, 0, 3, Rinna_(GM_Cleric) 12 | -------------------------------------------------------------------------------- /data/maps/map_files/ErudnExt_1.txt: -------------------------------------------------------------------------------- 1 | P 77.0000, 621.0000, 67.7197, 0, 0, 240, 2, Stella_(Weapons) 2 | P 55.9114, 715.8038, 67.7197, 0, 0, 240, 2, Spell_Merchants 3 | P 330.0000, 1176.0000, 51.7197, 0, 0, 240, 2, Geoard_(Bar) 4 | P 333.0000, 1186.0000, 51.7197, 0, 0, 240, 2, Helia_(Baking) 5 | P 159.0000, 899.0000, 51.7197, 0, 0, 240, 2, Monita_(Tailor) 6 | P 286.0000, 709.0000, 51.7197, 0, 0, 240, 2, Jagen_(Armor) 7 | P 246.0000, 683.0000, 52.7197, 0, 0, 240, 2, Shinan_(Smith) 8 | P 101.0000, 689.0000, 52.7197, 0, 0, 240, 2, Demicla_(Tailor) 9 | P 106.0000, 754.0000, 52.7197, 0, 0, 240, 2, Galbasi_(Tailor) 10 | P 55.0000, 115.0000, 39.7509, 0, 0, 240, 2, Soulbinder 11 | P -109.0000, -136.0000, 19.7510, 0, 0, 240, 2, Beth_(Baking) 12 | P -96.0000, -232.0000, 19.7510, 0, 0, 240, 2, Nerth_(M) 13 | P 5.0000, -230.0000, 20.3760, 0, 0, 240, 2, Kisrin_(M) 14 | P 241.5016, 1070.9728, 52.3447, 0, 0, 240, 2, Spell_Merchants 15 | P 78.0000, 994.0000, 51.7197, 0, 0, 240, 2, Borge_(M) 16 | P 88.0000, 906.0000, 51.7197, 0, 0, 240, 2, Reihan_(M) 17 | P 61.0000, 1156.0000, 67.7197, 0, 0, 240, 2, Luren_(M) 18 | P 374.0000, 1031.0000, 67.7197, 0, 0, 240, 2, Issibla_(Spells) 19 | P 417.0000, 1066.0000, 51.7197, 0, 0, 240, 2, Kathar_(Spells) 20 | P 398.0000, 1070.0000, 51.7197, 0, 0, 240, 2, Ghemna_(Weapons) 21 | -------------------------------------------------------------------------------- /data/maps/map_files/ErudnInt_1.txt: -------------------------------------------------------------------------------- 1 | P -804.0000, -703.0000, 35.7509, 0, 0, 127, 3, Telor_(Spells) 2 | P -539.0000, -661.0000, -12.2484, 0, 0, 240, 3, Sharin_(Alchemy) 3 | P -597.0000, -697.0000, -12.2487, 0, 0, 240, 3, Myrcin_(Gems) 4 | P -574.0000, -667.0000, -12.2486, 0, 0, 240, 3, Elsbin_(Gems) 5 | P -574.0000, -631.0000, -12.2486, 0, 0, 240, 3, Glysin_(Gems) 6 | P -552.0000, -731.0000, -12.2485, 0, 0, 240, 3, Sothure_(Jewelry) 7 | P -598.0000, -784.0000, -12.2481, 0, 0, 240, 3, Anite_(Gems) 8 | P -856.0000, -726.0000, -12.2487, 0, 0, 240, 3, Tyrena_(Bank) 9 | P -834.0000, -783.0000, -12.2485, 0, 0, 240, 3, Wick_(Bank) 10 | P -834.0000, -764.0000, -12.2486, 0, 0, 240, 3, Sahana_(Bank) 11 | P -780.0000, -745.0000, -12.2486, 0, 0, 240, 3, Sparlus_(Merchant) 12 | P -829.0000, -667.0000, -12.2486, 0, 0, 240, 3, Tan_(Merchant) 13 | P -832.0000, -590.0000, -12.2486, 0, 0, 240, 3, Vall_(Merchant) 14 | P -829.0000, -689.0000, -12.2484, 0, 0, 240, 3, Judge_(Merchant) 15 | -------------------------------------------------------------------------------- /data/maps/map_files/ErudsXing_1.txt: -------------------------------------------------------------------------------- 1 | P -857, 1479, 13.4652, 0, 0, 240, 3, Renna_(Merchant) 2 | P -956.1345, 1595.703, 31.1522, 0, 0, 240, 3, Nifta 3 | P -856.874, 1484.8423, 11.8687, 0, 0, 240, 3, Renna 4 | P -754.5172, 1307.5408, -17.3916, 0, 0, 240, 3, Kala 5 | P -780.5737, 723.8614, -17.4982, 0, 0, 240, 3, Tolo 6 | P -2128.9834, 1286.2793, -43.6227, 0, 0, 240, 3, Yun_Assistant_Maklok 7 | P -1702.9513, 1183.5688, 51.2308, 0, 0, 240, 3, Raldoria_Deacon 8 | P -1821.1387, 1673.7516, -14.304, 0, 0, 240, 3, Doria_Dawncrest 9 | P -1794.5769, 1691.174, -12.4908, 0, 0, 240, 3, Bellorrana_Hanthan 10 | P -1132.7424, 1781.6406, -0.3554, 0, 0, 240, 3, Nomala 11 | P -1401.9855, 1305.8389, 127.3804, 0, 0, 240, 3, Hojo 12 | P -1633.234, 922.4375, 56.8494, 0, 0, 240, 3, Ooglyn 13 | P -1241.9773, 990.1233, 109.1572, 0, 0, 240, 3, Canrield_Starbourne 14 | P -1246.4761, 1178.4851, 49.2267, 0, 0, 240, 3, Yelesom_Paust 15 | P -836.7151, 1540.4929, 2.9737, 0, 0, 240, 3, Nomala_(roam) 16 | P -688.1334, 1776.8913, 1.5649, 0, 0, 240, 3, Monala_(roam) 17 | -------------------------------------------------------------------------------- /data/maps/map_files/Everfrost_1.txt: -------------------------------------------------------------------------------- 1 | P -697.0000, -3638.0000, 0.9050, 0, 0, 240, 2, Dansie_(M) 2 | P -701.0000, -3608.0000, 0.1348, 0, 0, 240, 2, Seria_(M) 3 | P 3431.1001, -2871.0000, -40.2484, 0, 0, 127, 2, Starn_(Spells) 4 | P 5223.2817, -2814.9751, -42.3517, 0, 0, 240, 2, Sydel_Danann 5 | P 6272.3677, -2814.4434, -57.2045, 0, 0, 240, 2, Eichvul 6 | P 3183.1958, -4768.8892, -99.1115, 0, 0, 240, 2, Sulon_McMoor 7 | P 172.7549, 1596.5414, -63.9042, 0, 0, 240, 2, Arnis_McLish 8 | P 5713.8604, -1852.9708, -95.8060, 127, 0, 0, 2, tainted_wooly_mammoth*(Drd1.0) 9 | P 5015.3564, -1862.6832, -61.8545, 0, 0, 240, 2, Qileour(R) 10 | P 5024.4165, -1826.6929, -62.3543, 0, 0, 240, 2, Mannis(R) 11 | P 5041.7817, -1775.9359, -62.3615, 0, 0, 240, 2, Soulbinder 12 | P 5072.5947, -1861.9418, -62.3734, 0, 0, 240, 2, Mathii(R) 13 | P 5063.4097, -1868.9895, -62.3731, 0, 0, 240, 2, Trelsa(R) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/FearPlane_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/FearPlane_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Feerrott_1.txt: -------------------------------------------------------------------------------- 1 | P -1267.0000, -975.0000, -18.5302, 0, 0, 240, 2, Fugla_(Fletcher) 2 | P -1234.0000, -1005.0000, -18.5302, 0, 0, 240, 2, Smith_Merchants 3 | P -117.0000, -1182.0000, -4.5560, 0, 0, 240, 2, Bup_(Baking) 4 | P -1444.0000, -1144.0000, -18.2455, 0, 0, 240, 2, Gub_(Merchant) 5 | P 145.0000, -1144.0000, 0.4475, 0, 0, 240, 2, Morpa_(Merchant) 6 | P 138.0000, -1129.0000, -0.1133, 0, 0, 240, 2, Murga_(Tailor) 7 | P -840.0000, -1000.0000, 21.8654, 0, 0, 240, 2, Klob_(Merchant) 8 | P -1451.0000, -1054.0000, -21.2433, 0, 0, 240, 2, Kogg_(Fishing) 9 | -------------------------------------------------------------------------------- /data/maps/map_files/FelwitheA_1.txt: -------------------------------------------------------------------------------- 1 | P 384.0000, -4.0000, 0.6260, 0, 0, 240, 2, Rolyn_(M) 2 | P 359.0000, 122.0000, 0.6260, 0, 0, 240, 2, Tissan_(Armor) 3 | P 342.0000, 70.0000, 0.6260, 0, 0, 240, 2, Longarrow_(Fletcher) 4 | P 374.0000, -147.0000, 0.6260, 0, 0, 240, 2, Freegraz_(M) 5 | P 414.0000, -129.0000, 0.6260, 0, 0, 240, 2, Alladria_(Pottery) 6 | P 455.0000, -147.0000, 0.6260, 0, 0, 240, 2, Serenica_(Baking) 7 | P 454.0000, -106.0000, 0.6260, 0, 0, 240, 2, Silvenspin_(Tailor) 8 | P 412.0000, -147.0000, 14.6259, 0, 0, 240, 2, Issynal_(M) 9 | P 439.0000, -107.0000, 14.6259, 0, 0, 127, 2, Merchant_Tyslin((Ench2.0)Jewelry) 10 | P 606.0000, -242.0000, -13.3740, 0, 0, 240, 2, Silspin_(Jewelery) 11 | P 626.0000, -258.0000, -10.8740, 0, 0, 240, 2, Issa_(M) 12 | P 703.0000, -245.0000, -23.1600, 0, 0, 240, 2, Tam_(M) 13 | P 6.0000, -38.0000, 0.6260, 0, 0, 240, 2, Laemian_(M) 14 | P 225.0000, 0.0000, 0.6260, 0, 0, 240, 2, Elendalira_(Soulbinder) 15 | P -103.0000, 39.0000, 0.1000, 0, 127, 0, 3, Priest_of_Discord 16 | P 343.0000, -102.0000, 0.6260, 0, 0, 240, 2, Wela_(Brewing) 17 | P 368.0000, -76.0000, 0.6260, 0, 0, 240, 2, Tyle_(Brewing) 18 | P 436.0000, 90.0000, 0.6260, 0, 0, 240, 2, Silverkal_(Armor) 19 | P 453.0000, 50.0000, 0.6260, 0, 0, 240, 2, Tintal_(Banker) 20 | P 673.0000, -41.0000, -13.3740, 0, 0, 240, 2, Elytan_(M) 21 | P 588.0000, -162.0000, -13.3740, 0, 0, 240, 2, Jassa_(M) 22 | P 430.6564, -144.6442, 1.5438, 0, 0, 240, 2, Larroniae_Huial 23 | -------------------------------------------------------------------------------- /data/maps/map_files/FelwitheB_1.txt: -------------------------------------------------------------------------------- 1 | P 872.0000, -436.0000, -7.3739, 0, 0, 240, 2, Moonthread_(Tailor) 2 | P 802.7075, -447.3360, -7.3739, 0, 0, 240, 2, Yisasan_(Potions) 3 | P 774.7395, -450.4700, -7.3739, 0, 0, 240, 2, Tyslin_(Jewelry) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/FieldOfBone_1.txt: -------------------------------------------------------------------------------- 1 | P -260.5588, 1946.103, -54.4346, 0, 0, 240, 2, Pendle_Dashinger 2 | P -3305, 2261, 44.2822, 0, 0, 240, 2, Canip_(M) 3 | P -3351, 2361, 38.3447, 0, 0, 240, 2, Tugin_(M) 4 | P -2984, 2463, 44.3134, 0, 0, 240, 2, Acet_(M) 5 | P -3294, 2652, 44.2822, 0, 0, 240, 2, Naman_(M) 6 | P -197.9976, -1932.222, -54.8044, 240, 0, 0, 2, Zikana_Do'Rak 7 | P 19.4241, -2036.3233, -175.357, 0, 0, 240, 2, Gharg_Oberbord 8 | P -1156.3632, -1062.6757, -52.9055, 0, 0, 240, 2, Rasaku_Scalerunner 9 | P -1352.6486, 1880.6856, -15.4566, 0, 0, 240, 2, Mallagan_Vergoo(Q) 10 | P -1173.3861, 886.6091, -77.1574, 0, 0, 240, 2, Karunku_Trogue(Q) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/FreportN_1.txt: -------------------------------------------------------------------------------- 1 | P -476.2871, 27.4965, 3.1259, 0, 0, 0, 3, Forge 2 | P -576.8038, 89.733, 5.126, 0, 0, 0, 3, Nashia_(GM_Bard) 3 | P 177.7321, 102.9682, 3.1259, 0, 0, 0, 3, Winoyn_(Pottery) 4 | P 196.435, 94.9219, 3.1259, 0, 0, 0, 3, Jallen_(Tailor) 5 | P -208.2419, 175.5091, 17.126, 0, 0, 0, 3, Amber_(Jewelry) 6 | P 45.2231, -79.9172, 3.1259, 0, 0, 0, 3, Shania_(Bar) 7 | P 224.2466, 28.3026, 0.626, 0, 0, 0, 3, Peran_(Bank) 8 | P 182.3134, -206.4939, -10.874, 0, 0, 0, 3, Merko_(GM_Paladin) 9 | P -345.512, -140.1339, 73.947, 0, 0, 0, 3, Tholius_(GM_Cleric) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/FreportW_1.txt: -------------------------------------------------------------------------------- 1 | P 793.6585, -73.2408, -53.1103, 0, 0, 0, 3, Romiak_(GM_Enchanter) 2 | P 637.5865, 79.8857, -21.998, 0, 127, 0, 3, Priest_of_Discord 3 | P 813.2333, -17.7093, -52.2177, 0, 0, 0, 3, Dulia_(Gems) 4 | P 760.9503, -118.5724, 3.7509, 0, 0, 0, 3, Tharma_(Spells) 5 | P 767.6476, -118.6538, -23.2489, 0, 0, 0, 3, Monat_(Spells) 6 | P 752.9733, -138.2575, -10.249, 0, 0, 0, 3, Xinari_(Spells) 7 | P 737.4183, -140.9226, -10.249, 0, 0, 0, 3, Lysin_(Gems) 8 | P 717.9589, -137.47, 30.501, 0, 0, 0, 3, Respin_(GM_Magician) 9 | P 769.2481, -114.6454, 2.5009, 0, 0, 0, 3, Palon_(GM_Wizard) 10 | P 718.4075, -152.3451, -24.4989, 0, 0, 0, 3, Besklor_(GM_Enchanter) 11 | P -5.8239, -103.2112, -13.374, 0, 0, 0, 3, Krystin_(Baking) 12 | P 30.7649, 21.4168, -27.3739, 0, 0, 0, 3, Boomba_(Merchant) 13 | P 42.8601, 315.3392, -11.499, 0, 0, 0, 3, Cain_(GM_Warrior) 14 | P 109.5091, 73.8509, -27.3739, 0, 0, 0, 3, Militia_House 15 | -------------------------------------------------------------------------------- /data/maps/map_files/FrontierMtns_1.txt: -------------------------------------------------------------------------------- 1 | P 3301.4971, 3481.6411, -385.9542, 0, 0, 240, 2, Shilur_Scaletine(Epic) 2 | P -2133.7666, 1972.3530, -402.1431, 0, 0, 127, 2, Digmaster_Duggert(Q) 3 | P -2105.9988, 1690.2791, -312.6040, 0, 0, 127, 2, Rock_Shaper_Dritam(Q) 4 | P -2152.7249, 1714.4943, -314.5810, 0, 0, 127, 2, Cenobite_Pakclaw(Q) 5 | P -1650.4761, 2178.3408, -438.1854, 0, 0, 240, 2, Iksars(Q) 6 | P -1484.4954, 2213.3750, -414.3154, 0, 0, 127, 2, Finrin_Talister(Druid1.5) 7 | P -3799.5090, 2569.8267, -453.1249, 0, 0, 240, 2, Khieka_Ripclaw(Q) 8 | P 1525.3842, 302.2866, -129.8728, 0, 0, 240, 2, Grenno_Dagor(Q) 9 | P 2942.6211, -579.9595, 0.5605, 0, 0, 240, 2, Aurueen_Stilwater(Q) 10 | P -1346.4041, -3619.3240, 309.7830, 0, 0, 240, 2, Mikarsilla_Selishshen(Q) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/FrozenShadow_1.txt: -------------------------------------------------------------------------------- 1 | P -639.5634, -1127.5343, 73.6843, 0, 0, 0, 3, Hasten 2 | P -598.6928, -1024.7480, 73.6937, 0, 0, 0, 3, Kashva_-_malevolence 3 | P -463.2885, -1028.4760, 62.1064, 0, 0, 0, 3, Eggsniffer_-_dead 4 | P -420.8254, -1156.7822, 66.7394, 0, 0, 0, 3, Tired_Farmer_Jestle-_kill_room-hail 5 | P -470.3211, -898.6056, 76.6899, 0, 0, 0, 3, Farwhendle_Higglespout_-_Captain_Pete 6 | P -661.4801, -953.4552, 73.6787, 0, 0, 0, 3, Romella_'Mynthi_Davissi' 7 | P -782.3414, -1073.5586, 72.3919, 0, 0, 0, 3, Patseeker_Rhondarra_-_hail_in_illusion_Vah_shir 8 | P -770.6579, -1151.1350, 73.4766, 0, 0, 0, 3, Fixxin_Followig_-_kill_room-hail 9 | P -861.2987, -1043.7297, 73.8208, 0, 0, 0, 3, Galdorin_Visigothe_-_'Queen_of_Thorns' 10 | P -511.3860, -786.7980, 72.4321, 0, 0, 0, 3, Glob_-_kill_room-hail 11 | P -836.2500, -854.6350, 73.6868, 0, 0, 0, 3, an_old_froglok_-_kill_room-hail 12 | P -842.7640, -999.4578, 73.6791, 0, 0, 0, 3, Captain_Pete_-_'Wretched_Sands' 13 | -------------------------------------------------------------------------------- /data/maps/map_files/Greatdivide_1.txt: -------------------------------------------------------------------------------- 1 | P -140.7461, 1084.8804, 18.6698, 0, 0, 127, 2, Sentry_Badain 2 | P 134.9923, 1053.4478, 22.3333, 0, 127, 127, 2, Tudasali(DDD) 3 | P 3509.7100, 4898.8154, -515.6226, 0, 0, 240, 2, Relik(Q) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/Growthplane_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Growthplane_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/GukBottom_1.txt: -------------------------------------------------------------------------------- 1 | P 751.0000, -1074.0000, -252.0000, 127, 0, 0, 3, a_spectral_shimmer 2 | P 368.6750, -947.5320, -197.3160, 127, 0, 0, 2, Raster_of_Guk(Mnk1.0) 3 | -------------------------------------------------------------------------------- /data/maps/map_files/GukTop_1.txt: -------------------------------------------------------------------------------- 1 | P -27.1, -906.7269, -98.447, 127, 64, 0, 2, Ladder_up 2 | P -257.3908, -759.7165, -13.8415, 127, 64, 0, 2, Ladder_to_lower_level 3 | P -257.4886, -749.7445, -69.8108, 127, 64, 0, 2, Ladder_to_upper_level 4 | -------------------------------------------------------------------------------- /data/maps/map_files/HatePlane_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/HatePlane_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Hole_1.txt: -------------------------------------------------------------------------------- 1 | P -243.0000, -106.0000, -349.0000, 127, 64, 0, 2, The_Strong_Box 2 | P -163.0000, -121.0000, -350.0000, 127, 64, 0, 2, Costly_Confections 3 | P -36.0000, -48.0000, -350.0000, 127, 64, 0, 2, Corandier's_Clothier 4 | P -408.0000, 12.0000, -349.0000, 127, 64, 0, 2, Erud's_Bane 5 | P -87.0000, -223.0000, -349.0000, 127, 64, 0, 2, More_Than_Mushrooms 6 | P -555.3479, -114.1140, -349.8740, 127, 64, 0, 2, Library 7 | P -152.9643, -149.4088, -349.8727, 127, 64, 0, 2, Blaisel's_Dance_Drink 8 | P -347.0000, -48.0000, -389.0000, 0, 0, 240, 3, Protector_of_the_Ruins_(Q) 9 | P 45.9320, -2.4399, -349.8727, 127, 64, 0, 2, The_Slab_Potery 10 | -------------------------------------------------------------------------------- /data/maps/map_files/Iceclad_1.txt: -------------------------------------------------------------------------------- 1 | P -1287, -4540, 65.7556, 0, 0, 240, 2, Adinel_Jailbar(M) 2 | P -1269, -4539, 65.942, 0, 0, 240, 2, Sojan_the_Sleepless_(M) 3 | P -1313.2888, -4636.7051, 72.4356, 0, 0, 127, 2, Xorbinasticalus_(Spells) 4 | P 20269.5155, -3947.232, -8.4376, 0, 0, 240, 2, Joshel_the_Large(Q) 5 | P -388.1607, -5307.185, -18.4589, 0, 0, 240, 2, Rendap 6 | P -391.5086, -5311.1367, -19.9969, 0, 0, 240, 2, Nelet_Durzit 7 | P -482.7585, -5328.1992, -18.8383, 0, 0, 240, 2, Masurt_Dok 8 | P -395.6032, -5352.37, -18.4713, 0, 0, 240, 2, Soulbinder 9 | P -1357.2208, -4562.2782, 72.7734, 0, 0, 240, 2, Relit 10 | P -1369.448, -4549.37, 72.7402, 0, 0, 240, 2, Nilham_the_Chef 11 | P -1350.7656, -4552.9385, 72.2173, 0, 0, 240, 2, Traboh 12 | P -1211.6388, -4390.6532, 44.7905, 0, 0, 240, 2, Lookout_Larithim 13 | P -1331.219, -4504.2641, 69.6518, 0, 0, 240, 2, Ami 14 | P -2209.3195, -4717.806, -33.904, 0, 0, 240, 2, Ratop 15 | P -2217.9167, -4716.9022, -33.1184, 0, 0, 240, 2, Ritap 16 | P -3227.4402, -2920.57, 212.6278, 0, 0, 240, 2, Balix_Misteyes 17 | P -3270.1637, -2575.7019, 202.1786, 0, 0, 240, 2, Sir_Jevik_Isqual 18 | P -2422.3083, -980.8103, 35.2222, 0, 0, 240, 2, Keref_Spiritspear 19 | P -2409.2944, -1064.8101, 35.2222, 0, 0, 240, 2, Errgriz 20 | P -2416.2283, -1069.6371, 35.2222, 0, 0, 240, 2, Ergrez_Shortpaw 21 | P -2356.7824, -1020.238, 35.7847, 0, 0, 240, 2, Grizlin_Bloodfang 22 | P -8635.4071, 5613.9022, 147.5006, 0, 0, 127, 2, Vas_Thorel(Brd_Pre-Q) 23 | P -5931.7206, 5719.326, -63.7914, 0, 0, 127, 2, Corudoth 24 | -------------------------------------------------------------------------------- /data/maps/map_files/Kael_1.txt: -------------------------------------------------------------------------------- 1 | P -1946.7825, -173.7143, -199.9052, 0, 0, 240, 2, Svekk_(M) 2 | P -1867.0000, -267.0000, -199.9052, 0, 0, 240, 2, Kellek_(M) 3 | P -1394.0000, 403.0000, -199.9052, 0, 0, 240, 2, Weyrevar_(Armor) 4 | P -1442.0000, 404.0000, -199.9052, 0, 0, 240, 2, Pollos_(B) 5 | P -1908.0000, 1679.0000, -159.9364, 0, 0, 240, 2, Weyen_(B) 6 | P -1953.0000, 1658.0000, -159.9364, 0, 0, 240, 2, Bendad_(M) 7 | P -1932.0000, 1740.0000, -159.9364, 0, 0, 240, 2, Ymik_(M) 8 | P -828.0000, -238.0000, -139.9364, 0, 0, 240, 2, Kevelak_(M) 9 | P -848.0000, -254.0000, -139.9364, 0, 0, 240, 2, Wevek_(Weapons) 10 | P -872.0000, -245.0000, -139.9364, 0, 0, 240, 2, Graggaz_(Armor) 11 | P -1148.3590, -935.3240, -58.4063, 0, 0, 240, 2, Bjorak_Stonefist(M) 12 | -------------------------------------------------------------------------------- /data/maps/map_files/Kaesora_1.txt: -------------------------------------------------------------------------------- 1 | P 57.9810, -198.3575, 0.7724, 240, 0, 0, 3, Pit 2 | P 23.2669, -297.7574, 1.3213, 240, 0, 0, 3, Pit 3 | P -375.8177, -136.8860, -143.9973, 240, 0, 0, 2, Pit 4 | P -590.7740, 84.4630, -301.8727, 240, 0, 0, 2, Hole_To_Floor_Below 5 | P -137.3750, -200.8482, 63.9868, 240, 0, 0, 3, Pit 6 | P -112.0000, -87.0000, 0.0000, 240, 0, 0, 3, Pit 7 | P -39.9692, -135.3234, 1.6050, 240, 0, 0, 3, Pit 8 | P -9.7539, -201.3086, 50.7015, 240, 0, 0, 3, Pit 9 | P 168.7016, -199.6268, -127.7792, 0, 0, 0, 1, Loom 10 | -------------------------------------------------------------------------------- /data/maps/map_files/KaladimA_1.txt: -------------------------------------------------------------------------------- 1 | P -316.8770, -184.2610, 1.8775, 0, 0, 240, 2, Tumpy_(Bar) 2 | P -389.1949, -168.6237, 1.8759, 0, 0, 240, 2, Kalameky_(Tailor) 3 | P -224.1390, -143.4806, 4.8760, 0, 0, 240, 2, Didek_(Weapons) 4 | P 191.9808, -250.4216, 1.8759, 0, 0, 240, 2, Baldoleky_(Potions) 5 | P 357.9701, 102.8473, 9.8759, 0, 0, 240, 2, King_Kazon_Stormhammer 6 | P 9.0000, 47.0000, 0.1000, 0, 127, 0, 3, Priest_of_Discord 7 | P -406.4529, -36.1636, 6.1900, 0, 0, 240, 2, Vacto_(Weapons) 8 | P -428.2556, 38.6965, 0.2000, 0, 0, 240, 2, Handaaf_(Weapons) 9 | P -476.9601, 78.2184, 0.2000, 0, 0, 240, 2, Gemcrafter_Donum_(Melee_Augs) 10 | P -227.4856, -89.5254, 0.2000, 0, 0, 240, 2, Kamamaf_(General) 11 | P -235.2052, -97.8235, 0.2000, 0, 0, 240, 2, Dura_(General) 12 | P -234.1860, -135.5732, 0.2000, 0, 0, 240, 2, Alanury_(Fletching) 13 | P -213.4715, -206.4784, 0.2000, 0, 0, 240, 2, Soulbinder 14 | P -476.9601, 78.2184, 0.2000, 0, 0, 240, 2, Gemcrafter_Donum_(Melee_Augs) 15 | P 249.9942, -229.3796, 0.2000, 0, 0, 240, 2, Gurtha_(Armor) 16 | P 251.3351, -218.8172, 0.2000, 0, 0, 240, 2, Hanek_(Armor) 17 | P 252.5124, -218.1463, 11.2000, 0, 0, 240, 2, Dooni_(Pottery) 18 | P 377.5106, 78.7814, 8.2000, 0, 0, 240, 2, Grasill_(Tribute) 19 | P -220.6366, -105.5168, 0.3145, 0, 0, 240, 2, Kilam_Oresinger 20 | -------------------------------------------------------------------------------- /data/maps/map_files/KaladimB_1.txt: -------------------------------------------------------------------------------- 1 | P -131.5095, -741.3387, 2.5009, 0, 0, 127, 3, Spell_Vendors 2 | P -73.9407, -1289.9186, 38.5009, 0, 0, 127, 3, Busey_(Spells) 3 | P -421.4203, -695.8710, -65.4676, 0, 0, 240, 2, Banaf_(Gems) 4 | P -188.5550, -725.8069, -67.7604, 0, 0, 240, 2, Harnoff_(Smith) 5 | P -193.7838, -610.8894, -33.4990, 0, 0, 240, 2, Donnel_(B) 6 | P -116.4035, -1317.1432, 37.5009, 0, 0, 127, 3, Tempia_(Spells) 7 | P -263.9275, -483.1324, -35.9881, 0, 0, 127, 2, Tabber_(Ber_Tomes) 8 | P -247.2101, -491.2447, -35.9979, 0, 0, 240, 2, Marsha_(Parcels) 9 | P -213.1270, -727.2962, -67.7604, 0, 0, 240, 2, Bloarn_(Smith) 10 | P -390.4952, -700.3635, -67.7604, 0, 0, 240, 2, Kalamin_Norkhitter 11 | P -200.5846, -694.3510, -67.7604, 0, 0, 240, 2, Atheki_Norkhitter 12 | -------------------------------------------------------------------------------- /data/maps/map_files/Karnor_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Karnor_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Kedge_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Kedge_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Kithicor_1.txt: -------------------------------------------------------------------------------- 1 | P 1002.2826, -1334.2804, -50.7000, 0, 0, 240, 2, Syxa_Jewlborn(NotD) 2 | P 577.2759, -1089.5168, -39.8733, 0, 0, 240, 2, A_dressed_up_halfling 3 | P 673.2300, -1132.8297, -43.9938, 0, 0, 240, 2, Darvon_(M) 4 | P -2263.1450, -1456.8571, 295.4365, 0, 0, 240, 2, Mune_(M) 5 | P -3821.1221, 282.5566, 492.3107, 0, 0, 240, 2, Jurn_(M) 6 | P -4001.2529, 266.6147, 495.1635, 0, 0, 240, 2, Lena_(Tailor) 7 | P -3882.1331, 333.6865, 493.6317, 0, 0, 240, 2, Krile_(Fletcher) 8 | P -3813.1851, 218.2433, 492.6087, 0, 0, 240, 2, Jeena_(M) 9 | P 683.9999, -1092.7731, -44.5160, 0, 0, 240, 2, Grace_(M) 10 | P -2315.0000, -1518.8551, 296.4140, 0, 127, 127, 2, Morin_(GM_Rgr) 11 | P -1962.0000, 573.9732, 224.9830, 0, 127, 127, 2, Kithicor_(GM_Rgr) 12 | P 499.8670, 103.5797, -39.4617, 0, 0, 127, 2, Shamus_Gull 13 | P -4661.3940, -370.8272, 659.1471, 0, 0, 240, 2, Dusis_Moor(Q) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/Kurn_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Kurn_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/LakeRathe_1.txt: -------------------------------------------------------------------------------- 1 | P -450.0000, 424.0000, 49.9072, 0, 0, 240, 2, Dreana_(M) 2 | P -637.0000, 507.0000, 50.5572, 0, 0, 240, 2, Srynda_(M) 3 | P -657.0000, 433.0000, 49.9072, 0, 0, 240, 2, Abrod_(Bar) 4 | P 1815.0000, -3126.0000, 50.3879, 0, 0, 240, 2, Turga_(M) 5 | P -144.7110, -3632.4829, 52.5638, 0, 0, 127, 2, Natasha_Whitewater 6 | P 564.3813, -2597.1516, 9.7860, 0, 0, 240, 2, Cyanelle(Q) 7 | P 891.5000, -2579.8701, -36.1231, 0, 0, 240, 2, Taia_Lyfol 8 | P 1784.8777, -3051.9109, 51.4814, 0, 0, 240, 2, Trug 9 | P 1840.4889, -3011.4419, 51.4410, 0, 0, 240, 2, Derg 10 | P 1833.1425, -3064.9341, 51.4405, 0, 0, 240, 2, Grud 11 | P 1793.9866, -3078.4905, 51.4547, 0, 0, 240, 2, Punga 12 | P 609.3724, -3594.7068, 56.6816, 0, 0, 240, 1, Gunhedra 13 | P 606.5456, -3582.8679, 54.2730, 0, 0, 240, 1, Hulga 14 | P 595.5872, -3581.7593, 54.2727, 0, 0, 240, 1, Groethar 15 | P 584.7054, -3580.8982, 54.2725, 0, 0, 240, 1, Lenklo 16 | P -146.5107, -3617.5176, 52.3875, 0, 0, 240, 1, Jorna 17 | -------------------------------------------------------------------------------- /data/maps/map_files/LakeofIllOmen_1.txt: -------------------------------------------------------------------------------- 1 | P -1178.5995, -1054.5103, 97.7623, 0, 0, 240, 2, Fullic_D'Vinn_(Q) 2 | P -440.3550, 2195.4739, 71.8248, 0, 0, 240, 2, Gai_Nuhost 3 | P 1455.4060, -887.1130, 71.8248, 0, 0, 240, 2, Shikez_Kaelsorath_(Q) 4 | P 6228.9766, -6265.5254, 75.1998, 0, 0, 240, 2, Klok_Vydl_(M) 5 | P 6350.4673, -6392.2212, 75.4185, 0, 0, 240, 2, Klok_Gnask_(M) 6 | P 3088.1592, -4563.7432, 73.6406, 0, 0, 240, 3, Trooper_Vaurk_(Q) 7 | P 3613.7500, -3842.4644, 61.8738, 0, 0, 127, 2, Malkez_Glyphen_(Q) 8 | P 2923.5093, 2529.1958, 115.6627, 0, 0, 240, 2, Cylen_Blackgranite_(M) 9 | P 2930.7632, 2522.4197, 115.6627, 0, 0, 240, 2, Nubs_Blackgranite_(M) 10 | P 2937.3943, 2515.4419, 115.6627, 0, 0, 240, 2, Twedwr_Blackgranite_(M) 11 | P 3053.9646, 2543.3733, 115.6627, 0, 0, 127, 2, Villuloz_Shellzar_(Q) 12 | P 2996.3188, 2539.6641, 115.6627, 0, 0, 240, 2, Professor_Akabao_(Q) 13 | P 6454.6743, -6133.9668, 69.4810, 0, 0, 240, 2, Klok_Foob_(M) 14 | P 6337.7134, -6021.7358, 74.1060, 0, 0, 240, 2, Klok_Sargin_(M) 15 | P 6581.9458, -5979.8086, 69.5748, 0, 0, 240, 2, Warlord_Geot_(Q) 16 | P 507.4300, -133.1185, 66.6199, 0, 0, 127, 2, Gikrani_Do'Saraken_(Q) 17 | -------------------------------------------------------------------------------- /data/maps/map_files/Lfaydark_1.txt: -------------------------------------------------------------------------------- 1 | P -1249.0000, 313.0000, -5.3010, 0, 0, 240, 2, Anelia_(M) 2 | P -3109.0000, -1768.0000, -4.4051, 0, 0, 240, 2, Brownie_(M) 3 | P -3088.0000, -1790.0000, -1.3637, 0, 0, 240, 2, Brownie_(M) 4 | P -3119.0000, -1814.0000, -4.4051, 0, 0, 240, 2, Brownie_(M) 5 | P -2558.0000, -65.0000, 0.0000, 0, 0, 240, 2, Glidara_Myllar 6 | P -1262.0000, -258.0000, 0.0000, 0, 0, 240, 2, Glyndur_Tindel 7 | P -774.8083, -1592.8433, -5.2920, 0, 0, 240, 2, Mithiuous_Scratch 8 | P -3452.2637, -78.3769, -7.8015, 0, 0, 240, 2, Tera_Farkeep 9 | -------------------------------------------------------------------------------- /data/maps/map_files/Mischiefplane_1.txt: -------------------------------------------------------------------------------- 1 | P 513.9870, -778.5433, 69.9706, 0, 0, 0, 3, hand 2 | P 112.6261, -617.1138, 69.9706, 0, 0, 0, 3, bug 3 | P 1190.7618, -700.9588, 69.9706, 0, 0, 127, 3, Piestro 4 | P 847.6930, -804.6085, 69.9706, 0, 0, 0, 3, hand 5 | P 846.8153, -771.2780, 69.9706, 0, 0, 0, 3, bug 6 | P 1030.2593, -875.7042, 69.9706, 0, 0, 0, 3, bug 7 | P 1132.1497, -784.8221, 69.9706, 0, 0, 0, 3, bug 8 | P 1132.7410, -776.7860, 69.9706, 0, 0, 0, 3, hand 9 | P 1158.7571, -561.3591, 69.9706, 0, 0, 0, 3, bug 10 | P 1192.6818, -260.7024, 69.9706, 0, 0, 0, 3, hand 11 | P 1062.1409, -382.4530, 69.9706, 0, 0, 0, 3, hand 12 | P 1135.6115, -237.3095, 69.9706, 0, 0, 0, 3, bug 13 | P 801.3185, -20.9147, 69.9706, 0, 0, 0, 3, hand 14 | P 838.3991, -820.5999, 126.5758, 0, 0, 240, 2, Leea_Brumplefoot 15 | P 1081.2396, -820.2324, 126.5829, 0, 0, 240, 2, Ronal_Brumplefoot 16 | P 928.8940, -519.2151, 116.6084, 0, 0, 240, 2, Jaxoa_Hrussin(R) 17 | -------------------------------------------------------------------------------- /data/maps/map_files/Mistmoore_1.txt: -------------------------------------------------------------------------------- 1 | P -368.2567, 61.71, -237.9042, 0, 0, 240, 2, Ssynthi(Q) 2 | P -312.3299, 146.1809, -209.9038, 0, 0, 240, 2, Eirod_Haerod(Q) 3 | -------------------------------------------------------------------------------- /data/maps/map_files/Misty_1.txt: -------------------------------------------------------------------------------- 1 | P 2344.8544, -896.8146, -6.1641, 0, 0, 0, 3, Bim_(Baker) 2 | P 2272.7035, -338.9175, -6.1642, 0, 0, 0, 3, Hanga_(Smith) 3 | P 2212.5324, -663.3464, -4.2656, 0, 0, 0, 3, Sonsa_(Tailor) 4 | P 2207.5088, -580.7157, -6.1642, 0, 0, 0, 3, Tipa_(Tailor) 5 | P 2347.9072, -586.493, -6.1641, 0, 0, 0, 3, Topper_(Pottery) 6 | -------------------------------------------------------------------------------- /data/maps/map_files/Najena_1.txt: -------------------------------------------------------------------------------- 1 | P 105.3139, 20.374, -27.314, 0, 0, 127, 2, Linara_Parlone 2 | P 75.596, 49.9714, -27.3043, 0, 0, 240, 1, an_injured_halfling 3 | P 74.88, -372.618, 0.1062, 0, 0, 127, 2, Akksstaff(Mage1.0/1.5) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/Necropolis_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Necropolis_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Nektulos_1.txt: -------------------------------------------------------------------------------- 1 | P -535.2208, -1016.1753, -11.5765, 0, 0, 0, 2, Halflings 2 | -------------------------------------------------------------------------------- /data/maps/map_files/NeriakA_1.txt: -------------------------------------------------------------------------------- 1 | P 366.0000, 222.0000, 3.6259, 0, 0, 240, 3, Jarvah_(Tailor) 2 | P 296.1420, 212.6015, 14.6259, 0, 0, 240, 3, Putad_(Smith) 3 | P 499.0000, 412.0000, 12.6259, 0, 0, 240, 3, Wista_(Merchant) 4 | P 279.0000, 204.0000, 14.8453, 0, 0, 240, 3, Ungia_(Smith) 5 | P 386.0000, 240.0000, 3.6259, 0, 0, 240, 3, Bronk_(Armor) 6 | P 418.2890, 603.7653, 23.8130, 0, 0, 240, 3, Spell_Vendors 7 | P 437.0000, 562.0000, 1.9000, 0, 0, 240, 3, Zumzal_(Merchant) 8 | P 417.7049, 533.6874, 1.9000, 0, 0, 240, 3, Spell_Vendors 9 | P 95.0000, -205.0000, 0.1000, 0, 0, 240, 3, Nola_(Soulbinder) 10 | P 407.2178, 471.6911, 1.6051, 0, 0, 240, 3, Luruk_(Berserker_Tomes) 11 | P 78.0000, 191.0000, 39.9000, 0, 127, 0, 3, Priest_of_Discord 12 | -------------------------------------------------------------------------------- /data/maps/map_files/NeriakC_1.txt: -------------------------------------------------------------------------------- 1 | P 856.1479, -412.4238, -55.9667, 0, 0, 127, 2, Lyniv_(Spells) 2 | P 853.5172, -405.9252, -55.9667, 0, 0, 127, 2, Myris_(Spells) 3 | P 836.1491, -408.2255, -55.9667, 0, 0, 240, 2, Tzanso_(Weapons) 4 | P 815.8948, -452.2053, -54.9667, 0, 0, 240, 2, Dvis_(General_Supplies) 5 | P 1713.5959, -1361.2947, -97.9667, 0, 0, 240, 2, Petra_(Pottery) 6 | P 1248.5883, -894.1639, -68.4228, 0, 0, 240, 2, Lokar_To`Biath(Faction_Q) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/NorthKarana_1.txt: -------------------------------------------------------------------------------- 1 | P 189.4005, 626.9990, -8.7490, 0, 0, 240, 2, Romi_(Bar) 2 | P 156.4252, 678.1566, -8.7490, 0, 0, 240, 2, Mrysila_(M) 3 | P 191.8444, 675.8093, -8.7490, 0, 0, 240, 2, Romella_(M) 4 | P 212.7505, 640.8066, -8.7490, 0, 0, 240, 2, Roule_(Weapons) 5 | P 1464.6455, 2730.4121, -8.7490, 0, 0, 240, 2, Tak_(Spells) 6 | P 2721.7681, 127.5721, -39.9215, 0, 0, 240, 2, Gorri_Fallstine 7 | -------------------------------------------------------------------------------- /data/maps/map_files/Nro_1.txt: -------------------------------------------------------------------------------- 1 | P -126, -3711, -24.2802, 0, 0, 0, 3, Murissa_(Merchant) 2 | P -488, -3465, -23.2793, 0, 0, 0, 3, Tozie_(Bar) 3 | P -502, -3414, -23.2793, 0, 0, 0, 3, Valon_(Merchant) 4 | P -488, -3371, -23.2793, 0, 0, 0, 3, Spoolie_(Tailor) 5 | P 789, -2293, 3.33, 0, 0, 0, 3, Tira_(Fishing) 6 | P 753, -2184, 7.9005, 0, 0, 0, 3, Juni_(Fishing) 7 | P -824, -1376, 6.5834, 0, 0, 0, 3, Minor_Spire 8 | -------------------------------------------------------------------------------- /data/maps/map_files/Nurga_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Nurga_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Oasis_1.txt: -------------------------------------------------------------------------------- 1 | P 261, 1321, 4.8498, 0, 0, 0, 3, Marnan_(Merchant) 2 | P 306, 1307, 7.3498, 0, 0, 0, 3, Tizzy_(Brewer) 3 | P 6, -597, 3.323, 0, 0, 0, 3, Sythan_(Merchant) 4 | P -51, -613, 3.323, 0, 0, 0, 3, Transan_(Weapons) 5 | P -71, -512, 3.322, 0, 0, 0, 3, Isslana_(Merchant) 6 | P 43, -542, 3.323, 0, 0, 0, 3, Tran_(Brewer) 7 | P 0, -493, 3.323, 0, 0, 0, 3, Gadallion_(Spells) 8 | -------------------------------------------------------------------------------- /data/maps/map_files/Paw_1.txt: -------------------------------------------------------------------------------- 1 | P -7.1430, 2.2328, 0.7008, 0, 0, 240, 3, Gillamina_Garstobidokis(Q) 2 | P -284.5031, -405.8888, 9.2000, 0, 0, 127, 3, Retharg 3 | P 196.3872, -896.1701, -31.9980, 0, 0, 0, 1, Level 4 | -------------------------------------------------------------------------------- /data/maps/map_files/Permafrost_1.txt: -------------------------------------------------------------------------------- 1 | P 163.9714, -173.382, 0.1582, 0, 0, 127, 2, Greshvoule(Druid_Tunic_Q) 2 | P 206.4284, -1114.8583, -83.8104, 127, 0, 0, 2, The_Ice_Witch(casters_Q) 3 | P 277.582, -700.5299, -41.8104, 127, 0, 0, 2, The_Icebound_Spirit(BST1.0) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/QRG_1.txt: -------------------------------------------------------------------------------- 1 | P -136.1699, 40.475, 2.7509, 0, 0, 240, 2, Ran_Walker 2 | P -12, 40, 3.7509, 0, 0, 240, 2, Frannie_(Baking) 3 | P 286, 152, 3.7509, 0, 0, 240, 2, Sallah_(Spells) 4 | P 294, 154, 3.7509, 0, 0, 240, 2, Sequea_(Merchant) 5 | P 301, 157, 3.7509, 0, 0, 240, 2, Arrivae_(Spells) 6 | P 272, 107, 3.7509, 0, 0, 240, 2, Livam_(Fletcher) 7 | P 259.877, 106.6449, 3.7509, 0, 0, 240, 2, Qomber_(Spells) 8 | P 77, -103, 3.7509, 0, 0, 240, 2, Bukem_(Spells) 9 | P 87, -104, 3.7509, 0, 0, 240, 2, Grathin_Parcel) 10 | P 94, -104, 3.7509, 0, 0, 240, 2, Raken_(Spells) 11 | P 112, -107, 3.7509, 0, 0, 240, 2, Durvinna_(Spells) 12 | P 109, -126, 3.7509, 0, 0, 240, 2, Tonsia_(Fletcher) 13 | P -102.498, -108.2032, 3.7509, 0, 0, 240, 2, Jarse_(Fletcher) 14 | P 57.713, -268.9621, -0.3556, 0, 0, 240, 2, Gurrin_Nitestorm 15 | -------------------------------------------------------------------------------- /data/maps/map_files/Qcat_1.txt: -------------------------------------------------------------------------------- 1 | P 370.8586, -429.3849, -39.4677, 0, 127, 127, 2, Zaen_(GM_SK) 2 | P 298.0000, -296.0000, -39.4677, 0, 127, 127, 2, Kurne_(GM_Nec) 3 | P 423.5661, -416.5826, -38.2177, 0, 0, 240, 2, Felia_(Weapons) 4 | P 419.2497, -417.2173, -38.2177, 0, 0, 240, 2, Gehnon_(Spells) 5 | P 414.6782, -404.1843, -38.2177, 0, 0, 240, 2, Jexun_(Spells) 6 | P 436.7461, -339.9578, -38.2177, 0, 0, 240, 2, Tessia_(Spells) 7 | P 426.4646, -347.9494, -38.2177, 0, 0, 240, 2, Naes_(Spells) 8 | P 412.9024, -345.6535, -38.2177, 0, 0, 240, 2, Senst_(Spells) 9 | P -149.5123, -706.6589, -46.9688, 240, 0, 0, 2, an_undead_knight(need_loc) 10 | P 321.3274, -425.2717, -41.9667, 0, 0, 240, 2, Banker 11 | -------------------------------------------------------------------------------- /data/maps/map_files/Qeynos2_1.txt: -------------------------------------------------------------------------------- 1 | P -358.0000, -91.0000, 3.7509, 0, 0, 240, 3, Bar_Merchants 2 | P -302.0000, -257.0000, 14.6259, 0, 0, 240, 3, Shenro_(Merchant) 3 | P -243.0000, -132.0000, 0.6260, 0, 0, 240, 3, Sneed_(Merchant) 4 | P -204.0000, -125.0000, 0.6260, 0, 0, 240, 3, Tanlyn_(Merchant) 5 | P -235.0000, -6.0000, -0.3740, 0, 127, 0, 3, Priest_of_Discord 6 | P -94.0000, -217.0000, 0.6260, 0, 0, 240, 3, Tubal_(Merchant) 7 | P 239.0000, 220.0000, 3.7509, 0, 0, 240, 3, Spell_Merchants 8 | P 124.0000, 143.0000, 3.7509, 0, 0, 240, 3, Spell_Merchants 9 | P 145.0000, 160.0000, 3.7509, 0, 0, 240, 3, Tyokan_(Weapons) 10 | P 160.0000, 160.0000, 3.7509, 0, 0, 240, 3, Berane_(Spells) 11 | P 6.0000, 88.0000, 17.7510, 0, 0, 240, 3, Roger_(Cobbler) 12 | P -19.0000, 63.0000, 3.7509, 0, 0, 240, 3, Gerault_(Cobbler) 13 | P -34.0000, -60.0000, 3.7509, 0, 0, 240, 2, Svena_(Gems) 14 | P -60.0000, -52.0000, 3.7509, 0, 0, 127, 2, Ziska_Ironforge(Pal2.0)Jewelry) 15 | P -86.0000, -50.0000, 3.7509, 0, 0, 240, 3, Rendallen_(Weapons) 16 | P -24.0000, 22.0000, 3.7509, 0, 0, 240, 3, Connie_(Smith) 17 | P 5.0000, 11.0000, 3.7509, 0, 0, 240, 3, Nerissa_(Armorer) 18 | P -160.0000, -69.0000, -29.2489, 0, 0, 240, 3, Pelshia_(Weapons) 19 | P -168.0000, -63.0000, -29.2489, 0, 0, 240, 3, Ghil_(Merchant) 20 | P -52.0000, -21.0000, 3.7509, 0, 0, 240, 2, Dren_(Smith) 21 | -------------------------------------------------------------------------------- /data/maps/map_files/Qeytoqrg_1.txt: -------------------------------------------------------------------------------- 1 | P -278.0000, -1381.0000, 4.6919, 0, 0, 240, 2, Marton(Smith) 2 | P -307.0000, -1404.0000, 4.6919, 0, 0, 240, 2, Mira_(Smith) 3 | P 825.7175, -1160.1624, 19.2778, 0, 0, 240, 2, Neclo_Rheslar* 4 | P 1086.9504, -1300.2740, 9.4473, 127, 0, 0, 2, Sir_Edwin_Motte* 5 | -------------------------------------------------------------------------------- /data/maps/map_files/Runnyeye_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Runnyeye_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Sebilis_1.txt: -------------------------------------------------------------------------------- 1 | P 358.6601, 1764.1954, -179.8311, 0, 0, 240, 2, a_contemplative_froglok(R) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Sirens_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Sirens_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Skyfire_1.txt: -------------------------------------------------------------------------------- 1 | P -3734.9685, -2343.3750, -136.2112, 0, 0, 240, 2, Enrid_Ebonclaw_(Q) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Sleeper_1.txt: -------------------------------------------------------------------------------- 1 | P -779.9153, 943.8591, 100.1900, 0, 0, 240, 2, Jonas_Levlellen 2 | P -1104.3278, 1738.3705, 100.1900, 0, 0, 240, 2, Milas_An'Rev 3 | -------------------------------------------------------------------------------- /data/maps/map_files/SolTemple_1.txt: -------------------------------------------------------------------------------- 1 | P 75.7339, -483.5919, 28.1900, 0, 0, 240, 2, Torzan_Searfire_(Q) 2 | P -6.9189, -503.4130, -37.9979, 0, 0, 127, 2, Tazgar 3 | P 15.9140, -551.3152, 17.5087, 0, 0, 15, 2, Lon_the_Redeemed 4 | P -76.6069, -384.5280, 14.1582, 0, 0, 240, 2, Sultin_(Q) 5 | P -90.5438, -395.1644, 14.1582, 0, 0, 240, 2, Romar_Sunto_(Q) 6 | P -90.8960, -355.9542, 14.1582, 0, 0, 240, 2, Vurgo_(Q) 7 | P 61.6188, -433.1587, 14.1582, 0, 0, 240, 2, Gardern_(Q) 8 | P 72.5117, -444.9046, 14.1582, 0, 0, 240, 2, Terblyn_Zelbus_(M) 9 | P 79.8040, -433.3421, 14.1582, 0, 0, 240, 2, Vilissia_(Q) 10 | P -90.7365, -410.6472, 14.1582, 0, 0, 240, 2, Vira_(Q) 11 | P -75.5733, -433.6177, 14.1582, 0, 0, 240, 2, Joyce_(Q) 12 | P -89.4950, -438.8258, 14.1582, 0, 0, 240, 2, Lord_Lyfyx_of_Burwood_(Q) 13 | P 65.3675, -433.7465, 28.1582, 0, 0, 240, 2, Genni_(Bard_Q) 14 | P 80.6400, -438.2846, 28.1582, 0, 0, 240, 2, Ostorm_(Q) 15 | P -35.8072, -417.5380, 0.1582, 0, 0, 240, 2, Gavel_the_Temperant_(Q) 16 | P 22.5691, -417.8550, 0.1582, 0, 0, 240, 2, Blaize_The_Radiant_(Q) 17 | P 43.9474, -417.3765, 0.1582, 0, 0, 240, 2, Cryssia_Stardreamer_(Bard_Q) 18 | -------------------------------------------------------------------------------- /data/maps/map_files/SoldungA_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/SoldungA_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/SoldungB_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/SoldungB_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/SouthKarana_1.txt: -------------------------------------------------------------------------------- 1 | P -1071.6101, 6588.4785, 160.8135, 0, 0, 240, 2, Krak_(M) 2 | P 2176.9985, -123.8311, -3.7801, 0, 0, 240, 2, Ulan_(Fletcher) 3 | P 2544.3953, 5478.9341, -2.2357, 0, 0, 240, 1, Cathalantru_Fleetfoot 4 | P -645.8492, 6467.5981, -2.2303, 0, 0, 240, 2, Woran_Soothsayer 5 | P -3225.2786, 6164.9536, 62.8415, 0, 0, 240, 1, Ryleen_Bladespur 6 | P -3193.5159, 7179.4985, 20.3018, 0, 0, 240, 1, Master_Ashikur 7 | P 1743.3418, 2028.5295, -2.2166, 0, 0, 240, 2, Cyllempra_Mistbringer 8 | P 2219.4624, -388.3647, -2.2218, 0, 0, 240, 2, Roatal_Frostreaver 9 | P -2253.1443, 1513.8063, 4.1086, 0, 0, 127, 2, Brother_Hayle 10 | P -1363.2861, 2543.7319, 0.5866, 0, 0, 127, 2, Brother_Drash 11 | P -693.6376, -2460.9250, -63.7218, 0, 0, 240, 2, a_gnollish_Zealot(Mi) 12 | P 2347.5115, -2333.1631, -65.1457, 0, 0, 127, 2, Yeka_Ias(Druid1.0) 13 | P 3341.2827, -758.4800, 12.2251, 127, 0, 0, 2, Shaman_Lenrel 14 | P 2203.4402, -95.6367, -2.2402, 127, 0, 0, 2, Shakrn_Meadowgreen 15 | P 766.7667, 5040.4902, -2.2134, 127, 0, 0, 2, Kurrpok_Splitpaw 16 | P -899.4328, -2526.4744, -61.5822, 0, 0, 240, 2, Bamrih_Tyco 17 | P 3527.1226, 4328.8125, -3.4666, 0, 0, 0, 1, an_interrogator 18 | -------------------------------------------------------------------------------- /data/maps/map_files/Sro_1.txt: -------------------------------------------------------------------------------- 1 | P -444, -160, -23.2865, 0, 0, 0, 3, Passia_(Pottery) 2 | P -488, -93, -23.3613, 0, 0, 0, 3, Tv`ysa_(Smith) 3 | P -495, -128, -23.3729, 0, 0, 0, 3, Ulyssa_(Smith) 4 | P -1402, -1210, 13.3346, 0, 0, 0, 3, Rathmana_(Merchant) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/Steamfont_1.txt: -------------------------------------------------------------------------------- 1 | P 1844.17, 1515.17, -110.9307, 0, 0, 0, 3, Finkel_(Baking) 2 | P -1655, 1750, -111.4729, 0, 0, 0, 3, Crisyn_(Spells) 3 | P 618.54, -43, -108.8909, 0, 0, 0, 3, Godbin_(Smith) 4 | P 661.128, -79, -108.8909, 0, 0, 0, 3, Clockwork_(Fletcher) 5 | P 660.72, -100, -108.8909, 0, 0, 0, 3, Clockwork_(Fletcher) 6 | P 875.76, -175, -110.9505, 0, 0, 0, 3, Bom_(Tinker) 7 | P -561.9343, 833, -120.3238, 0, 0, 0, 3, Halv_(Guard) 8 | P -556, 1378.61, -111.9048, 0, 0, 0, 3, Dreeb_(Guard) 9 | P -570, 1861.48, -111.9047, 0, 0, 0, 3, Prynn_(Guard) 10 | P -545, 1861.71, -111.9047, 0, 0, 0, 3, Prenn_(Guard) 11 | P -429, 1623.71, -110.9309, 0, 0, 0, 3, Oren_(Baking) 12 | P -337, 1786.48, -110.9309, 0, 0, 0, 3, Glen_(Merchant) 13 | P -666, 1787, -109.8345, 0, 0, 0, 3, Fodin_(Smith) 14 | P -829, 1696.5, -110.9309, 0, 0, 0, 3, Freed_(Tailor) 15 | -------------------------------------------------------------------------------- /data/maps/map_files/Stonebrunt_1.txt: -------------------------------------------------------------------------------- 1 | P 586.0000, -1381.0000, 1025.1233, 0, 0, 240, 2, Kalaaro_(Smith) 2 | P 579.0000, -1390.0000, 1025.1233, 0, 0, 240, 2, Kevar_(Smith) 3 | P 536.0000, -1391.0000, 1025.1233, 0, 0, 240, 2, Jaimiou_(Pottery) 4 | P 490.0000, -1348.0000, 1025.7870, 0, 0, 240, 2, Stead_(Baking) 5 | P 3538.7976, -3657.5764, 1303.9475, 0, 0, 127, 2, Scout_Malom(BST1.0) 6 | P 3367.1550, -3769.7336, 1249.6886, 0, 0, 240, 2, Caensella_Vellestan 7 | -------------------------------------------------------------------------------- /data/maps/map_files/Swampofnohope_1.txt: -------------------------------------------------------------------------------- 1 | P -2588.6565, -1821.9314, -6.2394, 0, 0, 240, 2, Kellboa_Skyspeed 2 | P -2947, -2421, 40.3447, 0, 0, 240, 2, Roshin_(M) 3 | P -2907, -2461, 40.3447, 0, 0, 240, 2, Migo_(M) 4 | P -2723, -2641, 39.9, 0, 0, 240, 2, Gokrok_(M) 5 | P -2812, -2706, 40.3134, 0, 0, 240, 2, Bygle_(M) 6 | P 1777.3715, 263.3075, -12.7665, 0, 0, 240, 2, Dugroz(Q)Key 7 | P -2989.1559, -2631.8906, 40.252, 0, 0, 240, 2, Warlord_Hikyg(Q) 8 | P -3030.8344, -2645.4254, 40.252, 0, 0, 240, 2, Mystic_Dovan(Q) 9 | P -2299.8804, 2998.9731, -33.512, 127, 0, 0, 2, The_Spirit_of_Sorrow(BST1.0) 10 | P -1497.5655, -827.2539, 14.7378, 0, 0, 240, 2, Genban_Kerrokar 11 | -------------------------------------------------------------------------------- /data/maps/map_files/Templeveeshan_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Templeveeshan_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Thurgadinb_1.txt: -------------------------------------------------------------------------------- 1 | P 66.1769, -668.5522, 58.9716, 0, 0, 240, 2, Dain's_Historian_Duggans(Q) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Timorous_1.txt: -------------------------------------------------------------------------------- 1 | P 5534.4839, 9143.2803, 144.8021, 127, 64, 0, 2, Golra_island 2 | P -4337.8364, 12258.37, -282.6852, 0, 0, 240, 2, Cursed_Traveler 3 | P -2943.8069, 5781.6127, 0.5607, 0, 0, 240, 2, Xiblin_Fizzlebik 4 | P -3116.2319, -5725.3666, 4.7919, 0, 0, 240, 2, The_Great_Oowomp 5 | P 5916.3041, 6451.6063, 16.6788, 0, 0, 127, 2, Sellcondru_Dusaan 6 | P 5934.289, 9614.4385, 17.8196, 0, 0, 127, 2, Kellewin_Stillwater 7 | P -2735.9475, 6219.132, 1.5227, 0, 0, 127, 2, Perican_Fallhammer 8 | P -2669.579, -7369.1719, 10.7068, 0, 0, 127, 2, Farstara_Dio 9 | P 4934.6426, -5880.1112, 10.556, 0, 0, 127, 2, Salco_Dagor 10 | P 4337, 5197, 2.2639, 0, 0, 240, 2, Mircus_(Bar) 11 | P 3439, 4868, 15.5946, 0, 0, 240, 2, Seloris_(M) 12 | P 2276, 11594, 71.1715, 0, 0, 240, 2, Portik_(Bar) 13 | P -2795, 5064, 286.128, 0, 0, 240, 2, Iksar_Master_(GM_Monk) 14 | P 2235.2471, 11566.537, 68.3971, 0, 0, 240, 2, Omat_Vastsea 15 | -------------------------------------------------------------------------------- /data/maps/map_files/Tox_1.txt: -------------------------------------------------------------------------------- 1 | P 362, -1039, -54.2644, 0, 0, 0, 3, Martyn_(Spells) 2 | P -1007, -2273, -25.9637, 0, 0, 0, 3, Islan_(Merchant) 3 | P -985, -2218, -28.3683, 0, 0, 0, 3, Win_(Smith) 4 | P 732, -1759, -70.8301, 0, 0, 0, 3, Tran_(Merchant) 5 | P 1129, -2195, -13.6539, 0, 0, 0, 3, Xylania_(Merchant) 6 | P 1108, -2166, -13.6539, 0, 0, 0, 3, Quana_(Baking) 7 | P -400, -2101, -43.2468, 0, 0, 0, 3, Stylla_(Merchant) 8 | P -419, -2115, -43.2468, 0, 0, 0, 3, Emil_(Merchant) 9 | P 912, 1515, -40.6118, 0, 0, 0, 3, Nexus_Scion 10 | -------------------------------------------------------------------------------- /data/maps/map_files/Trakanon_1.txt: -------------------------------------------------------------------------------- 1 | P -2781.5022, 2798.3357, -341.7273, 0, 0, 240, 2, Crusader_Vragor 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Unrest_1.txt: -------------------------------------------------------------------------------- 1 | P -97.6842, -516.1713, -62.2824, 0, 0, 127, 2, Dibster'Dibs'_Biroboddle(17th_Anniversary) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Veeshan_1.txt: -------------------------------------------------------------------------------- 1 | P 910.8230, -288.9381, 459.8143, 0, 0, 240, 2, Vrabbit_Xloren 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Velketor_1.txt: -------------------------------------------------------------------------------- 1 | P 101.5315, -121.8927, -33.8937, 0, 0, 127, 2, Brumen_Firehammer 2 | P 101.8734, -146.1538, -33.8937, 0, 0, 127, 2, Dlemin_Whiteforge 3 | P 97.5604, -174.2961, -33.8937, 0, 0, 127, 2, Bjoron_Axefall 4 | P 105.3014, -168.8576, -33.8937, 0, 0, 127, 2, Khelem_Alestone 5 | P 104.9658, -178.3377, -33.8937, 0, 0, 127, 2, Drella_Stonegrinder 6 | P 96.7853, -77.7138, -33.8937, 0, 0, 127, 2, Bryma_Loftaxe 7 | P 103.794, -100.1487, -33.8937, 0, 0, 127, 2, Frekka_Alebringer 8 | -------------------------------------------------------------------------------- /data/maps/map_files/Wakening_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Wakening_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/Warrens_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/Warrens_1.txt -------------------------------------------------------------------------------- /data/maps/map_files/WarsliksWood_1.txt: -------------------------------------------------------------------------------- 1 | P -803.2998, 1038.5802, -15.833, 0, 0, 127, 2, Gellrazz_Scalerunner 2 | -------------------------------------------------------------------------------- /data/maps/map_files/Westwastes_1.txt: -------------------------------------------------------------------------------- 1 | P -649.9190, -1369.5195, -198.1801, 0, 127, 0, 2, a_temple_custodian 2 | P -641.3785, -1387.1722, -197.4678, 0, 0, 0, 1, click 3 | P 2914.1721, 1123.5156, -31.7480, 0, 0, 240, 2, Makil_Rargon 4 | P 4710.6899, -2464.6799, 134.2213, 0, 0, 240, 2, The_Dragon_Sage 5 | -------------------------------------------------------------------------------- /data/maps/map_files/airplane_3.txt: -------------------------------------------------------------------------------- 1 | P -1080.2561, -377.9945, 6.6932, 240, 0, 0, 3, The_Storm_Mistress 2 | P -290.12, -608.4758, -58.8417, 240, 0, 0, 3, Gorgalosk 3 | P 659.3859, -384.892, 143.244, 240, 0, 0, 3, Eternal_Spirit(Roam) 4 | P 745.3777, -702.7157, 174.453, 240, 0, 0, 3, The_Gate_Caller(Roam) 5 | P -746.5933, 229.4756, 406.9449, 240, 0, 0, 3, The_Spiroc_Lord 6 | P -609.6295, -1372.4004, -663.9951, 240, 0, 0, 3, a_thunder_spirit_princess 7 | P 1366.998, 267.4076, 1226.8841, 240, 0, 0, 3, Eye_of_Veeshan 8 | -------------------------------------------------------------------------------- /data/maps/map_files/akanon_2.txt: -------------------------------------------------------------------------------- 1 | P 142, -711, -55.9677, 0, 0, 0, 1, Pottery_Wheel 2 | P 148, -713, -55.9677, 0, 0, 0, 1, Kiln 3 | P -156.501, -773.5013, -27.9989, 0, 0, 0, 1, Loom 4 | P 913.3502, -1250.543, -31.7981, 0, 0, 0, 1, Brew_Barrel 5 | P 829, -1279, -39.1216, 162, 64, 0, 3, Ak`Anon_Zoo 6 | P 607.113, -1207.8921, -41.6542, 127, 64, 0, 3, Asset_of_Deep_Musing 7 | P 526.1331, -1231.1261, -37.6854, 0, 0, 127, 2, Lewis_Reldnok(Pal2.0) 8 | P 516.6236, -2027.181, -183.729, 0, 0, 127, 2, Clockwork_VIIX(Ench1.0) 9 | P 579, -2024, -183.9364, 0, 0, 127, 2, Rilgor_(GM)(Ench1.0) 10 | P 261.4257, -2012.223, -194.3497, 0, 0, 127, 2, Silox_Azrix(Drd1.0) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/akanon_3.txt: -------------------------------------------------------------------------------- 1 | P 431, -848, -31.9989, 0, 127, 127, 2, Baxok_(GM_Wa) 2 | P 1026, -1108, 28.1, 0, 127, 127, 2, Wuggan_(GM_Mag) 3 | P 469, -836, -31.9989, 0, 127, 127, 2, Jarah_(GM_War) 4 | P 979, -1096, 28.1, 0, 127, 127, 2, Juline_(GM_Ench) 5 | P 1010, -1076, 28.1, 0, 127, 127, 2, Nonnie_(GM_Ench) 6 | P 990, -1049, 28.1, 0, 127, 127, 2, Tobon_(GM_Wiz) 7 | P 1008, -1046, 28.1, 0, 127, 127, 2, Useah_(GM_Wiz) 8 | P 598, -1240, -55.9677, 0, 127, 127, 2, Welno_(GM_Rog) 9 | P 615, -1168, -55.9677, 0, 127, 127, 2, Lobal_(GM_Rog) 10 | P 407, -2101, -183.9364, 0, 127, 127, 2, Eonis_(GM_Nec) 11 | P 388, -2082, -183.9364, 0, 127, 127, 2, Dewis_(GM_Nec) 12 | P 388, -2100, -183.9364, 0, 127, 127, 2, Evah_(GM_Cle) 13 | P 590, -2022, -183.9364, 0, 127, 127, 2, Vaenor_(GM_Mag) 14 | P 509, -2069, -183.9364, 0, 127, 127, 2, Kaxon_(GM_Rog) 15 | P 503, -2108, -183.9364, 0, 127, 127, 2, Naygog_(GM_War) 16 | P 595, -2031, -183.9364, 0, 127, 127, 2, Velena_(GM_Wiz) 17 | P 470, -902, -31.9989, 0, 127, 127, 2, Manik_(GM_War) 18 | P 441, -847, -31.9989, 0, 127, 127, 2, Narron_(GM_War) 19 | P 978, -1029, 29.1, 0, 127, 127, 2, Larkon_(GM_Mag) 20 | P 454, -2061, -183.9364, 0, 127, 127, 2, Derthix_(GM_Cle) 21 | P 1039, -1081, 28.1, 0, 127, 127, 2, Xalirilan_(GM_Wiz) 22 | P 538, -1183, -41.9677, 0, 127, 127, 2, Digetha_(GM_Cle) 23 | P 577, -1191, -34.999, 0, 127, 127, 2, Iony_(GM_Cle) 24 | P 428, -2147, -183.9364, 0, 127, 127, 2, Garret_(GM_SK) 25 | -------------------------------------------------------------------------------- /data/maps/map_files/arena_2.txt: -------------------------------------------------------------------------------- 1 | P -502.0000, -59.0000, -10.0000, 0, 0, 0, 1, Quick_Exit 2 | P -2.0000, -83.0000, 5.0000, 127, 64, 0, 2, Arena_(PVP)_area 3 | -------------------------------------------------------------------------------- /data/maps/map_files/arena_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/arena_3.txt -------------------------------------------------------------------------------- /data/maps/map_files/befallen_2.txt: -------------------------------------------------------------------------------- 1 | P -52.7319, 566.7681, -41.8104, 0, 0, 0, 1, Locked_door 2 | P 80.2146, 272.9780, -13.9979, 0, 0, 0, 1, Locked_door 3 | P 174.4120, 624.6937, -69.9667, 0, 0, 0, 1, Locked_door 4 | -------------------------------------------------------------------------------- /data/maps/map_files/befallen_3.txt: -------------------------------------------------------------------------------- 1 | P -96.8892, 492.2778, -79.3460, 127, 0, 0, 2, Priest_Amiaz(Mnk1.0) 2 | P 205.9632, 814.6787, -69.9667, 240, 0, 0, 2, Boondin_Babbinsbort 3 | P -103.5113, 364.3983, -13.9979, 240, 0, 0, 2, Skeleton_Lrodd 4 | P 85.0000, 75.0000, 0.0000, 240, 0, 0, 2, Gynok_Moltar 5 | P -83.2245, 484.4990, -80.7746, 127, 0, 0, 2, the_thaumaturgist(Mnk1.0) 6 | -------------------------------------------------------------------------------- /data/maps/map_files/beholder_2.txt: -------------------------------------------------------------------------------- 1 | P 593.3599, -433.2574, -71.1927, 0, 0, 0, 1, Emerald-Tipped_Staff(GS)Wiz 2 | -------------------------------------------------------------------------------- /data/maps/map_files/beholder_3.txt: -------------------------------------------------------------------------------- 1 | P 1785.328, -532.8949, 3.6364, 240, 0, 0, 2, Brahhm* 2 | P 1439, -671, 4.2999, 240, 0, 0, 2, Spinflint*HighSun 3 | P 413.6506, -886.3882, -8.5704, 240, 0, 0, 2, Yymp_the_infernal* 4 | P 583.8831, -517.303, -74.4354, 240, 0, 0, 2, King_Xorbb(random_across_the_zone) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/blackburrow_2.txt: -------------------------------------------------------------------------------- 1 | P -93.302, 54.6, -3.491, 240, 0, 0, 1, Trap 2 | P -467.7352, 183.4654, -155.54, 0, 0, 0, 2, water_edge 3 | P 75.9145, 2.4319, -227.6402, 0, 0, 0, 1, Silver_Ring(GS) 4 | P 127.4309, -262.9402, -37.8817, 0, 0, 127, 2, commander 5 | P 343.8758, -24.2901, -23.998, 0, 0, 127, 2, commander 6 | -------------------------------------------------------------------------------- /data/maps/map_files/blackburrow_3.txt: -------------------------------------------------------------------------------- 1 | P -363.8931, -252.5994, -128.689, 240, 0, 0, 2, Refugee_Splitpaw 2 | P 38.3584, 96.4416, -37.8417, 240, 0, 0, 2, Splitpaw_Commander 3 | P -149.306, -196.7492, -58.2627, 240, 0, 0, 2, Lord_Elgnub 4 | -------------------------------------------------------------------------------- /data/maps/map_files/burningwood_2.txt: -------------------------------------------------------------------------------- 1 | P -1123.7391, -1159.9808, -203.8183, 127, 64, 0, 2, Forest_Giants 2 | P 1105.167, 858.3895, -604.1065, 127, 64, 0, 2, Meteor 3 | P 709.623, 70.1919, -641.5217, 0, 0, 127, 2, Fiella_Fallstine 4 | P 3640.1975, 369.6129, -345.7952, 127, 0, 0, 2, Nezekezena 5 | P 3503.5776, 860.6678, -294.333, 127, 0, 0, 2, Nezekezena 6 | P 2551.6898, 480.88, -373.7409, 127, 0, 0, 2, Nezekezena 7 | P 3946.3438, 1215.1126, -54.8881, 0, 0, 127, 2, a_sarnak_imitator(Ench1.0) 8 | P -2862.4682, -3238.3993, -158.8757, 0, 0, 127, 2, Telin_Darkforest(Drd/Rng1.0) 9 | P 0.4669, -3001.1134, -260.3616, 127, 0, 0, 2, a_crippled_wurm(Druid2.0) 10 | P -1499.7625, 2000.7648, -379.6012, 127, 0, 0, 2, Ixiblat_Fer(Cle1.0) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/burningwood_3.txt: -------------------------------------------------------------------------------- 1 | P 1122.9384, 676.4008, -563.548, 127, 0, 0, 2, Slixin_Klex 2 | P 2826.9135, 536.2874, -373.7674, 240, 0, 0, 2, Phurzikon* 3 | P 4007.7363, -6372.4301, -234.466, 0, 0, 0, 2, Atheling_Plague 4 | P -1192.6085, -1101.1283, -205.235, 127, 0, 0, 2, Gorgash 5 | P 2355.6702, -1709.3202, -256.9272, 127, 0, 0, 2, Nadira* 6 | P 3948.2856, 1145.3152, -52.398, 240, 0, 0, 2, Korasal_Klyseer 7 | P -1167.579, -902.6405, -270.2667, 240, 0, 0, 2, Gorgul_Paclock 8 | P -828.8067, -66.6864, -379.7694, 240, 0, 0, 2, Gullerback 9 | P -1201.199, -220.1641, -379.651, 240, 0, 0, 2, Gullerback 10 | P -865.5001, -170.46, -379.7049, 240, 0, 0, 2, Gullerback 11 | -------------------------------------------------------------------------------- /data/maps/map_files/butcher_2.txt: -------------------------------------------------------------------------------- 1 | P 1555.7738, -1304.3572, 6.9940, 0, 0, 0, 1, Gyrospire_Beza 2 | P 2486.0000, 1084.0000, 0.0000, 127, 64, 0, 2, Wayfarer_Camp 3 | P 1814.0000, -2088.0000, 0.0000, 127, 64, 0, 2, Goblins 4 | P -695.0000, -244.0000, 0.0000, 127, 64, 0, 2, Goblins 5 | P -1675.0000, -254.0000, 0.0000, 127, 64, 0, 2, Bandits 6 | P -2910.0000, 1537.0000, 0.0000, 127, 64, 0, 2, Dwarves 7 | P -2063.0000, 2159.0000, 0.0000, 127, 64, 0, 2, Druid_Rings 8 | P -884.0000, 1540.0000, 0.0000, 127, 64, 0, 2, Skels 9 | P 184.0000, 2077.0000, 0.0000, 127, 64, 0, 2, Goblins 10 | P 1456.0000, -443.0000, 0.0000, 127, 64, 0, 2, Orcs 11 | P 599.0000, 545.0000, 0.0000, 127, 64, 0, 2, Bandits 12 | P 2279.0000, -692.0000, 0.0000, 127, 64, 0, 2, Chessboard 13 | P 2069.0000, 298.0000, 0.0000, 127, 64, 0, 2, Goblins 14 | P -3018.1670, -1054.9738, 9.4375, 127, 64, 0, 3, Faydwer_Port_Authority 15 | P -1056.7655, -1366.6755, 191.2797, 0, 0, 127, 2, Durkis_Battlemore 16 | P -2840.5193, 1494.1660, -3.5160, 0, 0, 127, 2, Kandin_Firepot(Wiz1.0) 17 | P -2119.4250, -2330.8975, -3.4041, 0, 0, 127, 2, Gridbar_Galund(War1.5) 18 | P 21.4684, 892.3997, 0.7985, 0, 0, 127, 2, Guard_Mandin(Pal2.0) 19 | P -2422.8330, -3108.3850, 34.5307, 0, 0, 127, 2, Walnan(Mage_Epic) 20 | P 2705.7000, -1116.8701, -0.6667, 127, 0, 0, 2, Signus_Boran(Pal2.0)7pm 21 | P -3009.1873, -1009.8618, 9.7698, 0, 0, 127, 2, Vedico_Winswisper(Brd1.0) 22 | P 2505.6050, 1109.3639, -1.8628, 0, 0, 127, 2, Vual_Stoutest(LDoN) 23 | -------------------------------------------------------------------------------- /data/maps/map_files/butcher_3.txt: -------------------------------------------------------------------------------- 1 | P -3192.4004, -1254.2220, -43.1854, 240, 0, 0, 2, Glubbsink 2 | -------------------------------------------------------------------------------- /data/maps/map_files/cabeast_2.txt: -------------------------------------------------------------------------------- 1 | P 83.5559, -49.9194, -1.999, 0, 0, 0, 1, Loom 2 | P 315.8711, -219.9071, -1.999, 0, 0, 0, 1, Forge 3 | P 34.8211, 377.6646, 0.1, 0, 0, 0, 1, Forge 4 | P 12.628, -685.5522, -1.999, 0, 0, 0, 1, Brew_Barrel 5 | P -147.5141, -522.2187, 2.9, 0, 0, 0, 1, Oven 6 | P 195.1629, -232.4903, -1.999, 0, 0, 0, 1, Pottery_Wheel 7 | P 218.6513, -259.5941, -1.999, 0, 0, 0, 1, Kiln 8 | P 25.5625, 531.633, 55.9697, 0, 0, 0, 1, Forge 9 | P -115.5764, -460.9777, 1.2, 0, 0, 127, 2, Tikesh 10 | P 50.4669, -247.3632, 1.2, 0, 0, 127, 2, Zreksan 11 | P 341.905, -387.7683, 15.5458, 0, 0, 0, 1, key_(GS) 12 | P 275.5785, -1004.958, 29.534, 0, 127, 127, 2, Tezrisz_Sirrik 13 | P 293, -1149, -27.9981, 127, 0, 0, 2, Vessel_Drozlin_(Ench1.0)Spells) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/cabeast_3.txt: -------------------------------------------------------------------------------- 1 | P -30, 455, 55.9697, 0, 127, 127, 2, Vygan_(GM_Warrior) 2 | P 125, 658, 17.1, 0, 127, 127, 2, Eator_(GM_Warrior) 3 | P 317, 425, 28.1, 0, 127, 127, 2, Kyg_(GM_Warrior) 4 | P 47.37, -1081, -27.5554, 0, 127, 127, 2, Dexl_(GM_Shaman) 5 | P 195, -783, 14.9, 0, 127, 127, 2, Granix_(GM_Shaman) 6 | P 189, -1014, 69.9697, 0, 127, 127, 2, Xog_(GM_Shadow_Knight) 7 | P 205, -1059, 41.9697, 0, 127, 127, 2, Vuzx_(GM_Beastlord) 8 | P 151, -1005, 41.9697, 0, 127, 127, 2, Qyzar_(GM_Shadow_Knight) 9 | P 189, -1044, 18.1, 0, 127, 127, 2, Vek_(GM_Shaman) 10 | P 173, -1062, 41.9697, 0, 127, 127, 2, Korzin_(GM_Shadow_Knight) 11 | P 51, -285, 1.9, 0, 127, 127, 2, Bain_(GM_Monk) 12 | P -37, -458, 1.9, 0, 127, 127, 2, Niska_(GM_Monk) 13 | P -122, -387, 4.1, 0, 127, 127, 2, Raska_(GM_Monk) 14 | P 124, 248, 28.1, 0, 127, 127, 2, Dal_(GM_Warrior) 15 | P 30, -420, 3.9, 0, 127, 127, 2, Glox_(GM_Monk) 16 | -------------------------------------------------------------------------------- /data/maps/map_files/cabwest_2.txt: -------------------------------------------------------------------------------- 1 | P -374.5298, 539.927, 4.1, 127, 64, 0, 3, Arena 2 | P -778, -317, 72.9697, 127, 64, 0, 3, Necromancer_Guild 3 | -------------------------------------------------------------------------------- /data/maps/map_files/cabwest_3.txt: -------------------------------------------------------------------------------- 1 | P -536, 88, -12.999, 0, 127, 127, 3, Sartar_(GM_Monk) 2 | P 118, 343, -55.9677, 0, 127, 127, 3, Marthor_(GM_Monk) 3 | -------------------------------------------------------------------------------- /data/maps/map_files/cauldron_2.txt: -------------------------------------------------------------------------------- 1 | P 2141.3789, 745.1170, 152.9868, 127, 64, 0, 1, Orc_Camp 2 | P 738.3291, 889.8160, -432.5658, 0, 0, 0, 1, Rod(Spoke_of_Tarton's_Wheel_-_Dena) 3 | P 939.8178, 1752.1304, 146.9569, 0, 0, 127, 2, Llara 4 | P 573.9990, 1600.3079, 58.1377, 0, 0, 127, 2, Corrallia_Moru 5 | P -209.3442, 1596.5090, 179.2057, 0, 0, 127, 2, Treanik_Ireblade(Ber1.0) 6 | P -346.3238, 333.6770, 58.8755, 0, 0, 127, 2, Brysell_Geogo 7 | P -114.6484, -427.8523, 74.7754, 0, 0, 127, 2, Sigan 8 | P -98.2896, -413.2350, 73.1376, 0, 0, 127, 2, Ghilanbiddle 9 | P -86.2730, -419.1607, 74.6992, 0, 0, 127, 2, Nyrien 10 | P -89.7985, -445.9769, 74.1209, 0, 0, 127, 2, Elmion 11 | P 2025.3802, 468.3550, 57.9849, 0, 0, 127, 2, Jinalis_Andir(Mag1.0) 12 | P 974.5882, 393.1027, 97.6521, 0, 0, 240, 2, Grimpl 13 | P 946.7532, 368.5224, 98.7980, 0, 0, 127, 2, Gundalthur 14 | P 826.5266, 242.6853, 244.4347, 0, 0, 240, 2, Cylen_(M) 15 | P 826.3680, 235.6928, 242.5150, 0, 0, 240, 2, Twedwr_(M) 16 | P 771.3582, 346.3888, 106.5493, 0, 0, 127, 2, Nisha_Lightbrook'I_am_ready 17 | P 1133.8119, 585.1666, 4.5647, 0, 0, 127, 2, Hrellmoor 18 | P 1005.9004, 1010.2432, -297.5930, 0, 0, 0, 1, Old_Pipe(GS)Wiz 19 | P 1243.0098, 1667.5972, 235.9591, 0, 0, 127, 1, Henai_Silentwalker(LDoN) 20 | -------------------------------------------------------------------------------- /data/maps/map_files/cauldron_3.txt: -------------------------------------------------------------------------------- 1 | P -35.9324, -67.8456, -8.8961, 240, 0, 0, 2, Flotsam* 2 | P 329.8962, -185.9433, -27.4068, 240, 0, 0, 2, Jetsam* 3 | P 166.2778, -683.2274, 37.3770, 240, 0, 0, 2, Squallslither* 4 | P 1877.5751, -491.1872, 20.1021, 240, 0, 0, 1, Barnacle_Bones* 5 | P 913.4310, 1768.1077, 153.1128, 240, 0, 0, 2, Bilge_Farfathom 6 | P 1508.5770, 532.2255, -300.1496, 127, 0, 0, 2, Praklion_of_the_Cauldron(Ber1.0) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/cazicthule_2.txt: -------------------------------------------------------------------------------- 1 | P 445, -250, 0, 127, 64, 0, 2, Wizard_Spires 2 | P 363.6618, -427.9567, 0.1582, 0, 0, 0, 1, Cryptic_Page 3 | P 361.8181, -864.2576, 0.5906, 0, 0, 127, 2, Ikpug_Giblod(BST1.5) 4 | P 283.8999, -947.9011, 6.178, 0, 0, 0, 1, face_SE_to_Ikpug 5 | P 63.2715, -979.9865, -77.7972, 127, 0, 0, 2, a_sickly_mosquito(Rng1.5) 6 | -------------------------------------------------------------------------------- /data/maps/map_files/charasis_2.txt: -------------------------------------------------------------------------------- 1 | P 566.7228, -311.5507, 18.1582, 0, 0, 0, 1, Blood_Encrusted_Gloves(GS) 2 | P 615.3845, -70.2682, 23.5984, 0, 0, 0, 1, Book_of_Bindings(GS)Mag1.5) 3 | P 81.719, 566.443, 0.1582, 0, 0, 0, 1, Coin_Depicting(GS) 4 | P -621.3277, 143.3001, 19.5206, 0, 0, 0, 1, Dismembered_Thumb(GS) 5 | P -93.6614, -349.113, 0.2, 0, 0, 0, 1, Sacrificial_Robe_Clasp 6 | P -153.714, 570.14, 1.5546, 0, 0, 0, 1, Mulated_forearm 7 | P 404.4925, -27.5412, 19.5442, 0, 0, 127, 2, Tivnesh 8 | P 169.73, -51.6936, 18.19, 0, 0, 127, 2, Tivnesh 9 | P 294.9377, -138.8894, 18.19, 0, 0, 127, 2, Tivnesh 10 | P -122.7176, -547.6887, 0.1582, 0, 0, 127, 2, Ghost_of_Mera(RNG_1.5) 11 | P -243.8631, 133.5628, -164.911, 0, 0, 0, 1, Cryptic_Page(GS)Ench1.5) 12 | P 14.654, -120.3729, -133.1034, 0, 0, 0, 1, Section_of_Parchment(Mnk1.5) 13 | -------------------------------------------------------------------------------- /data/maps/map_files/chardok_2.txt: -------------------------------------------------------------------------------- 1 | P 231.5899, 558.4228, -144.9162, 240, 0, 0, 2, ?#/! 2 | P 154.4976, 539.9145, -127.8731, 240, 0, 0, 1, Trap 3 | P 80.1484, 447.251, -123.7792, 240, 0, 0, 1, Trap 4 | P -965.251, 845.1525, -231.925, 240, 0, 0, 1, Trap 5 | P -827.8549, 518.9152, -139.9353, 240, 0, 0, 1, Trap 6 | P -753.466, 520.3398, -139.9353, 240, 0, 0, 1, Trap 7 | P -951.3632, 840.3434, -219.9042, 0, 0, 0, 1, Locked_Door 8 | P -1128.7309, 648.3427, -159.7792, 0, 0, 0, 1, Locked_Door 9 | P -1212.5579, 561.5546, -159.7792, 0, 0, 0, 1, Locked_Door 10 | P 106.5386, -505.4669, -293.8727, 0, 0, 127, 2, Niblek(Q) 11 | P -374.5034, -163.6565, 69.9706, 0, 0, 0, 1, Chokidai_Scale_-_GS 12 | P -933.403, 534.7875, -159.9353, 240, 0, 0, 1, Councilman_Ysabria_III 13 | P -937.2023, 504.511, -159.9353, 240, 0, 0, 1, Councilman_Laanari_III 14 | P 112.6636, 289.4476, -289.581, 127, 0, 0, 2, Rusdai 15 | P 230.1826, 19.3381, -259.9041, 127, 0, 0, 2, Rusdai 16 | P -934.6028, 888.3309, -269.9041, 127, 0, 0, 2, Di'Zok_Noble 17 | P 25.8594, 327.6553, -118.848, 127, 0, 0, 2, an_Iksar_Betrayer(Mnk1.0) 18 | -------------------------------------------------------------------------------- /data/maps/map_files/citymist_2.txt: -------------------------------------------------------------------------------- 1 | P -159.7033, -143.1227, 270.642, 240, 0, 0, 1, TRAP 2 | P 112.8961, 160.9967, 270.643, 0, 0, 0, 1, locked_door 3 | P -140.4573, -136.3555, 270.643, 0, 0, 0, 1, locked_door 4 | P -442.473, -0.3555, 0.1595, 0, 0, 0, 1, Elevator_-_Up 5 | P -430.1241, -0.6384, 73.6697, 0, 0, 0, 1, Elevetor_-_Down 6 | P 619.9512, 245.3276, 0.1582, 0, 0, 0, 1, Vine_Woven_Basket 7 | P 637.9409, 130.6852, 75.5112, 0, 0, 0, 1, Brewing_Barrel 8 | P 370.9499, -132.715, -16.4635, 0, 0, 0, 1, Icon_of_the_Scale(Shm_1.0) 9 | P 437.4227, 227.2235, 1.5341, 127, 0, 0, 2, Spectral_Courier(Shm_1.0) 10 | P 519.4636, 157.2942, 1.5407, 127, 0, 0, 2, Spectral_courier(Shm_1.0) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/cobaltscar_3.txt: -------------------------------------------------------------------------------- 1 | P -794.9745, 742.1833, 72.6482, 240, 0, 0, 2, a_bulthar_herdleader 2 | P 724.9589, 1055.9070, 296.2212, 240, 0, 0, 2, Azureake* 3 | P 1611.5740, 414.2110, 295.3113, 240, 0, 0, 2, Yvolcarn 4 | P -378.8591, -10.8648, -30.5798, 127, 0, 0, 2, Kelorek`Dar* 5 | -------------------------------------------------------------------------------- /data/maps/map_files/crushbone_2.txt: -------------------------------------------------------------------------------- 1 | P 257.9916, -116.2321, -20.484, 0, 0, 127, 2, slave 2 | P 104.8465, -226.5568, -13.1844, 0, 0, 127, 2, slave 3 | P 24.8384, -281.3498, -20.614, 0, 0, 127, 2, slave 4 | P -505.9553, -217.8111, -21.6341, 0, 0, 127, 2, slave 5 | P -491.4302, -122.5464, -16.8415, 0, 0, 127, 2, slave 6 | P -375.2567, -79.1046, -16.8415, 0, 0, 127, 2, slave 7 | P -386.8808, -4.362, -16.8415, 0, 0, 127, 2, slave 8 | P -395.307, -0.343, -16.9939, 127, 0, 0, 2, Rondo_Dunfire(Q) 9 | P -755.9587, -42.2749, -20.9987, 0, 0, 127, 2, Dwarven_Smith 10 | P -751.57, -83.795, -20.9987, 0, 0, 127, 2, Elven_Priest 11 | P 134.657, -270.2239, -31.6617, 0, 0, 127, 2, Retlon_Brenclog(Q) 12 | P 21.1915, -78.6415, -46.4667, 99, 0, 255, 1, Blood_Suspension 13 | P 164.3213, -256.9282, 1.5521, 0, 0, 0, 2, Retlon_Brenclog 14 | P -153.1785, -154.891, 16.3, 127, 0, 0, 2, Orc_Messenger(Pal2.0) 15 | -------------------------------------------------------------------------------- /data/maps/map_files/crushbone_3.txt: -------------------------------------------------------------------------------- 1 | P -435.4082, -107.1961, -16.8415, 240, 0, 0, 3, Orc_Warden 2 | P 60.6756, -86.1029, 30.1582, 240, 0, 0, 3, The_Phophet 3 | P 74.6016, -86.8379, 30.1582, 240, 0, 0, 3, Emperor_Crush 4 | P -716.3718, 90.6273, -29.8415, 240, 0, 0, 3, Orc_Scoutman 5 | P 150.715, -238.459, 0.1, 240, 0, 0, 2, orc_taskmaster 6 | P -21.1814, -164.7603, 19.2439, 240, 0, 0, 3, Lord_Darish 7 | P -325.932, -268.771, 0.1, 240, 0, 0, 3, The_Prophet 8 | P -114.8469, 163.55, 84.9458, 240, 0, 0, 3, Orc_Trainer 9 | P -350.3342, -327.899, 1.5374, 240, 0, 0, 2, an_orc_thaumaturgist 10 | P -177.5872, -133.623, 1.549, 240, 0, 0, 2, orc_warlord*(all_orcs_r_PH) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/crystal_2.txt: -------------------------------------------------------------------------------- 1 | P 942.6925, 591.9642, -538.7789, 0, 0, 0, 1, Cryptic_Page(GS)Ench1.5) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/crystal_3.txt: -------------------------------------------------------------------------------- 1 | P 26.4629, 166.3508, -541.7788, 240, 0, 0, 2, a_hollow_crystal 2 | P 943.5502, 593.2410, -537.2532, 240, 0, 0, 2, a_crystal_purifier 3 | P 76.8131, 174.4122, -554.2169, 240, 0, 0, 2, a_life_leech 4 | P 296.8367, 201.9989, -556.2418, 240, 0, 0, 2, a_terror_carver 5 | P 181.1616, 208.9861, -556.2359, 240, 0, 0, 2, a_hollow_crystal 6 | P 118.4132, 205.1304, -556.2359, 240, 0, 0, 2, a_life_leech 7 | P 931.4588, 552.1792, -538.7780, 240, 0, 0, 2, a_crystal_lurker 8 | P -63.5561, 449.8270, -511.4871, 240, 0, 0, 2, a_life_leech 9 | P 64.1218, 598.9633, -200.6920, 240, 0, 0, 2, a_gem_collector 10 | P 88.9116, 374.1207, -460.2785, 240, 0, 0, 2, a_focus_gem 11 | -------------------------------------------------------------------------------- /data/maps/map_files/dalnir_2.txt: -------------------------------------------------------------------------------- 1 | P 546.1126, -10.2247, -195.9042, 240, 0, 0, 2, 1_Way 2 | P -30.6804, 229.5394, -181.9353, 0, 0, 0, 1, Forge 3 | P 748.6304, -3.6808, -96.2103, 240, 0, 0, 1, Floor_trap 4 | P 337.4526, -120.7924, -181.9353, 0, 0, 0, 1, A_Journal_Entry50_(GS) 5 | P 451.7235, -161.8025, 0.2000, 0, 0, 0, 1, A_Journal_Entry47_(GS) 6 | P -54.5120, 17.3080, -181.6179, 0, 0, 0, 1, Lost_Scroll_(GS)_Ench1.0 7 | P 731.1359, -97.1830, 0.2000, 240, 0, 0, 2, 1_Way_Crypt_Entrance_to_Sublevel_2 8 | P 196.9731, 218.2276, -181.4918, 0, 0, 0, 1, Sarnak_Hide_(GS) 9 | P 753.8333, 51.6732, -96.4214, 96, 0, 255, 1, Cursed_Arrowheads 10 | P 607.9614, -174.5592, -194.3779, 127, 64, 0, 2, Church 11 | P 359.1451, -137.6700, -180.4188, 127, 64, 0, 2, Crusader_Room 12 | P 137.8335, -24.9379, -179.9453, 127, 64, 0, 2, Labratory 13 | P 77.1115, 94.9321, -175.4244, 127, 64, 0, 2, Dining_Room 14 | P 78.5480, 257.9006, -180.3804, 127, 64, 0, 2, Overseer_Room 15 | P 314.1711, -393.4968, -179.7641, 127, 64, 0, 2, BBQ_Room 16 | P 683.5009, 84.7348, -194.3609, 127, 64, 0, 2, Statues_Room 17 | P 971.8819, -220.3874, -82.4194, 0, 0, 0, 1, Journal_Entry 18 | P 685.1489, 46.5292, -195.9042, 0, 0, 0, 1, Journal_Entry 19 | -------------------------------------------------------------------------------- /data/maps/map_files/dalnir_3.txt: -------------------------------------------------------------------------------- 1 | P 698.5914, 49.5335, -194.3680, 240, 0, 0, 2, an_undead_blacksmith 2 | P 610.9235, -216.4940, -192.4145, 240, 0, 0, 2, Kly_Imprector#1 3 | P 121.4081, -30.7716, -179.9415, 240, 0, 0, 2, Kly_Imprector 4 | P 904.3559, -91.3097, -82.9667, 240, 0, 0, 2, lumpy_goo 5 | P -38.4581, 217.5955, -181.9353, 0, 0, 0, 1, a_tormented_tradesman 6 | P -28.2422, 233.2235, -181.9353, 0, 0, 0, 1, Grand_Forge_of_Dalnir 7 | P 77.3366, 308.5240, -181.9353, 240, 0, 0, 2, Kly_Overseer 8 | P 339.3473, -149.5608, -181.9353, 240, 0, 0, 2, a_spectral_crusader/pen/revenant 9 | P 406.2565, -34.7233, -185.8716, 240, 0, 0, 2, a_coerced_crusader* 10 | -------------------------------------------------------------------------------- /data/maps/map_files/dreadlands_1.txt: -------------------------------------------------------------------------------- 1 | P 4937.2974, -265.1931, -12.8496, 0, 0, 240, 2, Hoobert_Flinkl(T) 2 | P 4359.9673, -274.7375, 17.9057, 127, 0, 0, 2, Veltar 3 | P -9632.8672, -499.9909, 1061.9539, 0, 0, 240, 2, Loremaster_Yoakum_(Q) 4 | P -9659.2178, -3069.551, 1045.4697, 0, 0, 240, 2, Nexus_Scion 5 | P -9140, -780, 1064.634, 0, 0, 240, 2, Klok_(M) 6 | P -8876.2227, -364.305, 1064.7829, 0, 0, 127, 2, Raobez_Kraykru 7 | P -8930.706, -389.8179, 1064.782, 0, 0, 127, 2, Korriz_Stillripple 8 | P -8892, -1123.1596, 1061.3761, 0, 0, 127, 2, Fallstan_Mythmoor 9 | P -8908.5166, -1223.2324, 1061.3761, 0, 0, 127, 2, Bosellana_Skyspeed 10 | P 1809.4435, -301.9458, 24.6104, 0, 0, 127, 2, Matranisu_Slad 11 | -------------------------------------------------------------------------------- /data/maps/map_files/dreadlands_2.txt: -------------------------------------------------------------------------------- 1 | P 5009, -1766, 0, 127, 64, 0, 2, Spiders 2 | P 5394, -1272, 0, 127, 64, 0, 2, Skels 3 | P 4874, 1420, 0, 127, 64, 0, 2, Spiders 4 | P 2983, 2206, 0, 127, 64, 0, 2, Spiders 5 | P -1818, 507, 0, 127, 64, 0, 2, Giant_Fort 6 | P -8738.661, -778.2809, 1060.9399, 0, 0, 0, 1, Furious_Jailor/Trapped_Spirit 7 | P -7698.4399, -2497.3018, 1046.945, 127, 64, 0, 3, Druid_Circle 8 | P -4590.5068, -2435.5653, 1041.592, 0, 0, 0, 1, Frozen_Soulstone 9 | P -9791.8925, -775.3328, 1064.2509, 127, 64, 0, 3, Bard_Retelling 10 | P -10098.673, -1847.7505, 1006.7202, 0, 0, 0, 1, Remnant_Spirit*Time_Torn_Acolyte 11 | P -6776.4771, -19.758, 1048.8788, 127, 0, 0, 2, a_loyal_follower 12 | P -9658, -776.4596, 1064.2509, 0, 0, 127, 2, Baldric_Slezaf(Brd1.0) 13 | P -8881.1152, -373.8299, 1157.9764, 127, 0, 0, 2, Chaos_Elemental(Mag2.0) 14 | P -9054.4307, -973.3492, 1099.8906, 127, 0, 0, 2, Brother_Balatin(Mnk1.0) 15 | -------------------------------------------------------------------------------- /data/maps/map_files/dreadlands_3.txt: -------------------------------------------------------------------------------- 1 | P -9288.5313, -1156.535, 1060.948, 240, 0, 0, 2, Plaguebones 2 | P -1879.3566, 720.6934, 308.8355, 240, 0, 0, 2, Klaldran_the_Bald 3 | P 113.4497, 2171.8496, 9.3294, 240, 0, 0, 2, a_mountain_giant_patriarch 4 | P 2876.7107, 2237.6291, 121.3586, 240, 0, 0, 2, a_dread_widow 5 | P 3506.7103, 880.353, 46.8536, 240, 0, 0, 2, a_ravishing_drolvarg* 6 | -------------------------------------------------------------------------------- /data/maps/map_files/droga_2.txt: -------------------------------------------------------------------------------- 1 | P 219.61, -631.2782, -127.779, 0, 0, 0, 1, Level_? 2 | P -1255.6, 264.4542, -144.554, 240, 0, 0, 3, TRAP 3 | P -1239.1321, 145.4044, -255.7478, 0, 0, 0, 2, locked_gate 4 | P -1238.6995, 171.834, -255.7478, 0, 0, 0, 2, locked_gate 5 | P -1280.4585, 215.9559, -255.7478, 0, 0, 0, 2, locked_gate 6 | P -1221.778, 210.353, -255.7478, 127, 64, 0, 3, Droga_Jail 7 | P -1960.4972, -739.863, -267.7477, 0, 0, 0, 1, Oven 8 | P -319.37, -1294.9458, 0.1153, 240, 0, 0, 3, TRAP 9 | P -413.3548, -443.4834, -207.7212, 127, 0, 0, 2, a_bloated_drogan_spider(Rng1.5) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/eastkarana_2.txt: -------------------------------------------------------------------------------- 1 | P -425, -1300, 0, 127, 64, 0, 2, Druid_Circle 2 | P 2315.7134, 3697.1889, -28.2546, 127, 64, 0, 2, Fishing_Village 3 | P 2061.3261, 2701.769, 2.8834, 127, 64, 0, 2, Farm 4 | P 77.4906, 768.346, 0.832, 127, 64, 0, 2, Farm 5 | P 4576.1513, 980.9053, 179.658, 127, 64, 0, 2, Guard_Tower 6 | P 3736.9688, 2345.1399, 99.3456, 127, 64, 0, 2, Guard_Tower 7 | P 6020.869, 1714.2487, 389.273, 127, 64, 0, 2, Guard_Tower 8 | P 1505.9537, 2508.9065, 1.854, 127, 0, 0, 2, Sir_Gregon_Sulltor(Ncr1.5)* 9 | P 1770.7697, 2961.3335, 1.5122, 0, 0, 127, 2, Drevlon_Knacknabber_(War_Pre-Q) 10 | P 7476.1543, 3256.2195, 1.5291, 0, 0, 127, 2, Tenal_Redblade(War1.0) 11 | P 1332.8432, -164.4578, 1.8426, 127, 0, 0, 2, a_rogue_lion*(Tarbul_EarthstriderPH) 12 | P 1593.2102, 3657.507, -20.281, 0, 0, 127, 2, Althele(Druid1.0) 13 | P 1598.8117, 3662.6235, -21.87, 0, 0, 127, 2, Tholris(Druid1.0) 14 | P 1604.4248, 2598.9884, 0.425, 0, 0, 127, 2, Sionae*(Druid1.0) 15 | P -301.7318, 3593.2244, 20.5492, 0, 0, 127, 2, Nuien*(Druid1.0) 16 | P 2881.7993, 3781.1765, 127.1881, 0, 0, 127, 2, Teloa(Druid1.0) 17 | P 1009.178, 1434.9748, 381.4381, 127, 0, 0, 2, Dark_Elf_Corrupter(Rng1.0) 18 | -------------------------------------------------------------------------------- /data/maps/map_files/eastkarana_3.txt: -------------------------------------------------------------------------------- 1 | P -352.547, -975.7023, -2.8519, 0, 127, 127, 3, Treant 2 | P 1108.5996, 59.8577, 0.2, 0, 127, 127, 3, Spider 3 | P 201.144, 710.9511, 6.9024, 0, 127, 127, 3, 5 4 | P 136.9696, 644.8024, 1.6806, 0, 127, 127, 3, 2.Fen 5 | P 1917.5679, 2810.961, 0.2, 0, 127, 127, 3, 4.Gypsies 6 | P 475.9504, -1522.8152, 0.2, 0, 127, 127, 3, 3.Bandit 7 | P 2221.3328, -1355.4003, 1.5558, 0, 127, 127, 3, Plumage+key 8 | P 4537.8222, 815.5404, 179.5007, 0, 127, 127, 3, X 9 | P 4102.4018, 1685.3462, 132.1288, 0, 127, 127, 3, X 10 | -------------------------------------------------------------------------------- /data/maps/map_files/eastwastes_3.txt: -------------------------------------------------------------------------------- 1 | P -532.2888, 3563.7285, 142.4040, 240, 0, 0, 2, a_Ry`Gorr_minstrel* 2 | P 365.6811, -290.4537, 4.3070, 240, 0, 0, 2, Warden_Bruke 3 | P -207.7006, 3833.9685, 143.6269, 240, 0, 0, 2, Firbrand_the_Black 4 | P -480.7864, 3834.2815, 167.6888, 240, 0, 0, 2, Chief_Ry'Gorr 5 | -------------------------------------------------------------------------------- /data/maps/map_files/emeraldjungle_2.txt: -------------------------------------------------------------------------------- 1 | L -5317.8882, 2160.6309, 16.2713, -5375.6943, 1733.1703, -5.1631, 255, 0, 255 2 | P -3504, 1259, -345.9309, 127, 64, 0, 3, Wizard_Portal 3 | P -3500, 3100, -344.4676, 127, 64, 0, 3, Druid_Portal 4 | P -283.2121, -1237.2614, -342.9143, 0, 0, 127, 2, Spirit_Sentinel(Shm_1.0) 5 | P 642.2358, -3681.1111, -413.7733, 0, 0, 127, 2, Spirit_Sentinel(Shm_1.0) 6 | P 2288.1503, -306.8872, -340.4352, 0, 0, 127, 2, Forcallgorn_Vorago 7 | P 104.814, 1529.5081, -333.3186, 127, 0, 0, 2, Disease-Ridden_Gorilla*(a_tottering_ape)Ber1.0) 8 | P -4215.2987, -230.3232, 26.5167, 0, 0, 127, 2, Scout_Vyrak(BST1.0) 9 | P -2590.1938, -3389.2426, -40.7218, 127, 0, 0, 2, tainted_gorilla* 10 | -------------------------------------------------------------------------------- /data/maps/map_files/emeraldjungle_3.txt: -------------------------------------------------------------------------------- 1 | P -2549.4119, -1886.2973, -273.9977, 0, 0, 240, 2, Llenee_Starseeker 2 | P -149.8052, 808.2215, -338.7902, 127, 0, 0, 2, Festering_Silverback 3 | P -2304.3728, -232.6393, -252.9341, 240, 0, 0, 2, Spectral_Soldier* 4 | P -1565.142, 1639.8977, -343.8611, 240, 0, 0, 2, Spectral_Soldier* 5 | -------------------------------------------------------------------------------- /data/maps/map_files/erudnext_2.txt: -------------------------------------------------------------------------------- 1 | P 85.1195, 1001.4160, 67.7197, 0, 0, 0, 1, Brew_Barrel 2 | P 133.9513, 921.3698, 51.7197, 0, 0, 0, 1, Kiln 3 | P 122.4364, 893.4062, 51.7197, 0, 0, 0, 1, Oven 4 | P 298.4551, 1160.3234, 51.7197, 0, 0, 0, 1, Oven 5 | P 308.8912, 1214.3903, 51.7197, 0, 0, 0, 1, Brew_Barrel 6 | P 11.7920, 1166.6021, 80.1769, 0, 0, 127, 2, Camin(Wiz1.0) 7 | P 89.0000, 724.0000, 67.7197, 0, 0, 127, 2, Reklon_(GM)Pal1.0) 8 | P 241.7367, 1093.6929, 65.8369, 0, 0, 127, 2, Tomekeeper_Danl(Mnk1.0) 9 | P 70.1513, 1108.4934, 81.6373, 0, 0, 127, 2, Stofo_Olan(Ench1.0) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/erudnext_3.txt: -------------------------------------------------------------------------------- 1 | P 91.0000, 649.0000, 67.7197, 0, 127, 127, 2, Lereana_(GM_Cleric) 2 | P 422.0000, 1064.0000, 67.7197, 0, 127, 127, 2, Dleria_(GM_Cleric) 3 | P 369.0000, 1115.0000, 67.7197, 0, 127, 127, 2, Mikeana_(GM_Cleric) 4 | P 399.0000, 1109.0000, 51.7197, 0, 127, 127, 2, Laoni_(GM_Paladin) 5 | P 41.0000, 643.0000, 67.7197, 0, 127, 127, 2, Depnar_(GM_Paladin) 6 | P 71.0000, 682.0000, 67.7197, 0, 127, 127, 2, Cipse_(GM_Cleric) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/erudnint_2.txt: -------------------------------------------------------------------------------- 1 | P -626.0000, -662.0000, 0.0000, 127, 64, 0, 3, Vials_of_Vitality 2 | P -782.0000, -664.0000, 0.0000, 127, 64, 0, 3, City_Office 3 | P -629.5608, -764.1742, -13.4423, 127, 64, 0, 3, Sothure's_Fine_Gems 4 | P -747.3798, -607.1277, 35.5591, 127, 64, 0, 2, Tower_of_the_Craft_Keepers_(Enchanters) 5 | P -851.7919, -709.7432, 36.5553, 127, 64, 0, 2, Tower_of_the_Gate_Callers_(Mage) 6 | P -746.6250, -822.7549, 35.5307, 127, 64, 0, 2, Tower_of_the_Crimson_Hands_(Wizards) 7 | P -556.9409, -761.5172, -15.9969, 0, 0, 127, 2, Mairee_Silentone(Rng_Epic) 8 | -------------------------------------------------------------------------------- /data/maps/map_files/erudnint_3.txt: -------------------------------------------------------------------------------- 1 | P -776.0000, -537.0000, 84.7197, 0, 127, 127, 3, Lanken_(GM_Enchanter) 2 | P -744.0000, -509.0000, 51.7197, 0, 127, 127, 3, Nikina_(GM_Enchanter) 3 | P -712.0000, -887.0000, 84.7197, 0, 127, 127, 3, Ghanlin_(GM_Wizard) 4 | P -744.0000, -917.0000, 51.7197, 0, 127, 127, 3, Josper_(GM_Wizard) 5 | P -917.1710, -717.5318, 35.7509, 0, 127, 127, 3, Magician_Guild 6 | P -919.0000, -744.0000, 84.7197, 0, 127, 127, 3, Markus_(GM_Magician) 7 | P -912.0000, -742.0000, 84.7197, 0, 127, 127, 3, Reba_(GM_Magician) 8 | P -904.0000, -713.0000, 67.7197, 0, 127, 127, 3, Vasile_(GM_Magician) 9 | P -921.0000, -711.0000, 51.7197, 0, 127, 127, 3, Dalles_(GM_Magician) 10 | P -804.0000, -718.0000, 35.7509, 0, 127, 127, 3, Raskena_(GM_Wizard) 11 | P -805.0000, -727.0000, 35.7509, 0, 127, 127, 3, Toresian_(GM_Enchanter) 12 | P -777.0000, -810.0000, 35.7509, 0, 127, 127, 3, Whes_(GM_Wizard) 13 | P -647.0000, -703.0000, 3.7509, 0, 127, 127, 3, Nolusia_(GM_Enchanter) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/erudsxing_2.txt: -------------------------------------------------------------------------------- 1 | P -735.7137, 1774.7689, 1.5631, 127, 64, 0, 2, Dock 2 | P -2127.7456, 1312.715, -25.7744, 127, 64, 0, 2, Sunken_Ship 3 | P -2355.5408, 1158.9485, -294.3408, 0, 0, 0, 1, Rod(Spoke_of_Tarton's_Wheel_-_Azia) 4 | P -4166.1298, 1584.8405, -295.7395, 0, 0, 127, 3, Srafen_the_Soaked(Shm_1.0) 5 | P -4187.2885, 1560.5323, -295.8417, 0, 0, 127, 3, Dillon_the_Drowned(Shm_1.0) 6 | P -4168.7173, 1586.7157, -295.8417, 0, 0, 127, 3, Froham_the_Forgotten(Shm_1.0) 7 | P -4170.6674, 1585.7683, -295.8417, 0, 0, 127, 3, Abe_the_Abandoned(Shm_1.0) 8 | P -4174.3617, 1587.2128, -295.8417, 0, 0, 127, 3, a_greater_spirit(Shm_1.0) 9 | P -3341.2249, 1212.8918, -295.7182, 0, 0, 127, 3, Captain_Vekeros 10 | -------------------------------------------------------------------------------- /data/maps/map_files/erudsxing_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/erudsxing_3.txt -------------------------------------------------------------------------------- /data/maps/map_files/everfrost_2.txt: -------------------------------------------------------------------------------- 1 | P 6350.0000, -3200.0000, 0.0000, 127, 64, 0, 2, Secret_Tunnel 2 | P 3900.0000, -3900.0000, 0.0000, 127, 64, 0, 2, Lich's_Cave 3 | P 2293.0000, -3126.0000, 0.0000, 127, 64, 0, 2, Ice_Comet_Quest_Npc 4 | P 5392.0000, -557.0000, 0.0000, 127, 64, 0, 2, Giant_Statue 5 | P 5275.0000, -1122.0000, 0.0000, 127, 0, 0, 2, Redwind 6 | P 5054.0000, -1840.0000, 0.0000, 127, 64, 0, 2, Wayfarer_Camp 7 | P 4594.0000, -1350.0000, 0.0000, 0, 0, 0, 2, Ice_hole 8 | P 4178.9771, -4749.7461, -99.9430, 0, 0, 0, 1, Ice_boned 9 | P 5094.9170, -4970.7505, -87.9398, 0, 0, 0, 1, ice_boned 10 | P 5093.6826, -5001.3535, -87.9389, 0, 0, 0, 1, rod(Wiz_epic) 11 | P 5091.9551, -4999.1963, -87.9718, 0, 0, 0, 1, Rod(Spoke_of_Tarton's_Wheel_Beza) 12 | P 2394.1133, -3031.2703, -63.8106, 0, 0, 240, 2, Sulgar_(Q) 13 | P -586.2500, -3565.1165, -1.3735, 0, 0, 127, 2, Kimber_Whitefoot*(War1.5)7am/7pm 14 | P 7016.9028, -2022.7439, -63.5292, 0, 0, 127, 2, Kimber_Whitefoot*(War1.5)7am/7pm 15 | P 5033.9282, -1902.9253, -63.5917, 0, 0, 127, 2, Rombus(Pal_Pre-Q) 16 | P 5030.0752, -1869.3887, -62.3952, 0, 0, 127, 2, Teria_Grinntli(LDoN) 17 | -------------------------------------------------------------------------------- /data/maps/map_files/everfrost_3.txt: -------------------------------------------------------------------------------- 1 | P 5546.1094, 988.9326, 168.8076, 240, 0, 0, 2, Dark_Assassin* 2 | P 2978.7419, 673.3724, -62.3843, 240, 0, 0, 1, 1.DA_path 3 | P 4039.8555, 1176.7568, -74.2873, 240, 0, 0, 1, 2&4.DA_path 4 | P 4731.5269, 742.7585, -71.6598, 240, 0, 0, 1, 3DA_path 5 | -------------------------------------------------------------------------------- /data/maps/map_files/fearplane_2.txt: -------------------------------------------------------------------------------- 1 | P 344.9886, -1273.2926, 14.3106, 0, 0, 127, 3, a_harbinger_of_fear(EPICs) 2 | P 110.103, 716.7516, 0.5516, 127, 0, 0, 2, a_broken_golem(Wiz1.0) 3 | P 187.427, -362.772, 11.7184, 0, 0, 127, 2, Irak_Altil_*(Pal1.0) 4 | P -402.2371, -805.3564, 201.8769, 127, 0, 0, 2, Wraith_of_a_Shissar(Ench1.0) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/fearplane_3.txt: -------------------------------------------------------------------------------- 1 | P -76.2094, 445.136, -14.5009, 127, 0, 0, 3, Dracolich*DDD* 2 | P -729.371, 145.6032, -22.9768, 240, 0, 0, 3, a_writhing_maw_of_misery 3 | P 5.8674, 656.33, 25.3745, 240, 0, 0, 3, a_wailing_wretch 4 | P 365.4791, -258.9372, 95.134, 127, 64, 0, 3, Terror_Temple 5 | P 362.3648, 584.68, 88.7574, 127, 64, 0, 3, Fright_Temple 6 | P 1198.2138, 567.8369, 101.796, 127, 64, 0, 3, Dread_Temple 7 | P -678.32, 1001.6096, 0.787, 240, 0, 0, 3, a_trembling_courier 8 | P -264.3842, 1215.3308, -19.1722, 127, 64, 0, 2, Worry_Wraith_Tower 9 | P -1294.2093, 48.3671, -2.8001, 240, 0, 0, 3, a_grim_ruffian 10 | P 1119.7487, 279.99, -2.8001, 240, 0, 0, 3, a_wildly_gesticulating_digit 11 | P -402.9402, -981.5557, 79.762, 240, 0, 0, 3, Koth_the_Lobe-gorged 12 | P -794.9927, -1243.647, 5.5842, 240, 0, 0, 3, a_trepid_gazer 13 | P -1201.8043, -1149.6181, -1.2766, 240, 0, 0, 3, a_scar-covered_shiverback 14 | P -876.6535, 836.3076, 35.1912, 240, 0, 0, 3, an_ice_encrusted_spinechiller 15 | P 65.31, 876.1654, 6.24, 240, 0, 0, 3, an_anxiety_corpuscle 16 | -------------------------------------------------------------------------------- /data/maps/map_files/feerrott_2.txt: -------------------------------------------------------------------------------- 1 | P 1836.7629, -393.2710, 12.2603, 127, 64, 0, 3, Druid_Circle 2 | P -1150.1781, -803.7884, -17.3145, 0, 0, 127, 2, Oknoggin_Stonesmacker(War1.0) 3 | P 2445.2061, -365.6424, -39.7622, 0, 0, 127, 2, Scout_Ahlikal(BST1.0) 4 | P 2796.5020, -1101.9258, -10.7896, 127, 0, 0, 2, The_Spirit_of_Decay(BST1.0) 5 | P 90.2112, 432.6942, -119.4040, 127, 0, 0, 2, Swamp_Terror(Druid1.5) 6 | P -2367.9473, -867.4310, -14.2378, 0, 0, 127, 2, Bouncer_Flerb*(Druid1.5) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/feerrott_3.txt: -------------------------------------------------------------------------------- 1 | P 77.7228, 1374.3250, 47.4082, 240, 0, 0, 2, a_Silverflank_guardian 2 | P 45.3789, 1374.3250, 47.4082, 240, 0, 0, 2, a_Silverflank_guardian 3 | P 377.1080, 1341.7249, -8.3416, 240, 0, 0, 2, Tae_Ew_Archon 4 | P -272.3739, 1316.9001, -6.6542, 240, 0, 0, 2, Cazic_Cenobite 5 | -------------------------------------------------------------------------------- /data/maps/map_files/feerrott_4.txt: -------------------------------------------------------------------------------- 1 | P -2670, 1410, 23.7060, 127, 127, 0, 3, #1 2 | P -2710, 1600, 23.7060, 127, 127, 0, 3, #2 3 | P -2815, 1720, 23.7060, 127, 127, 0, 3, #3 4 | P -2988, 1900, 23.7060, 127, 127, 0, 3, #4 5 | P -2830, 1837, 23.7060, 127, 127, 0, 3, #5 6 | P -2905, 1935, 23.7060, 127, 127, 0, 3, #6 7 | P -2740, 1745, 23.7060, 127, 127, 0, 3, #7 -------------------------------------------------------------------------------- /data/maps/map_files/felwithea_2.txt: -------------------------------------------------------------------------------- 1 | P 597.3908, -239.9712, -13.3740, 0, 0, 0, 1, Oven 2 | P 373.1277, -62.8680, -13.3740, 0, 0, 0, 1, Brew_Barrel 3 | P 373.5647, 78.5437, 1.6259, 0, 0, 0, 1, Potter's_Wheel 4 | P 370.7298, 92.4424, 1.6259, 0, 0, 0, 1, Kiln 5 | P 405.5320, -105.4839, 3.7509, 127, 64, 0, 3, Shop_of_all_Holos 6 | P 474.3620, -12.2973, -0.2490, 127, 64, 0, 3, Felwithe_Cleric_Guild 7 | P 262.8179, 12.9943, -15.7917, 0, 0, 127, 2, Challice(Wiz1.0) 8 | P 713.4025, -246.5201, -23.7286, 0, 0, 127, 2, Elia_the_Pure(Pal1.0) 9 | P 202.9103, -52.9635, 4.5377, 0, 0, 127, 2, Galrun_Starforge(Pal2.0) 10 | P 414.4960, -142.4539, 1.5418, 0, 0, 127, 2, Merchant_Nora(Druid1.0)_ 11 | -------------------------------------------------------------------------------- /data/maps/map_files/felwithea_3.txt: -------------------------------------------------------------------------------- 1 | P 198.0000, -17.0000, -21.3739, 0, 0, 127, 2, General_Jyleel(Pal2.0)GM_Paladin) 2 | P 328.0000, -11.0000, 8.6259, 0, 127, 127, 2, Tynkale_(GM_Paladin) 3 | P 435.0000, -13.0000, -3.3740, 0, 127, 127, 2, Yeolarn_(GM_Cleric) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/felwitheb_2.txt: -------------------------------------------------------------------------------- 1 | P 777.2137, -554.1884, 3.7509, 127, 64, 0, 3, Enchanter_Guild 2 | P 471.6003, -502.2160, 3.7509, 127, 64, 0, 3, Wizard_Guild 3 | P 579.6132, -630.5638, 3.7509, 127, 64, 0, 3, Magician_Guild 4 | P 788.5380, -443.7728, -7.3739, 0, 0, 0, 2, Loom 5 | P 660.5431, -736.1634, 1.3653, 0, 0, 127, 2, Joren_Nobleheart(Ench 6 | P 599.1616, -795.2907, 1.5544, 0, 0, 127, 2, Niola_Impholder(FACTION_Q)Bat_Wing 7 | P 845.9926, -374.9003, -6.4604, 0, 0, 127, 2, Farios_Elianos(Drd/Rng1.0) 8 | -------------------------------------------------------------------------------- /data/maps/map_files/felwitheb_3.txt: -------------------------------------------------------------------------------- 1 | P 409.0000, -507.0000, -3.3740, 0, 127, 127, 2, Tarker_(GM_Wizard) 2 | P 599.0000, -795.0000, 0.6260, 0, 127, 127, 2, Niola_(GM_Magician) 3 | P 601.0000, -462.0000, 16.6260, 0, 127, 127, 2, Yuin_(GM_Enchanter) 4 | P 839.0000, -556.0000, 0.6260, 0, 127, 127, 2, Kinool_(GM_Enchanter) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/fieldofbone_2.txt: -------------------------------------------------------------------------------- 1 | P -2240.123, 401.5815, -92.6496, 0, 0, 127, 2, Loransizz_Slizz 2 | P -3339.859, -1983.4182, -163.9385, 0, 0, 127, 2, Jaimel_Marfury*(6pm-6am) 3 | P -3636.6057, -2103.1851, -158.6427, 0, 0, 127, 2, Mardic_Crimsonsteel(Ber1.0) 4 | P -2580.2377, -3642.4463, -153.4064, 127, 0, 0, 2, The_Tangrin(Ench1.0) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/fieldofbone_3.txt: -------------------------------------------------------------------------------- 1 | P -684.662, -794.3302, -52.1306, 240, 0, 0, 2, Burynai_cutter* 2 | P -2656.7874, -1288.6198, -9.3712, 240, 0, 0, 2, Scaled_Prowler* 3 | P -994.9288, 1286.5537, -77.1898, 240, 0, 0, 2, Carrion_Queen*HighSun 4 | P -250.6555, 820.597, -54.7849, 240, 0, 0, 2, Iksar_Dakoit* 5 | P -464.1942, 1888.7007, -54.6158, 240, 0, 0, 2, Scourgetail_Scorpion* 6 | P -3426.164, 1654.9568, 11.858, 240, 0, 0, 2, Scaled_Prowler* 7 | P 376.303, 334.369, -26.1676, 240, 0, 0, 2, Scourgetail_Scorpion* 8 | -------------------------------------------------------------------------------- /data/maps/map_files/firiona_2.txt: -------------------------------------------------------------------------------- 1 | P 3310.7712, 438.8104, 189.5837, 0, 0, 127, 2, Vorla_Diensk(Rogue_Epic) 2 | P -2983.3711, 2941.2749, -81.9260, 0, 0, 0, 1, Brew_Barrel 3 | P -2685.5674, 2877.5610, -79.9364, 0, 0, 0, 1, Forge 4 | P -2690.1504, 2864.5015, -79.9364, 0, 0, 0, 1, Oven 5 | P -1399.8232, 3816.7522, -107.2167, 0, 0, 127, 2, Corfia_Nultethen(War1.5) 6 | P 3308.9880, -134.2697, 158.4781, 0, 0, 127, 2, Corfia_Nultethen(War1.5) 7 | P 3327.6118, -800.9108, 157.7830, 0, 0, 0, 1, Forge 8 | P 2195.8782, 2047.8572, 3.6646, 0, 0, 127, 2, Tiblner_Milnik*(Mage1.0) 9 | P -718.2119, -3550.4546, -44.3915, 127, 0, 0, 2, Iryal 10 | P 1796.5996, -2653.9785, -17.3814, 127, 0, 0, 2, Red_Eye_Jack 11 | P -2096.5837, -1466.3204, 12.8240, 127, 0, 0, 1, Marrinda_Flockwings* 12 | P 3298.8660, -719.7590, 158.2259, 0, 0, 127, 2, Nadia_Starfeast(Ench1.0) 13 | P 3273.7864, -49.2728, 158.7956, 0, 0, 127, 2, Foloal_Stormforest(Drd/Rng1.0) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/firiona_3.txt: -------------------------------------------------------------------------------- 1 | P -1479.6207, -233.1664, 23.1645, 127, 0, 0, 2, Marinda_Flockwings* 2 | P 1995.7610, -2427.3123, -4.3033, 240, 0, 0, 2, Kwinn_the_Outlander* 3 | P 580.1068, 1875.2018, 65.3644, 240, 0, 0, 2, The_Voidsoul_Possessed 4 | -------------------------------------------------------------------------------- /data/maps/map_files/freporte_2.txt: -------------------------------------------------------------------------------- 1 | P 174.9422, 151.1773, -83.9676, 0, 0, 0, 3, Forge 2 | P 206.901, 107.525, -83.9676, 0, 0, 0, 3, Kiln 3 | P 161.1648, -25.822, -55.9677, 0, 0, 0, 3, Forge 4 | P 750.5392, -69.7104, -55.9677, 0, 0, 0, 3, Oven 5 | P 242.4045, -100.1543, -55.9677, 0, 0, 0, 3, Oven 6 | P 186.6765, 297.9623, -83.9676, 0, 0, 0, 3, Oven 7 | -------------------------------------------------------------------------------- /data/maps/map_files/frontiermtns_2.txt: -------------------------------------------------------------------------------- 1 | P 2421.2341, -814.4515, 534.2567, 0, 0, 0, 1, Gray_Colored_Ice(GS) 2 | P 348.1093, -1476.6223, -147.9326, 0, 0, 0, 1, Kromtus_Longsword(GS) 3 | P 899.5230, 808.2150, -128.9638, 0, 0, 127, 2, wwwa_human_skeleton*(Druid/Rng1.0)) 4 | P -2986.8735, 2148.4189, -293.7364, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 5 | P -1500.3889, 3502.7375, -614.3365, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 6 | P -250.5999, 3442.6045, -496.1945, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 7 | P 3474.5381, 855.2540, -312.3940, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 8 | P 136.6231, -2394.9109, 242.2596, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 9 | P -828.1411, -3002.5679, 406.2117, 127, 0, 0, 2, Goblin_Hider(Drd1.5) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/frontiermtns_3.txt: -------------------------------------------------------------------------------- 1 | P -398.8525, -339.7341, -314.5602, 240, 0, 0, 2, Eldak_Howlingber 2 | P 2248.2007, -895.2622, -37.7792, 240, 0, 0, 2, Snaof 3 | P 2353.3130, 1957.6600, 116.8365, 240, 0, 0, 2, Thuuga_Dengible 4 | P -1718.6238, 1880.1083, -379.8416, 240, 0, 0, 2, Soothsayer_Dregzak 5 | P -1756.4540, 1813.5551, -379.8416, 240, 0, 0, 2, Chief_RokGus 6 | P -3365.7307, -2726.9690, 186.1720, 240, 0, 0, 2, Burynai_Grand_Cenobite* 7 | P -459.9664, -390.4132, -314.5602, 127, 0, 0, 2, Mentrax_Mountainbone(Epic) 8 | P -3636.5950, -1877.3728, 236.4844, 127, 0, 0, 2, a_sarnak_spy(Q) 9 | P -441.2418, -1027.6281, 60.4795, 127, 0, 0, 2, a_loyal_follower(Q) 10 | P -1993.9094, 1568.4287, -378.2232, 127, 0, 0, 2, a_goblin_traitor(Q) 11 | P 900.3723, 809.1321, -130.3012, 127, 0, 0, 2, a_human_skeleton(Epic) 12 | P -1222.2507, 655.2143, -74.3000, 240, 0, 0, 2, Joojoga* 13 | P -1798.9994, 1989.4760, -393.1274, 240, 0, 0, 2, a_goblin_warder 14 | P -1793.1545, 1859.7544, -379.9977, 240, 0, 0, 2, a_maddened_Burynai 15 | P -1947.5374, 1922.8079, -379.9977, 240, 0, 0, 2, a_goblin_bodyguard 16 | P -1712.2321, 2125.3201, -438.3416, 240, 0, 0, 2, a_goblin_fanatic 17 | P -1749.2771, 1871.6940, -375.8625, 240, 0, 0, 2, a_goblin_soothsayer 18 | -------------------------------------------------------------------------------- /data/maps/map_files/frozenshadow_3.txt: -------------------------------------------------------------------------------- 1 | P -198.8460, -984.3800, 185.3267, 127, 0, 0, 2, Cara_Omica 2 | P -48.6323, -255.3494, -4.4691, 240, 0, 0, 2, Xalgoti 3 | P -525.8183, -499.2751, 21.5384, 240, 0, 0, 2, Zorglim_the_Dead 4 | P 203.6319, -463.2613, 216.4464, 240, 0, 0, 2, The_Head_Usher 5 | P 398.9984, -406.3487, 21.1900, 127, 0, 0, 2, VhalSera 6 | P -34.9194, -743.7426, 302.8767, 240, 0, 0, 2, Tsserrina_Syl'Tor 7 | P -429.9236, -431.7240, 21.5345, 240, 0, 0, 2, Zogrim_the_Dead 8 | P -742.4020, -748.7884, 73.5150, 240, 0, 0, 2, An_angry_chef 9 | P -200.3523, -775.1240, 176.4790, 240, 0, 0, 2, Narnak_Berreka* 10 | P -240.7110, -785.1038, 174.9394, 240, 0, 0, 2, Dusty_Mummy* 11 | P -276.6630, -750.3359, 174.9394, 240, 0, 0, 2, Amontehepna 12 | P 149.1552, -435.2708, 216.4543, 240, 0, 0, 2, Daman 13 | P 33.8723, -798.2966, 174.9394, 240, 0, 0, 2, maggot_infested_flesh* 14 | P 159.4650, -437.4630, 216.4249, 240, 0, 0, 2, Nosja 15 | P -835.4591, -563.8784, 21.5323, 240, 0, 0, 2, Zogrim_the_Dead 16 | P -802.2215, -746.3668, 71.9706, 240, 0, 0, 2, An_angry_chef 17 | P 422.1091, -400.5756, 21.1900, 240, 0, 0, 2, Frantic_Bat* 18 | P -203.9900, -854.7983, 176.4482, 240, 0, 0, 2, Narmak_Berreka 19 | P -768.6873, -490.6487, 21.5098, 240, 0, 0, 2, Zogrim_the_Dead 20 | P 151.7382, -535.7752, 217.4473, 240, 0, 0, 2, The_Head_Usher* 21 | P -34.7126, -314.4307, -2.8723, 240, 0, 0, 2, Xalgoti 22 | -------------------------------------------------------------------------------- /data/maps/map_files/gfaydark_3.txt: -------------------------------------------------------------------------------- 1 | P -264.0000, -318.0000, 73.9697, 0, 127, 127, 2, GM_Warrior 2 | P -522.0000, 459.0000, 114.4072, 0, 127, 127, 2, GM_Ranger 3 | P -223.6672, 700.4330, 73.9385, 0, 127, 127, 2, GM_Druid 4 | P -296.4741, 283.6147, 73.9697, 0, 127, 127, 2, GM_Bard 5 | P 157.0000, 553.0000, 157.9696, 0, 127, 127, 2, GM_Rogue 6 | P -224.3121, 601.4204, 75.4701, 127, 64, 0, 2, Soldiers_of_Tunare_(Druid_Guild) 7 | P -455.7832, 394.3093, 115.9558, 127, 64, 0, 2, Faydarks_Champions_(Ranger_Guild) 8 | P -229.2675, 216.1735, 76.1736, 127, 64, 0, 2, Songweavers_Bard_Guild 9 | P 557.2288, 494.7248, 159.4923, 127, 64, 0, 2, Tavern 10 | P 717.1028, 1237.7312, -2.1819, 127, 64, 0, 1, Bandit_Camp 11 | -------------------------------------------------------------------------------- /data/maps/map_files/greatdivide_2.txt: -------------------------------------------------------------------------------- 1 | P -3653.3943, 3819.1440, -245.5927, 127, 64, 0, 3, Dragon_Circle 2 | P 2706.7639, 1885.8831, -48.2715, 127, 64, 0, 3, Great_Spires 3 | P -3192.4211, 5791.7524, -47.2948, 0, 0, 127, 2, Coldain_Smuggler 4 | P 1296.7734, 3940.7822, -218.6228, 0, 0, 127, 2, Karkador 5 | P 450.5645, 4938.8662, -403.3416, 127, 0, 0, 2, Vluudeen 6 | P -513.4340, 6909.8062, -677.8840, 0, 0, 127, 2, Vores_the_Hunter 7 | P -3170.5693, 5930.7876, -108.9354, 0, 0, 127, 2, bloody_gnome_captive 8 | P -3670.1450, 5900.4199, 129.5330, 0, 0, 127, 1, Lapker_Geynion 9 | P -3594.6099, 5861.7310, 129.5330, 0, 0, 127, 1, Fomgrut_Borkel 10 | P -3709.6599, 5880.3779, 129.5330, 0, 0, 127, 1, Gerton_Dumkin 11 | P -3714.7583, 5919.7827, 129.5330, 0, 0, 127, 2, Murdrick_Tardok 12 | P -3670.1228, 5940.2271, 129.5330, 0, 0, 127, 1, Herga_Ratgur 13 | P -3710.3865, 5960.9199, 129.5330, 0, 0, 127, 1, Davin_Fatfist 14 | P -3605.4568, 5960.3682, 129.5331, 0, 0, 127, 1, Laima_Ratgur 15 | P 175.5195, 1093.2136, 21.5255, 0, 0, 127, 2, Captain_Stonefist 16 | P 2590.9453, 2923.8855, 277.9422, 127, 0, 0, 2, Fergul_Frostsky 17 | P 2636.1489, 2925.6199, 277.9234, 127, 0, 0, 2, Gralk_Dwarfkiller 18 | P 3503.9424, 5078.8257, -515.6227, 127, 0, 0, 2, Korf_Brokenhammer 19 | P 3412.9634, 7100.5220, -301.7721, 127, 0, 0, 2, Blizzent* 20 | P 489.5991, 6112.2603, -561.4747, 0, 0, 127, 2, Gavon_Morant(Cle_Pre-Q) 21 | P 563.6752, 3918.7024, 794.8977, 0, 0, 127, 2, gnomish_deserter 22 | -------------------------------------------------------------------------------- /data/maps/map_files/greatdivide_3.txt: -------------------------------------------------------------------------------- 1 | P 399.4640, 1507.1655, 170.7470, 240, 0, 0, 2, Coldain_War_Wolf* 2 | P 3352.2300, 1311.9713, 302.8967, 240, 0, 0, 2, Drakkel_Blood_Wolf* 3 | P 1511.7445, 3185.3640, -5.5518, 240, 0, 0, 2, Gorul_Longshanks* 4 | P -3075.6565, 6868.6157, -231.7167, 240, 0, 0, 2, Icetooth 5 | P -3748.5435, 2439.2327, 115.7455, 240, 0, 0, 2, Yaka_Razorhoof 6 | P 204.2610, 2939.5283, -155.3610, 240, 0, 0, 2, Shardtooth* 7 | P -2188.3281, 1735.6450, 115.7686, 240, 0, 0, 2, Yaka_Razorhoof 8 | P -3276.6343, 6277.4766, -107.6950, 240, 0, 0, 2, Icetooth 9 | P -2166.7766, 1578.5227, 114.2206, 240, 0, 0, 2, Yaka_Razorhoof 10 | P 912.9813, 3663.5586, -222.5500, 240, 0, 0, 2, Shardtooth* 11 | P 1676.3242, 543.4233, 69.8582, 240, 0, 0, 2, Drakkel_Blood_Wold* 12 | P -4171.6255, 1848.7028, 115.7600, 240, 0, 0, 2, Yaka_Razorhoof 13 | P -97.5216, 2528.3057, -108.2340, 127, 0, 0, 2, Narandi_the_Wretched 14 | P -798.6455, 4912.1182, -202.6827, 127, 0, 0, 2, Taskmaster_Abyott 15 | P -3198.7439, 5939.5376, -108.9354, 240, 0, 0, 1, Bloodmaw 16 | -------------------------------------------------------------------------------- /data/maps/map_files/grobb_2.txt: -------------------------------------------------------------------------------- 1 | P 399.3086, -534.883, -9.9979, 0, 0, 0, 1, Oven 2 | P 405.485, -466.9569, -9.9969, 0, 0, 0, 1, Loom 3 | P 192.9175, -411.7656, -9.9979, 0, 0, 0, 1, Forge 4 | P 218.3862, -532.39, -25.998, 0, 0, 0, 1, Forge 5 | P 159.2905, -491.4556, -9.9979, 0, 0, 0, 1, Kiln 6 | P -182.1778, -219.6574, 2.19, 0, 0, 0, 1, Oven 7 | P 142.5558, -440.8833, -9.9979, 0, 0, 0, 1, Pottery_Wheel 8 | P 335.7312, -88.8413, 4.19, 0, 0, 0, 1, Brew_Barrel 9 | P 67.7001, 0.761, 9.1234, 127, 0, 0, 2, Basher_Nanrum(Ber_Pre-Q) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/grobb_3.txt: -------------------------------------------------------------------------------- 1 | P 906.3214, -484.519, 10.2, 0, 127, 127, 2, Treskar_(GM_Shadow_Knight) 2 | P 957.2364, -509.857, 10.2, 0, 127, 127, 2, Hukulk_(GM_Shadow_Knight) 3 | P 1026.2416, -444.307, 10.2, 0, 127, 127, 2, Vergad_(SK_Shadow_Knight) 4 | P 633.9092, -615.9267, 10.2, 0, 127, 127, 2, Rohga_(GM_Shadow_Knight) 5 | P 463.3838, 67.2413, 69.9706, 0, 127, 127, 2, Bregna_(GM_Shaman) 6 | P 458.2228, -346.7506, 0.2, 0, 127, 127, 2, Jocka_(GM_Shaman) 7 | P 489.2321, -17.3435, 49.9707, 0, 127, 127, 2, Kaglari_(GM_Shaman) 8 | P 420.4057, 3.229, 69.9706, 0, 127, 127, 2, Gardunk_(GM_Beastlord) 9 | P 495.507, 4.3205, 69.9706, 0, 127, 127, 2, Urako_(GM_Shaman) 10 | P 119.5048, -309.1526, 0.2, 0, 127, 127, 2, Hergor_(GM_Warrior) 11 | P 121.2014, -260.6825, 2.3271, 0, 127, 127, 2, Kraiga_(GM_Warrior) 12 | P 223.677, -223.782, 0.2, 0, 127, 127, 2, Gralok_(GM_Warrior) 13 | P 169.3463, -304.1725, 22.19, 0, 127, 127, 2, Ranjor_(GM_Warrior) 14 | P 489.2321, -17.3435, 49.9707, 0, 127, 127, 2, Kaglari_(GM_Shaman) 15 | P -138.1185, -238.6365, -9.9979, 0, 127, 127, 2, Daboo_(GM_Berserker) 16 | -------------------------------------------------------------------------------- /data/maps/map_files/growthplane_2.txt: -------------------------------------------------------------------------------- 1 | P 1503.0000, -1325.0000, 0.0000, 127, 64, 0, 2, Tunare's_Tree 2 | -------------------------------------------------------------------------------- /data/maps/map_files/growthplane_3.txt: -------------------------------------------------------------------------------- 1 | P 202.1286, 1538.5698, -56.7200, 127, 0, 0, 2, Ancient_Totem 2 | P 1806.4965, 1614.1693, 118.9020, 127, 0, 0, 2, Ordro 3 | P 3428.3699, -262.8170, 371.3201, 127, 0, 0, 2, a_gleaming_sphere_of_light* 4 | P 1921.5044, -64.6674, 152.3380, 127, 0, 0, 2, an_abstruse_phantasm* 5 | P 846.6140, -2316.6541, -10.9658, 127, 0, 0, 2, Ail_the_Elder* 6 | P 1907.8884, -2731.1841, 128.6793, 127, 0, 0, 2, Fayl_Everstrong* 7 | P -2478.5852, 1381.2665, -36.1728, 127, 0, 0, 2, Galiel_Spirithoof* 8 | P -1925.5150, -1575.5807, -46.8079, 127, 0, 0, 2, Grahl_Strongback* 9 | P 2437.8147, -1675.4917, 221.3867, 127, 0, 0, 2, keeper_of_the_glades* 10 | P 2002.9410, 749.9027, 176.6015, 127, 0, 0, 2, Rumbleroot* 11 | P 2484.5830, 447.7527, 218.9082, 127, 0, 0, 2, Tunarean_Earthmelder 12 | P -965.6586, 747.5248, -46.6625, 127, 0, 0, 2, _Sarik_the_Fang* 13 | P 2097.6641, 3155.6030, 246.2646, 127, 0, 0, 2, a_thifling_orator* 14 | P 389.4590, 506.1450, 150.3928, 127, 0, 0, 2, Treah_Greenroot* 15 | P 2412.3337, 1823.3160, 273.8550, 127, 0, 0, 2, Undogo_Digolo* 16 | P -1335.0000, 3374.0000, 0.0000, 127, 0, 0, 2, Guardian_of_Takish 17 | -------------------------------------------------------------------------------- /data/maps/map_files/gukbottom_2.txt: -------------------------------------------------------------------------------- 1 | P 743.1567, -1168.2177, -197.8045, 0, 0, 0, 3, Trap 2 | P 306.9454, -875.7983, -206.4046, 0, 0, 0, 3, Trap 3 | P 300.3480, -1321.6642, -111.8102, 240, 0, 0, 3, ?#%! 4 | P 327.9311, -1234.8978, -99.8104, 240, 0, 0, 3, ?#%! 5 | P 319.5045, -1285.6803, -107.6783, 240, 0, 0, 3, ?#%! 6 | P 707.7200, -667.2970, -169.6620, 0, 0, 0, 3, Trap 7 | P 903.5710, -903.7690, -223.9050, 0, 0, 0, 3, Trap 8 | P 1110.8744, -775.4849, -251.7478, 0, 0, 0, 3, Trap 9 | P 749.8360, -1114.8790, -251.9050, 0, 0, 0, 3, Trap 10 | P 554.5800, -684.3730, -144.3950, 0, 0, 0, 1, to_King 11 | P 754.4729, -1069.6583, -194.7790, 0, 0, 0, 3, Trap 12 | P 742.7571, -1070.2800, -194.7792, 0, 0, 0, 3, Trap 13 | P 428.0000, -1567.0000, -108.0000, 127, 64, 0, 3, Waterfall 14 | P 713.3174, -594.8929, -146.7792, 0, 0, 0, 1, to_Ghoul_Lord 15 | P 705.5295, -1143.8584, -124.3988, 0, 0, 0, 1, Rod(Spoke_of_Tartons_Wheel_-_Heda)_ 16 | -------------------------------------------------------------------------------- /data/maps/map_files/gukbottom_3.txt: -------------------------------------------------------------------------------- 1 | P 297.5110, -934.8826, -225.8865, 240, 0, 0, 2, Minotaur_Elder 2 | P 34.5071, 75.3539, -223.9042, 240, 0, 0, 2, Froglok_Tactician 3 | P 252.1845, -14.2103, -223.9042, 240, 0, 0, 2, Froglok_Herbalist 4 | P 432.2000, -210.7240, -251.9042, 240, 0, 0, 2, Froglok_Yun_Priest 5 | P 587.4312, -230.6738, -265.9041, 240, 0, 0, 2, Froglok_Crusader 6 | P 727.2358, -515.4152, -195.7478, 240, 0, 0, 2, Scribe_&_Sage 7 | P 1082.9309, -1042.8521, -195.9042, 127, 0, 0, 2, Frenzied_ghoul(Mag1.0) 8 | P 1086.6359, -845.2708, -208.2304, 240, 0, 0, 2, sentinel 9 | P 693.2853, -1151.2633, -124.2532, 240, 0, 0, 2, reanimated_hand 10 | P 877.6285, -1121.3463, -195.9042, 240, 0, 0, 2, Ghoul_magus 11 | P 590.1090, -616.3853, -167.9353, 240, 0, 0, 2, Savant 12 | P 450.3690, -621.4589, -196.5300, 240, 0, 0, 2, Evil_Eye 13 | P 832.4410, -1170.5239, -194.3870, 240, 0, 0, 2, Arch_Mage 14 | P 748.0000, -1556.0000, -171.0000, 240, 0, 0, 2, Ghoul_Lord 15 | P -106.0000, -657.0000, -210.0000, 240, 0, 0, 2, Patriarch* 16 | P -23.0000, 105.0000, -233.0000, 240, 0, 0, 2, Froglok_King 17 | P 609.3188, -577.8078, -194.2132, 240, 0, 0, 2, Cavalier_(bottom) 18 | P 774.9370, -638.7890, -111.8520, 240, 0, 0, 2, Assassin_&_Supplier 19 | P 105.4749, -368.6000, -235.1889, 240, 0, 0, 2, a_Froglok_Noble 20 | P 884.0000, -625.0000, 0.0000, 240, 0, 0, 2, Ghoul_Executioner 21 | P 1117.0000, -833.0000, 0.0000, 240, 0, 0, 2, Ghoul_Sentinel 22 | P 611.0000, -924.0000, 0.0000, 240, 0, 0, 2, Froglok_Slaves 23 | P 703.3595, -778.8051, -138.2264, 240, 0, 0, 2, a_ghoul_ritualist 24 | -------------------------------------------------------------------------------- /data/maps/map_files/guktop_2.txt: -------------------------------------------------------------------------------- 1 | P 42.439, -743.9859, -153.936, 240, 0, 0, 2, Tempus 2 | P -218.733, -1281.6087, -97.8104, 0, 0, 0, 2, an_old_froglok 3 | -------------------------------------------------------------------------------- /data/maps/map_files/guktop_3.txt: -------------------------------------------------------------------------------- 1 | P -179.9821, -594.6112, -13.8416, 240, 0, 0, 2, a_froglok_gaz_squire 2 | P 141.121, 27.4918, -12.9296, 240, 0, 0, 2, a_giant_heart_spider 3 | P 467.3335, -244.9995, -15.8416, 240, 0, 0, 2, a_froglok_scryer 4 | P -452.1018, -1645.614, -77.8104, 240, 0, 0, 2, an_ancient_croc 5 | P -265.9481, -1106.9684, -65.8105, 240, 0, 0, 2, a_froglok_summoner 6 | P -375.9569, -1105.4523, -65.8105, 240, 0, 0, 2, a_froglok_summoner 7 | P -287.7857, 4.9508, -97.9667, 127, 0, 0, 2, the_froglok_shin_lord(Sk_1.0) 8 | P 152.499, -250.1414, 0.2, 240, 0, 0, 2, a_froglok_realist 9 | P 77.6165, -288.1064, -83.9667, 240, 0, 0, 2, the_froglok_warden 10 | -------------------------------------------------------------------------------- /data/maps/map_files/halas_2.txt: -------------------------------------------------------------------------------- 1 | P 211.8414, -185.194, -130.4342, 96, 0, 255, 1, Worn_Chisel 2 | P 300.4927, -297.4041, 1.5309, 0, 0, 0, 1, Oven 3 | P 289.9734, -240.3652, 1.5962, 0, 0, 0, 1, Forge 4 | P 159.8266, -380.1068, 1.5579, 0, 0, 0, 1, Loom 5 | P 263.6569, -120.4287, 4.376, 0, 0, 0, 1, Brew_Barrel 6 | P 255.8363, -179.5831, 4.376, 0, 0, 0, 1, Forge 7 | P -425.346, -177.4283, 4.376, 0, 0, 0, 1, Kiln 8 | P -330.5758, -538.2301, 0.3145, 127, 0, 0, 2, Hoyce_MacTaegan(ber_Pre-Q) 9 | -------------------------------------------------------------------------------- /data/maps/map_files/halas_3.txt: -------------------------------------------------------------------------------- 1 | P 493.8, -561, -17.6238, 0, 127, 127, 2, Warrior_Guild 2 | P -407.3272, -331.9449, -19.6239, 0, 127, 127, 2, Shaman_Guild 3 | P -184, -596, 4.376, 0, 127, 127, 2, Keven_(GM_Beastlord) 4 | P -330.5405, -567.3668, 0.1, 0, 0, 127, 2, Shanis_(GM_Berserker)Pre-Q) 5 | P -119.277, -234.8706, 9.3759, 0, 127, 127, 2, Rogue_Guild 6 | -------------------------------------------------------------------------------- /data/maps/map_files/hateplane_2.txt: -------------------------------------------------------------------------------- 1 | P 51.4339, -255.263, 98.106, 0, 0, 0, 1, ? 2 | P -129.3445, 106.473, 98.106, 0, 0, 0, 1, ? 3 | P 446.651, -546.1035, 122.5435, 0, 0, 240, 1, ? 4 | P -280.625, -122.3851, 148.7546, 0, 0, 240, 3, ???EVENT??? 5 | -------------------------------------------------------------------------------- /data/maps/map_files/hateplane_3.txt: -------------------------------------------------------------------------------- 1 | P -294.4223, 85.4095, 2.1288, 240, 0, 0, 3, Lord_of_Loathing 2 | P -278.3442, -406.7457, 0.1062, 240, 0, 0, 3, Maestro_Rancor 3 | P -227.9293, -343.6324, 47.6062, 240, 0, 0, 3, High_Priest_M'kari 4 | P 446.3, -201.672, 100.435, 240, 0, 0, 3, Master_of_Spite 5 | P 451.5582, 60.1867, 100.435, 240, 0, 0, 3, Grandmaster_R'tal 6 | P 181.4926, 143.5423, 98.106, 240, 0, 0, 3, Mistress_of_Scorn 7 | P -312.9513, 208.7221, 98.106, 127, 0, 0, 2, an_Evangelist_of_Hate? 8 | P -104.5709, 380.6521, 47.1373, 240, 0, 0, 3, Ashenbone_Broodmaster 9 | P -9.2432, -230.5846, 145.1374, 240, 0, 0, 3, Innoruuk _The_Prince_of_hate 10 | P 161.8713, 360.4125, 47.1373, 240, 0, 0, 3, Magi_P'tasa 11 | P 67.48, 116.8906, 47.1373, 240, 0, 0, 3, Avatar_of_Abhorrence 12 | P 322.3496, -89.9014, 24.5748, 240, 0, 0, 3, Coercer_T'vala 13 | P 152.4942, 31.8665, 0.1062, 240, 0, 0, 3, Hand_of_the_Mastro 14 | P -155.216, -282.2998, 98.106, 240, 0, 0, 3, Hand_of_Maestro 15 | P 120.6637, 463.5951, 98.106, 240, 0, 0, 3, Hand_of_Maestro 16 | -------------------------------------------------------------------------------- /data/maps/map_files/highkeep_2.txt: -------------------------------------------------------------------------------- 1 | P 323.2463, 68.8701, 26.1582, 127, 64, 0, 2, King's_Court_Casino 2 | P 308.2101, 36.3194, 50.127, 0, 0, 0, 1, locked_door 3 | P 353.3414, 60.3601, 70.1269, 0, 0, 0, 1, locked_door 4 | P 226.5278, -137.416, 69.9706, 0, 0, 0, 1, Click_to_open_door 5 | P 250.8351, 103.159, 3.7961, 103, 0, 255, 1, Royal_Linens 6 | P 236.6711, -28.7944, 30.1, 0, 0, 0, 1, Oven 7 | -------------------------------------------------------------------------------- /data/maps/map_files/highkeep_3.txt: -------------------------------------------------------------------------------- 1 | P 193.2427, 97.2182, 26.3155, 0, 0, 127, 2, 2-Prisoner 2 | P 324.17, -67.161, 30.4263, 0, 0, 127, 2, 2-Prisoner 3 | P 282.6155, -75.9937, 26.19, 0, 0, 127, 2, 2-Prisoner 4 | P 207.8, -78.886, 26.19, 0, 0, 127, 2, 2-Prisoner 5 | P 299.9424, 52.3434, 49.9707, 0, 0, 127, 2, 3-Prisoner 6 | P 357, 42, 0.1, 0, 0, 0, 3, Ran_(GM_Wizard) 7 | P 357.2785, 41.7704, 0.1582, 0, 0, 240, 2, Ran_Flamespinner(GM_wizard) 8 | -------------------------------------------------------------------------------- /data/maps/map_files/hole_3.txt: -------------------------------------------------------------------------------- 1 | P -209.6000, -692.6413, -909.6227, 127, 0, 0, 3, Guardian_of_the_Seal_(R) 2 | P -498.1589, -726.8784, -643.7476, 240, 0, 0, 2, Urwenae_the_Cold(roof) 3 | P 17.1328, -8.4978, -349.8727, 240, 0, 0, 2, an_old_gargoyle(roof) 4 | P -682.9752, 40.3686, -363.6852, 240, 0, 0, 2, Obliterated_Construct 5 | P 453.7352, -440.3330, -81.8104, 240, 0, 0, 2, Elemental_Striker 6 | P 102.2253, -63.5174, -279.7166, 240, 0, 0, 2, an_old_construct 7 | P -350.9390, 23.2287, -347.1847, 240, 0, 0, 2, an_ancient_construct 8 | P -410.9945, -122.2416, -349.8727, 240, 0, 0, 2, a_ratman_inhabitant* 9 | P -504.7776, -926.7532, -572.7788, 240, 0, 0, 2, a_temple_researcher 10 | P -469.1206, -29.3401, -349.8727, 240, 0, 0, 2, an_ancient_gargoyle 11 | -------------------------------------------------------------------------------- /data/maps/map_files/iceclad_3.txt: -------------------------------------------------------------------------------- 1 | P -682.8971, -5801.3252, 128.5459, 127, 0, 0, 2, Stormfeather* 2 | P -2569.3162, -2826.9128, 145.4394, 240, 0, 0, 2, Midnight* 3 | P -2803.2521, -2785.4711, 155.3941, 127, 0, 0, 2, Garou* 4 | P -6072.9214, 475.6528, 193.4884, 127, 0, 0, 2, Graktar_Bluehammer 5 | P -6779.7426, 2198.3742, 145.8488, 240, 0, 0, 2, dire_wolf_stalker* 6 | P -2252.2973, -1234.6826, 48.868, 240, 0, 0, 2, elder_spearguard* 7 | P -2864.4211, -1518.6427, 103.463, 240, 0, 0, 2, Pulslating_icestorm* 8 | P -1272.432, -5265.645, 96.557, 240, 0, 0, 2, Midnight* 9 | -------------------------------------------------------------------------------- /data/maps/map_files/innothule_2.txt: -------------------------------------------------------------------------------- 1 | P -881, 1072, 0, 255, 255, 255, 2, Ruined_Ferry 2 | P -1237, 1237, 0, 255, 255, 255, 2, Submerged_Hut 3 | P 7, -1781, 0, 255, 255, 255, 2, Skel_Tower 4 | P -147.317, -1891.496, -21.722, 240, 240, 240, 2, Dven_Tulvnek 5 | P -227.875, 1754.2709, -23.4549, 240, 240, 240, 2, Kobolds 6 | P -984.735, 1996.4149, -4.5149, 240, 240, 240, 2, Fallen_Troll_&_Froglok 7 | P -1141.904, 1689.37, -27.9589, 240, 240, 240, 2, Deblik_Grumblok 8 | P -990.989, 446.4039, -0.941, 240, 240, 240, 2, Anlut_Heavenfall 9 | P -995.1169, 446.598, -1.922, 240, 240, 240, 2, Igok 10 | P -541.49, -1185.402, 13.768, 240, 240, 240, 2, Sugal_the_Fist 11 | P 156, -1909, 0, 240, 240, 240, 2, Undead_Tower 12 | P 250, 92, 0, 240, 240, 240, 2, Ground_Spawn_(Vial_of_Swamp_Water) 13 | P -1442, 1542, 0, 240, 240, 240, 2, Kolbolds 14 | P 317.8451, 2560.9636, -18.7674, 0, 0, 0, 3, Ruala_(Merchant) 15 | P 30.8579, 723.1355, -29.264, 0, 0, 0, 3, Knowledge_Portal 16 | P -786.5778, 1613.8965, -24.4483, 0, 0, 0, 3, Galdok_(GM_Cleric) 17 | P -929.9873, 1322.7606, -24.9159, 0, 0, 0, 3, Kintok_(GM_Shaman) 18 | -------------------------------------------------------------------------------- /data/maps/map_files/kael_2.txt: -------------------------------------------------------------------------------- 1 | P -1339.5890, -2369.7905, -38.4189, 127, 0, 0, 2, Miriku_the_Chaotic(Ench2.0) 2 | P -1342.7062, -238.8153, -138.2952, 0, 0, 240, 2, Slaggak_the_Trainer(Q)War-Pal 3 | P -1561.2310, 47.5623, -198.2488, 0, 0, 240, 2, Yimmrek_the_Herald(Q) 4 | P -1479.7385, 1670.4102, -158.2912, 0, 0, 240, 2, Keldor_Dek`Torek(Q)Casters 5 | P -1430.1259, -936.6096, -59.6542, 0, 0, 240, 2, Vkjor(Q)War-Pal 6 | P -1516.7700, 1740.1803, -159.6228, 0, 0, 240, 2, Fjokar_Frozenshard(Q)Rogue 7 | P -1639.5751, 952.4006, -219.5917, 0, 0, 240, 2, Gleed_Dragonhunter(Q)Ranger 8 | P -1883.4811, -328.5058, -199.5915, 0, 0, 240, 2, Wenglawks_Kkeak(Q)Rogue 9 | -------------------------------------------------------------------------------- /data/maps/map_files/kael_3.txt: -------------------------------------------------------------------------------- 1 | P -1136.3684, 810.1960, -121.6543, 240, 0, 0, 2, Vorken_Iceshard 2 | P -1148.1696, 839.5017, -121.6551, 240, 0, 0, 2, Klaggan_Iceshard 3 | P -1818.8698, 1419.5730, -198.8567, 240, 0, 0, 2, Yetarr 4 | P -1044.5516, 617.8129, -128.4500, 240, 0, 0, 2, Nojas_Blackfist 5 | P -1640.9680, 952.8750, -218.3710, 240, 0, 0, 2, Gleed_Dragonhunter 6 | P -1621.1260, 1179.8876, -148.4114, 240, 0, 0, 2, Dlammaz_Stormslayer 7 | P -1469.5077, -1232.1111, -108.4354, 240, 0, 0, 2, Bjrakor_the_Cold 8 | P -1003.1589, -1189.5732, -58.4219, 240, 0, 0, 2, Gkrean_Prophet_of_Tallon 9 | P -1552.3137, -1193.3467, -58.3414, 240, 0, 0, 2, Semkak_Prophet_of_Vallon 10 | P -1110.8860, -1254.1238, -108.4248, 240, 0, 0, 2, Vealok_the_Angry 11 | P -1087.1340, 321.1107, -178.3836, 240, 0, 0, 2, Tuuak 12 | P -1459.2487, 839.2227, -118.3750, 240, 0, 0, 2, Clrakk_Blackfist 13 | P -996.4361, 1070.5419, -129.6384, 240, 0, 0, 2, Bjosskhua_Blackfist 14 | P -2679.5313, 300.1732, -329.5758, 240, 0, 0, 2, Korakaz 15 | P -1580.7170, 1416.8621, -199.6073, 240, 0, 0, 2, Kyenka 16 | P -1343.8954, -243.4628, -138.3360, 240, 0, 0, 2, Slaggak_the_Trainer 17 | P -1420.5554, 300.3933, -198.4490, 240, 0, 0, 2, Kael_Militia_Captain 18 | P -1554.1332, 793.1502, -118.3979, 240, 0, 0, 2, Reivaj_the_Battlerager 19 | P -1624.8005, 1175.7179, -148.8870, 240, 0, 0, 2, a_Storm_Giant_Warlord 20 | P -1382.1678, -2760.5996, -68.1094, 127, 0, 0, 2, The_Statue_of_Rallos_Zek 21 | -------------------------------------------------------------------------------- /data/maps/map_files/kaesora_2.txt: -------------------------------------------------------------------------------- 1 | P 374.7167, -135.3317, -75.2655, 0, 0, 0, 1, a_tome_keeper 2 | P -529.5852, 69.9818, -297.7275, 0, 0, 127, 2, Nastiria_Kithlan 3 | P 413.2955, -118.3055, -103.8104, 127, 0, 0, 2, spectral_librarian(ench1.0) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/kaesora_3.txt: -------------------------------------------------------------------------------- 1 | P 83.4010, -127.3780, 0.1582, 240, 0, 0, 2, frenzied_strathbone 2 | P 605.6410, -159.3808, -110.9667, 240, 0, 0, 2, _hungered_ravener 3 | P 12.4412, -414.3102, -172.1778, 240, 0, 0, 2, reaver_of_Xalgoz 4 | P -72.1884, -178.5526, -63.9667, 240, 0, 0, 2, strathbone_runelord 5 | P -559.7473, 111.5268, -292.1281, 240, 0, 0, 2, Xalgoz 6 | P 399.5912, -135.8625, -103.9667, 240, 0, 0, 2, failed_crypt_raider 7 | P 396.9923, -91.7283, -103.9667, 240, 0, 0, 2, tortured_librarian 8 | -------------------------------------------------------------------------------- /data/maps/map_files/kaladima_2.txt: -------------------------------------------------------------------------------- 1 | P -302.9320, -109.4890, -10.1026, 127, 64, 0, 3, The_Arena_(PvP) 2 | P -208.5092, -128.5095, 0.2000, 127, 64, 0, 2, Staff_&_Spear 3 | P 208.6749, -217.9826, 0.2000, 127, 64, 0, 2, Gurtha's_Wares 4 | P 198.7090, -169.3600, 0.1000, 127, 64, 0, 2, Kiln 5 | P 208.9116, -169.7727, 1.9101, 127, 64, 0, 2, Pottery_Wheel 6 | P 233.8027, -242.1196, 0.2000, 127, 64, 0, 2, Oven 7 | P -212.7548, -101.9530, 0.2000, 127, 64, 0, 2, Pub_Kal 8 | P -244.3027, -110.9081, 0.2000, 127, 64, 0, 2, Brewing_Barrel 9 | P -366.9691, -116.7905, 0.2000, 127, 64, 0, 2, Redfist's_Metal 10 | P -356.6175, -175.9389, 0.2000, 127, 64, 0, 2, Tanned_Assets 11 | P -338.9596, -184.1085, 0.2000, 127, 64, 0, 2, Irontoe's_Eats 12 | P -385.9209, -112.7305, 0.2000, 0, 0, 0, 1, Forge 13 | P -299.4030, -195.9236, 0.2000, 0, 0, 127, 2, Gretta_(G)Ench2.0) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/kaladima_3.txt: -------------------------------------------------------------------------------- 1 | P -534.6521, 20.8708, 1.8759, 0, 127, 127, 2, Canloe_(GM_Warrior) 2 | P -377.6791, 100.4432, 0.2000, 0, 127, 127, 2, Byzar_(GM_Warrior) 3 | P -405.7130, -81.2310, 12.2000, 0, 127, 127, 2, Beno_(GM_Warrior) 4 | P -300.3158, -72.3285, 12.1582, 0, 127, 127, 2, Furtog(GM_War) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/kaladimb_2.txt: -------------------------------------------------------------------------------- 1 | P 164.8150, -393.4483, 17.3599, 0, 0, 0, 1, Forge 2 | P -250.5293, -589.7939, -35.9979, 127, 64, 0, 2, Brisbane_Treasury 3 | P 150.2915, -412.3041, 0.2000, 0, 0, 0, 1, Forge 4 | P 185.6116, -402.2550, 0.2000, 127, 64, 0, 1, Everhot_Forge 5 | P 186.1855, -651.5910, 0.2000, 127, 64, 0, 2, Grey_Bloom_Farms 6 | P 163.4499, -673.3558, 0.2000, 0, 0, 0, 1, Brewing_Barrel 7 | P -314.3170, -513.4891, -35.9979, 0, 0, 0, 1, Kiln 8 | P -315.8469, -533.6509, -32.4078, 0, 0, 0, 1, Pottery_Wheel 9 | P -223.1157, -700.9184, -67.7604, 0, 0, 127, 2, Jark(Pal1.0) 10 | P -116.9544, -676.2100, 4.2081, 0, 0, 127, 2, Nella_Stonebraids(Pal1.0) 11 | P -143.8640, -946.9126, 24.2082, 0, 0, 127, 2, Datur_Nightseer(Pal2.0) 12 | P 178.7516, -346.8915, 1.5531, 0, 0, 127, 2, Kinlo_Strongarm(Drd/Ber/Rng_Epics) 13 | -------------------------------------------------------------------------------- /data/maps/map_files/kaladimb_3.txt: -------------------------------------------------------------------------------- 1 | P -133.3329, -780.4523, 2.5009, 0, 127, 127, 2, Ghalea_(GM_Cleric) 2 | P -132.4713, -1325.2050, 36.5009, 0, 127, 127, 2, Brenthalion_(GM_Paladin) 3 | P -303.4121, -489.1134, -35.9953, 0, 127, 127, 2, Dravel_(GM_Berserker) 4 | P -259.8940, -531.6393, -33.4990, 0, 127, 127, 2, Crovsar_(GM_Rogue) 5 | P -304.4861, -657.9190, -55.9667, 0, 127, 127, 2, Diggins_(GM_Rogue) 6 | -------------------------------------------------------------------------------- /data/maps/map_files/karnor_2.txt: -------------------------------------------------------------------------------- 1 | P 302.5147, 149.809, 0.1062, 0, 0, 0, 1, ring_of_the_construct(GS) 2 | P 586.8333, 73.468, 14.2, 0, 0, 0, 1, Inscribable_Words(GS) 3 | P 664.1959, -45.9954, 41.9707, 0, 0, 0, 1, Rile_Shattered_Blade(GS) 4 | P 373.898, 101.4397, 0.1062, 0, 0, 0, 1, Locked_Door 5 | P 546.8468, 37.476, 29.8424, 240, 0, 0, 3, One_way 6 | P 589.385, -105.9925, 17.8478, 127, 0, 0, 2, a_Drolvarg_Pawbuster(Mnk1.0) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/karnor_3.txt: -------------------------------------------------------------------------------- 1 | P 489.9064, -181.2546, -37.9979, 240, 0, 0, 2, Undead_Jailer 2 | P 492.3994, -11.7068, -37.9979, 240, 0, 0, 2, skeletal_scryer* 3 | P 525.1462, 16.2165, -37.9979, 240, 0, 0, 2, Undead_Jailer 4 | P 577.7663, -116.381, -6.998, 240, 0, 0, 2, Skeletal_Caretaker 5 | P 601.3596, 19.668, -20.998, 240, 0, 0, 2, spectral_turnkey 6 | P 627.3266, -100.938, 16.19, 127, 0, 0, 2, Drolvarg_Warlord(BRD1.0) 7 | P 751.1615, 68.6582, 6.19, 127, 0, 0, 3, Venril_Sathir 8 | P 554.721, 76.9241, 14.2, 127, 0, 0, 3, Venril_Sathir's_remains 9 | P 302.5625, -74.503, 1.5467, 127, 0, 0, 2, The_Arisen_Soldier 10 | P 255.1103, 17.9669, 0.1062, 127, 0, 0, 2, The_Arisen_Soldier 11 | P 331.161, 93.8311, 0.1062, 127, 0, 0, 2, The_Arisen_Soldier 12 | P 234.5036, 104.6608, 1.5718, 240, 0, 0, 2, sentry_of_sahir 13 | P 195.8034, 6.495, 43.5236, 240, 0, 0, 2, skeletal_captain 14 | P 704.1028, -69.7848, -30.4846, 240, 0, 0, 2, spectral_turnkey 15 | P 699.8708, 125.4895, 28.4064, 240, 0, 0, 2, Knight_of_Sathir 16 | P 408.4821, -59.3813, 42.2832, 240, 0, 0, 2, caller_of_Sathir 17 | P 298.8503, -107.8225, 0.3145, 240, 0, 0, 2, caller_of_Sathir 18 | P 665.5157, -153.1048, 24.3144, 240, 0, 0, 2, Hangnail 19 | P 104.5902, -146.2769, 28.3144, 240, 0, 0, 2, a_drolvarg_captain 20 | -------------------------------------------------------------------------------- /data/maps/map_files/kedge_2.txt: -------------------------------------------------------------------------------- 1 | P 76.7310, 63.8149, 10.6852, 0, 0, 0, 3, Click_Cube 2 | P 401.7101, -152.3890, -75.9162, 127, 0, 0, 2, Tainted_Seahorse 3 | -------------------------------------------------------------------------------- /data/maps/map_files/kedge_3.txt: -------------------------------------------------------------------------------- 1 | P 104.1187, 256.4700, -109.3195, 240, 0, 0, 2, Cauldronboil* 2 | P 289.9499, 63.2239, -121.5464, 240, 0, 0, 2, Priestess_Auraia 3 | P -136.9216, 25.2286, -293.8709, 240, 0, 0, 3, Phinigel_Autropos 4 | P 305.9488, -4.6257, -115.4800, 240, 0, 0, 2, Estrella_of_Gloomwater 5 | P 330.5197, 4.5739, -107.8379, 240, 0, 0, 2, Nyrein_the_Beguiled 6 | P 216.8916, -82.8956, -136.2538, 240, 0, 0, 2, Auraline 7 | P 287.4821, -258.8229, 62.9996, 127, 0, 0, 2, Undertow(1.0) 8 | P 231.3438, 163.8437, 32.6773, 240, 0, 0, 2, a_frenzied_cauldron_shark 9 | P 61.7755, 71.1940, 0.2000, 240, 0, 0, 2, a_ferocious_hammerhead* 10 | P 4.2450, -40.2045, 27.8464, 240, 0, 0, 2, a_fierce_impaler 11 | P 501.7977, -57.7361, -86.1876, 240, 0, 0, 2, a_seahorse_matriarch 12 | P 286.9424, -31.1500, -129.1005, 240, 0, 0, 2, Shellara_Ebbhunter 13 | P 342.7017, -129.6220, -77.6675, 240, 0, 0, 2, Coralyn_Kelpmaiden 14 | -------------------------------------------------------------------------------- /data/maps/map_files/kerraridge_2.txt: -------------------------------------------------------------------------------- 1 | P -128.9788, -107.6009, 0.1, 0, 0, 0, 3, Raarrk_(Merchant) 2 | P 682.4003, -631.7246, 13.2942, 0, 0, 0, 3, Roary_(Merchant) 3 | P -177.3565, -518.676, 14.9, 0, 0, 0, 3, Melixis_(Alchemy) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/kithicor_2.txt: -------------------------------------------------------------------------------- 1 | P -1649.4501, -573.1734, 188.6122, 0, 0, 127, 2, Tarnamil(Sk_1.5) 2 | P -3231.8538, -910.2607, 380.1400, 127, 0, 0, 2, cloaked_figure(Brd_1.5) 3 | P -2308.4675, -813.2051, 270.7456, 127, 0, 0, 2, Advisor_C'zatl 4 | P -2291.7258, -794.3247, 269.5803, 127, 0, 0, 2, War_Priestess 5 | P -2301.9263, -787.7970, 269.5398, 127, 0, 0, 1, Adjutant_D'kan 6 | P -2314.6799, -802.1292, 271.7721, 127, 0, 0, 2, Tasi 7 | P -2305.7424, -830.3084, 270.2431, 127, 0, 0, 2, Coercer_Q'ioul 8 | P -2299.3840, -808.6965, 269.5330, 127, 0, 0, 1, Brigadier 9 | P -2293.4553, -811.2560, 269.5627, 127, 0, 0, 1, Ioltos 10 | P -1699.1917, -1524.1631, 193.2238, 0, 0, 127, 2, Giz_X`Tin*(Druid1.0) 11 | -------------------------------------------------------------------------------- /data/maps/map_files/kithicor_3.txt: -------------------------------------------------------------------------------- 1 | P -2292.6404, -825.4880, 270.9793, 127, 0, 0, 3, General_Vghera 2 | -------------------------------------------------------------------------------- /data/maps/map_files/kurn_2.txt: -------------------------------------------------------------------------------- 1 | P 80.3388, 281.1693, 1.6281, 0, 0, 0, 2, L_15_H_15 2 | P -188.6122, -163.5572, 0.2082, 127, 0, 0, 2, undead_tower_guard 3 | -------------------------------------------------------------------------------- /data/maps/map_files/kurn_3.txt: -------------------------------------------------------------------------------- 1 | L 195.2606, 45.9440, 1.6526, 195.2512, 102.9130, 0.1707, 0, 0, 0 2 | L 199.4899, 105.6145, 1.6397, 202.2624, 105.6179, 0.8555, 0, 0, 0 3 | L 202.2624, 105.6179, 0.8555, 202.2589, 110.9140, 1.6707, 0, 0, 0 4 | L 206.8714, 112.6156, 1.6623, 213.5566, 112.6189, 1.4141, 0, 0, 0 5 | L 217.5511, 111.2078, 1.7042, 217.5559, 102.5341, 1.5308, 0, 0, 0 6 | L 215.7500, 97.3198, 1.5557, 203.5526, 97.3252, 0.8740, 0, 0, 0 7 | L 203.5526, 97.3252, 0.8740, 203.5494, 55.7110, 1.6718, 0, 0, 0 8 | L 208.3677, 49.6126, 1.6689, 212.4499, 49.6163, 1.4728, 0, 0, 0 9 | L 217.5563, 46.3796, 1.6590, 217.5558, 42.4112, 1.5404, 0, 0, 0 10 | L 215.1822, 41.3211, 1.5781, 203.5107, 41.3168, 1.1627, 0, 0, 0 11 | P -63.6103, 52.4119, 101.5520, 240, 0, 0, 2, Shattered_Skeleton* 12 | P -267.7583, 113.5238, -118.5940, 240, 0, 0, 2, Bargynn 13 | P 48.4979, -79.9197, 128.4923, 240, 0, 0, 2, a_skeletal_cook 14 | P 50.2618, -76.6100, 127.5922, 240, 0, 0, 2, thick_boned_Skel#2 15 | P -61.1112, -171.7228, -41.6542, 240, 0, 0, 2, think_boned_skeleton#3* 16 | P -151.2282, -186.2031, -38.7650, 240, 0, 0, 2, unded_jester* 17 | P 112.5412, -30.1402, 100.2831, 240, 0, 0, 2, undead_crusader* 18 | P 174.6766, 108.3429, 42.1769, 240, 0, 0, 2, Observant_Skeleton 19 | P -79.1594, 31.7984, -41.7605, 240, 0, 0, 2, Crackling_Bones 20 | P -45.8288, -47.2000, -41.7605, 240, 0, 0, 2, thick_boned_skeleton#1* 21 | P -37.3098, 127.1831, -41.7605, 240, 0, 0, 2, fingered_skeleton 22 | -------------------------------------------------------------------------------- /data/maps/map_files/lakeofillomen_2.txt: -------------------------------------------------------------------------------- 1 | P 1604.4359, 3036.2151, 106.3781, 127, 64, 0, 2, Undead 2 | P -262.5840, -1737.7090, 99.2940, 127, 64, 0, 2, explorer 3 | P -1438.7830, -930.3173, 97.7623, 127, 64, 0, 2, goblins 4 | P -4703.6567, 2057.7944, 224.5748, 127, 0, 0, 2, Weaponsmith_Ko'zirr 5 | P 1871.6210, 499.2878, 99.3449, 127, 64, 0, 2, goblins 6 | P -627.9465, 3481.5188, 103.1942, 127, 64, 0, 2, goblins 7 | P 4186.9951, -5349.9678, 75.5240, 127, 64, 0, 2, Undead 8 | P -4843.2354, 2549.6804, 223.8300, 127, 0, 0, 2, (Wiz_Pre-Q) 9 | P 1804.8677, -3252.7263, 75.8843, 127, 64, 0, 2, marauder 10 | P -1098.1545, -2743.6021, 110.6870, 0, 0, 127, 2, Spirit_Sentinel_(Shm_pre1.5) 11 | P -2472.7471, -72.6167, 196.4514, 0, 0, 127, 2, Lingering_Axefall_(Ber_1.0) 12 | P 540.2790, 807.6942, 77.1319, 0, 0, 127, 2, Astral_Projection_(Mnk_1.0) 13 | P 3425.6460, 118.9241, 228.2529, 0, 0, 127, 2, Keras_McArik_(Ber_Epic) 14 | P -1127.4309, 300.1643, 71.2310, 0, 0, 127, 2, Syrik_Iceblood_(Ench_pre1.5) 15 | P -2456.4175, -788.2840, 157.3411, 127, 0, 0, 2, Impervious_Bloodbeast(Ber1.0) 16 | P -174.8820, 275.7425, -193.8870, 127, 0, 0, 2, a_bloodgill_mimic(Ench_Pre-Q) 17 | P 505.5480, 897.7614, -203.7941, 0, 0, 0, 1, crack_under_Veksar 18 | P 409.4861, 696.3791, -221.3070, 127, 0, 0, 2, Bloodgill_Foragers(Drd1.5) 19 | P 831.7036, 903.6236, -1.2815, 127, 0, 0, 2, Corrupted_Barracuda(Drd1.0) 20 | -------------------------------------------------------------------------------- /data/maps/map_files/lakeofillomen_3.txt: -------------------------------------------------------------------------------- 1 | P -5017.9395, 2515.8201, 224.7935, 240, 0, 0, 3, Chancellor_of_Di'Zok 2 | P -2634.9929, -4115.1899, 31.2788, 240, 0, 0, 3, Lord_Gorelik* 3 | P -2459.5950, -4267.7129, 60.1998, 240, 0, 0, 3, Lord_Gorelik* 4 | P -263.4790, -1783.6320, 102.4804, 240, 0, 0, 2, a_lead_explorer 5 | -------------------------------------------------------------------------------- /data/maps/map_files/lakerathe_3.txt: -------------------------------------------------------------------------------- 1 | P -1155.7246, -3858.9980, -2.5120, 127, 0, 0, 2, gnoll_embalmer(Mnk1.0) 2 | P -157.1700, -2794.6919, -372.8532, 127, 0, 0, 2, corrupted_shaman(Druid1.0) 3 | P -155.3880, -2770.9041, -374.9460, 127, 0, 0, 2, Lord_Bergurgle(Cle1.0) 4 | -------------------------------------------------------------------------------- /data/maps/map_files/lfaydark_3.txt: -------------------------------------------------------------------------------- 1 | P -18.3979, 224.7533, 3.8047, 240, 0, 0, 2, Crookstinger* 2 | P -3146.7561, -1417.7086, 28.9436, 240, 0, 0, 2, Queen_Nasheeji* 3 | P -3388.2593, 69.5790, -3.4409, 240, 0, 0, 2, Old_Dimshimmer*HighSun 4 | P -2469.7449, -1058.2605, 28.9686, 240, 0, 0, 2, Whimsy_Larkwitter*HighSun 5 | P -1103.1674, 122.6741, -3.5388, 240, 0, 0, 2, Mina_Glimmerwing* 6 | -------------------------------------------------------------------------------- /data/maps/map_files/mischiefplane_4.txt: -------------------------------------------------------------------------------- 1 | P 1565, 630, 90, 200, 0, 200, 2, Trap! 2 | P 1300, 238, 90, 200, 0, 200, 2, Trap! 3 | P 1235, 195, 90, 200, 0, 200, 2, Trap! 4 | P 1040, 700, 90, 200, 0, 200, 2, Trap! 5 | P 985, 900, 90, 200, 0, 200, 2, Trap! 6 | P 617, 1238, 90, 200, 0, 200, 2, Trap! 7 | P 525, 1275, 90, 200, 0, 200, 2, Trap! 8 | P 485, 870, 90, 200, 0, 200, 2, Trap! 9 | P 275, 1230, 90, 200, 0, 200, 2, Trap! 10 | P 72, 1050, 90, 200, 0, 200, 2, Trap! -------------------------------------------------------------------------------- /data/maps/map_files/mistmoore_3.txt: -------------------------------------------------------------------------------- 1 | P -352.3016, 205.52, -139.9353, 240, 0, 0, 2, Garton_Viswin 2 | P -380.9764, 192.192, -209.9038, 240, 0, 0, 2, The_Stone_Guardian 3 | P 113.6808, 318.396, -191.9353, 240, 0, 0, 2, Butler_Syncall 4 | P 89.8336, 339.1664, -191.9353, 240, 0, 0, 2, Maid_Issis 5 | P -22, 131, 0, 240, 0, 0, 2, Princess_Cherista 6 | P -88.281, 20.3279, -196.9042, 240, 0, 0, 2, A_Cloaked_Dhampyre 7 | P -86.3272, 117.772, -157.9353, 240, 0, 0, 2, Advisor 8 | P -89.7014, 175.591, -165.9353, 240, 0, 0, 2, Lasna_Cheroon 9 | P -323.7153, 67.4244, -236.37, 240, 0, 0, 2, An_Avenging_Caitiff* 10 | P -515.1233, 385.725, -222.3699, 240, 0, 0, 2, a_glyphed_ghoul 11 | P 7.1787, 153.645, -186.215, 240, 0, 0, 2, Mynthi_or_a_werewolf 12 | P 127.2891, 110.9435, -185.398, 240, 0, 0, 2, ac_aug 13 | -------------------------------------------------------------------------------- /data/maps/map_files/misty_2.txt: -------------------------------------------------------------------------------- 1 | P 1826, 498, 0, 127, 64, 0, 2, Druid_Ring 2 | P -415, 1100, 0, 0, 0, 0, 2, Goblins 3 | P -1133, 969, 0, 0, 0, 0, 2, Goblins 4 | P -1089, 324, 0, 0, 0, 0, 2, Goblins 5 | P -1092, -1020, 0, 0, 0, 0, 2, Orcs 6 | P -564, -308, 0, 0, 0, 0, 2, Undead 7 | P 1834.7111, 531.222, 120.4014, 0, 0, 0, 3, Druid_Circle 8 | -------------------------------------------------------------------------------- /data/maps/map_files/najena_2.txt: -------------------------------------------------------------------------------- 1 | P 92.4886, 146.818, -26.998, 0, 0, 0, 1, Dull_Bone_Key 2 | P 64.3078, 115.388, -26.8416, 0, 0, 0, 1, Shiny_Metal_Key 3 | P 88.4359, 61.8836, -27.8937, 0, 0, 0, 1, Guard's_Keyring 4 | P 174, 1, 0, 0, 0, 0, 1, Bloodstained_Key 5 | P -104.7064, -314.2808, 0.3, 0, 0, 0, 1, Golden_Crescent_Key 6 | P 146.8909, 41.2319, 0.1, 240, 0, 0, 1, Trap 7 | P 120.2677, 161.1319, -21.6443, 0, 0, 0, 1, Cryptic_Page(GS) 8 | P 99.5347, 35.8085, 0.1062, 240, 0, 0, 1, Trap 9 | -------------------------------------------------------------------------------- /data/maps/map_files/najena_3.txt: -------------------------------------------------------------------------------- 1 | P -220.6827, -457.4658, 1.5265, 240, 0, 0, 2, The_Widowmistress 2 | P -217.442, -357.1519, -13.999, 240, 0, 0, 2, Trazdon 3 | P 115.599, 154.4509, -26.9989, 240, 0, 0, 2, Rathyl(Bloodstained_Key) 4 | P 50.1989, 161.8609, -26.7429, 127, 0, 0, 2, Ekeros(Bloodstained_Key)Mnk1.0) 5 | P -104.6503, -354.9492, 1.5381, 240, 0, 0, 2, Najena 6 | P -234.286, -90.7223, -26.4678, 240, 0, 0, 2, Officer_Grush 7 | P 146.4826, 73.3452, -27.8937, 0, 0, 0, 1, Guard's_Keyring 8 | P -188.1468, -52.9224, -27.8937, 127, 0, 0, 2, guard_captain(Shiny_Metal_Key) 9 | P -175.651, -257.374, -27.9989, 127, 0, 0, 2, BoneCracker(Dull_Bone_Key) 10 | P 113.4206, 83.9158, -27.8937, 127, 0, 0, 2, Moosh*(Guard's_Keyring) 11 | P 217.473, 34.4832, -12.4792, 240, 0, 0, 2, Drelzna(Golden_Crescent_Key) 12 | -------------------------------------------------------------------------------- /data/maps/map_files/necropolis_3.txt: -------------------------------------------------------------------------------- 1 | P -574.8523, -349.9200, -163.4036, 240, 0, 0, 2, Pierre 2 | P 370.1274, -250.9878, -218.3463, 240, 0, 0, 2, Domninator_Yisaki 3 | P 1745.7253, -139.5262, -255.2058, 240, 0, 0, 2, a_bloodthirsty_carrion_bat* 4 | P 196.3956, -1454.5380, -159.9353, 240, 0, 0, 2, a_great_green_slime 5 | P 397.5610, -1419.4852, -287.9440, 240, 0, 0, 2, a_fierce_entropy_serpent 6 | P 2827.4009, -61.7721, 10.3000, 240, 0, 0, 2, a_Chetari_Darkling 7 | P 698.3075, -583.5790, -199.9042, 240, 0, 0, 2, Vaniki_(122hrs) 8 | P 567.2540, -478.1564, -259.9041, 240, 0, 0, 2, Vaniki_(122hrs)5d+2hrs) 9 | P 1241.6764, 388.3428, -259.9041, 240, 0, 0, 2, Vaniki_(122hrs) 10 | P 612.4000, 506.5200, -249.2970, 240, 0, 0, 2, Vaniki_(122hrs) 11 | P -720.8541, -486.6447, -163.4045, 240, 0, 0, 2, Slani_Veekilaleeki 12 | P 1698.8228, -974.4057, 1.8408, 240, 0, 0, 2, Queen_Raltaas 13 | P 501.5534, -350.8625, -259.9041, 240, 0, 0, 2, a_crazed_Chelaki 14 | P 2290.1448, -26.4096, -249.9042, 240, 0, 0, 2, a_Chetari_Warlord 15 | P 350.1809, 242.8509, -259.9041, 127, 0, 0, 3, Zlandicar 16 | P -632.6690, -620.6372, 6.5545, 240, 0, 0, 2, a_deadly_phase_spider 17 | P 2019.5549, -940.8164, 3.5167, 240, 0, 0, 2, _a_masterful_dragon_construct 18 | P 906.9339, -1541.6454, 1.8347, 240, 0, 0, 2, a_venemous_phase_spider 19 | P 169.3700, -941.5828, -258.3942, 240, 0, 0, 2, Seeker_Bulava 20 | -------------------------------------------------------------------------------- /data/maps/map_files/nektulos_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/nektulos_2.txt -------------------------------------------------------------------------------- /data/maps/map_files/nektulos_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/map_files/nektulos_3.txt -------------------------------------------------------------------------------- /data/maps/map_files/neriaka_2.txt: -------------------------------------------------------------------------------- 1 | P 238.1875, -131.1220, -0.3740, 127, 64, 0, 3, Drana's_Bread_and_Butcher 2 | P 60.2314, -249.1564, 17.1260, 127, 64, 0, 3, Gambel's_Greens 3 | P 216.2301, -185.1956, 17.1260, 127, 64, 0, 3, Slug's_Tavern 4 | P 161.4031, -132.3797, 0.6260, 127, 64, 0, 3, Silk_Underground 5 | P 101.1452, -151.8113, -0.3740, 127, 64, 0, 3, The_Smuggler's_Inn 6 | P 440.5072, 298.4492, 15.6259, 127, 64, 0, 3, Pig_Sticker 7 | P 270.9522, 345.5783, -3.3740, 127, 64, 0, 3, Bulls_Pit 8 | P 124.1252, 343.6442, 0.6260, 127, 64, 0, 3, Bites_N_Pieces 9 | P 169.2821, 290.6125, 0.6260, 127, 64, 0, 3, Shinie_Tings 10 | P 404.1686, 272.9531, 14.9000, 0, 0, 0, 1, Forge 11 | P 393.4218, 292.6951, 0.1000, 0, 0, 0, 1, Forge 12 | P 275.3045, -143.3282, 0.1000, 0, 0, 0, 1, Oven 13 | P 189.6875, -131.1992, 0.1000, 0, 0, 0, 1, Sewing_Kit 14 | P 160.6299, 362.2219, 0.1000, 0, 0, 0, 1, Oven 15 | P 67.3341, -200.4320, 0.1000, 0, 0, 0, 1, Pottery_Wheel 16 | P 80.1043, -206.1801, 0.1000, 0, 0, 0, 1, Kilt 17 | P 105.9611, 334.9008, 0.2000, 0, 0, 127, 2, Smaka_(Sk1.0) 18 | -------------------------------------------------------------------------------- /data/maps/map_files/neriaka_3.txt: -------------------------------------------------------------------------------- 1 | P 472.0000, 598.0000, 19.6260, 0, 127, 127, 3, Hukulk_(Shadowknight_GM) 2 | P 488.0000, 578.0000, 19.6260, 0, 127, 127, 3, Ranjor_(Warrior_GM) 3 | P 350.0000, 578.0000, 19.6260, 0, 127, 127, 3, Gardunk_(Beastlord_GM) 4 | P 367.0000, 598.0000, 19.6260, 0, 127, 127, 3, Kaglari_(Shaman_GM) 5 | P 418.1374, 453.6637, 1.9600, 0, 127, 127, 3, Daboo_(GM_Berserker) 6 | -------------------------------------------------------------------------------- /data/maps/map_files/neriakb_2.txt: -------------------------------------------------------------------------------- 1 | P 993.6834, -146.3335, -27.9989, 127, 64, 0, 2, Magician 2 | P 879.4329, -44.5153, -55.9677, 127, 64, 0, 2, Bounty_of_the_Earth 3 | P 878.9841, -18.2631, -41.9677, 0, 0, 0, 1, Forge 4 | P 1216.5839, 28.2293, -28.9989, 127, 64, 0, 2, Arena 5 | P 929.8410, -52.3365, -41.9677, 127, 64, 0, 2, Forge_House 6 | P 951.5012, -45.9585, -41.9677, 127, 64, 0, 2, Neriak_Underground 7 | P 851.1527, -45.4159, -55.9677, 127, 64, 0, 2, The_Blind_Fish 8 | P 904.4978, -29.1195, -55.9677, 127, 64, 0, 2, The_Burnished_Coin_(Bank) 9 | P 880.5970, -53.1362, -55.9677, 127, 64, 0, 2, The_Refined_Palate 10 | P 799.3184, 5.6924, -64.1210, 0, 0, 0, 1, Rod(Spoke_of_Tarton's_Wheel_-_Izah) 11 | P 793.3504, -0.8700, -68.6621, 0, 0, 0, 1, old_silver_coin 12 | -------------------------------------------------------------------------------- /data/maps/map_files/neriakb_3.txt: -------------------------------------------------------------------------------- 1 | P 969.0000, -149.0000, -41.9677, 0, 127, 127, 3, Jayna_(GM_Magician) 2 | P 963.0000, -142.0000, -41.9677, 0, 127, 127, 3, Gath_(GM_Wizard) 3 | P 963.0000, -156.0000, -41.9677, 0, 127, 127, 3, Camia_(GM_Enchanter) 4 | P 1128.0000, -24.0000, -51.9677, 0, 127, 127, 3, Seloxia_(GM_Warrior) 5 | P 1144.0000, 36.0000, -55.9677, 0, 127, 127, 3, Narex_(GM_Warrior) 6 | P 1151.0000, 28.0000, -55.9677, 0, 127, 127, 3, Jarrex_(GM_Warrior) 7 | P 1143.0000, 21.0000, -55.9677, 0, 127, 127, 3, Trizam_(GM_Warrior) 8 | P 1217.0000, 51.0000, -27.9989, 0, 127, 127, 3, Yegek_(GM_Warrior) 9 | -------------------------------------------------------------------------------- /data/maps/map_files/neriakc_2.txt: -------------------------------------------------------------------------------- 1 | P 1516.3468, -774.6770, -83.9676, 127, 64, 0, 3, The_Rack 2 | P 1445.6107, -748.9586, -83.9676, 127, 64, 0, 3, Cuisine_Excelsior 3 | P 1448.1704, -880.2040, -83.9676, 127, 64, 0, 3, The_Maiden's_Fancy 4 | P 1423.2384, -822.9169, -83.9676, 127, 64, 0, 3, The_Bauble 5 | P 1320.7628, -765.1467, -83.9676, 127, 64, 0, 3, Furrier_Royale 6 | P 1316.1223, -859.1810, -69.9676, 127, 64, 0, 3, Library 7 | P 811.0000, -512.0000, -27.9969, 0, 127, 0, 2, from_The_Hole_(portal) 8 | P 1571.9147, -834.3355, -82.4226, 0, 0, 0, 1, DE_Cultural_Forge 9 | P 811.3523, -414.3534, -55.6542, 127, 0, 0, 2, Verina_Tomb(Ench1.0) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/neriakc_3.txt: -------------------------------------------------------------------------------- 1 | P 1237.0000, -1280.0000, -82.9676, 0, 127, 127, 2, Nezzka_(GM_SK) 2 | P 1253.0000, -1282.0000, -81.9676, 0, 127, 127, 2, Xon_(GM_Nec) 3 | P 1318.0000, -628.0000, -83.9676, 0, 127, 127, 2, Eolorn_(GM_Rog) 4 | P 789.0000, -408.0000, -55.9677, 0, 127, 127, 2, Perrir_(GM_Cle) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/northkarana_2.txt: -------------------------------------------------------------------------------- 1 | P -1054.3798, -1287.8362, -3.8940, 127, 64, 0, 3, X 2 | P -1299.3542, 3704.1211, -10.9655, 127, 64, 0, 3, Great_Spires 3 | P 1449.3823, 2730.6758, -10.6240, 127, 64, 0, 3, Druid_Circle 4 | P -1151.7841, -1303.3295, -3.5354, 0, 0, 127, 2, Dire_Griffon(Brd_1.5) 5 | P 379.6496, 1334.7919, -0.6136, 127, 0, 0, 2, Sir_Gerwin_Thunderblade(Ncr1.5)* 6 | P 1067.1389, -1210.5018, -3.2021, 0, 0, 127, 2, withered_treant(Druid1.0) 7 | P -502.2690, -1350.7074, -7.7672, 0, 0, 127, 2, Xanuusus(Druid1.0) 8 | -------------------------------------------------------------------------------- /data/maps/map_files/northkarana_3.txt: -------------------------------------------------------------------------------- 1 | P -994.5575, 371.8360, -11.2479, 240, 0, 0, 2, Ashenpaw*HighSun 2 | P 633.2813, -829.9910, 6.1935, 240, 0, 0, 2, Callowwing*HighSun 3 | P -1445.6193, 3572.4958, -12.1620, 240, 0, 0, 2, Grimtooth*HighSun 4 | P 744.4352, 2089.1484, -9.6874, 240, 0, 0, 2, Korvik_the_Cursed*HighSun 5 | P -1154.5631, 1414.1554, -10.8963, 240, 0, 0, 2, Lieutenant_Midraim*HighSun 6 | P 1656.6791, 2832.7366, -11.2479, 240, 0, 0, 2, Swiftclaw*HighSun 7 | P 124.1586, 2936.1475, -9.7088, 240, 0, 0, 2, Timbur_the_tiny 8 | P 520.4922, 661.5049, -11.2479, 240, 0, 0, 2, Ashenpaw 9 | P -2377.6770, 1544.3668, -10.1980, 240, 0, 0, 2, Ashenpaw 10 | P -1261.4227, -571.3931, -1.5120, 240, 0, 0, 2, Lieutenant_Midraim 11 | P -2912.3955, 3011.2261, -3.9355, 240, 0, 0, 2, Swiftclaw 12 | P -2810.1299, -976.9611, 5.2064, 240, 0, 0, 2, Swiftclaw 13 | P -2104.6699, 3174.3640, -5.9800, 240, 0, 0, 2, Lieutenant_Midrain 14 | P -2268.5784, 1445.3232, -11.2479, 240, 0, 0, 2, Ashen 15 | P -945.6340, 149.2861, -11.2479, 240, 0, 0, 2, Lieutenant_Midrain 16 | P -2367.4790, 1063.6287, -10.4534, 240, 0, 0, 2, Swift 17 | P 1589.1350, 3383.5071, -11.2479, 0, 0, 0, 2, G 18 | P 1655.6080, 2829.1360, -9.1372, 240, 0, 0, 2, Timbur_the_tiny 19 | P -1090.2047, -22.2106, -4.8796, 240, 0, 0, 2, Timbur_the_tiny 20 | -------------------------------------------------------------------------------- /data/maps/map_files/nurga_2.txt: -------------------------------------------------------------------------------- 1 | P 938.3440, 2132.3191, -223.9050, 0, 0, 127, 2, Slave_Du_Jour 2 | P 69.5409, 1491.8060, -191.9370, 0, 0, 127, 2, a_sleeping_ogre(Mnk1.0) 3 | P -261.4780, 1448.1566, -191.9353, 0, 127, 127, 2, Zusuu 4 | P -1352.8300, 1283.9047, -287.8727, 0, 127, 127, 2, The_Bone_Seer 5 | P -1382.1027, 1994.4420, -307.8690, 0, 127, 127, 2, Tribal_Mineralist 6 | -------------------------------------------------------------------------------- /data/maps/map_files/nurga_3.txt: -------------------------------------------------------------------------------- 1 | P -1324.9626, 1987.4121, -311.9481, 240, 0, 0, 2, Tribal_Elder 2 | P 951.4239, 2066.8250, -175.9370, 240, 0, 0, 2, Life_Drinker_Krador 3 | P 1233.7739, 1782.5679, -175.9370, 240, 0, 0, 2, Spirit_Weaver_Tramix 4 | P 903.7449, 1523.3488, -218.1914, 240, 0, 0, 2, Frost_Caller_Ollikaz 5 | P -1327.8740, 1960.6591, -322.3539, 240, 0, 0, 2, Slave_Driver_Nimol 6 | P -1426.5150, 1703.3040, -279.8740, 240, 0, 0, 2, Taskmaster_Yajo 7 | P 1882.4849, 2052.4939, 14.7530, 240, 0, 0, 2, Stabber_Remmy 8 | P 1232.1206, 1144.3683, -174.2385, 240, 0, 0, 2, Taskmaster_Huflam 9 | P 533.8440, 1155.4249, -175.9370, 240, 0, 0, 2, Taskmaster_Crizz 10 | P 614.3419, 1475.9310, -191.9370, 240, 0, 0, 2, Bloodthirsty_Rat 11 | P 377.2400, 1315.6300, -175.9370, 240, 0, 0, 2, Death_Caller_Joepla 12 | P 72.5490, 1265.4729, -191.9370, 240, 0, 0, 2, Blackguard_Thabis 13 | P -151.5680, 1153.5190, -191.9370, 240, 0, 0, 2, Overseer_Pruckib 14 | P -202.7580, 1127.1929, -191.9370, 240, 0, 0, 2, Overseer_Henxsa 15 | P -625.9149, 1166.4490, -191.9370, 240, 0, 0, 2, Overseer_Malam 16 | P -1351.4069, 1998.8849, -310.4900, 240, 0, 0, 2, Spirit_Chanter_Bibodik 17 | P 1268.9690, 2077.7271, -175.9370, 240, 0, 0, 2, Miner_Gribok 18 | P -1160.5150, 1217.3440, -287.8740, 240, 0, 0, 2, Flame_Chanter_Breplish 19 | P -1350.2650, 1643.3250, -276.6469, 240, 0, 0, 2, Death_Knight_Donkot 20 | P 795.3400, 2261.3201, -223.9050, 240, 0, 0, 2, Slave_Keeper_Davirg 21 | P 618.4969, 1938.5470, -223.9050, 240, 0, 0, 2, Traitor_Efuin 22 | -------------------------------------------------------------------------------- /data/maps/map_files/oggok_2.txt: -------------------------------------------------------------------------------- 1 | P -51.9754, -332.5270, 4.6885, 127, 64, 0, 3, Greenblood_Guild 2 | P 219.3703, 11.1051, -6.3114, 127, 64, 0, 3, Oggok's_Keep 3 | P 308.8636, -193.3125, 4.6885, 127, 64, 0, 3, Meet_and_Drink_Tew_Biew 4 | P -1166.2927, -539.2978, 77.5112, 0, 0, 127, 2, Bozlum_Blossom(Ench1.0) 5 | -------------------------------------------------------------------------------- /data/maps/map_files/oggok_3.txt: -------------------------------------------------------------------------------- 1 | P -1160.2751, -251.2558, 80.4466, 0, 127, 127, 2, Bordag_(GM_Beastlord) 2 | P -985.7703, -631.5575, 80.3447, 0, 127, 127, 2, Zulort_(GM_Shaman) 3 | P -809.4530, -730.9382, 39.3759, 0, 127, 127, 2, Fuga_(GM_Shaman) 4 | P -874.6118, -752.9089, 39.3759, 0, 127, 127, 2, Jargo_(GM_Shaman) 5 | P -1094.5116, -650.1208, 80.3447, 0, 127, 127, 2, Marda_(GM_Shaman) 6 | P 41.3442, -357.8568, 16.3760, 0, 127, 127, 2, Bonlarg_(GM_Shadowknight) 7 | P 43.1323, -311.4895, 16.3760, 0, 127, 127, 2, Ruksa_(GM_Shadowknight) 8 | P 36.6542, -335.5819, 16.3760, 0, 127, 127, 2, Soonog_(GM_Shadowknight) 9 | P -70.7849, -27.4177, -26.6239, 0, 127, 127, 2, Guntrik_(GM_Warrior) 10 | P 68.1157, -37.7990, -26.6239, 0, 127, 127, 2, Lork_(GM_Warrior) 11 | P 27.5676, 72.9526, -26.6239, 0, 127, 127, 2, Kogna_(GM_Warrior) 12 | P -38.7860, 63.8556, -26.6239, 0, 127, 127, 2, Horgus_(GM_Warrior) 13 | P 255.8910, -287.3335, 0.1000, 0, 127, 127, 2, Baddi_(GM_Berserker) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/oot_2.txt: -------------------------------------------------------------------------------- 1 | P -1972.4797, -30.2029, -504.8768, 0, 0, 240, 3, Gyrospire_Zeka_Gyroscope_197'015'102 2 | P -7528, 2095, 0.6573, 0, 0, 0, 3, Zachariah_Reigh 3 | P 7875, -1309, 129.1715, 0, 0, 0, 3, Elesseryl_(Spells) 4 | P 9241.1133, -1283.7114, 40.1955, 0, 0, 0, 3, Doran_(Armor) 5 | P 9252, -503, 9.1143, 0, 0, 0, 3, Cleonae_(Brewing) 6 | P 9191.7842, -260.8607, 0.6573, 0, 0, 0, 3, Tegea_Prengyn 7 | P 9193.1416, -271.6732, 0.6573, 0, 0, 0, 3, Dock 8 | P -7721, 2211, 6.5115, 0, 0, 0, 3, Endan_(Merchant) 9 | P -7798, 2102, 6.9259, 0, 0, 0, 3, Sanian_(Fishing) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/overthere_2.txt: -------------------------------------------------------------------------------- 1 | P -2146.39, -2675.1777, -53.927, 127, 64, 0, 3, Bank 2 | P -2383.435, -2680.86, -53.927, 0, 0, 0, 1, Brew_Barrel 3 | P -2357.1687, -2692.7537, -53.927, 0, 0, 0, 1, Oven 4 | P -2371.5468, -2847.5259, -53.927, 0, 0, 0, 1, Sewing_Kit 5 | P -2396.1543, -2861.248, -53.927, 0, 0, 0, 1, Pottery_Wheel 6 | P -2384.5605, -2866.9396, -53.927, 0, 0, 0, 1, Kiln 7 | P -3250.7921, -2502.8771, -139.3259, 0, 0, 0, 1, Forge 8 | P -2204.3964, -3252.7871, -62.822, 0, 0, 127, 2, Kurron_Ni_(Sk_1.0) 9 | P -2147.4722, -2856.48, -51.5435, 0, 0, 127, 2, Inem_R'Ker(Rog_1.5) 10 | P -2167.3378, -2453.268, -51.1518, 0, 0, 127, 2, Captain_Rottgrime_(Mage1.0) 11 | P -1499.5871, -120.9767, -52.7792, 0, 0, 127, 2, Impaler_Tzilug_(ench1.0) 12 | P -856.3422, -767.279, -496.7253, 0, 0, 127, 2, Astral_Projection(Mnk1.0) 13 | P 842.8984, -499.3788, -523.1517, 0, 0, 127, 2, Modani_Qu`Loni*(Ench1.0) 14 | P 560.7299, 100.4886, 35.1715, 0, 0, 0, 1, lev_to_key 15 | P 381.21, 193.187, -207.286, 0, 0, 0, 1, The_One_Key(Ench1.0) 16 | P 3108.6471, -3520.7409, -101.5658, 0, 0, 127, 2, Irionu_Bastun(Bst_Epic) 17 | P 978.4012, -3760.2759, -180.4774, 0, 0, 0, 1, Greysong_ship_debris 18 | P 794.539, -3669.929, -151.4, 0, 0, 127, 2, Nekexin_Virulence(Druid1.0) 19 | -------------------------------------------------------------------------------- /data/maps/map_files/overthere_3.txt: -------------------------------------------------------------------------------- 1 | P -2123.412, -2913.1577, -53.917, 0, 127, 127, 3, Kuughrak 2 | P -2330.6723, -2802.2244, -51.5304, 0, 127, 127, 3, Nureya 3 | P -2284.3043, -3115.5736, -53.906, 0, 0, 127, 2, Shandral 4 | P -2357.2726, -2682.9582, -51.5349, 0, 127, 127, 3, Vitratul_K'Reil 5 | -------------------------------------------------------------------------------- /data/maps/map_files/paineel_3.txt: -------------------------------------------------------------------------------- 1 | P -522.0000, -1130.0000, -35.2490, 0, 127, 127, 3, Sern_(GM_Cleric) 2 | P -839.0000, -797.0000, -23.2489, 0, 127, 127, 2, Coriante_(GM_Necromancer) 3 | P -840.0000, -762.0000, -80.2176, 0, 127, 127, 2, Shwara_(GM_Necromancer) 4 | P -456.0000, -849.0000, -117.1864, 0, 127, 127, 2, Mandaril_(GM_Shadow_Knight) 5 | P -440.5989, -900.5620, -123.9354, 0, 0, 127, 2, Dovan_(Sk_Spells) 6 | P -469.9196, -888.6327, -123.9354, 0, 0, 127, 2, Brettas_(Sk_Spells) 7 | P -440.9585, -889.3266, -123.9354, 0, 0, 127, 2, Sheras_(Sk_Spells) 8 | P -806.7734, -674.8002, -57.9667, 0, 0, 127, 2, Nedorl_(Nec_Spells) 9 | P -806.1171, -664.7947, -57.9667, 0, 0, 127, 2, Leovre_(Nec_Spells) 10 | P -885.4190, -675.5930, -57.9667, 0, 0, 127, 2, Devinious_(Nec_Spells) 11 | P -440.1644, -1123.5319, -41.9667, 0, 0, 240, 2, Zamlel_(Clr_Spells) 12 | P -427.4510, -1123.8900, -41.9667, 0, 0, 240, 2, Oren_(Clr_Spells) 13 | P -549.4873, -1225.4166, -41.9667, 0, 0, 240, 2, Erelin_(Clr_Spells) 14 | P -549.5326, -1213.3494, -41.9667, 0, 0, 240, 2, Lillean_(Clr_Spells) 15 | -------------------------------------------------------------------------------- /data/maps/map_files/paw_2.txt: -------------------------------------------------------------------------------- 1 | P -222.9541, -416.9968, 10.1800, 0, 0, 0, 2, Lever 2 | P -226.8410, -553.1267, 10.2900, 0, 0, 0, 1, level 3 | -------------------------------------------------------------------------------- /data/maps/map_files/paw_3.txt: -------------------------------------------------------------------------------- 1 | P 133.8694, -866.4638, -25.9980, 240, 0, 0, 2, Earthmaster_Grundag 2 | P 8.2079, -605.8532, -63.8751, 240, 0, 0, 2, Scorch 3 | P 155.7050, -487.1229, -62.2674, 240, 0, 0, 2, Overlord_Flargor 4 | P -9.1532, -1243.3190, 0.2021, 240, 0, 0, 2, Rockbeast_Kloorg 5 | P 340.3971, -603.1775, 1.6886, 240, 0, 0, 2, Stormrider_Hilooa 6 | P 40.8552, -1079.1591, -0.9980, 240, 0, 0, 2, Windlord_Brizoris 7 | P -176.8703, -1222.8560, 1.5285, 240, 0, 0, 2, Blazemaster_Arnab 8 | P 71.3730, -1190.2627, 0.2000, 240, 0, 0, 2, Air_Elemental_Breeze_Master 9 | P 230.6665, -682.2179, -58.4356, 240, 0, 0, 2, Sertiki_the_Master_of_Tides 10 | P 172.2232, -445.8770, -47.9667, 240, 0, 0, 2, Water_Elemental_Overseer 11 | P -207.1913, -745.3818, -24.7856, 240, 0, 0, 2, Tidemaster_Aquinius 12 | P -77.1310, -1150.8895, -1.1208, 240, 0, 0, 2, Water_Elemental_Officer* 13 | P 136.7165, -743.9870, -36.4740, 240, 0, 0, 2, Fire_Elemental_Brigand* 14 | P 308.8373, -536.1683, 0.1582, 240, 0, 0, 2, Vrek_Hillmaster 15 | P -151.1964, -695.3224, -47.9763, 240, 0, 0, 2, a_tidal_monstrosity 16 | P -236.5636, -764.7360, -17.9980, 240, 0, 0, 2, Windspirit_Glorn 17 | -------------------------------------------------------------------------------- /data/maps/map_files/permafrost_2.txt: -------------------------------------------------------------------------------- 1 | P 26.8998, 231.9274, 0.1582, 0, 0, 240, 2, Scout_Janomin(BST_Epic) 2 | P 16.753, -260.5837, -27.998, 127, 0, 127, 2, pc 3 | P -363.2993, -467.1426, -41.9667, 127, 0, 127, 2, pc 4 | P -432.6634, -276.9766, -41.9667, 127, 0, 127, 2, pc 5 | P -332.4503, -412.4653, 14.1997, 127, 0, 127, 2, pc 6 | P -173.4499, -313.5611, 0.2, 127, 0, 127, 2, pc 7 | P -7.5808, -275.196, 0.2, 127, 0, 127, 2, pc 8 | P -104.9431, -321.2699, -19.998, 127, 0, 127, 2, pc 9 | P 3, -260, -27.998, 127, 0, 127, 2, pc 10 | P 607.5513, -182.8283, 1.5427, 99, 0, 255, 1, Icy_Rune 11 | P -118.8777, -336.8414, 0.9301, 0, 0, 0, 2, Drop_Down 12 | -------------------------------------------------------------------------------- /data/maps/map_files/permafrost_3.txt: -------------------------------------------------------------------------------- 1 | P -235, -1000, -82, 240, 0, 0, 2, A_Frost_Spinner 2 | P -185, -430, 17, 240, 0, 0, 2, a_goblin_archeologist 3 | P -200, -470, -41, 240, 0, 0, 2, Snowfang 4 | P 264.5557, -660.3894, -41.8104, 127, 0, 0, 2, High_Priest_Zaharn(Mnk1.0) 5 | P 373, -302, 0, 240, 0, 0, 2, Alchemist_Zmegk 6 | P 585, -189, 0, 240, 0, 0, 2, a_goblin_scryer(PH:Diviner) 7 | P 327, -125, 0, 240, 0, 0, 2, Jailmaster_Nomk 8 | P -261, -225, 0, 240, 0, 0, 2, a_goblin_preacher 9 | P 248.9576, -973.254, 1.6939, 240, 0, 0, 2, A_Guardian_of_Vox* 10 | P -21.2508, -952.8328, -83.8104, 240, 0, 0, 2, The_Chilling_Terror 11 | P 280.3888, -679.327, -40.4262, 240, 0, 0, 2, King_Thex`Ka_IV 12 | P 312.9678, -659.105, -40.435, 240, 0, 0, 2, an_elite_honor_guard 13 | P -0.4798, -837.778, -110.4454, 240, 0, 0, 2, an_injured_polar_bear(not_accurate) 14 | -------------------------------------------------------------------------------- /data/maps/map_files/qcat_3.txt: -------------------------------------------------------------------------------- 1 | P -208.6408, -573.5290, -41.6542, 240, 0, 0, 2, an_injured_rat 2 | P -342.5142, -465.8772, -41.6542, 240, 0, 0, 2, _a_shady_mercenary 3 | P -328.9900, -344.2530, -41.6542, 240, 0, 0, 2, a_nesting_rat 4 | -------------------------------------------------------------------------------- /data/maps/map_files/qey2hh1_3.txt: -------------------------------------------------------------------------------- 1 | P 8718.6904, 1267.1700, 168.8899, 240, 0, 0, 2, Froon 2 | P 8740.2100, 1245.9100, 170.8000, 240, 0, 0, 2, Choon 3 | P 11596.7207, -667.4400, 12.5654, 240, 0, 0, 2, a_werewolf* 4 | -------------------------------------------------------------------------------- /data/maps/map_files/qeynos2_2.txt: -------------------------------------------------------------------------------- 1 | P -342.8756, -133.7028, 3.7509, 127, 64, 0, 3, Crow's_Bar 2 | P 450.3208, 87.4346, 35.2526, 127, 64, 0, 3, Temple_of_Life 3 | P -202.6041, -77.4320, 0.2000, 127, 64, 0, 3, Sneed_Galliway's_Trading_Post 4 | P -73.8363, -26.6548, 1.5519, 127, 64, 0, 3, Ironforge's 5 | P -1.9640, 91.1914, 0.2000, 127, 64, 0, 3, The_Cobbler 6 | P -34.7676, -39.9211, 1.5251, 0, 0, 0, 2, Jewel_Box 7 | P -320.6659, -64.8383, 1.5263, 0, 0, 0, 2, Brew_Barrel 8 | P -295.9927, -37.8420, 1.5277, 0, 0, 0, 2, Fake_Painting 9 | P -266.2010, -87.2767, -19.9980, 0, 0, 0, 2, Fake_Wall 10 | P 162.6951, -437.6000, 0.3145, 0, 0, 127, 2, Grennet_Stormhand 11 | P 370.7058, 34.3087, 3.4251, 0, 0, 127, 2, Enic_Ruklin*(Pal1.5) 12 | -------------------------------------------------------------------------------- /data/maps/map_files/qeynos2_3.txt: -------------------------------------------------------------------------------- 1 | P 692.0000, 155.0000, -14.3740, 0, 127, 127, 3, Tonmerk_(GM_Cleric) 2 | P 700.0000, 148.0000, -14.3740, 0, 127, 127, 3, Suuspa_(GM_Paladin) 3 | P 677.0000, 108.0000, -13.3740, 0, 127, 127, 3, Filian_(GM_Paladin) 4 | P 677.0000, 58.0000, -13.3740, 0, 127, 127, 3, Jahnda_(GM_Cleric) 5 | P 603.0000, 132.0000, -13.3740, 0, 127, 127, 3, Caulria_(GM_Cleric) 6 | P 676.0000, 205.0000, -13.3740, 0, 0, 127, 2, Camlend_Serbold(Pal2.0)GM_Paladin) 7 | P 748.0000, 131.0000, -13.3740, 0, 127, 127, 3, Balhallia_(Spells) 8 | P 470.0000, 174.0000, 33.7509, 0, 127, 127, 3, Astaed_(GM_Paladin) 9 | P 424.0000, 227.0000, 23.7510, 0, 127, 127, 3, Davloran_(GM_Paladin) 10 | P 260.0000, 232.0000, 3.7509, 0, 127, 127, 3, Nomsoe_(GM_Cleric) 11 | P 115.0000, 127.0000, 3.7509, 0, 127, 127, 3, Roesager_(GM_Paladin) 12 | P -149.0000, -31.0000, -27.2489, 0, 127, 127, 3, Rogue_Guild 13 | P -212.0000, -24.0000, -0.3740, 0, 127, 127, 3, Phin_(GM_Monk) 14 | P -301.0000, -342.0000, 0.6260, 0, 127, 127, 3, LuSun_(GM_Monk) 15 | P -393.0000, -290.0000, 0.6260, 0, 0, 127, 2, Togahn_Sorast(Mnk1.0)GM_Monk) 16 | P -313.0000, -257.0000, 14.6259, 0, 127, 127, 3, Seta_(GM_Monk) 17 | -------------------------------------------------------------------------------- /data/maps/map_files/qeynos_2.txt: -------------------------------------------------------------------------------- 1 | P 433.5536, -50.8761, 0.1000, 127, 64, 0, 3, Arena 2 | P -67.5850, 487.8849, -19.5894, 0, 0, 127, 3, Fippy_Darkpaw 3 | P 107.9870, -67.4822, 2.6364, 240, 0, 0, 2, Guards 4 | P 151.9090, 222.5994, 1.2000, 240, 0, 0, 2, Guards 5 | P 270.7121, 291.4535, 0.2000, 240, 0, 0, 2, Fish_Ranamer 6 | P 229.7312, 265.5763, 0.2000, 240, 0, 0, 2, Bruno_Barstomper 7 | P 447.8254, -57.3240, 0.2000, 240, 0, 0, 2, Tabure_Ahendle 8 | P 141.6646, -546.7320, 0.2000, 240, 0, 0, 2, Joffrey_Clay 9 | P 141.2000, -539.8012, 0.2000, 127, 64, 0, 3, Bards_Guild 10 | P 442.6865, -304.3690, 0.2000, 240, 0, 0, 2, Dun 11 | P 469.2730, -287.1707, 0.2000, 240, 0, 0, 2, Soulbinder 12 | P 436.8084, -339.5228, 0.2000, 240, 0, 0, 2, Kendall_Copperhold 13 | P 435.7690, -317.4155, 0.2000, 240, 0, 0, 2, Sorn_Copperhold 14 | P 614.1385, -286.6109, 0.2000, 240, 0, 0, 2, Esdia_Moeba 15 | P 607.1248, -334.4418, 0.2000, 127, 64, 0, 3, Casters_Guild 16 | P 675.8047, -315.9429, 0.2000, 240, 0, 0, 2, Gahlith_Wrannstad 17 | P 66.9823, -177.9947, 2.5146, 240, 0, 0, 2, Guards* 18 | P 116.5237, 224.1696, 2.6673, 240, 0, 0, 2, Lieutenant_Arathur* 19 | P 403.4280, -405.9601, 0.1062, 240, 0, 0, 2, Guard 20 | P 79.2532, -260.5935, 0.3000, 0, 0, 127, 2, a_furtive_figure(Druid1.5) 21 | P 94.6705, -238.5814, 1.5461, 127, 64, 0, 3, Lion's_Mane_Inn 22 | -------------------------------------------------------------------------------- /data/maps/map_files/qeynos_3.txt: -------------------------------------------------------------------------------- 1 | P 157.1290, -523.9170, 0.1000, 0, 127, 127, 2, Sillari_(GM_Brd) 2 | P 632.1440, -337.2740, -0.9990, 0, 127, 127, 2, Kazlo_(GM_Wiz) 3 | P 613.7844, -360.7135, 0.1000, 0, 127, 127, 2, Basten_(GM_Enc) 4 | P 122.3970, -553.7323, 0.1000, 0, 127, 127, 2, Jusean_(GM_Bard) 5 | P 493.9033, 281.1399, 0.1000, 0, 127, 127, 2, Chesgard_(GM_Pal) 6 | P 475.6066, 244.8597, 0.1000, 0, 127, 127, 2, Kasine_(GM_Pal) 7 | P 427.4311, 199.8438, 0.1000, 0, 127, 127, 2, Gehna_(GM_Cle) 8 | P 518.3120, 149.4202, 3.9000, 0, 127, 127, 2, Runethar_(GM_Pal) 9 | P 543.1280, 175.9080, 0.1000, 0, 127, 127, 2, Daedet_(GM_Cle) 10 | P 590.6720, -319.3396, 0.1000, 0, 127, 127, 2, Yestura_(GM_Mag) 11 | P 511.4032, -36.1844, 28.1000, 0, 127, 127, 2, Tillin_(GM_War) 12 | P 509.6542, -75.4972, 28.1000, 0, 127, 127, 2, Ebon_(GM_War) 13 | P 586.8550, -81.1419, 28.9080, 0, 127, 127, 2, Brin_(GM_War) 14 | P 505.8199, -65.8105, 1.9000, 0, 127, 127, 2, Tabure_(GM_War) 15 | P 464.1118, 29.4836, -27.9989, 0, 127, 127, 2, Grahan_(GM_War) 16 | P 636.7510, -299.8138, -0.9990, 0, 0, 127, 2, Moreo_(Spells) 17 | P 633.1734, -326.3910, -0.9990, 0, 0, 127, 2, Isobelle_(Spells) 18 | P 481.6014, 237.6443, 0.1000, 0, 0, 127, 2, Lisdon_(Spells) 19 | -------------------------------------------------------------------------------- /data/maps/map_files/qeytoqrg_2.txt: -------------------------------------------------------------------------------- 1 | P 558.0000, -3399.0000, -8.0000, 0, 0, 127, 2, Ubzial_Iyeaql(LDoN) 2 | -------------------------------------------------------------------------------- /data/maps/map_files/qeytoqrg_3.txt: -------------------------------------------------------------------------------- 1 | P 889.1784, -4653.7510, 39.6054, 240, 0, 0, 2, Pyzjn* 2 | P 215.7532, -4636.8755, 41.4547, 240, 0, 0, 2, Varsoon 3 | -------------------------------------------------------------------------------- /data/maps/map_files/qrg_2.txt: -------------------------------------------------------------------------------- 1 | P 13.5675, -129.4496, 0.2, 0, 0, 0, 2, Forge 2 | P 271.2094, 147.1537, -0.998, 127, 64, 0, 2, Jaggedpine_Treefolk 3 | P 5.2779, 59.5307, 0.2, 0, 0, 0, 2, Half_Elf_Forge 4 | P 69.162, -243.3295, -0.2341, 0, 0, 127, 2, Merdan_Fleetfoot(Druid1.0) 5 | P 192.8391, -106.6855, -0.1625, 0, 0, 127, 2, Niera_Farbreeze(Druid1.0) 6 | P 257.6012, 271.8308, 2.3593, 0, 0, 127, 2, Corun_Finisc(Rng1.5) 7 | -------------------------------------------------------------------------------- /data/maps/map_files/qrg_3.txt: -------------------------------------------------------------------------------- 1 | P 11.5464, -242.8316, 1.2434, 0, 127, 127, 2, Larsk_(GM_Ranger) 2 | P 103, -136, 3.7509, 0, 127, 127, 2, Merona_(GM_Ranger) 3 | P 4, -175, 3.7509, 0, 127, 127, 2, Errin_(GM_Ranger) 4 | P 36, -177, 3.7509, 0, 127, 127, 2, Gillarian_(GM_Ranger) 5 | P -83.3412, -102.7518, 2.7509, 0, 127, 127, 2, Hager_(GM_Ranger) 6 | P 396, 176, 3.7509, 0, 127, 127, 2, Gerael_(GM_Druid) 7 | P 434, 217, 6.751, 0, 127, 127, 2, Salmekia_(GM_Druid) 8 | P 438, 206, 6.751, 0, 127, 127, 2, Te`Anara_(GM_Druid) 9 | P 301, 119, 3.7509, 0, 127, 127, 2, Vesteri_(GM_Druid) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/rathemtn_3.txt: -------------------------------------------------------------------------------- 1 | P -1803.7699, 293.1308, -1.6299, 240, 0, 0, 2, Bloodneedle 2 | P 1267.3715, 406.6850, 19.9980, 240, 0, 0, 2, Petrifin* 3 | P -825.6312, -2425.3079, 22.9843, 240, 0, 0, 2, Oculys_Ogrefiend* 4 | P 890.3513, -2192.6375, -3.3161, 240, 0, 0, 2, Quid_Rilstone* 5 | P 387.8090, 515.8164, 6.9047, 240, 0, 0, 2, Mortificator* 6 | -------------------------------------------------------------------------------- /data/maps/map_files/rivervale_2.txt: -------------------------------------------------------------------------------- 1 | P 160.3635, 61.441, 12.9, 0, 0, 0, 1, Brew_Barrel 2 | P 158, 187, -11.374, 0, 0, 0, 1, Oven 3 | P 469, -383, 0.1, 0, 0, 0, 1, Kiln 4 | P 470, -372, 0.1, 0, 0, 0, 1, Pottery_Wheel 5 | P 241, 4, 0.1, 0, 0, 0, 1, Loom 6 | P 254, 37, 0.1, 0, 0, 0, 1, Brew_Barrel 7 | P 363, 81, -11.999, 0, 0, 0, 1, Forge 8 | P 420.4214, 70.8322, -11.9123, 0, 0, 0, 1, Oven 9 | P 54, -125, 0.1, 127, 64, 0, 3, Weary_Foot_Rest_(Inn) 10 | P 183.2702, -179.937, -2.9839, 127, 64, 0, 3, Vale_Forge 11 | P 312.7735, 266.597, -11.6854, 0, 0, 127, 2, Kaya_Cloudfoot(GM)Pal2.0) 12 | P 146.7606, -104.9291, 2.1581, 0, 0, 127, 2, Deputy_Cheel(Pal2.0) 13 | -------------------------------------------------------------------------------- /data/maps/map_files/rivervale_3.txt: -------------------------------------------------------------------------------- 1 | P 144.6725, 209.668, -16.2672, 240, 127, 127, 2, X 2 | P 200.2932, 82.8644, 0.1, 0, 127, 127, 2, Rueppy_(GM_Rog) 3 | P 422, 238, -15.999, 0, 127, 127, 2, Gapeers_(GM_Cle) 4 | P 387, 224, -15.999, 0, 127, 127, 2, Beek_(GM_Cle) 5 | P 380, 231, -19.9989, 0, 127, 127, 2, Hendi_(GM_Cle) 6 | P 329, 219, -15.999, 0, 127, 127, 2, Jano_(GM_Cle) 7 | P 333, 252, -11.999, 0, 127, 127, 2, Thekela_(GM_Cle) 8 | P 424, 37, -13.999, 0, 127, 127, 2, Hibbs_(GM_Dru) 9 | P 404, 111, -11.999, 0, 127, 127, 2, Reebo_(GM_Dru) 10 | P 440, 28, -13.999, 0, 127, 127, 2, Megosh_(GM_Ranger) 11 | P 392, 122, -11.999, 0, 127, 127, 2, Uner_(GM_Dru) 12 | P 201, 92, 12.9, 0, 127, 127, 2, Hebber_(GM_Rog) 13 | P 195, 27, 12.6259, 0, 127, 127, 2, Toelia_(GM_Rogu) 14 | P 189, 51, 38.9, 0, 127, 127, 2, Lendel_(GM_Rog) 15 | P 205, -126, 2.9, 0, 127, 127, 2, Ghobber_(GM_War) 16 | P 174, -90, 36.9, 0, 127, 127, 2, Lanena_(GM_War) 17 | P 137, -99, 36.9, 0, 127, 127, 2, Anrey_(GM_War) 18 | P 153, -92, 43.9697, 0, 127, 127, 2, Roglio_(GM_War) 19 | -------------------------------------------------------------------------------- /data/maps/map_files/runnyeye_2.txt: -------------------------------------------------------------------------------- 1 | P -120.1488, -40.5553, -131.779, 0, 0, 0, 2, Eat_It_Store 2 | P -65.3101, -112.8452, -131.7792, 0, 0, 0, 2, Tavern 3 | P 119.5078, -336.9132, -46.9667, 240, 0, 0, 3, ?%#! 4 | P 68.6063, -208.1279, -47.9667, 240, 0, 0, 3, ?/#! 5 | P 18.5082, -337.9322, -46.9667, 240, 0, 0, 3, ?#/! 6 | P 118.5272, -46.97, -85.9667, 240, 0, 0, 3, ?#%! 7 | P 10.8416, 167.7352, -87.3152, 240, 0, 0, 3, ?#%! 8 | P -48.7886, -93.6903, -86.9667, 240, 0, 0, 3, ?#%! 9 | P -18.1866, 0.637, -90.9667, 240, 0, 0, 3, ?#%! 10 | P 61.5578, -6.7622, -85.9667, 240, 0, 0, 3, ?#%! 11 | P 101.7, 99.237, -86.8349, 240, 0, 0, 3, ?#%! 12 | P -68.8067, 5.825, -131.779, 0, 0, 0, 2, Bank 13 | P -115.7479, 66.3994, -84.8417, 240, 0, 0, 3, ?#/! 14 | P 70.6248, -289.1274, 1.6883, 0, 0, 0, 2, Drop_down 15 | P 68.7316, 41.623, -130.3631, 99, 0, 255, 1, Questionable_Cheese 16 | -------------------------------------------------------------------------------- /data/maps/map_files/runnyeye_3.txt: -------------------------------------------------------------------------------- 1 | P -105.6581, -155.1153, -82.7689, 240, 0, 0, 3, The_Sporali_Moldmaster 2 | P 0.4691, -8.8048, -164.1512, 240, 0, 0, 3, Sludge_Dankmire 3 | P -194.2917, 226.5841, -85.6542, 240, 0, 0, 3, The_Sporali_Moldmaster* 4 | P 42.9363, 38.3397, -131.6228, 240, 0, 0, 2, Lord_Pickclaw 5 | P 143.4231, 195.61, -131.779, 240, 0, 0, 2, Battlelord_Paluk 6 | P -72.311, -108.4873, -46.4493, 240, 0, 0, 2, a_goblin_janitor 7 | -------------------------------------------------------------------------------- /data/maps/map_files/sebilis_2.txt: -------------------------------------------------------------------------------- 1 | P -224.8037, 1662.7456, -125.8312, 0, 0, 0, 1, Locked_Door 2 | P -133.6774, 912.1653, -53.9667, 0, 0, 0, 1, Locked_Door 3 | P 423.2982, 1089.3811, -107.8624, 127, 64, 0, 3, Library 4 | P 387.239, 920.7916, -108.8626, 127, 64, 0, 3, Disco_One 5 | P 333.387, 1246.2909, -107.8626, 127, 64, 0, 3, Disco_Two 6 | P -31.1078, 1564.3634, -179.7781, 0, 0, 0, 2, Click_to_Open 7 | P 159.4867, 1559.9674, -179.779, 127, 64, 0, 3, Entry_Hall 8 | P 694.3026, 1112.653, -115.8626, 127, 64, 0, 3, Laboratory 9 | P -356.1311, 262.8863, -179.8311, 0, 0, 0, 1, Cryptic_Page_(GS) 10 | P 117, 1283, -176.875, 0, 0, 0, 3, Banish_area#1 11 | P 206.9298, 1560.3009, -179.6228, 127, 0, 0, 2, An_Ancient_Sebilite_Protector(Ber1.5) 12 | -------------------------------------------------------------------------------- /data/maps/map_files/sirens_2.txt: -------------------------------------------------------------------------------- 1 | P -63.8969, 19.6330, -135.7788, 240, 0, 0, 3, ?#@! 2 | P 177.4211, 16.9568, -135.7792, 240, 0, 0, 3, ?#@! 3 | P 79.4694, 253.5551, 75.6628, 0, 0, 0, 1, Click_in 4 | P 54.3090, -52.4598, -131.7792, 240, 0, 0, 3, ?#@! 5 | P 33.0000, -196.0000, 0.1592, 0, 0, 0, 1, Succor 6 | P -60.6518, -89.4063, 0.3145, 127, 0, 0, 2, Ailing_Walrus(BST_1.5) 7 | P 49.1221, -171.9081, -56.6542, 127, 0, 0, 2, Mistress_of_the_Darkwater(wiz_1.5) 8 | P 138.5315, 214.6451, 0.1582, 127, 0, 0, 2, Wygrish(Monk_1.5) 9 | P 39.3370, -270.7207, -162.1123, 127, 0, 0, 2, Ravaging_Tsunami_Elemental(Mag_Pre-Q) 10 | P 54.4168, -29.4495, -137.7792, 127, 0, 0, 2, Feleniel_of_Darkwater(Ench1.5) 11 | P 740.1273, 638.3577, -27.8416, 127, 0, 0, 2, Mistress_Latazura 12 | P -84.9800, 138.5480, -30.1731, 127, 0, 0, 2, a_twitching_swordfish(Rng1.5) 13 | -------------------------------------------------------------------------------- /data/maps/map_files/sirens_3.txt: -------------------------------------------------------------------------------- 1 | P 101.9983, 64.3044, 0.2000, 240, 0, 0, 2, a_massive_walrus 2 | P 166.6197, 688.8941, -155.9353, 240, 0, 0, 2, a_rampaging_ulthork 3 | P 11.7506, -260.7651, -137.9353, 240, 0, 0, 2, an_alluring_siren 4 | P -7.8613, 423.1400, -115.6342, 240, 0, 0, 2, Fellspine* 5 | P 232.2871, 817.3184, -74.9667, 240, 0, 0, 2, shimmering_sea_spirit 6 | P 256.3439, 586.6588, -30.9980, 240, 0, 0, 2, a_siren_seductress 7 | P 597.9910, 380.3453, -169.1209, 240, 0, 0, 2, a_neriad_sea_princess 8 | P 163.1754, -164.8499, 0.2000, 240, 0, 0, 2, a_massive_manatee 9 | P -35.5980, -138.3152, -82.9667, 240, 0, 0, 2, an_alluring_siren* 10 | P -53.5232, 301.1125, -90.9656, 240, 0, 0, 2, a_massive_walrus 11 | P 175.6310, -136.6646, -137.9345, 240, 0, 0, 2, an_allluring_siren 12 | P 677.6390, 407.7400, -177.1356, 240, 0, 0, 2, a_neriad_sea_princess 13 | P 322.6836, 476.4465, -48.8044, 240, 0, 0, 2, a_siren_seductress 14 | P 44.4941, -113.5488, -102.9667, 240, 0, 0, 2, a_deadly_siren 15 | P -20.1614, -72.1496, 0.2000, 240, 0, 0, 2, an_enthralled_ulthork 16 | P 169.2656, -179.8352, 0.2000, 240, 0, 0, 2, a_massive_walrus 17 | P -67.9787, 411.9739, -90.9656, 240, 0, 0, 2, a_giant_walrus 18 | P 748.8484, 553.5483, -70.9667, 240, 0, 0, 2, a_siren_temptress 19 | P 288.2953, 534.5680, -54.9667, 240, 0, 0, 2, a_siren_coercer(NA) 20 | -------------------------------------------------------------------------------- /data/maps/map_files/skyfire_2.txt: -------------------------------------------------------------------------------- 1 | P -2836.0000, 3169.0000, 0.0000, 127, 64, 0, 2, Druid_Circle 2 | P -865.0000, 2993.0000, 0.0000, 127, 64, 0, 2, Wizard_Port 3 | P -455.3308, 2775.8735, -141.7658, 0, 0, 127, 2, Vellendoor_Dumont 4 | P -1710.1744, 5245.8823, -161.2815, 0, 0, 127, 2, Mistellgone_Eshaan 5 | P -2822.1299, 3351.5630, -148.9815, 0, 0, 127, 2, Brynnellen_Slynn 6 | P 3627.2805, 2214.5598, -121.3790, 0, 0, 127, 2, Byllella_Voon 7 | P 3225.4297, -3008.5435, -150.1591, 0, 0, 127, 2, Warder_Cecilia(Cle1.0) 8 | P 3459.4568, -2985.6594, -149.4003, 0, 0, 127, 2, Druania_Sharen 9 | P 3846.3113, -1771.4052, -167.7855, 127, 0, 0, 2, Eldrig_the_Old*(BRD1.0) 10 | P 4085.8494, -552.3585, -159.9562, 127, 0, 0, 2, Eldrig_the_Old*(BRD1.0) 11 | P 3470.7517, -3030.4668, -150.9567, 0, 0, 0, 1, Golden_Dagger 12 | P 716.6088, 1395.5818, -86.5545, 0, 0, 127, 2, Jennus_Lyklobar*(Mag1.0) 13 | P -2980.7693, -2659.5188, -79.5148, 0, 0, 127, 2, Dry_Sapara(Pal1.5) 14 | P -2377.7283, -2695.8679, -79.8570, 127, 0, 0, 2, Rithnok_the_Tormented(Pal1.5) 15 | P -519.5697, 963.6739, -142.5880, 0, 0, 127, 2, Felia_Goldenwing*(Ench1.0) 16 | P -810.4500, 2650.4590, -158.6906, 127, 0, 0, 2, Efriak_of_the_Ring 17 | -------------------------------------------------------------------------------- /data/maps/map_files/skyfire_3.txt: -------------------------------------------------------------------------------- 1 | P -161.9860, 1461.4565, -161.9086, 240, 0, 0, 2, Guardian_of_Felia* 2 | P 1427.5513, 1105.3662, -163.1947, 127, 0, 0, 2, Obsidian_Wyvern* 3 | P 3504.7271, 2086.6479, -143.6228, 240, 0, 0, 2, An_Ancient_Wurm* 4 | P 1511.9510, 1877.6738, -89.2717, 240, 0, 0, 2, Faerie_of_Dismay* 5 | -------------------------------------------------------------------------------- /data/maps/map_files/skyshrine_2.txt: -------------------------------------------------------------------------------- 1 | P -792.284, -755.3433, 347.5511, 255, 0, 255, 3, to_quest_hall 2 | P -1197, -1227, 0, 0, 0, 0, 2, Teleport_in 3 | P 487.834, -317.8625, 40.748, 0, 0, 0, 1, Oven 4 | P 413.7309, -182.598, 15.1046, 0, 0, 0, 1, Oven 5 | P 484.7841, -383.7278, 40.75, 0, 0, 0, 1, Loom 6 | P 708.3654, -512.7095, 10.1061, 0, 0, 0, 1, Brew_Barrel 7 | P 762.7957, -319.2891, 40.748, 0, 0, 0, 1, Blacksmith 8 | P 1955.6132, -1442.3459, 374.9497, 125, 0, 255, 3, 1 9 | P 910.7024, -2980.3171, 374.9497, 125, 0, 255, 3, 3 10 | P 1878.1706, -1986.4628, 195.435, 125, 0, 255, 3, 5 11 | P -383.3795, -146.9165, 0.1062, 0, 0, 0, 1, Cryptic_Page 12 | P 559.9871, -361.9854, 166.2062, 240, 0, 0, 2, TRAP 13 | P -2272.4502, -1597.6581, -40.8626, 127, 0, 0, 2, #@%! 14 | P -1974.6472, -2802.1687, -164.831, 127, 0, 0, 2, #@%! 15 | P 602.6572, -1710.9459, 195.435, 125, 0, 255, 3, 2 16 | P 1109.9295, -2297.106, 195.434, 125, 0, 255, 3, 4 17 | P -473.3192, -442.2178, 194.747, 240, 0, 0, 2, Trap 18 | P -1201.3142, -1403.9619, 0.1062, 127, 0, 0, 2, #@%! 19 | P -1850.499, -1689.1731, -59.8624, 127, 0, 0, 2, #@%! 20 | P -1848.8651, -1976.6681, -59.8624, 127, 0, 0, 2, #@%! 21 | P -1605.5179, -1482.1259, 0.1062, 127, 0, 0, 2, @%#! 22 | P -2461.4176, -1416.1603, -40.8626, 0, 0, 0, 2, a_kromzek_spy 23 | P -2267.9274, -1699.2834, -40.8626, 127, 0, 0, 2, #@%! 24 | P 157.6709, -688.8003, 330.5378, 255, 0, 255, 2, Portal 25 | P 151.6911, -792.7444, 257.5609, 255, 0, 252, 2, Portal 26 | P 1083.366, -1948.5742, 11.6476, 255, 0, 255, 2, Portal 27 | -------------------------------------------------------------------------------- /data/maps/map_files/skyshrine_3.txt: -------------------------------------------------------------------------------- 1 | P -270.887, -555.4596, 22.1062, 240, 0, 0, 2, Marech_of_the_Shrine 2 | P 351.4064, -248.4611, 174.435, 240, 0, 0, 2, Golem_Gargantuan 3 | P -1208.4152, -2027.364, 0.1062, 127, 0, 0, 2, Jortreva_the_Crusader(Q) 4 | P -1821.222, -1841.1464, -59.8626, 127, 0, 0, 2, Grendish_the_Crusader(Q R) 5 | P -2264.317, -1744.798, -40.8626, 127, 0, 0, 3, Susarrak_the_Crusader 6 | P -1970.8495, -2354.3611, -164.8311, 127, 0, 0, 2, Charayan_the_Crusader* 7 | P -1970.9459, -2644.9603, -164.8312, 127, 0, 0, 2, Lord_Yelinak 8 | P -684.5529, 30.5074, 87.9706, 240, 0, 0, 2, Kintaru_of_the_Shrine 9 | P -442.7105, -875.861, 43.2832, 240, 0, 0, 2, Marech_of_the_Shrine 10 | P -563.6801, -962.9118, 42.9707, 240, 0, 0, 2, Marech_of_the_Shrine 11 | P -1282.9241, -868.6462, 233.908, 240, 0, 0, 2, Kintaru_of_the_Shrine 12 | -------------------------------------------------------------------------------- /data/maps/map_files/sleeper_2.txt: -------------------------------------------------------------------------------- 1 | P 50.0000, 1350.0000, 0.0000, 0, 0, 0, 1, Dragon_Statue 2 | P -621.0000, 2328.0000, 0.0000, 127, 64, 0, 2, Click_down 3 | -------------------------------------------------------------------------------- /data/maps/map_files/sleeper_3.txt: -------------------------------------------------------------------------------- 1 | P 1907.9890, 2800.9063, -995.9977, 240, 0, 0, 2, Vyskudra_the_Ancient 2 | P 1905.3402, 1967.3770, -995.9977, 240, 0, 0, 2, Kildrukaun_teh_Ancient 3 | P 1070.9746, 1971.1195, -995.9977, 240, 0, 0, 2, ZeixshiKar_the_Ancient 4 | P 1072.7369, 2800.9299, -995.9977, 240, 0, 0, 2, Tjudawos_the_Ancient 5 | P -264.6406, 2384.2336, -703.8414, 240, 0, 0, 2, Drakeen_Apprentice_/_Drakeen_Protector_/_Drakeen_Controller 6 | P -1008.8434, 1329.7040, -127.8417, 240, 0, 0, 2, Sinister_Gargoyle 7 | P -1295.3203, 1392.3521, -127.8417, 0, 0, 240, 2, Ulessa_Bladesoul 8 | P -1583.8090, 1327.2943, -127.8417, 240, 0, 0, 2, Sinister_Gargoyle 9 | P -625.5784, 1233.5023, -447.8416, 240, 0, 0, 2, Forbidding_Gargoyle_/_Wyvern_Fanatic 10 | P 78.6538, 1243.4100, 100.1581, 0, 0, 240, 2, Paldar_Bladesoul 11 | P 80.2980, 597.2806, 100.1581, 127, 0, 0, 2, The_Progenitor 12 | P -399.6637, 886.4108, 54.1069, 127, 0, 0, 2, Master_of_the_Guard 13 | P -399.2250, 366.7792, 100.1581, 240, 0, 0, 2, The_Overseer 14 | P -623.1760, 2061.9927, -447.9977, 240, 0, 0, 2, Drakeen_Guardian? 15 | P 38.1683, 29.6150, 0.2000, 0, 127, 0, 3, to_Eastern_Waste 16 | -------------------------------------------------------------------------------- /data/maps/map_files/soldunga_2.txt: -------------------------------------------------------------------------------- 1 | P 657.9444, 1002.2765, 38.1582, 0, 0, 240, 2, Lynada_the_exiled 2 | P 616.7756, 1023.5528, 38.1582, 240, 0, 0, 2, Solusek_priest* 3 | P 457.9150, 863.4885, 15.1582, 240, 0, 0, 2, Solusek_mage* 4 | P 437.4655, 754.4032, 54.1270, 0, 0, 240, 2, goblin_merchant 5 | P 1071.9894, 305.7885, 33.1582, 0, 0, 127, 2, Marfen_Binkdirple(BRD1.0) 6 | P 1177.9222, 269.7194, 33.1582, 0, 0, 0, 1, locked_door 7 | P 1054.9514, 240.5107, 47.1270, 0, 0, 0, 1, switch_for_bridge 8 | P 755.8920, 33.3733, 45.4236, 240, 0, 0, 1, TRAP 9 | P 732.5375, 91.7305, 45.2490, 240, 0, 0, 1, TRAP 10 | P 1001.8728, 199.1927, 47.1266, 0, 0, 0, 1, switch_for_bridge 11 | P 1110.6965, 246.4499, 33.1582, 0, 0, 0, 1, click 12 | -------------------------------------------------------------------------------- /data/maps/map_files/soldunga_3.txt: -------------------------------------------------------------------------------- 1 | P 365.2660, 795.6022, 53.9707, 127, 0, 0, 2, Lord_Gimblox(cleric1.0) 2 | P 582.6665, 356.3623, 35.1582, 240, 0, 0, 2, flame_goblin_foreman 3 | P 837.6407, 543.3514, 43.7480, 240, 0, 0, 2, Singe*HighSun 4 | P 761.7696, -11.7274, 42.9707, 240, 0, 0, 2, Kindle*HighSun 5 | P 761.6172, 50.9712, 21.1582, 240, 0, 0, 2, reckless_efreeti 6 | P 685.5000, -72.5854, 42.5904, 240, 0, 0, 2, inferno_goblin_captain 7 | P 724.3451, 724.1385, 48.1270, 240, 0, 0, 2, fire_goblin_bartender 8 | P 316.4137, 839.7921, 29.1582, 240, 0, 0, 2, inferno_goblin_torturer 9 | P 667.3499, 1012.2658, 38.1582, 240, 0, 0, 2, goblin_high_shaman 10 | P 313.4120, 787.8513, 57.1270, 240, 0, 0, 2, Solusek_goblin_king 11 | P 536.3700, 359.4250, 52.1270, 240, 0, 0, 2, kobold_predator* 12 | P 1128.7444, 304.9420, 33.1582, 240, 0, 0, 2, Gabbie_Mardoddle 13 | P 1110.9508, 285.6068, 47.1270, 240, 0, 0, 2, Captain_Bipnubble 14 | P 894.8491, 318.9103, 32.1582, 240, 0, 0, 2, CWG_Model_EXG* 15 | P 947.4515, 146.9182, 51.1154, 240, 0, 0, 2, lava_elemental 16 | P 714.8170, 94.2316, 26.5193, 240, 0, 0, 2, blazing_elementals 17 | -------------------------------------------------------------------------------- /data/maps/map_files/soldungb_2.txt: -------------------------------------------------------------------------------- 1 | P -260.257, 618.2839, -79.373, 240, 0, 0, 1, Pit_Trap 2 | P 242.3209, 625.918, -86.968, 240, 0, 0, 1, Roof_Trap 3 | P 695.8084, 1408.8186, 86.5005, 127, 0, 0, 3, Earth 4 | P 742.3835, 1323.606, 86.5048, 127, 0, 0, 3, AIR 5 | P 909.7341, 1320.1878, 86.4919, 127, 0, 0, 3, Fire 6 | P 954.2636, 1401.393, 86.4993, 127, 0, 0, 3, Water 7 | P 357.298, 533.8318, -60.7304, 0, 0, 127, 2, Targin_the_Rock(Mnk1.0) 8 | P 346.7785, 1370.6497, -44.2948, 0, 0, 127, 2, Zordak_Ragefire(Cle1.0) 9 | -------------------------------------------------------------------------------- /data/maps/map_files/soldungb_3.txt: -------------------------------------------------------------------------------- 1 | P 385.6365, 1545.3697, 26.5603, 240, 0, 0, 2, King_Tranix 2 | P 824.109, 1376.334, 85.286, 127, 0, 0, 3, Lord_Nagafen 3 | P 312.1329, 868.8404, -64.9667, 240, 0, 0, 2, 5_Noxious_Spider* 4 | P -325.7266, 480.629, -81.5212, 240, 0, 0, 2, 9_Efreeti_Lord_Djarn 5 | P 49.2687, 747.6372, -106.4355, 240, 0, 0, 2, 8_Death_Beetle 6 | P 61.5964, 625.932, -106.4248, 240, 0, 0, 2, 7_Guano_Harvester_(invised) 7 | P 346.704, 999.8795, -83.4328, 240, 0, 0, 2, 6_Stone_Spider 8 | P 364.61, 548.8194, -62.438, 240, 0, 0, 2, 2_Kobold_King 9 | P 320.4911, 592.4089, -73.4295, 240, 0, 0, 2, 3_Kobold_Priest 10 | P 344.161, 650.601, -68.4411, 240, 0, 0, 2, 4_Kobold_Champion 11 | P 110.6644, 561.7685, -92.444, 240, 0, 0, 2, 1_Kobold_Noble 12 | P 359.4956, 1451.4626, 26.6265, 240, 0, 0, 2, Warlord_Skarton 13 | P 898.849, 1369.2208, 86.4758, 240, 0, 0, 2, Magus_Rokyl 14 | -------------------------------------------------------------------------------- /data/maps/map_files/soltemple_2.txt: -------------------------------------------------------------------------------- 1 | P -80.7860, -405.6861, 28.1582, 0, 0, 127, 2, an_undead_knight_(Sk1.0) 2 | P -79.8290, -424.4859, 28.1582, 0, 0, 127, 2, Solomen_(Wiz_1.0) 3 | P 51.3885, -334.8688, 28.1582, 127, 0, 0, 2, Moltak(Reset_Shm_1.0_Faction) 4 | P 55.9866, -429.0000, 0.1582, 0, 0, 127, 2, Walthin_Fireweaver_(Brd_1.5) 5 | P -6.2089, -540.5385, 16.1582, 0, 0, 0, 1, click 6 | -------------------------------------------------------------------------------- /data/maps/map_files/soltemple_3.txt: -------------------------------------------------------------------------------- 1 | P -41.5955, -327.2466, 29.2150, 127, 0, 0, 3, a_seeker(cleric_1.0)9AM-9PM 2 | -------------------------------------------------------------------------------- /data/maps/map_files/southkarana_2.txt: -------------------------------------------------------------------------------- 1 | P 2337.0000, 5164.0000, -4.0000, 127, 0, 0, 1, a_werewolf 2 | P 2400.0000, -300.0000, 0.0000, 127, 64, 0, 3, Centaur_Village 3 | P 2600.0000, 5400.0000, 0.0000, 0, 0, 240, 2, Hermit 4 | P -1200.0000, 6500.0000, 0.0000, 127, 64, 0, 3, Aviak_Village 5 | P 849.0000, 3577.0000, -2.0000, 127, 0, 0, 2, a_werewolf 6 | P 2016.0000, 4143.0000, 4.0000, 0, 0, 127, 2, Sentry_Alechin 7 | P -1351.0000, 4910.0000, 61.0000, 240, 0, 0, 2, high_shaman_phido 8 | P -930.2182, 1528.2898, 13.1645, 127, 0, 0, 2, Sir_Telian_Mottswort(Ncr1.5)* 9 | P 1380.7950, -2438.2749, -64.6826, 0, 0, 0, 1, raiders 10 | P 137.7926, 52.2870, 6.8654, 0, 0, 127, 2, Vhalen_Nostrolo_(Bard1.5) 11 | P -98.4241, 17.8083, -2.2418, 0, 0, 127, 2, Baenar_Swiftsong(Bard1.0) 12 | P 3669.1309, 247.3377, -3.4666, 0, 0, 127, 2, Kelkin_Menkia(Bard1.0) 13 | P -2084.3357, 2992.6785, 51.2126, 0, 0, 127, 2, Brother_Qwinn*(Mnk1.0) 14 | P 3323.2888, 6091.3237, -3.7791, 127, 64, 0, 2, Druid_Ring 15 | -------------------------------------------------------------------------------- /data/maps/map_files/southkarana_3.txt: -------------------------------------------------------------------------------- 1 | P 3216.0000, 4758.0000, -4.0000, 240, 0, 0, 2, Grizzleknot 2 | P 1017.6814, 4941.7437, -3.7791, 240, 0, 0, 2, Quillmane*HighSun 3 | P 3273.4229, 347.7826, -3.7791, 240, 0, 0, 2, Grizzleknot*HighSun 4 | P -374.3138, 2676.4690, -0.4471, 240, 0, 0, 2, Tesch_Val_Deval'Nmak* 5 | P 2300.1980, 4714.9409, 10.5646, 240, 0, 0, 2, _Knari_Morawk*HighSun 6 | P -2333.4204, 765.1349, -1.9700, 240, 0, 0, 2, Kroldir_Thunderhoof*HighSun 7 | P -1079.3876, -1399.8248, 38.1593, 240, 0, 0, 2, Lord_Grimrot*_AE_BARD 8 | P -76.4406, 4972.4058, -3.7791, 240, 0, 0, 2, Marik_Clubthorn*HighSun 9 | P 727.5290, 6775.5605, -3.4666, 240, 0, 0, 2, Mroon*HighSun 10 | P -2275.4651, 7444.1089, 49.3263, 240, 0, 0, 2, Narra_Tanith*HighSun 11 | P -1896.5120, 476.9442, 7.9017, 240, 0, 0, 2, Synger_Foxfyre* 12 | P 1586.8306, 4316.2910, -3.4666, 240, 0, 0, 2, Quillman*HighSun 13 | P 1672.8405, 3882.8057, 57.4943, 240, 0, 0, 2, Marik 14 | P -1233.0000, 1234.0000, 123.0000, 240, 0, 0, 2, Qspawn 15 | P 1781.6776, 6668.4985, -3.7791, 240, 0, 0, 2, Coloth_Meadowgreen* 16 | -------------------------------------------------------------------------------- /data/maps/map_files/sro_2.txt: -------------------------------------------------------------------------------- 1 | P -306.6519, 2064.457, -24.577, 0, 0, 0, 3, Druid_Rings 2 | P -124.8448, 1040.3867, 6.3247, 0, 0, 0, 3, Wizard_Spire 3 | P -441.1234, -115.284, -22.9497, 0, 0, 0, 3, Gypsy_Camp 4 | -------------------------------------------------------------------------------- /data/maps/map_files/steamfont_2.txt: -------------------------------------------------------------------------------- 1 | P -1242.0000, -1767.0000, 0.0000, 255, 255, 255, 2, Kobold 2 | 3 | P 235.0000, -1876.0000, 0.0000, 255, 255, 255, 2, Merchants 4 | 5 | P 646.0000, 22.0000, 0.0000, 255, 255, 255, 2, Windmills 6 | 7 | P 682.0000, 1223.0000, 0.0000, 255, 255, 255, 2, Dragon_Bones 8 | (rogue_epic) 9 | P 1846.0000, 1553.0000, 0.0000, 255, 255, 255, 2, Merchants 10 | 11 | P -1658.0000, 1820.0000, 0.0000, 255, 255, 255, 2, Druid_Rings 12 | 13 | P -1767.0000, 774.0000, 0.0000, 255, 255, 255, 2, Kobold -------------------------------------------------------------------------------- /data/maps/map_files/stonebrunt_2.txt: -------------------------------------------------------------------------------- 1 | P 3330.0000, -3818.0000, 0.0000, 127, 64, 0, 2, The_Waterfall 2 | P -2033.0000, -476.0000, 0.0000, 127, 64, 0, 2, Knobbly-Top 3 | P 481.0000, -2018.0000, 0.0000, 127, 64, 0, 2, Mt._Klaw 4 | P -3284.6211, 3899.3059, -9.9990, 0, 0, 0, 1, Safe_Camp_Spot 5 | P 1003.2880, -3761.6299, 1169.8019, 127, 64, 0, 2, Highland_Kobold_Camp 6 | P 645.2490, -3033.1089, 1120.2919, 127, 64, 0, 2, Graniteback_Ridge 7 | P -3011.1201, -3773.2461, 1194.8521, 127, 64, 0, 2, Highland_Kobold_Camp 8 | P -2137.2371, 3821.7939, -40.7310, 127, 64, 0, 2, Savage_Kobold_Camp 9 | P -3307.4971, 4187.8711, -47.1300, 127, 64, 0, 2, Burly_Kobold_Camp 10 | P -1180.2209, 4790.3560, -46.2580, 127, 64, 0, 2, Ferocious_Kobold_Camp 11 | P 3424.4141, 4399.4131, -186.6370, 0, 0, 127, 2, Wejnir_D'Vir 12 | P 3413.9751, 4440.9282, -186.8569, 0, 0, 240, 2, Cedric_Trallus 13 | P 2725.4189, 635.8179, 358.2100, 127, 64, 0, 2, Raging_Kobold_Camp 14 | P 3840.6680, -2059.8831, 775.5990, 127, 64, 0, 2, Spinning_Rocks 15 | P 495.9850, -1349.6000, 1025.7860, 0, 0, 0, 1, Oven 16 | P 562.5996, -1389.5283, 1025.1232, 0, 0, 0, 1, Pottery_Wheel 17 | P 594.5119, -1354.1869, 1025.1232, 0, 0, 0, 1, Forge 18 | P 525.6970, -1353.8040, 1025.1232, 0, 0, 0, 1, Kiln 19 | P 1741.1379, 551.6600, 622.3841, 0, 0, 127, 2, Dire_Panda(Brd_1.5) 20 | P -2353.8799, -1881.4806, 793.8306, 127, 0, 0, 2, Gnashing_Kobold(Ber1.0) 21 | P 3330.2068, -3813.4067, 1248.4755, 127, 0, 0, 2, The_Spirit_of_Torment(BST1.0) 22 | -------------------------------------------------------------------------------- /data/maps/map_files/stonebrunt_3.txt: -------------------------------------------------------------------------------- 1 | P 2317.4463, -2040.9446, 754.1335, 240, 0, 0, 2, Rognarog_the_Infuriated*HighSun 2 | P -1250.8251, 382.4510, 364.2336, 240, 0, 0, 2, Slyder_the_Ancient* 3 | P 3.4224, -3229.1846, 1013.1382, 240, 0, 0, 2, Giang_Yin*HighSun 4 | P -1959.7930, -1774.5861, 731.8709, 240, 0, 0, 2, Snowbeast* 5 | P 79.1154, 884.3196, 333.4144, 240, 0, 0, 2, Jelquar_the_Soulslayer* 6 | P -1161.5732, 4821.4341, -45.7036, 240, 0, 0, 2, Girgak_the_Bloody 7 | P 2734.5254, 628.9089, 360.4796, 240, 0, 0, 2, Rendolr_the_Maimer 8 | P 981.2431, -3734.4336, 1169.2998, 240, 0, 0, 2, Arglar_the_Tormentor 9 | P -3002.6694, -3765.3811, 1192.1927, 240, 0, 0, 2, Hurglak_the_Destroyer 10 | P 1800.6744, 797.4375, 551.5050, 240, 0, 0, 3, X 11 | P 2920.7803, 114.8435, 421.1841, 240, 0, 0, 3, X 12 | P 1716.4249, -2686.8535, 968.4430, 240, 0, 0, 3, X 13 | P 2836.9978, -2422.1079, 914.1938, 240, 0, 0, 3, X 14 | P -39.7109, 3620.4741, -7.2846, 240, 0, 0, 3, X 15 | P -924.6177, 2110.1333, 134.2907, 240, 0, 0, 3, X 16 | -------------------------------------------------------------------------------- /data/maps/map_files/swampofnohope_2.txt: -------------------------------------------------------------------------------- 1 | P 1545.2481, 435.5464, -11.329, 127, 64, 0, 3, Froglok_City 2 | P 3583.2471, -1159.5236, 177.8745, 0, 0, 127, 2, Zaiban_Zellenshar 3 | P 578.4049, -282.9861, -9.5717, 127, 0, 0, 2, Skurza_Slicekutt(Sk_1.5) 4 | P 1899.8712, -603.6262, -5.5713, 127, 0, 0, 2, Dire_Leech(Brd_1.5) 5 | P -2325.4299, 3657.688, 36.5484, 0, 0, 127, 2, Scout_Eyru(BST_1.0) 6 | P -651.9302, 2477.6972, -7.3417, 0, 0, 0, 1, undead 7 | P 2051.907, 1552.3471, -14.2614, 0, 0, 127, 2, Muirkiaz_Selishshen 8 | P 1760.8235, 110.9081, -22.6499, 127, 0, 0, 2, Ulump_Pujluk(Drd_1.0) 9 | P 1359.551, -1407.7937, -8.5077, 0, 0, 127, 2, Grik_the_Exiled 10 | P 1573.9736, -1733.7887, -13.378, 127, 0, 0, 2, Skurza_Slicekutt(Sk1.5) 11 | P 173.2863, -2493.4738, 9.5084, 0, 0, 0, 1, Brigands 12 | P -1596.7672, -3796.71, 69.644, 0, 0, 127, 2, Ssessthrass(Ncr_1.0) 13 | P -908.5923, -4251.541, 61.192, 0, 0, 127, 1, Calgerene_Mythmoor 14 | P 1501.9302, 1346.3794, 71.8044, 127, 0, 0, 2, A_Dancing_Flame(rogue_epic) 15 | P 1779.3471, 1481.7108, 24.3144, 240, 0, 0, 2, Lokin_the_Wise 16 | P -2935.9877, -54.7515, -9.1334, 0, 0, 0, 1, Piece_of_a_Medaillon(GS) 17 | P -2078.759, -2717.1658, -5.7253, 127, 0, 0, 2, Froglok_Escort* 18 | -------------------------------------------------------------------------------- /data/maps/map_files/swampofnohope_3.txt: -------------------------------------------------------------------------------- 1 | P -1674.664, 1513.5902, -7.2518, 240, 0, 0, 2, Froglok_Impaler* 2 | P 584.6984, -1207.435, 8.8572, 240, 0, 0, 2, Froglok_berserker* 3 | -------------------------------------------------------------------------------- /data/maps/map_files/templeveeshan_2.txt: -------------------------------------------------------------------------------- 1 | P 500.1677, 1180.1437, 0.1582, 0, 0, 0, 1, Inscribable_Words_(GS) 2 | P 779.3663, 43.5850, 74.1268, 240, 0, 0, 2, @%#! 3 | P 55.2360, 147.5977, 44.1921, 240, 0, 0, 2, @%#! 4 | P 1678.5187, -346.1696, 95.4342, 240, 0, 0, 2, @%#! 5 | -------------------------------------------------------------------------------- /data/maps/map_files/thurgadina_2.txt: -------------------------------------------------------------------------------- 1 | P -102.2210, 537.4056, 5.6260, 127, 64, 0, 3, Arena 2 | P 112.2536, 435.3964, 0.1000, 0, 0, 0, 1, Forge 3 | P 202.5588, 226.5773, 0.1000, 0, 0, 0, 1, Oven 4 | P 382.1111, -97.4463, -4.9989, 0, 0, 0, 1, Brew_Barrel 5 | P -168.3020, 260.8482, -4.9989, 0, 0, 0, 1, Kiln 6 | P -193.3603, 259.5821, -4.9989, 0, 0, 0, 1, Pottery_Wheel 7 | P 294.3034, 84.4630, 0.1000, 127, 64, 0, 3, Doogle's_Drinks 8 | P 269.5500, 219.5591, 0.1000, 127, 64, 0, 3, Argash's_house_of_Carpentry 9 | P 233.8713, 234.8873, 0.1000, 127, 64, 0, 3, Mordin's_Meats 10 | P -194.2376, 327.6467, 0.1000, 127, 64, 0, 3, Thurgadin_Exchange 11 | P -121.5965, 11.8104, 0.1000, 127, 64, 0, 3, The_Icy_Mug 12 | P -242.1302, 154.9384, 0.1000, 127, 64, 0, 3, Frostbeard's_Furs_&_Leather 13 | P 106.9827, 399.3306, 0.1000, 127, 64, 0, 3, Underbelly's_Arms 14 | P -97.1128, 399.5398, 0.1000, 127, 64, 0, 3, The_Scar's_Edge 15 | P 442.3604, -118.7900, -3.4517, 0, 0, 127, 2, Dardek_Bladewright(War_Pre-Q) 16 | P -4.3662, 354.4542, 0.2082, 127, 64, 0, 3, The_Broken_Glacier 17 | -------------------------------------------------------------------------------- /data/maps/map_files/thurgadina_3.txt: -------------------------------------------------------------------------------- 1 | P -497.5185, 288.4941, -23.4448, 0, 0, 127, 3, Guard_Leif#3 2 | P -318.3710, 116.4672, -3.5377, 0, 0, 127, 3, Trita_Coldheart#3 3 | P -808.4362, 302.4569, -13.4370, 0, 0, 127, 3, Loremaster_Borannin 4 | P -807.9222, 182.2582, -18.4334, 0, 0, 127, 3, Loremaster_Brita#3 5 | P -805.8433, 322.4809, -13.4780, 0, 0, 127, 3, Grand_Historian_Thoridain 6 | P -498.8804, 375.9198, -23.4591, 0, 0, 127, 3, Frundle_Frenkler#4 7 | P -9.0000, 325.0000, 0.0000, 0, 127, 127, 2, Brd 8 | P -221.0000, 111.0000, 0.0000, 0, 127, 127, 2, Dru 9 | P -809.0000, 182.0000, 0.0000, 0, 127, 127, 2, Enc 10 | P -230.0000, 111.0000, 0.0000, 0, 127, 127, 2, Mag 11 | P -470.0000, 226.0000, 0.0000, 0, 127, 127, 2, Pal 12 | P 297.0000, 202.0000, 0.0000, 0, 127, 127, 2, Rng 13 | P 127.0000, 434.0000, 0.0000, 0, 127, 127, 2, Shd 14 | P -217.0000, 147.0000, 0.0000, 0, 127, 127, 2, Wiz 15 | P -815.0000, 305.0000, -14.9990, 0, 127, 127, 3, Borannin_(GM_Cleric) 16 | P 134.5665, -43.7090, 2.5009, 0, 127, 127, 3, Felspar_(GM_Rogue) 17 | P 216.4901, 220.7949, 1.7423, 0, 0, 127, 3, Mordin_Frostcleaver 18 | P -227.9843, 251.9266, 1.5341, 0, 0, 127, 3, Trademaster_Kroven 19 | P -795.2566, 321.7740, -19.8416, 0, 0, 0, 1, Etched_Rune_pattern 20 | P -805.5000, 345.1503, -19.8416, 0, 0, 0, 1, /say_'Oh_Brell 21 | P 385.7339, -118.5339, -4.8417, 0, 0, 127, 3, Grimthor 22 | P 71.2870, 333.7099, 0.1582, 0, 0, 127, 3, Talem_Tucker 23 | P 53.1796, 350.2391, 0.1979, 0, 0, 127, 3, Meg_Tucker 24 | P 109.3700, -45.7796, 0.1979, 0, 0, 127, 3, Nimren_Stonecutter 25 | -------------------------------------------------------------------------------- /data/maps/map_files/thurgadinb_2.txt: -------------------------------------------------------------------------------- 1 | P -211.0000, -730.0000, 0.0000, 127, 64, 0, 3, Hall_of_Ancestors 2 | P 34.0000, -750.0000, 0.0000, 127, 64, 0, 3, Guarded_Door 3 | P 68.0000, -744.0000, 0.0000, 127, 64, 0, 3, Barracks 4 | P 0.0000, -600.0000, 0.0000, 127, 64, 0, 3, The_Pit 5 | -------------------------------------------------------------------------------- /data/maps/map_files/thurgadinb_3.txt: -------------------------------------------------------------------------------- 1 | P -881.8167, -12.8407, -24.8416, 99, 0, 255, 1, Outcast's_Coal 2 | P -888.2131, -15.4343, -24.8416, 0, 0, 0, 1, oven 3 | P -594.1684, 2.7542, -134.2686, 240, 0, 0, 2, Glucose* 4 | P -362.6520, -479.7146, -113.4428, 240, 0, 0, 2, Grizznot 5 | P -10.2735, -688.3033, 66.6935, 127, 0, 0, 2, Chamberlain_Krystorf 6 | P -5.2416, -775.2721, 63.5884, 127, 0, 0, 2, Dain_Frostreaver_IV 7 | P -8.6222, -778.7934, 36.6477, 127, 0, 0, 2, Seneschal_Aldikar 8 | -------------------------------------------------------------------------------- /data/maps/map_files/timorous_2.txt: -------------------------------------------------------------------------------- 1 | P 3226, 4489, 0, 0, 127, 0, 2, Dock 2 | P -2783, 1293, 0, 127, 64, 0, 2, Ogre_Raiders 3 | P -3566, -5873, 0, 0, 0, 0, 2, Dock 4 | P 5739.9354, 4107.1522, 11.1353, 0, 0, 0, 1, Timorous_Coconut 5 | P 4815.4092, -6283.5757, 14.8693, 0, 0, 0, 1, Timousous_Coconut 6 | P 1539.6464, -5839.1342, 11.3994, 0, 0, 0, 1, Timorous_Coconut 7 | P -3163.6082, 6876.5565, -3.1044, 0, 0, 0, 3, X 8 | P 2028.4235, -5807.4512, 6.1867, 0, 127, 127, 3, Captain__Jack_Aviak_#2 9 | P 1391.8195, -5264.8632, 10.5557, 0, 127, 127, 3, Bosun_Darwor 10 | P -713.8443, -5880.7021, -1.2947, 0, 127, 127, 3, Captain_Jack_Aviak_#3 11 | P -2520.273, -5894.6635, 8.4638, 0, 127, 127, 3, Captain_Jack_Aviak_#4 12 | P 1385.4094, -5227.707, 12.9824, 127, 0, 0, 3, Silithis_Sisnta(Sk_1.5) 13 | P -3835.2451, -6480.5195, 277.5092, 0, 0, 127, 2, Drendico_Metalbones(Ncr1.0)* 14 | P -3060.9047, -7541.9385, 85.2651, 0, 0, 0, 1, deckhand 15 | P 4225.9345, -5611.9395, 11.7969, 0, 0, 0, 1, Prismatic_Crystal(GS)Wiz1.5) 16 | P -2831.5958, 6324.3369, 4.5298, 0, 0, 0, 1, Severely_Damaged_Dragon_Head_Hilt(GS)War1.0) 17 | P -2978.8969, 8975.419, 257.5192, 0, 0, 127, 2, Scout_Sihmoj(BST1.0) 18 | P 2207.8604, 11629.3241, 68.3843, 0, 0, 127, 2, Lheao(Mnk1.0) 19 | P -2721.4452, 5997.1558, 4.8994, 0, 0, 127, 2, Alrik_Farsight*(Drd/Rng1.0) 20 | P 1856.4943, 11819.9971, -1.2618, 0, 0, 127, 2, Dolgin_Codslayer(Drd1.0 21 | P -1982.7846, 9203.449, 8.2493, 127, 0, 0, 2, Draz_Nurakk(BST1.0) 22 | -------------------------------------------------------------------------------- /data/maps/map_files/timorous_3.txt: -------------------------------------------------------------------------------- 1 | P -2626.2689, 711.7079, 15.6083, 127, 0, 0, 2, Olok_One'eye 2 | P -3803.9692, 11747.8925, -117.1003, 127, 0, 0, 3, Faydedar 3 | P -2910.5399, 6104.4731, 0.8569, 127, 0, 0, 2, Izatri 4 | P 6112.951, 9637.706, 11.9289, 240, 0, 0, 2, Halara 5 | P 5301.1337, 9320.5673, 91.6231, 240, 0, 0, 2, Halara 6 | P 5443.2655, 9189.4228, 184.986, 240, 0, 0, 2, Halara 7 | P -2697.2827, -7293.8022, 72.2205, 240, 0, 0, 2, Ugrak_da_Raider 8 | P -3243.8699, -5534.3495, -1.8838, 240, 0, 0, 2, Ugrak_da_Raider 9 | P -3171.2274, -5429.626, 0.859, 240, 0, 0, 2, Ugrak_da_Raider 10 | P -2535.2471, -5265.1089, 20.8518, 240, 0, 0, 2, Ugrak_da_Raider 11 | P -3569.8206, -6102.9048, 9.7, 240, 0, 0, 1, X 12 | -------------------------------------------------------------------------------- /data/maps/map_files/tox_2.txt: -------------------------------------------------------------------------------- 1 | P 472, 1033, 0, 0, 0, 0, 2, Large_Kobold_Camp 2 | P 1050, 1900, 0, 0, 0, 0, 2, Kobold_Camp 3 | P 250, 2400, 0, 0, 0, 0, 2, Skeleton_Camp 4 | P 909, 1483, -38.6741, 0, 0, 0, 3, Great_Spires 5 | P 359, -1081, -60.6019, 0, 0, 0, 3, Druid_Circle 6 | -------------------------------------------------------------------------------- /data/maps/map_files/trakanon_2.txt: -------------------------------------------------------------------------------- 1 | P -2056.5637, -2036.5980, -356.4137, 0, 0, 127, 2, Lashrazz_Krazz 2 | P -4506.7046, -2018.4650, -330.6881, 0, 0, 127, 2, Khellibak_Killsoro 3 | P 424.1161, 679.9235, -337.5516, 0, 0, 127, 2, Garkorra_Aruacki 4 | P -1353.8684, 1769.9607, -235.6376, 127, 0, 0, 2, Seshkar 5 | P -3169.5947, 2585.5388, -339.1745, 0, 0, 127, 2, Zuikzan_Moorkan 6 | P 2680.1487, 1645.6310, -358.7477, 0, 0, 127, 2, Kaiaren(Mnk1.0) 7 | P 2655.3625, 1553.1144, -358.7477, 0, 0, 127, 2, Likkorsis_Zilkar 8 | P -2091.2632, 502.5020, -94.3580, 0, 0, 0, 1, Lev_over_to_aqueducts 9 | P -2444.3721, -296.1922, -341.2882, 127, 0, 0, 2, Kaiaren(Mnk1.0) 10 | -------------------------------------------------------------------------------- /data/maps/map_files/unrest_2.txt: -------------------------------------------------------------------------------- 1 | P 287.423, -530.2899, -19.9989, 0, 0, 0, 1, Wizard_Staff_Piece 2 | P 166.173, -343.4837, 1.6142, 0, 0, 0, 1, Gyrospire_Beza 3 | P 282.3899, -687.4497, 0.1582, 0, 0, 127, 2, Serra(BRD1.0) 4 | P -78.9369, -685.1694, -21.2457, 240, 0, 0, 3, Trap 5 | P -105.776, -684.7277, -20.9838, 240, 0, 0, 3, Trap 6 | P 284.5656, -524.9221, -18.4971, 0, 0, 0, 1, Rod(Spoke_of_Tartons_Wheel_-_Jaka) 7 | P -61.8673, -496.6677, 40.9707, 127, 0, 0, 2, a_priest_of_najena 8 | P 83.2574, -702.4, 53.6473, 0, 0, 127, 2, Garanel 9 | P 13.9604, -528.4856, 45.6199, 127, 0, 0, 2, Librarian_Carsil 10 | P 285.144, -498.4017, 8.1061, 127, 0, 0, 2, a_twisted_acolyte 11 | P -141.1293, -484.2939, -35.8937, 127, 0, 0, 1, Garanel 12 | -------------------------------------------------------------------------------- /data/maps/map_files/unrest_3.txt: -------------------------------------------------------------------------------- 1 | P -61.1308, -594.1358, 16.1582, 240, 0, 0, 2, Khrix_Fritchoff 2 | P 203.867, -383.9266, 1.5359, 0, 0, 0, 1, Frightfull_Carved_Pimpkin 3 | P 38.3074, -667.5937, 36.1582, 240, 0, 0, 2, an_undead_barkeep 4 | P -27.4451, -699.9099, 32.1582, 240, 0, 0, 2, reclusive_ghoul_magus 5 | P 75.9701, -696.6037, 52.127, 240, 0, 0, 2, an_undead_knight_of_Unrest 6 | P -146.9987, -485.3417, -35.8417, 240, 0, 0, 2, Garanel_Rucksif 7 | P 16.705, -574.51, 44.127, 240, 0, 0, 2, a_reanimated_hand(not_accurate) 8 | P -25.1908, -642.8665, 2.1581, 240, 0, 0, 2, an_undead_brewer 9 | -------------------------------------------------------------------------------- /data/maps/map_files/veeshan_2.txt: -------------------------------------------------------------------------------- 1 | P 930.4316, -314.5833, 461.3383, 0, 0, 0, 1, Locked_Door 2 | P -273.8668, -1308.6251, 601.2894, 0, 0, 0, 1, Locked_Door 3 | P -235.4525, -1724.5789, 602.1310, 0, 0, 0, 1, Locked_Door 4 | P -604.6082, -1787.4459, 602.2776, 0, 0, 0, 1, Locked_Door 5 | P 1306.2570, 1155.2300, 280.9669, 127, 0, 0, 3, Phara_Dar 6 | P -558.5919, -1444.2371, 269.9089, 127, 0, 0, 3, Hoshkar 7 | P 597.7430, -1188.2390, 676.1950, 127, 0, 0, 3, Nexona 8 | P 142.3640, -1430.8160, 449.6449, 127, 0, 0, 3, Druushk 9 | P -1223.8160, -1155.5099, 765.3680, 127, 0, 0, 3, Xygoz 10 | P 208.3390, -336.3639, 450.8050, 127, 0, 0, 3, Silverwing 11 | P -1142.9093, -693.8198, 159.8692, 0, 0, 0, 1, drop_down_in_lava 12 | -------------------------------------------------------------------------------- /data/maps/map_files/veeshan_3.txt: -------------------------------------------------------------------------------- 1 | P -229.4593, -184.5861, 361.4078, 240, 0, 0, 2, Blood-Thirsty_Racnor 2 | P -491.7160, -841.2462, 521.2983, 240, 0, 0, 2, Elder_Ekron* 3 | P -1706.5293, -45.6255, 23.5394, 240, 0, 0, 2, Travenro_the_Skygazer(to_place) 4 | P -288.7977, -855.3197, 521.3188, 240, 0, 0, 2, Qunard_Ashnclaw 5 | P 622.1731, -873.1669, 441.3724, 240, 0, 0, 2, Kluzen_the_Protector 6 | P -997.8871, -735.6205, 200.7977, 240, 0, 0, 2, Milyex_Vioren 7 | P -1263.5959, -389.7826, 40.1291, 240, 0, 0, 2, Magma_Basilisk 8 | -------------------------------------------------------------------------------- /data/maps/map_files/velketor_2.txt: -------------------------------------------------------------------------------- 1 | P 332.5389, -262.7676, 18.1062, 127, 64, 0, 2, Kobolds 2 | P 1.6674, 246.807, -71.8626, 0, 0, 0, 2, Up_to_Castle 3 | P 0.718, 242.5707, 3.3614, 0, 0, 0, 2, Down_to_Lower 4 | P -30.7364, -538.2382, -0.8938, 240, 0, 0, 2, One_Way 5 | P 59.3965, -92.9894, -74.8624, 0, 0, 0, 1, Quintessence_of_Elements 6 | P 426.6218, -262.1145, 18.19, 0, 0, 0, 1, Cryptic_Page(GS)Ench1.5) 7 | P -168.385, -85.3572, 1.2, 127, 0, 0, 2, Failed_Experiment(Druid2.0) 8 | P -234.9791, 19.9472, 21.19, 127, 0, 0, 2, Velketor_Experiment(Druid2.0) 9 | P 45.344, -87.6159, -33.9979, 127, 0, 0, 2, Bledrek/Bled 10 | P -8.4888, 87.6679, 1.2, 127, 0, 0, 2, Kerdelb 11 | -------------------------------------------------------------------------------- /data/maps/map_files/wakening_3.txt: -------------------------------------------------------------------------------- 1 | P -2336.6011, 2401.1401, -125.5280, 240, 0, 0, 2, a_holgresh_raider* 2 | P -2028.3176, 4133.8105, -186.7323, 240, 0, 0, 2, Grand_Vizier_Poolakacha`tei 3 | P -775.7102, -947.1648, -199.1644, 240, 0, 0, 2, Lord_Gossimerwind* 4 | P -449.3566, -611.2273, -204.8608, 240, 0, 0, 2, Lord_Prismwing* 5 | -------------------------------------------------------------------------------- /data/maps/map_files/warrens_2.txt: -------------------------------------------------------------------------------- 1 | P 543.6794, -421.7801, -79.4334, 0, 0, 0, 1, Kobold_Slayer 2 | P -236.752, -611.3972, -97.5079, 0, 0, 127, 2, Wilslik_Gissu(Shm_1.5) 3 | -------------------------------------------------------------------------------- /data/maps/map_files/warrens_3.txt: -------------------------------------------------------------------------------- 1 | P 167.5969, -335.2074, -67.4321, 240, 0, 0, 2, Prince_Bagnar 2 | P -330.463, -183.5186, -77.415, 240, 0, 0, 2, King_Gragnar 3 | P -107.7656, -339.149, -80.3924, 240, 0, 0, 2, Warlord_Drrig 4 | P 1010.8305, -532.3612, -80.3953, 240, 0, 0, 2, Rikfeer_the_Arcane 5 | P 847.1909, -657.307, -74.9026, 240, 0, 0, 2, Smithy_Rrarrgin 6 | P 829.7437, -674.1642, -74.9012, 240, 0, 0, 2, Foodmaster_Rargnar 7 | P -287.6945, -584.2951, -125.9709, 240, 0, 0, 2, The_Muglwump 8 | P 956.7342, -318.7758, -106.6542, 240, 0, 0, 2, Packmaster_Dledsh 9 | -------------------------------------------------------------------------------- /data/maps/map_files/warslikswood_2.txt: -------------------------------------------------------------------------------- 1 | P -1250, 950, 0, 127, 64, 0, 2, Giant_Fort 2 | P 0, -3000, 0, 127, 64, 0, 2, Goblin_Fort 3 | P -2075.48, -1557.9839, 174.6839, 127, 64, 0, 2, Goblins 4 | P 2130.6478, -3264.48, -27.74, 127, 64, 0, 2, Goblins 5 | P 2489.856, -3779.8301, -27.869, 127, 64, 0, 2, Iksar_Bandits 6 | P -4184.7578, 1369.9529, 548.8319, 127, 64, 0, 2, Iksar_Bandits 7 | P -2625.9918, 900.479, 260.778, 127, 64, 0, 2, Iksar_Bandits 8 | P 123, -2247, 0, 127, 64, 0, 2, Goblins 9 | P 2839, -2813, 0, 127, 64, 0, 2, Iksar_Bandits 10 | P -3707, 1517, 0, 127, 64, 0, 2, Iksar_Bandits 11 | P -2456, -603, 0, 127, 64, 0, 2, Bandit_Lord 12 | P -3297, 2891, 0, 127, 64, 0, 2, Open_Valley 13 | P -958, 2052, 0, 127, 64, 0, 2, Goblin_Pond 14 | P -1454, 2273, 0, 127, 64, 0, 2, Iksar_Bandit_Caves 15 | P -628.2762, -176.2177, -78.7663, 0, 0, 127, 2, Lurking_Hopeful(Ber1.0) 16 | P -263.7366, -699.8088, -203.8953, 127, 0, 0, 2, Raving_Goblinmaster(Ber1.0) 17 | P -755.7838, -3085.7089, -20.4548, 0, 0, 240, 2, Xarezia_Dru'Shiv 18 | P -401.8756, -4012.8913, -209.16, 127, 0, 0, 2, Ssolet_Dnaas 19 | P 2465.758, -3831.1792, -24.715, 0, 0, 127, 2, Silliv_'Host 20 | P 418.6757, 1384.2901, 196.6494, 0, 0, 127, 2, Drakigone_Bruann 21 | P -2186.6929, 3360.684, -22.4631, 0, 0, 127, 2, Karrenabell_Joonan 22 | P 583.957, 2208.6957, 297.4705, 0, 0, 240, 2, Captain_Gideen 23 | P 3459.7527, -3030.8784, -149.3759, 127, 127, 0, 3, Golden_Dagger 24 | P -4618.815, -2759.3207, -202.5365, 0, 0, 0, 1, Meditation_Basket(GS(Wiz) 25 | P 1131.7902, 1647.1494, 304.6616, 0, 0, 127, 2, a_shady_goblin 26 | -------------------------------------------------------------------------------- /data/maps/map_files/warslikswood_3.txt: -------------------------------------------------------------------------------- 1 | P 1731.892, -272.7153, 149.9874, 240, 0, 0, 2, Grachnist_the_Destroyer 2 | P 1948.7308, -1243.9999, -35.7706, 240, 0, 0, 2, Grachnist 3 | P 2070.3737, -3243.7222, -24.7457, 240, 0, 0, 2, Grachnist 4 | P -39.9786, -3260.6675, -19.3939, 240, 0, 0, 2, Grachnist 5 | P -2413.255, -1475.6531, 178.8926, 240, 0, 0, 2, Grachnist 6 | P -2451.8301, -564.553, 179.9525, 240, 0, 0, 2, Iksar_Bandit_Lord 7 | -------------------------------------------------------------------------------- /data/maps/map_files/westwastes_2.txt: -------------------------------------------------------------------------------- 1 | P 2311.4285, 3205.9026, -29.9727, 127, 0, 0, 2, Sir_Elmonious_Falmont(Sk_1.5) 2 | P -2307.4734, -889.2894, -23.5568, 127, 0, 0, 2, Scout_Pirri(Clr_1.5) 3 | P 2481.6702, -800.9190, -30.2222, 0, 0, 127, 2, Vohnkare(Ench_1.5) 4 | P -2829.4331, -3295.2397, -30.3948, 127, 0, 0, 2, Disciple_of_Moon(Mnk_1.5) 5 | P 638.3230, 1087.4260, -12.7195, 127, 0, 0, 2, a_neuralgic_huntress*(Rng_1.5) 6 | P -1877.6626, -4469.7637, -310.5319, 0, 0, 0, 2, /say_Violet_Roses 7 | P 90.5287, -4235.5273, -81.3281, 0, 0, 127, 2, Diddugu(Bst_1.5) 8 | P -1875.4082, -4477.8120, -309.7500, 0, 0, 127, 2, a_Lost_Tomekeeper(Mage_1.5) 9 | P 3532.4397, 3153.6116, 2.7919, 127, 0, 0, 2, Tranala 10 | P 3899.2539, 4702.9644, 30.8072, 0, 0, 127, 2, Scout_Charisa 11 | P 2923.5249, 4060.5930, -77.2770, 127, 0, 0, 2, Julius_Oresko 12 | P 2934.9978, 4045.5359, -77.2880, 127, 0, 0, 2, Grenth_Drakebane 13 | P 1915.2533, 3825.8931, -64.3076, 127, 0, 0, 2, Rontar_O'Karn 14 | P 1887.4692, 3840.7832, -63.9795, 127, 0, 0, 2, Sadeem_Oujva 15 | -------------------------------------------------------------------------------- /data/maps/map_keys_who.ini: -------------------------------------------------------------------------------- 1 | kael drakkal = kael drakkel 2 | eastern wastes = eastern wastelands 3 | the wakening land = the wakening lands 4 | siren's grotto = sirens grotto 5 | the plane of hate = plane of hate 6 | burning woods = the burning wood 7 | south ro = southern desert of ro 8 | plane of sky = plane of air 9 | south karana = southern plains of karana 10 | sleeper's tomb = sleepers tomb 11 | mountains of rathe = rathe mountains 12 | nektulos forest = the nektulos forest 13 | city of mist = the city of mist 14 | west cabilis = cabilis west 15 | east cabilis = cabilis east 16 | cazic-thule = lost temple of cazic-thule 17 | everfrost peaks = everfrost 18 | highkeep = high keep 19 | kithicor forest = kithicor woods 20 | lower guk = ruins of old guk 21 | north ro = northern desert of ro 22 | north karana = northern plains of karana 23 | permafrost keep = permafrost caverns 24 | clan runnyeye = runnyeye citadel 25 | the ruins of old paineel = the hole 26 | the warrens = warrens 27 | thurgadin = city of thurgadin 28 | upper guk = guk 29 | warsliks wood = warsliks woods 30 | west karana = western plains of karana 31 | clan crushbone = crushbone 32 | east karana = eastern plains of karana 33 | the field of bone = field of bone 34 | qeynos catacombs = qeynos aqueduct system 35 | felwithe = northern felwithe 36 | kaladim = south kaladim -------------------------------------------------------------------------------- /data/maps/map_mover.py: -------------------------------------------------------------------------------- 1 | import os 2 | from shutil import copy 3 | 4 | 5 | map_list = [v.strip() for (k, v) in [line.strip().split('=') 6 | for line in open('map_keys.ini').readlines()]] 7 | 8 | for map_name in map_list: 9 | extensions = ['.txt', '_1.txt', '_2.txt', '_3.txt', '_4.txt', '_5.txt'] 10 | maps = [ 11 | os.path.join('map_files_new/', m) for m in [ 12 | (map_name + e) for e in extensions 13 | ] if os.path.exists(os.path.join('map_files_new/', m)) 14 | ] 15 | if not maps: 16 | print('no files for', map_name) 17 | else: 18 | for file_ in maps: 19 | copy(file_, 'map_files/') 20 | -------------------------------------------------------------------------------- /data/maps/map_timers.csv: -------------------------------------------------------------------------------- 1 | greatdivide,10:40 2 | qcat,12:00 3 | guktop,16:30 4 | gukbottom,28:00 5 | kerraridge,17:45 6 | soldunga,18:00 7 | soldungb,22:00 8 | charasis,20:30 9 | cazicthule,22:00 10 | citymist,22:00 11 | runnyeye,22:00 12 | mistmoore,22:00 13 | permafrost,22:00 14 | paw,22:00 15 | unrest,22:00 16 | qey2hh1,22:00 17 | felwithea,24:00 18 | felwitheb,24:00 19 | freporte,24:00 20 | freportn,24:00 21 | freportw,24:00 22 | neriaka,24:00 23 | neriakb,24:00 24 | neriakc,24:00 25 | kael,28:00 26 | sirens,28:00 27 | beholder,6:00 28 | thurgadina,7:00 29 | thurgadinb,7:00 30 | airplane,8:00 31 | butcher,10:00 32 | mischiefplane,1:12:00 33 | highkeep,10:00 34 | paineel,10:00 35 | stonebrunt,11:10 36 | dalnir,12:00 37 | growthplane,12:00 38 | timorous,12:00 39 | skyfire,13:00 40 | crystal,14:45 41 | oasis,16:30 42 | kaesora,18:00 43 | kurn,18:30 44 | najena,18:30 45 | befallen,19:00 46 | chardok,20:00 47 | cobaltscar,20:00 48 | frozenshadow,20:00 49 | nurga,20:30 50 | droga,20:30 51 | thurgadinb,21:00 52 | hole,21:30 53 | blackburrow,22:00 54 | kedge,22:00 55 | rivervale,22:00 56 | grobb,24:00 57 | halas,24:00 58 | oggok,24:00 59 | erudnint,25:00 60 | necropolis,27:00 61 | karnor,27:00 62 | sebilis,27:00 63 | skyshrine,30:00 64 | velketor,32:50 65 | highpass,5:00 66 | oot,6:00 67 | lfaydark,6:30 68 | gfaydark,7:05 69 | templeveeshan,72:00 70 | fearplane,8:00 71 | hateplane,8:00 72 | sleeper,8:00 73 | crushbone,9:00 74 | -------------------------------------------------------------------------------- /data/maps/otheruser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/otheruser.png -------------------------------------------------------------------------------- /data/maps/spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/spawn.png -------------------------------------------------------------------------------- /data/maps/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/user.png -------------------------------------------------------------------------------- /data/maps/waypoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/maps/waypoint.png -------------------------------------------------------------------------------- /data/spells/spells01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells01.png -------------------------------------------------------------------------------- /data/spells/spells02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells02.png -------------------------------------------------------------------------------- /data/spells/spells03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells03.png -------------------------------------------------------------------------------- /data/spells/spells04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells04.png -------------------------------------------------------------------------------- /data/spells/spells05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells05.png -------------------------------------------------------------------------------- /data/spells/spells06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells06.png -------------------------------------------------------------------------------- /data/spells/spells07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/spells/spells07.png -------------------------------------------------------------------------------- /data/ui/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/ui/icon.ico -------------------------------------------------------------------------------- /data/ui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/data/ui/icon.png -------------------------------------------------------------------------------- /locationserver/Dockerfile: -------------------------------------------------------------------------------- 1 | ########################## 2 | ## Create runtime image ## 3 | ########################## 4 | FROM python:3-slim AS RUNTIME_IMAGE 5 | 6 | # Set our working directory to /app 7 | WORKDIR /app 8 | 9 | # Copy the requirements file 10 | COPY requirements.txt /app/ 11 | 12 | # Install the one requirement 13 | RUN pip install -r requirements.txt 14 | 15 | # Copy the source file 16 | COPY location_server.py /app/ 17 | 18 | # Run the app 19 | CMD ["python", "./location_server.py"] 20 | -------------------------------------------------------------------------------- /locationserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/locationserver/__init__.py -------------------------------------------------------------------------------- /locationserver/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.9" 2 | services: 3 | nparse-locserver: 4 | build: 5 | context: . 6 | dockerfile: Dockerfile 7 | restart: always 8 | ports: 9 | - "8424:8424" 10 | logging: 11 | driver: "json-file" 12 | options: 13 | max-size: "100m" 14 | max-file: "3" 15 | compress: "true" 16 | -------------------------------------------------------------------------------- /locationserver/fake_loc_sender.py: -------------------------------------------------------------------------------- 1 | import json 2 | import asyncio 3 | import websockets 4 | 5 | 6 | HOST = 'ws://localhost:8424' 7 | 8 | 9 | async def hello(): 10 | async with websockets.connect(HOST) as websocket: 11 | x = 0 12 | y = 0 13 | while True: 14 | message = {'type': "location", 15 | 'group_key': 'hi', 16 | 'location': { 17 | 'zone': 'west freeport', 18 | 'player': 'tester2', 19 | "x": -101.72 + x, 20 | "y": -30.79 + y, 21 | "z": -24.25, 22 | "timestamp": "2020-08-16T01:44:00.654871" 23 | }} 24 | await websocket.send(json.dumps(message)) 25 | x = (x + 3) % 50 26 | y = (y + 3) % 50 27 | await asyncio.sleep(0.5) 28 | 29 | asyncio.get_event_loop().run_until_complete(hello()) 30 | -------------------------------------------------------------------------------- /locationserver/requirements.txt: -------------------------------------------------------------------------------- 1 | websockets -------------------------------------------------------------------------------- /nparse.py: -------------------------------------------------------------------------------- 1 | """NomnsParse: Parsing tools for Project 1999.""" 2 | import os 3 | import sys 4 | 5 | from PySide6.QtGui import QFontDatabase, QIcon 6 | 7 | from nParse.helpers import resource_path 8 | from nParse.helpers.application import NomnsParse 9 | 10 | if __name__ == "__main__": 11 | try: 12 | import ctypes 13 | APPID = 'nomns.nparse' 14 | ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(APPID) 15 | except: 16 | pass 17 | try: 18 | import pyi_splash # noqa 19 | 20 | pyi_splash.update_text('Done!') 21 | pyi_splash.close() 22 | except: # noqa 23 | pass 24 | APP = NomnsParse(sys.argv) 25 | APP.setStyleSheet(open(resource_path(os.path.join('data', 'ui', '_.css'))).read()) 26 | APP.setWindowIcon(QIcon(resource_path(os.path.join('data', 'ui', 'icon.png')))) 27 | APP.setQuitOnLastWindowClosed(False) 28 | QFontDatabase.addApplicationFont( 29 | resource_path(os.path.join('data', 'fonts', 'NotoSans-Regular.ttf'))) 30 | QFontDatabase.addApplicationFont( 31 | resource_path(os.path.join('data', 'fonts', 'NotoSans-Bold.ttf'))) 32 | 33 | sys.exit(APP.exec()) 34 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "nParse" 3 | version = "0.7.0" 4 | authors = [ 5 | { name="nomns" }, 6 | ] 7 | description = "Provides player location and spell tracking support for Project 1999 by reading the player log." 8 | readme = "README.md" 9 | requires-python = ">=3.8" 10 | classifiers = [ 11 | "Programming Language :: Python :: 3", 12 | "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", 13 | "Operating System :: OS Independent", 14 | ] 15 | 16 | [project.urls] 17 | Homepage = "https://github.com/nomns/nparse" 18 | Issues = "https://github.com/nomns/nparse/issues" 19 | 20 | [project.optional-dependencies] 21 | build = [ 22 | 'pyinstaller==6.6.0', 23 | ] 24 | tests = [ 25 | 'pytest-cov', 26 | ] 27 | 28 | [tool.pytest.ini_options] 29 | addopts = [ 30 | "--import-mode=importlib", 31 | ] -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PySide6 2 | colorhash 3 | pathvalidate 4 | semver -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/splash.png -------------------------------------------------------------------------------- /splash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomns/nparse/b9d897ea867825e489c42aa32bd6d5684749e0cd/splash.psd -------------------------------------------------------------------------------- /src/nParse/helpers/alert.py: -------------------------------------------------------------------------------- 1 | 2 | class Alert: 3 | 4 | def __init__(self, *args, **kwargs): 5 | pass 6 | -------------------------------------------------------------------------------- /src/nParse/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from nParse.parsers.maps import Maps 3 | from nParse.parsers.spells import Spells 4 | from nParse.parsers.discord import Discord 5 | -------------------------------------------------------------------------------- /src/nParse/parsers/maps/__init__.py: -------------------------------------------------------------------------------- 1 | from nParse.parsers.maps.window import Maps 2 | from nParse.parsers.maps.mapdata import MapData 3 | --------------------------------------------------------------------------------