Basically this takes a desired coordinate (for an NPC), like one you'd get on a wowhead link, and it translates that coordinate based on zone to give you the global coordinate you can use a teleport hack to get to. It's really just a collection of zone coordinates that I got from the worldmap dbc file and a basic equation put together for simple, repeated use. The worldmap file I used was from a 3.3.5a game, so all the coords will only be accurate if you play on an unaltered version of the 3.3.5a map. I only tested with with Hitchhiker's Hack, but it should work with anything.
tl;dr - Takes XX,YY coordinates and translates to global XXXX, YYYY coordinates for teleports

@echo off
title local coord to global assist by BAKA
color 0a
:START
cls
echo Where is your target?
echo Type the location without caps or spaces
set /p math=
IF '%math%' == 'dunmorogh' GOTO DUNMOROGH
IF '%math%' == 'isleofqueldanas' GOTO QUELDANAS
IF '%math%' == 'queldanas' GOTO QUELDANAS
IF '%math%' == 'badlands' GOTO BADLANDS
IF '%math%' == 'blastedlands' GOTO BLASTED
IF '%math%' == 'swampofsorrows' GOTO SORRYSWAMP
IF '%math%' == 'duskwood' GOTO DUSKWOOD
IF '%math%' == 'wetlands' GOTO WETLANDS
IF '%math%' == 'elwynn' GOTO ELWYNN
IF '%math%' == 'elwynnforest' GOTO ELWYNN
IF '%math%' == 'durotar' GOTO DUROTAR
IF '%math%' == 'dustwallow' GOTO DUSTWALLOW
IF '%math%' == 'dustwallowmarsh' GOTO DUSTWALLOW
IF '%math%' == 'azshara' GOTO AZSHARA
IF '%math%' == 'aszhara' GOTO AZSHARA
IF '%math%' == 'thebarrens' GOTO BARRENS
IF '%math%' == 'barrens' GOTO BARRENS
IF '%math%' == 'westernplaguelands' GOTO WPG
IF '%math%' == 'westplaguelands' GOTO WPG
IF '%math%' == 'wplaguelands' GOTO WPG
IF '%math%' == 'wpg' GOTO WPG
IF '%math%' == 'stranglethornvale' GOTO STRANGLE
IF '%math%' == 'stranglethorn' GOTO STRANGLE
IF '%math%' == 'alterac' GOTO ALTERAC
IF '%math%' == 'alteracmountains' GOTO ALTERAC
IF '%math%' == 'lochmodan' GOTO LOCH
IF '%math%' == 'loch' GOTO LOCH
IF '%math%' == 'westfall' GOTO WFALL
IF '%math%' == 'deadwindpass' GOTO DWINDPASS
IF '%math%' == 'deadwind' GOTO DWINDPASS
IF '%math%' == 'redridge' GOTO REDRIDGE
IF '%math%' == 'redridgemountains' GOTO REDRIDGE
IF '%math%' == 'arathi' GOTO ARATHI
IF '%math%' == 'arathihighlands' GOTO ARATHI
IF '%math%' == 'burningsteppes' GOTO STEPPES
IF '%math%' == 'burningsteps' GOTO STEPPES
IF '%math%' == 'hinterlands' GOTO HLANDS
IF '%math%' == 'thehinterlands' GOTO HLANDS
IF '%math%' == 'searinggorge' GOTO SGORGE
IF '%math%' == 'searingorge' GOTO SGORGE
IF '%math%' == 'dragonblight' GOTO DBLIGHT
IF '%math%' == 'zuldrak' GOTO ZULDRAK
IF '%math%' == 'thestormpeaks' GOTO SPEAKS
IF '%math%' == 'stormpeaks' GOTO SPEAKS
IF '%math%' == 'stormpeak' GOTO SPEAKS
IF '%math%' == 'tirisfal' GOTO TIRISFAL
IF '%math%' == 'tirisfalglade' GOTO TIRISFAL
IF '%math%' == 'tirisfalglades' GOTO TIRISFAL
IF '%math%' == 'silverpine' GOTO SPINE
IF '%math%' == 'silverpineforest' GOTO SPINE
IF '%math%' == 'easternplaguelands' GOTO EPG
IF '%math%' == 'eastplaguelands' GOTO EPG
IF '%math%' == 'eplaguelands' GOTO EPG
IF '%math%' == 'epg' GOTO EPG
IF '%math%' == 'teldrassil' GOTO TELD
IF '%math%' == 'teldrasil' GOTO TELD
IF '%math%' == 'darkshore' GOTO DSHORE
IF '%math%' == 'icecrown' GOTO ICEGLACIER
IF '%math%' == 'icecrownglacier' GOTO ICEGLACIER
IF '%math%' == 'glacier' GOTO ICEGLACIER
IF '%math%' == 'mulgore' GOTO MULGORE
IF '%math%' == 'hilsbrad' GOTO HILSBRAD
IF '%math%' == 'hilsbradfoothills' GOTO HILSBRAD
IF '%math%' == 'foothills' GOTO HILSBRAD
IF '%math%' == 'hillsbrad' GOTO HILSBRAD
IF '%math%' == 'hillsbradfoothills' GOTO HILSBRAD
IF '%math%' == 'ashenvale' GOTO ASHENVALE
IF '%math%' == 'feralas' GOTO FERALAS
IF '%math%' == 'felwood' GOTO FELWOOD
IF '%math%' == 'grizzly' GOTO GRIZZLY
IF '%math%' == 'grizzlyhills' GOTO GRIZZLY
IF '%math%' == 'thousandneedles' GOTO NEEDLES
IF '%math%' == 'needles' GOTO NEEDLES
IF '%math%' == 'desolace' GOTO DESOLACE
IF '%math%' == 'stonetalon' GOTO STONETALON
IF '%math%' == 'stonetalonmountains' GOTO STONETALON
IF '%math%' == 'tanaris' GOTO TANARIS
IF '%math%' == 'ungoro' GOTO UNGORO
IF '%math%' == 'ungorocrater' GOTO UNGORO
IF '%math%' == 'crater' GOTO UNGORO
IF '%math%' == 'moonglade' GOTO MOONGLADE
IF '%math%' == 'howling' GOTO FJORD
IF '%math%' == 'howlingfjord' GOTO FJORD
IF '%math%' == 'fjord' GOTO FJORD
IF '%math%' == 'winterspring' GOTO WSPRING
IF '%math%' == 'silithus' GOTO SILITHUS
IF '%math%' == 'sithilus' GOTO SILITHUS
IF '%math%' == 'undercity' GOTO UNDERCITY
IF '%math%' == 'stormwind' GOTO STORMWIND
IF '%math%' == 'ironforge' GOTO IRONFORGE
IF '%math%' == 'orgrimmar' GOTO ORG
IF '%math%' == 'ogrimmar' GOTO ORG
IF '%math%' == 'org' GOTO ORG
IF '%math%' == 'thunderbluff' GOTO BLUFF
IF '%math%' == 'tbluff' GOTO BLUFF
IF '%math%' == 'bluff' GOTO BLUFF
IF '%math%' == 'darnassis' GOTO DARNASSIS
IF '%math%' == 'darnassus' GOTO DARNASSIS
IF '%math%' == 'alteracvalley' GOTO AVALLEY
IF '%math%' == 'crystalsong' GOTO CSONG
IF '%math%' == 'crystalsongforest' GOTO CSONG
IF '%math%' == 'warsonggulch' GOTO GULCH
IF '%math%' == 'arathibasin' GOTO BASIN
IF '%math%' == 'eversongwoods' GOTO EVERSONG
IF '%math%' == 'eversong' GOTO EVERSONG
IF '%math%' == 'ghostlands' GOTO GHOST
IF '%math%' == 'theghostlands' GOTO GHOST
IF '%math%' == 'hellfire' GOTO HELLFIRE
IF '%math%' == 'hellfirepeninsula' GOTO HELLFIRE
IF '%math%' == 'silvermooncity' GOTO SCITY
IF '%math%' == 'nagrand' GOTO NAGRAND
IF '%math%' == 'terrokar' GOTO TERROKAR
IF '%math%' == 'terrokarforest' GOTO TERROKAR
IF '%math%' == 'shadowmoon' GOTO SHADOWMOON
IF '%math%' == 'shadowmoonvalley' GOTO SHADOWMOON
IF '%math%' == 'zangarmarsh' GOTO ZMARSH
IF '%math%' == 'bladesedge' GOTO BLADES
IF '%math%' == 'bladesedgemountains' GOTO BLADES
IF '%math%' == 'nether' GOTO NETHER
IF '%math%' == 'netherstorm' GOTO NETHER
IF '%math%' == 'azuremyst' GOTO AZURE
IF '%math%' == 'azuremystisle' GOTO AZURE
IF '%math%' == 'azuremist' GOTO AZURE
IF '%math%' == 'bloodmyst' GOTO BLOOD
IF '%math%' == 'bloodmystisle' GOTO BLOOD
IF '%math%' == 'bloodmist' GOTO BLOOD
IF '%math%' == 'borean' GOTO BTUNDRA
IF '%math%' == 'boreantundra' GOTO BTUNDRA
IF '%math%' == 'exodar' GOTO EXODAR
IF '%math%' == 'theexodar' GOTO EXODAR
IF '%math%' == 'shattrath' GOTO SHATTRATH
IF '%math%' == 'shattrathcity' GOTO SHATTRATH
IF '%math%' == 'sholazar' GOTO SHOLAZAR
IF '%math%' == 'sholazarbasin' GOTO SHOLAZAR
IF '%math%' == 'netherstormarena' GOTO NARENA
IF '%math%' == 'wintergrasp' GOTO WINTERGRASP
IF '%math%' == 'lakewintergrasp' GOTO WINTERGRASP
IF '%math%' == 'scarletenclave' GOTO SCARLET
IF '%math%' == 'scarlet' GOTO SCARLET
IF '%math%' == 'strandoftheancients' GOTO STRAND
IF '%math%' == 'strandofancients' GOTO STRAND
IF '%math%' == 'strandancients' GOTO STRAND
Exit
:STRAND
Cls
GOTO STRAND1
pause
exit
:STRAND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1883
set x2= 721
set y1= 788
set y2= -956
cls
GOTO FINALSTEP
exit
:SCARLET
Cls
GOTO SCARLET1
pause
exit
:SCARLET1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3088
set x2= 979
set y1= -4048
set y2= -7210
cls
GOTO FINALSTEP
exit
:WINTERGRASP
Cls
GOTO WINTERGRASP1
pause
exit
:WINTERGRASP1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5717
set x2= 3733
set y1= 4329
set y2= 1354
cls
GOTO FINALSTEP
exit
:NARENA
Cls
GOTO NARENA1
pause
exit
:NARENA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2919
set x2= 1404
set y1= 2660
set y2= 390
cls
GOTO FINALSTEP
exit
:SHOLAZAR
Cls
GOTO SHOLAZAR1
pause
exit
:SHOLAZAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7287
set x2= 4383
set y1= 6929
set y2= 2573
cls
GOTO FINALSTEP
exit
:SHATTRATH
Cls
GOTO SHATTRATH1
pause
exit
:SHATTRATH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1474
set x2= -2345
set y1= 6135
set y2= 4829
cls
GOTO FINALSTEP
exit
:EXODAR
Cls
GOTO EXODAR1
pause
exit
:EXODAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3610
set x2= -4314
set y1= -11066
set y2= -12123
cls
GOTO FINALSTEP
exit
:BTUNDRA
Cls
GOTO BTUNDRA1
pause
exit
:BTUNDRA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4898
set x2= 1054
set y1= 8571
set y2= 2806
cls
GOTO FINALSTEP
exit
:BLOOD
Cls
GOTO BLOOD1
pause
exit
:BLOOD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -758
set x2= -2933
set y1= -10075
set y2= -13337
cls
GOTO FINALSTEP
exit
:AZURE
Cls
GOTO AZURE1
pause
exit
:AZURE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2794
set x2= -5508
set y1= -10500
set y2= -14571
cls
GOTO FINALSTEP
exit
:NETHER
Cls
GOTO NETHER1
pause
exit
:NETHER1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5456
set x2= 1740
set y1= 5483
set y2= -92
cls
GOTO FINALSTEP
exit
:BLADES
Cls
GOTO BLADES1
pause
exit
:BLADES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4408
set x2= 792
set y1= 8846
set y2= 3421
cls
GOTO FINALSTEP
exit
:ZMARSH
Cls
GOTO ZMARSH1
pause
exit
:ZMARSH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1935
set x2= -1417
set y1= 9475
set y2= 4448
cls
GOTO FINALSTEP
exit
:SHADOWMOON
Cls
GOTO SHADOWMOON1
pause
exit
:SHADOWMOON1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1948
set x2= -5615
set y1= 4225
set y2= -1275
cls
GOTO FINALSTEP
exit
:TERROKAR
Cls
GOTO TERROKAR1
pause
exit
:TERROKAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1000
set x2= -4600
set y1= 7083
set y2= 1683
cls
GOTO FINALSTEP
exit
:NAGRAND
Cls
GOTO NAGRAND1
pause
exit
:NAGRAND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 42
set x2= -3642
set y1= 10296
set y2= 4771
cls
GOTO FINALSTEP
exit
:SCITY
Cls
GOTO SCITY1
pause
exit
:SCITY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10154
set x2= 9347
set y1= -6401
set y2= -7612
cls
GOTO FINALSTEP
exit
:HELLFIRE
Cls
GOTO HELLFIRE1
pause
exit
:HELLFIRE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1481
set x2= -1962
set y1= 5540
set y2= 375
cls
GOTO FINALSTEP
exit
:GHOST
Cls
GOTO GHOST1
pause
exit
:GHOST1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8267
set x2= 6067
set y1= -5283
set y2= -8583
cls
GOTO FINALSTEP
exit
:EVERSONG
Cls
GOTO EVERSONG1
pause
exit
:EVERSONG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 11042
set x2= 7758
set y1= -4488
set y2= -9413
cls
GOTO FINALSTEP
exit
:BASIN
Cls
GOTO BASIN1
pause
exit
:BASIN1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1508
set x2= 338
set y1= 1858
set y2= 102
cls
GOTO FINALSTEP
exit
:GULCH
Cls
GOTO GULCH1
pause
exit
:GULCH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1627
set x2= 862
set y1= 2042
set y2= 896
cls
GOTO FINALSTEP
exit
:CSONG
Cls
GOTO CSONG1
pause
exit
:CSONG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 6502
set x2= 4688
set y1= 1444
set y2= -1279
cls
GOTO FINALSTEP
exit
:AVALLEY
Cls
GOTO AVALLEY1
pause
exit
:AVALLEY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1085
set x2= -1740
set y1= 1781
set y2= -2456
cls
GOTO FINALSTEP
exit
ARNASSIS
Cls
GOTO DARNASSIS1
pause
exit
ARNASSIS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10238
set x2= 9533
set y1= 2938
set y2= 1880
cls
GOTO FINALSTEP
exit
:BLUFF
Cls
GOTO NAMEXXXX1
pause
exit
:NAMEXXXX1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -850
set x2= -1546
set y1= 517
set y2= -527
cls
GOTO FINALSTEP
exit
:ORG
Cls
GOTO ORG1
pause
exit
:ORG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2274
set x2= 1338
set y1= -3681
set y2= -5083
cls
GOTO FINALSTEP
exit
:IRONFORGE
Cls
GOTO IRONFORGE1
pause
exit
:IRONFORGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -4569
set x2= -5097
set y1= -714
set y2= -1504
cls
GOTO FINALSTEP
exit
:STORMWIND
Cls
GOTO STORMWIND1
pause
exit
:STORMWIND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7996
set x2= -9154
set y1= 1723
set y2= -15
cls
GOTO FINALSTEP
exit
:UNDERCITY
Cls
GOTO UNDERCITY1
pause
exit
:UNDERCITY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1878
set x2= 1238
set y1= 873
set y2= -86
cls
GOTO FINALSTEP
exit
:SILITHUS
Cls
GOTO SILITHUS1
pause
exit
:SILITHUS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5958
set x2= -8281
set y1= 2538
set y2= -946
cls
GOTO FINALSTEP
exit
:WSPRING
Cls
GOTO WSPRING1
pause
exit
:WSPRING1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8533
set x2= 3800
set y1= -317
set y2= -7417
cls
GOTO FINALSTEP
exit
:FJORD
Cls
GOTO FJORD1
pause
exit
:FJORD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3117
set x2= -915
set y1= -1398
set y2= -7444
cls
GOTO FINALSTEP
exit
:MOONGLADE
Cls
GOTO MOONGLADE1
pause
exit
:MOONGLADE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8492
set x2= 6952
set y1= -1381
set y2= -3690
cls
GOTO FINALSTEP
exit
:UNGORO
Cls
GOTO UNGORO1
pause
exit
:UNGORO1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5967
set x2= -8433
set y1= 533
set y2= -3167
cls
GOTO FINALSTEP
exit
:TANARIS
Cls
GOTO TANARIS1
pause
exit
:TANARIS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5875
set x2= -10475
set y1= -219
set y2= -7119
cls
GOTO FINALSTEP
exit
:STONETALON
Cls
GOTO STONETALON1
pause
exit
:NSTONETALON1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2917
set x2= -340
set y1= 3246
set y2= -1637
cls
GOTO FINALSTEP
exit
ESOLACE
Cls
GOTO DESOLACE1
pause
exit
ESOLACE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 452
set x2= -2546
set y1= 4233
set y2= -263
cls
GOTO FINALSTEP
exit
:NEEDLES
Cls
GOTO NEEDLES1
pause
exit
:NEEDLES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3967
set x2= -6900
set y1= -433
set y2= -4833
cls
GOTO FINALSTEP
exit
:GRIZZLY
Cls
GOTO GRIZZLY1
pause
exit
:GRIZZLY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5517
set x2= 2017
set y1= -1110
set y2= -6360
cls
GOTO FINALSTEP
exit
:FELWOOD
Cls
GOTO FELWOOD1
pause
exit
:FELWOOD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7133
set x2= 3300
set y1= 1642
set y2= -4108
cls
GOTO FINALSTEP
exit
:FERALAS
Cls
GOTO FERALAS1
pause
exit
:FERALAS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2367
set x2= -7000
set y1= 5442
set y2= -1508
cls
GOTO FINALSTEP
exit
:ASHENVALE
Cls
GOTO ASHENVALE1
pause
exit
:ASHENVALE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4673
set x2= 829
set y1= 1700
set y2= -4067
cls
GOTO FINALSTEP
exit
:HILSBRAD
Cls
GOTO HILSBRAD1
pause
exit
:HILSBRAD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 400
set x2= -1733
set y1= 1067
set y2= -2133
cls
GOTO FINALSTEP
exit
:MULGORE
Cls
GOTO MULGORE1
pause
exit
:MULGORE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -273
set x2= -3698
set y1= 2048
set y2= -3090
cls
GOTO FINALSTEP
exit
:ICEGLACIER
Cls
GOTO ICEGLACIER1
pause
exit
:ICEGLACIER1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 9427
set x2= 5246
set y1= 5444
set y2= -827
cls
GOTO FINALSTEP
exit
SHORE
Cls
GOTO DSHORE1
pause
exit
SHORE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8333
set x2= 3967
set y1= 2942
set y2= -3608
cls
GOTO FINALSTEP
exit
:TELD
Cls
GOTO TELD1
pause
exit
:TELD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 11831
set x2= 8438
set y1= 3815
set y2= -1277
cls
GOTO FINALSTEP
exit
:EPG
Cls
GOTO EPG1
pause
exit
:EPG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3704
set x2= 1017
set y1= -2288
set y2= -6319
cls
GOTO FINALSTEP
exit
:SPINE
Cls
GOTO SPINE1
pause
exit
:SPINE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1667
set x2= -1133
set y1= 3450
set y2= -750
cls
GOTO FINALSTEP
exit
:TIRISFAL
Cls
GOTO TIRISFAL1
pause
exit
:TIRISFAL1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3837
set x2= 825
set y1= 3033
set y2= -1485
cls
GOTO FINALSTEP
exit
:SPEAK
Cls
GOTO SPEAK1
pause
exit
:SPEAK1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10198
set x2= 5456
set y1= 1842
set y2= -5271
cls
GOTO FINALSTEP
exit
:ZULDRAK
Cls
GOTO ZULDRAK1
pause
exit
:ZULDRAK1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7669
set x2= 4340
set y1= -600
set y2= -5594
cls
GOTO FINALSTEP
exit
BLIGHT
Cls
GOTO DBLIGHT1
pause
exit
BLIGHT1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5575
set x2= 1835
set y1= 3627
set y2= -1981
cls
GOTO FINALSTEP
exit
:SGORGE
Cls
GOTO SGORGE1
pause
exit
:SGORGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -6100
set x2= -7587
set y1= -323
set y2= -2554
cls
GOTO FINALSTEP
exit
:HLANDS
Cls
GOTO HLANDS1
pause
exit
:HLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1467
set x2= -1100
set y1= -1575
set y2= -5425
cls
GOTO FINALSTEP
exit
:STEPPES
Cls
GOTO STEPPES1
pause
exit
:STEPPES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7031
set x2= -8983
set y1= -267
set y2= -3196
cls
GOTO FINALSTEP
exit
:ARATHI
Cls
GOTO ARATHI1
pause
exit
:ARATHI1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -133
set x2= -2533
set y1= -867
set y2= -4467
cls
GOTO FINALSTEP
exit
:REDRIDGE
Cls
GOTO REDRIDGE1
pause
exit
:REDRIDGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -8575
set x2= -10023
set y1= -1571
set y2= -3742
cls
GOTO FINALSTEP
exit
WINDPASS
Cls
GOTO DWINDPASS1
pause
exit
WINDPASS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9867
set x2= -11533
set y1= -833
set y2= -3333
cls
GOTO FINALSTEP
exit
:WFALL
Cls
GOTO WFALL1
pause
exit
:WFALL1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9400
set x2= -11733
set y1= 3017
set y2= -483
cls
GOTO FINALSTEP
exit
:LOCH
Cls
GOTO LOCH1
pause
exit
:LOCH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -4488
set x2= -6327
set y1= -1994
set y2= -4752
cls
GOTO FINALSTEP
exit
:ALTERAC
Cls
GOTO ALTERAC1
pause
exit
:ALTERAC1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1500
set x2= -367
set y1= 783
set y2= -2017
cls
GOTO FINALSTEP
exit
:STRANGLE
Cls
GOTO STRANGLE1
pause
exit
:STRANGLE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -11169
set x2= -15423
set y1= 2221
set y2= -4160
cls
GOTO FINALSTEP
exit
:WPG
Cls
GOTO WPG1
pause
exit
:WPG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3367
set x2= 500
set y1= 417
set y2= -3883
cls
GOTO FINALSTEP
exit
:BARRENS
Cls
GOTO BARRENS1
pause
exit
:BARRENS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1612
set x2= -5144
set y1= 2623
set y2= -7510
cls
GOTO FINALSTEP
exit
:AZSHARA
Cls
GOTO AZSHARA1
pause
exit
:AZSHARA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5342
set x2= 1960
set y1= -3277
set y2= -8348
cls
GOTO FINALSTEP
exit
USTWALLOW
Cls
GOTO DUSTWALLOW1
pause
exit
USTWALLOW1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2033
set x2= -5533
set y1= -975
set y2= -6225
cls
GOTO FINALSTEP
exit
UROTAR
Cls
GOTO DUROTAR1
pause
exit
UROTAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1808
set x2= -1717
set y1= -1962
set y2= -7250
cls
GOTO FINALSTEP
exit
:ELWYNN
Cls
GOTO ELWYNN1
pause
exit
:ELWYNN1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7940
set x2= -10254
set y1= 1535
set y2= -1935
cls
GOTO FINALSTEP
exit
:WETLANDS
Cls
GOTO WETLANDS1
pause
exit
:WETLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2148
set x2= -4904
set y1= -390
set y2= -4525
cls
GOTO FINALSTEP
exit
USKWOOD
Cls
GOTO DUSKWOOD1
pause
exit
USKWOOD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9717
set x2= -11517
set y1= 834
set y2= -1867
cls
GOTO FINALSTEP
exit
:SORRYSWAMP
Cls
GOTO SORRYSWAMP1
pause
exit
:SORRYSWAMP1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9621
set x2= -11150
set y1= -2223
set y2= -4517
cls
GOTO FINALSTEP
exit
:BLASTED
Cls
GOTO BLASTED1
pause
exit
:BLASTED1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -10567
set x2= -12800
set y1= -1242
set y2= -4592
cls
GOTO FINALSTEP
exit
:BADLANDS
Cls
GOTO BADLANDS1
pause
exit
:BADLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5890
set x2= -7548
set y1= -2079
set y2= -4567
cls
GOTO FINALSTEP
exit
:QUELDANAS
Cls
GOTO QUELDANAS1
pause
exit
:QUELDANAS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 13569
set x2= 11350
set y1= -5302
set y2= -8629
cls
GOTO FINALSTEP
exit
UNMOROGH
Cls
GOTO DUNMOROGH1
pause
exit
UNMOROGH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3877
set x2= -7160
set y1= 1802
set y2= -3123
cls
GOTO FINALSTEP
exit
:FINALSTEP
Set /A topbar = %x2% - %x1%
Set /A divide100 = %topbar% / 100
Set /A amountmovedx = %divide100% * %targety%
Set /A xval = %amountmovedx% + %x1%
Set /A topbary = %y2% - %y1%
Set /A divide100y = %topbary% / 100
Set /A amountmovedy = %divide100y% * %targetx%
Set /A yval = %amountmovedy% + %y1%
echo X is %xval%.
echo Y is %yval%.
Pause
GOTO START
title local coord to global assist by BAKA
color 0a
:START
cls
echo Where is your target?
echo Type the location without caps or spaces
set /p math=
IF '%math%' == 'dunmorogh' GOTO DUNMOROGH
IF '%math%' == 'isleofqueldanas' GOTO QUELDANAS
IF '%math%' == 'queldanas' GOTO QUELDANAS
IF '%math%' == 'badlands' GOTO BADLANDS
IF '%math%' == 'blastedlands' GOTO BLASTED
IF '%math%' == 'swampofsorrows' GOTO SORRYSWAMP
IF '%math%' == 'duskwood' GOTO DUSKWOOD
IF '%math%' == 'wetlands' GOTO WETLANDS
IF '%math%' == 'elwynn' GOTO ELWYNN
IF '%math%' == 'elwynnforest' GOTO ELWYNN
IF '%math%' == 'durotar' GOTO DUROTAR
IF '%math%' == 'dustwallow' GOTO DUSTWALLOW
IF '%math%' == 'dustwallowmarsh' GOTO DUSTWALLOW
IF '%math%' == 'azshara' GOTO AZSHARA
IF '%math%' == 'aszhara' GOTO AZSHARA
IF '%math%' == 'thebarrens' GOTO BARRENS
IF '%math%' == 'barrens' GOTO BARRENS
IF '%math%' == 'westernplaguelands' GOTO WPG
IF '%math%' == 'westplaguelands' GOTO WPG
IF '%math%' == 'wplaguelands' GOTO WPG
IF '%math%' == 'wpg' GOTO WPG
IF '%math%' == 'stranglethornvale' GOTO STRANGLE
IF '%math%' == 'stranglethorn' GOTO STRANGLE
IF '%math%' == 'alterac' GOTO ALTERAC
IF '%math%' == 'alteracmountains' GOTO ALTERAC
IF '%math%' == 'lochmodan' GOTO LOCH
IF '%math%' == 'loch' GOTO LOCH
IF '%math%' == 'westfall' GOTO WFALL
IF '%math%' == 'deadwindpass' GOTO DWINDPASS
IF '%math%' == 'deadwind' GOTO DWINDPASS
IF '%math%' == 'redridge' GOTO REDRIDGE
IF '%math%' == 'redridgemountains' GOTO REDRIDGE
IF '%math%' == 'arathi' GOTO ARATHI
IF '%math%' == 'arathihighlands' GOTO ARATHI
IF '%math%' == 'burningsteppes' GOTO STEPPES
IF '%math%' == 'burningsteps' GOTO STEPPES
IF '%math%' == 'hinterlands' GOTO HLANDS
IF '%math%' == 'thehinterlands' GOTO HLANDS
IF '%math%' == 'searinggorge' GOTO SGORGE
IF '%math%' == 'searingorge' GOTO SGORGE
IF '%math%' == 'dragonblight' GOTO DBLIGHT
IF '%math%' == 'zuldrak' GOTO ZULDRAK
IF '%math%' == 'thestormpeaks' GOTO SPEAKS
IF '%math%' == 'stormpeaks' GOTO SPEAKS
IF '%math%' == 'stormpeak' GOTO SPEAKS
IF '%math%' == 'tirisfal' GOTO TIRISFAL
IF '%math%' == 'tirisfalglade' GOTO TIRISFAL
IF '%math%' == 'tirisfalglades' GOTO TIRISFAL
IF '%math%' == 'silverpine' GOTO SPINE
IF '%math%' == 'silverpineforest' GOTO SPINE
IF '%math%' == 'easternplaguelands' GOTO EPG
IF '%math%' == 'eastplaguelands' GOTO EPG
IF '%math%' == 'eplaguelands' GOTO EPG
IF '%math%' == 'epg' GOTO EPG
IF '%math%' == 'teldrassil' GOTO TELD
IF '%math%' == 'teldrasil' GOTO TELD
IF '%math%' == 'darkshore' GOTO DSHORE
IF '%math%' == 'icecrown' GOTO ICEGLACIER
IF '%math%' == 'icecrownglacier' GOTO ICEGLACIER
IF '%math%' == 'glacier' GOTO ICEGLACIER
IF '%math%' == 'mulgore' GOTO MULGORE
IF '%math%' == 'hilsbrad' GOTO HILSBRAD
IF '%math%' == 'hilsbradfoothills' GOTO HILSBRAD
IF '%math%' == 'foothills' GOTO HILSBRAD
IF '%math%' == 'hillsbrad' GOTO HILSBRAD
IF '%math%' == 'hillsbradfoothills' GOTO HILSBRAD
IF '%math%' == 'ashenvale' GOTO ASHENVALE
IF '%math%' == 'feralas' GOTO FERALAS
IF '%math%' == 'felwood' GOTO FELWOOD
IF '%math%' == 'grizzly' GOTO GRIZZLY
IF '%math%' == 'grizzlyhills' GOTO GRIZZLY
IF '%math%' == 'thousandneedles' GOTO NEEDLES
IF '%math%' == 'needles' GOTO NEEDLES
IF '%math%' == 'desolace' GOTO DESOLACE
IF '%math%' == 'stonetalon' GOTO STONETALON
IF '%math%' == 'stonetalonmountains' GOTO STONETALON
IF '%math%' == 'tanaris' GOTO TANARIS
IF '%math%' == 'ungoro' GOTO UNGORO
IF '%math%' == 'ungorocrater' GOTO UNGORO
IF '%math%' == 'crater' GOTO UNGORO
IF '%math%' == 'moonglade' GOTO MOONGLADE
IF '%math%' == 'howling' GOTO FJORD
IF '%math%' == 'howlingfjord' GOTO FJORD
IF '%math%' == 'fjord' GOTO FJORD
IF '%math%' == 'winterspring' GOTO WSPRING
IF '%math%' == 'silithus' GOTO SILITHUS
IF '%math%' == 'sithilus' GOTO SILITHUS
IF '%math%' == 'undercity' GOTO UNDERCITY
IF '%math%' == 'stormwind' GOTO STORMWIND
IF '%math%' == 'ironforge' GOTO IRONFORGE
IF '%math%' == 'orgrimmar' GOTO ORG
IF '%math%' == 'ogrimmar' GOTO ORG
IF '%math%' == 'org' GOTO ORG
IF '%math%' == 'thunderbluff' GOTO BLUFF
IF '%math%' == 'tbluff' GOTO BLUFF
IF '%math%' == 'bluff' GOTO BLUFF
IF '%math%' == 'darnassis' GOTO DARNASSIS
IF '%math%' == 'darnassus' GOTO DARNASSIS
IF '%math%' == 'alteracvalley' GOTO AVALLEY
IF '%math%' == 'crystalsong' GOTO CSONG
IF '%math%' == 'crystalsongforest' GOTO CSONG
IF '%math%' == 'warsonggulch' GOTO GULCH
IF '%math%' == 'arathibasin' GOTO BASIN
IF '%math%' == 'eversongwoods' GOTO EVERSONG
IF '%math%' == 'eversong' GOTO EVERSONG
IF '%math%' == 'ghostlands' GOTO GHOST
IF '%math%' == 'theghostlands' GOTO GHOST
IF '%math%' == 'hellfire' GOTO HELLFIRE
IF '%math%' == 'hellfirepeninsula' GOTO HELLFIRE
IF '%math%' == 'silvermooncity' GOTO SCITY
IF '%math%' == 'nagrand' GOTO NAGRAND
IF '%math%' == 'terrokar' GOTO TERROKAR
IF '%math%' == 'terrokarforest' GOTO TERROKAR
IF '%math%' == 'shadowmoon' GOTO SHADOWMOON
IF '%math%' == 'shadowmoonvalley' GOTO SHADOWMOON
IF '%math%' == 'zangarmarsh' GOTO ZMARSH
IF '%math%' == 'bladesedge' GOTO BLADES
IF '%math%' == 'bladesedgemountains' GOTO BLADES
IF '%math%' == 'nether' GOTO NETHER
IF '%math%' == 'netherstorm' GOTO NETHER
IF '%math%' == 'azuremyst' GOTO AZURE
IF '%math%' == 'azuremystisle' GOTO AZURE
IF '%math%' == 'azuremist' GOTO AZURE
IF '%math%' == 'bloodmyst' GOTO BLOOD
IF '%math%' == 'bloodmystisle' GOTO BLOOD
IF '%math%' == 'bloodmist' GOTO BLOOD
IF '%math%' == 'borean' GOTO BTUNDRA
IF '%math%' == 'boreantundra' GOTO BTUNDRA
IF '%math%' == 'exodar' GOTO EXODAR
IF '%math%' == 'theexodar' GOTO EXODAR
IF '%math%' == 'shattrath' GOTO SHATTRATH
IF '%math%' == 'shattrathcity' GOTO SHATTRATH
IF '%math%' == 'sholazar' GOTO SHOLAZAR
IF '%math%' == 'sholazarbasin' GOTO SHOLAZAR
IF '%math%' == 'netherstormarena' GOTO NARENA
IF '%math%' == 'wintergrasp' GOTO WINTERGRASP
IF '%math%' == 'lakewintergrasp' GOTO WINTERGRASP
IF '%math%' == 'scarletenclave' GOTO SCARLET
IF '%math%' == 'scarlet' GOTO SCARLET
IF '%math%' == 'strandoftheancients' GOTO STRAND
IF '%math%' == 'strandofancients' GOTO STRAND
IF '%math%' == 'strandancients' GOTO STRAND
Exit
:STRAND
Cls
GOTO STRAND1
pause
exit
:STRAND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1883
set x2= 721
set y1= 788
set y2= -956
cls
GOTO FINALSTEP
exit
:SCARLET
Cls
GOTO SCARLET1
pause
exit
:SCARLET1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3088
set x2= 979
set y1= -4048
set y2= -7210
cls
GOTO FINALSTEP
exit
:WINTERGRASP
Cls
GOTO WINTERGRASP1
pause
exit
:WINTERGRASP1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5717
set x2= 3733
set y1= 4329
set y2= 1354
cls
GOTO FINALSTEP
exit
:NARENA
Cls
GOTO NARENA1
pause
exit
:NARENA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2919
set x2= 1404
set y1= 2660
set y2= 390
cls
GOTO FINALSTEP
exit
:SHOLAZAR
Cls
GOTO SHOLAZAR1
pause
exit
:SHOLAZAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7287
set x2= 4383
set y1= 6929
set y2= 2573
cls
GOTO FINALSTEP
exit
:SHATTRATH
Cls
GOTO SHATTRATH1
pause
exit
:SHATTRATH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1474
set x2= -2345
set y1= 6135
set y2= 4829
cls
GOTO FINALSTEP
exit
:EXODAR
Cls
GOTO EXODAR1
pause
exit
:EXODAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3610
set x2= -4314
set y1= -11066
set y2= -12123
cls
GOTO FINALSTEP
exit
:BTUNDRA
Cls
GOTO BTUNDRA1
pause
exit
:BTUNDRA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4898
set x2= 1054
set y1= 8571
set y2= 2806
cls
GOTO FINALSTEP
exit
:BLOOD
Cls
GOTO BLOOD1
pause
exit
:BLOOD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -758
set x2= -2933
set y1= -10075
set y2= -13337
cls
GOTO FINALSTEP
exit
:AZURE
Cls
GOTO AZURE1
pause
exit
:AZURE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2794
set x2= -5508
set y1= -10500
set y2= -14571
cls
GOTO FINALSTEP
exit
:NETHER
Cls
GOTO NETHER1
pause
exit
:NETHER1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5456
set x2= 1740
set y1= 5483
set y2= -92
cls
GOTO FINALSTEP
exit
:BLADES
Cls
GOTO BLADES1
pause
exit
:BLADES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4408
set x2= 792
set y1= 8846
set y2= 3421
cls
GOTO FINALSTEP
exit
:ZMARSH
Cls
GOTO ZMARSH1
pause
exit
:ZMARSH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1935
set x2= -1417
set y1= 9475
set y2= 4448
cls
GOTO FINALSTEP
exit
:SHADOWMOON
Cls
GOTO SHADOWMOON1
pause
exit
:SHADOWMOON1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1948
set x2= -5615
set y1= 4225
set y2= -1275
cls
GOTO FINALSTEP
exit
:TERROKAR
Cls
GOTO TERROKAR1
pause
exit
:TERROKAR1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -1000
set x2= -4600
set y1= 7083
set y2= 1683
cls
GOTO FINALSTEP
exit
:NAGRAND
Cls
GOTO NAGRAND1
pause
exit
:NAGRAND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 42
set x2= -3642
set y1= 10296
set y2= 4771
cls
GOTO FINALSTEP
exit
:SCITY
Cls
GOTO SCITY1
pause
exit
:SCITY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10154
set x2= 9347
set y1= -6401
set y2= -7612
cls
GOTO FINALSTEP
exit
:HELLFIRE
Cls
GOTO HELLFIRE1
pause
exit
:HELLFIRE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1481
set x2= -1962
set y1= 5540
set y2= 375
cls
GOTO FINALSTEP
exit
:GHOST
Cls
GOTO GHOST1
pause
exit
:GHOST1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8267
set x2= 6067
set y1= -5283
set y2= -8583
cls
GOTO FINALSTEP
exit
:EVERSONG
Cls
GOTO EVERSONG1
pause
exit
:EVERSONG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 11042
set x2= 7758
set y1= -4488
set y2= -9413
cls
GOTO FINALSTEP
exit
:BASIN
Cls
GOTO BASIN1
pause
exit
:BASIN1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1508
set x2= 338
set y1= 1858
set y2= 102
cls
GOTO FINALSTEP
exit
:GULCH
Cls
GOTO GULCH1
pause
exit
:GULCH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1627
set x2= 862
set y1= 2042
set y2= 896
cls
GOTO FINALSTEP
exit
:CSONG
Cls
GOTO CSONG1
pause
exit
:CSONG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 6502
set x2= 4688
set y1= 1444
set y2= -1279
cls
GOTO FINALSTEP
exit
:AVALLEY
Cls
GOTO AVALLEY1
pause
exit
:AVALLEY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1085
set x2= -1740
set y1= 1781
set y2= -2456
cls
GOTO FINALSTEP
exit
Cls
GOTO DARNASSIS1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10238
set x2= 9533
set y1= 2938
set y2= 1880
cls
GOTO FINALSTEP
exit
:BLUFF
Cls
GOTO NAMEXXXX1
pause
exit
:NAMEXXXX1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -850
set x2= -1546
set y1= 517
set y2= -527
cls
GOTO FINALSTEP
exit
:ORG
Cls
GOTO ORG1
pause
exit
:ORG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2274
set x2= 1338
set y1= -3681
set y2= -5083
cls
GOTO FINALSTEP
exit
:IRONFORGE
Cls
GOTO IRONFORGE1
pause
exit
:IRONFORGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -4569
set x2= -5097
set y1= -714
set y2= -1504
cls
GOTO FINALSTEP
exit
:STORMWIND
Cls
GOTO STORMWIND1
pause
exit
:STORMWIND1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7996
set x2= -9154
set y1= 1723
set y2= -15
cls
GOTO FINALSTEP
exit
:UNDERCITY
Cls
GOTO UNDERCITY1
pause
exit
:UNDERCITY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1878
set x2= 1238
set y1= 873
set y2= -86
cls
GOTO FINALSTEP
exit
:SILITHUS
Cls
GOTO SILITHUS1
pause
exit
:SILITHUS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5958
set x2= -8281
set y1= 2538
set y2= -946
cls
GOTO FINALSTEP
exit
:WSPRING
Cls
GOTO WSPRING1
pause
exit
:WSPRING1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8533
set x2= 3800
set y1= -317
set y2= -7417
cls
GOTO FINALSTEP
exit
:FJORD
Cls
GOTO FJORD1
pause
exit
:FJORD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3117
set x2= -915
set y1= -1398
set y2= -7444
cls
GOTO FINALSTEP
exit
:MOONGLADE
Cls
GOTO MOONGLADE1
pause
exit
:MOONGLADE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8492
set x2= 6952
set y1= -1381
set y2= -3690
cls
GOTO FINALSTEP
exit
:UNGORO
Cls
GOTO UNGORO1
pause
exit
:UNGORO1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5967
set x2= -8433
set y1= 533
set y2= -3167
cls
GOTO FINALSTEP
exit
:TANARIS
Cls
GOTO TANARIS1
pause
exit
:TANARIS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5875
set x2= -10475
set y1= -219
set y2= -7119
cls
GOTO FINALSTEP
exit
:STONETALON
Cls
GOTO STONETALON1
pause
exit
:NSTONETALON1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 2917
set x2= -340
set y1= 3246
set y2= -1637
cls
GOTO FINALSTEP
exit
Cls
GOTO DESOLACE1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 452
set x2= -2546
set y1= 4233
set y2= -263
cls
GOTO FINALSTEP
exit
:NEEDLES
Cls
GOTO NEEDLES1
pause
exit
:NEEDLES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3967
set x2= -6900
set y1= -433
set y2= -4833
cls
GOTO FINALSTEP
exit
:GRIZZLY
Cls
GOTO GRIZZLY1
pause
exit
:GRIZZLY1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5517
set x2= 2017
set y1= -1110
set y2= -6360
cls
GOTO FINALSTEP
exit
:FELWOOD
Cls
GOTO FELWOOD1
pause
exit
:FELWOOD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7133
set x2= 3300
set y1= 1642
set y2= -4108
cls
GOTO FINALSTEP
exit
:FERALAS
Cls
GOTO FERALAS1
pause
exit
:FERALAS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2367
set x2= -7000
set y1= 5442
set y2= -1508
cls
GOTO FINALSTEP
exit
:ASHENVALE
Cls
GOTO ASHENVALE1
pause
exit
:ASHENVALE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 4673
set x2= 829
set y1= 1700
set y2= -4067
cls
GOTO FINALSTEP
exit
:HILSBRAD
Cls
GOTO HILSBRAD1
pause
exit
:HILSBRAD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 400
set x2= -1733
set y1= 1067
set y2= -2133
cls
GOTO FINALSTEP
exit
:MULGORE
Cls
GOTO MULGORE1
pause
exit
:MULGORE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -273
set x2= -3698
set y1= 2048
set y2= -3090
cls
GOTO FINALSTEP
exit
:ICEGLACIER
Cls
GOTO ICEGLACIER1
pause
exit
:ICEGLACIER1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 9427
set x2= 5246
set y1= 5444
set y2= -827
cls
GOTO FINALSTEP
exit
Cls
GOTO DSHORE1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 8333
set x2= 3967
set y1= 2942
set y2= -3608
cls
GOTO FINALSTEP
exit
:TELD
Cls
GOTO TELD1
pause
exit
:TELD1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 11831
set x2= 8438
set y1= 3815
set y2= -1277
cls
GOTO FINALSTEP
exit
:EPG
Cls
GOTO EPG1
pause
exit
:EPG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3704
set x2= 1017
set y1= -2288
set y2= -6319
cls
GOTO FINALSTEP
exit
:SPINE
Cls
GOTO SPINE1
pause
exit
:SPINE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1667
set x2= -1133
set y1= 3450
set y2= -750
cls
GOTO FINALSTEP
exit
:TIRISFAL
Cls
GOTO TIRISFAL1
pause
exit
:TIRISFAL1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3837
set x2= 825
set y1= 3033
set y2= -1485
cls
GOTO FINALSTEP
exit
:SPEAK
Cls
GOTO SPEAK1
pause
exit
:SPEAK1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 10198
set x2= 5456
set y1= 1842
set y2= -5271
cls
GOTO FINALSTEP
exit
:ZULDRAK
Cls
GOTO ZULDRAK1
pause
exit
:ZULDRAK1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 7669
set x2= 4340
set y1= -600
set y2= -5594
cls
GOTO FINALSTEP
exit
Cls
GOTO DBLIGHT1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5575
set x2= 1835
set y1= 3627
set y2= -1981
cls
GOTO FINALSTEP
exit
:SGORGE
Cls
GOTO SGORGE1
pause
exit
:SGORGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -6100
set x2= -7587
set y1= -323
set y2= -2554
cls
GOTO FINALSTEP
exit
:HLANDS
Cls
GOTO HLANDS1
pause
exit
:HLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1467
set x2= -1100
set y1= -1575
set y2= -5425
cls
GOTO FINALSTEP
exit
:STEPPES
Cls
GOTO STEPPES1
pause
exit
:STEPPES1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7031
set x2= -8983
set y1= -267
set y2= -3196
cls
GOTO FINALSTEP
exit
:ARATHI
Cls
GOTO ARATHI1
pause
exit
:ARATHI1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -133
set x2= -2533
set y1= -867
set y2= -4467
cls
GOTO FINALSTEP
exit
:REDRIDGE
Cls
GOTO REDRIDGE1
pause
exit
:REDRIDGE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -8575
set x2= -10023
set y1= -1571
set y2= -3742
cls
GOTO FINALSTEP
exit
Cls
GOTO DWINDPASS1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9867
set x2= -11533
set y1= -833
set y2= -3333
cls
GOTO FINALSTEP
exit
:WFALL
Cls
GOTO WFALL1
pause
exit
:WFALL1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9400
set x2= -11733
set y1= 3017
set y2= -483
cls
GOTO FINALSTEP
exit
:LOCH
Cls
GOTO LOCH1
pause
exit
:LOCH1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -4488
set x2= -6327
set y1= -1994
set y2= -4752
cls
GOTO FINALSTEP
exit
:ALTERAC
Cls
GOTO ALTERAC1
pause
exit
:ALTERAC1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1500
set x2= -367
set y1= 783
set y2= -2017
cls
GOTO FINALSTEP
exit
:STRANGLE
Cls
GOTO STRANGLE1
pause
exit
:STRANGLE1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -11169
set x2= -15423
set y1= 2221
set y2= -4160
cls
GOTO FINALSTEP
exit
:WPG
Cls
GOTO WPG1
pause
exit
:WPG1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 3367
set x2= 500
set y1= 417
set y2= -3883
cls
GOTO FINALSTEP
exit
:BARRENS
Cls
GOTO BARRENS1
pause
exit
:BARRENS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1612
set x2= -5144
set y1= 2623
set y2= -7510
cls
GOTO FINALSTEP
exit
:AZSHARA
Cls
GOTO AZSHARA1
pause
exit
:AZSHARA1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 5342
set x2= 1960
set y1= -3277
set y2= -8348
cls
GOTO FINALSTEP
exit
Cls
GOTO DUSTWALLOW1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2033
set x2= -5533
set y1= -975
set y2= -6225
cls
GOTO FINALSTEP
exit
Cls
GOTO DUROTAR1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 1808
set x2= -1717
set y1= -1962
set y2= -7250
cls
GOTO FINALSTEP
exit
:ELWYNN
Cls
GOTO ELWYNN1
pause
exit
:ELWYNN1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -7940
set x2= -10254
set y1= 1535
set y2= -1935
cls
GOTO FINALSTEP
exit
:WETLANDS
Cls
GOTO WETLANDS1
pause
exit
:WETLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -2148
set x2= -4904
set y1= -390
set y2= -4525
cls
GOTO FINALSTEP
exit
Cls
GOTO DUSKWOOD1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9717
set x2= -11517
set y1= 834
set y2= -1867
cls
GOTO FINALSTEP
exit
:SORRYSWAMP
Cls
GOTO SORRYSWAMP1
pause
exit
:SORRYSWAMP1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -9621
set x2= -11150
set y1= -2223
set y2= -4517
cls
GOTO FINALSTEP
exit
:BLASTED
Cls
GOTO BLASTED1
pause
exit
:BLASTED1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -10567
set x2= -12800
set y1= -1242
set y2= -4592
cls
GOTO FINALSTEP
exit
:BADLANDS
Cls
GOTO BADLANDS1
pause
exit
:BADLANDS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -5890
set x2= -7548
set y1= -2079
set y2= -4567
cls
GOTO FINALSTEP
exit
:QUELDANAS
Cls
GOTO QUELDANAS1
pause
exit
:QUELDANAS1
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= 13569
set x2= 11350
set y1= -5302
set y2= -8629
cls
GOTO FINALSTEP
exit
Cls
GOTO DUNMOROGH1
pause
exit
echo What is targets x coordinate?
set /p targetx=
cls
echo What is the targets y coordinate?
set /p targety=
set x1= -3877
set x2= -7160
set y1= 1802
set y2= -3123
cls
GOTO FINALSTEP
exit
:FINALSTEP
Set /A topbar = %x2% - %x1%
Set /A divide100 = %topbar% / 100
Set /A amountmovedx = %divide100% * %targety%
Set /A xval = %amountmovedx% + %x1%
Set /A topbary = %y2% - %y1%
Set /A divide100y = %topbary% / 100
Set /A amountmovedy = %divide100y% * %targetx%
Set /A yval = %amountmovedy% + %y1%
echo X is %xval%.
echo Y is %yval%.
Pause
GOTO START
I recommend getting your NPC coordinates from this site

Alternatively, you can use a coordinate addon or Questhelper or something to go directly to quest objectives.
*Doesn't have coordinates for Dalaran stuff, unsure on how the system handles that city specifically.
** Because of the basic limitations of batch files, this uses whole number coordinates, so while it does get you extremely close to where you want to go, you may have to walk a few feet.
*** I know this is super simple, and a lot of the instruction was very self-explanatory, but I also have seen users on the site who have trouble understanding, so I just left everything for whoever needs it.







