I havent had the chance to test this since some of my code is still bugged so i cant compile just yet, im pretty sure the coordinates will take you to the meteor zone map if you go through DC's portals. Or place the old explorer in a closer area.
Place in GameServer/Handlers/NpcTalk
If you want to relocate the npc search your database under npcs for NPCID 999 and change the x y z coordinates to your desired location
Place in GameServer/Handlers/NpcTalk
Code:
#region Old Explorer
case 999:
{
if(LinkBack == 0)
{
Face(30, CSocket);
Text("Would you like to go to Meteor Zone?", CSocket);
Link("Yes", 1, CSocket);
Link("No", 255, CSocket);
End(CSocket);
}
else if (LinkBack == 1)
{
Teleport(1210, 178, 236, 0, CSocket);
}
break;
}
#endregion