Go Anywhere *KS* (script)
Go Anywhere *KS* (script) | |
---|---|
Category | Travel,Utility |
Front-end | StormFront |
Author | Kashna |
What This Script Does
This script gets you from one place to another all throughout Zoluren. Each possible destination is also a possible starting point. I suggest the name of just plain "Go".
Many destinations are simply entry points to hunting areas, or movement to a special location (like NPC Empath Triage). For most of these, there is a small prompt that is given upon arrival that will guide you to the next step that one usually takes at that location. Sometimes it might simply read the catalog for you as you arrive in a shop, for instance. At other times, it will inform you to CLIMB BARRICADE to enter Rock Trolls.
There are over 160 potential starting locations and destinations. While all destinations serve as stating locations, I made the starting locations as flexible as possible. For instance, going to the Bank will always send you to the Teller, but you may start the script from any of the three rooms there.
How To Use It
- 1. Start the script with your destination as the variable. Variables are not case-sensitive, but must not contain any spaces. I made the variables very flexible. Try what you would consider logical, odds are, it'll work.
- .Go bank will take you to the bank.
- .Go bank will take you to the bank.
- 2. Otherwise, just start the script without any variable at all. Doing so will send you to a menu page that will show you the possibilities.
- 1. Start the script with your destination as the variable. Variables are not case-sensitive, but must not contain any spaces. I made the variables very flexible. Try what you would consider logical, odds are, it'll work.
Important Caveat
I've discovered that some room descriptions fluctuate. This is frustrating my match search for starting locations on occasion. I'll be adjusting them as I experience the fluctuations and try to find the fixed element for each one in time.
This is a massive script. Each time I installed it for one of my characters I received a prompt warning me that my script storage was being changed from server-side storage to client-side local storage. I don't want such a thing to come as a surprise to anyone.
One more thing: While this script has proven to be amazingly amazingly effective in the past 48 hour period in which I've been using the final product of my work, there may still be a few bugs... but with over 150 total possible destinations across 12 separate pivot points, there's an awful lot to test (that's 150 to the 12th power!) it from every possible starting point from every possible destination. It passed all initial testing with flying colors, though! I'll be updating the script to squash bugs as I come across them. The core pathways are certain to work, though.
Also, if you have a particular destination in mind that is important to include (a hunting grounds that I missed, or a particularly important chapel or gathering place), leave me feedback on the TALK page and I'll be sure to update it. Let me know what shortcuts you'd like to lead there, and a link to the map that contains it.
How It Handles Ferries, etc.
It should also be noted that “bank” when on the NTR means something different than “bank” on the STR. If you’re north of the Crossing’s Ferry, it will take you to Crossing’s bank, if you’re south of it, you’ll be taken to Leth’s bank.
Also, the only destinations that work from one side of the ferry to the other are city’s actual name. Stuff like “gondola” and “ferry” will only take you to the dock or platform, whereas “Crossing,” “Shard,” “Ratha,” etc, will also have you board and cross the ferry/gondola/mammoth and deposit you on the other side. The Crossing’s handling is slightly special in that it also takes you to Crossing’s bank, since it’s so close and often a first stop anyway. The others just cross and leave you on the dock/pier/platform/beach.
Keeping it up-to-date
I will no longer be maintaining this script, personally. If someone would like to do so, adding a new location/destination is simple:
- 1. Add a section that reads as the first portion to create a new destination. The letters/word after ‘SetDestination’ determine what shortcuts you can use to access this variable. With the example below, both “.go char” and “.go charisma” will access the same destination variable (variable D).
SetDestinationChar: SetDestinationCharisma: setvariable D Charisma echo echo Destination: Charisma Training! goto CheckStart
- 2. Add a MATCH – in the second portion of the script, add a MATCH segment to create a new start room. This part of the script does a “look”, and when it matches a particular room description (be sure to pick a unique text line!), then it goes to that label.
match NewPlace unique description of room
- 3. Find which pivot point is closest to this new location and create a path both TO and FROM it. If that closest point is StoneClanPivot, then you’ll want to create two labels down below the match tables:
NewPlaceToStoneClanPivot: put n move e goto StoneClanPivot StoneClanPivotToNewPlace: put w move s echo **************************** echo *** You have arrived at NewPlace! echo *** echo *** GO PATH to enter. echo **************************** Exit
- 4. Lastly, you’ll want to flip through the other pivots and create a new label which will be EACHPIVOTToNewPlace. This means that each new destination (only the variable D, itself, not all the shortcuts) will require a new line for each and every Pivot. If this step is not done, then even though the destination is present, the script will fail to pass the individual through this pivot to said destination. I originally did this where I thought “who would want to go to Cougars from Dirge?”… and about two weeks later, I did just that and failed. It apparently never pays to cut corners. The Pivots are listed below from west to east:
- CougarsPivot
- TigerClanPivot
- CrossingsWGatePivot
- AsemathPivot
- CrossingsBankPivot
- ChampionsPivot
- NEGatePivot
- ArthePivot
- StoneClanPivot
- Caravansary
- DirgePivot
- ZolurenHavenFerry
- Note: There’s a bit of a forced chain-of-movement in order to get from ChampionsPivot up to the Empaths, then Paladins, then Jadewater, then Gargoyles out the North gate, then DS up there, and lastly Potiphants… and a regression back, as well. This was done to simplify things as much as possible… if adding any destinations out the North gate, you’ll definitely want to read through that portion of the script closely. The same holds true with Wolf Clan stuff.
- Also: You'll find a highway that I created from Pivot-to-Pivot, that's where the new thing should go...except for the final one that is the very closest pivot to your new destination, of course. There should always be a "CougarsPivotToTigerClanPivot" line, for instance, to make it easier to search for and add your new labels.
- 4. Lastly, you’ll want to flip through the other pivots and create a new label which will be EACHPIVOTToNewPlace. This means that each new destination (only the variable D, itself, not all the shortcuts) will require a new line for each and every Pivot. If this step is not done, then even though the destination is present, the script will fail to pass the individual through this pivot to said destination. I originally did this where I thought “who would want to go to Cougars from Dirge?”… and about two weeks later, I did just that and failed. It apparently never pays to cut corners. The Pivots are listed below from west to east:
Go (Script)
#Go WHERE? echo echo ******************************* echo echo *** Start the script as .Go DESTINATION echo *** or select from the options below. echo echo ******************************* echo pause 1 goto SetDestination%1 SetDestination: pause 1 echo echo echo ***************************************************** echo *** Most places are possible destinations. For instance: echo *** Banks: Crossing Bank, Dirge Bank and Estate Holder Bank echo *** Their shortcuts are: .go Bank, .go DirgeBank, .go Estate echo *** echo *** ALL SHORTCUTS MUST CONTAIN NO SPACES echo *** echo *** All destinations also serve as potential starting points echo *** Other rooms, nearby, might also work (there are 118 starting points in total!) echo *** echo *** All training locations are named by attribute – Intelligence / int echo *** All guilds listed by guild name (or shorthand) – Paladins / Pallies / Pally echo *** echo *** Shops are usually listed by full, generic name: echo *** GemShop, MagicShop, Locksmith (Locks also works), echo *** Exceptions to this are “Armor” and “Weapon”. echo *** echo *** Many extras are included, too. TradersPlaza (Plaza) and Mags, echo *** Arthe Dale’s Swimming Hole/Tree (Hole), Forge, LavaForge echo *** echo *** If you’re struggling to find a starting place, starting the script and echo *** running around a little will work – the script will start traveling when echo *** you encounter known starting point echo *** echo *** Type SHOW ALL to receive a full listing of possible destinations echo ***************************************************** echo match DestinationsMenu next match DestinationsMenu You nod match DestinationsMenu show all match DestinationsMenu showall matchwait DestinationsMenu: echo Okay! pause 1 echo echo echo ****************************************************** echo *** Type SHOW # to see possible destinations/starting points echo *** Or type what’s in the parenthesis afterewards echo *** echo *** 1. Crossings Guilds and Attributes (Guilds) echo *** echo *** 2. Crossings Shops and Crafting Societies (Shops) echo *** echo *** 3. Other locations in and near Crossings (Other) echo *** echo *** 4. Hunting grounds near Crossings (Hunting) echo *** echo *** 5. Tiger Clan (Tiger) echo *** echo *** 6. Wolf Clan, Knife Clan, Cougars, Blood Wolves, etc. (Wolf) echo *** echo *** 7. Arthe Dale (Arthe) echo *** echo *** 8. Stone Clan (Stone) echo *** echo *** 9. Dirge (Dirge) echo *** echo *** 10. North of Dirge – Lava Forge, Crocs, River and Ferry (North) echo *** echo *** 11. Leth from the Ferry south along the STR (Leth) echo *** echo *** 12. South of Leth (South) echo *** echo *** echo ****************************************************** echo pause 1 match DestinationsMenu main match DestinationsCrossingsGuildAttribute next match DestinationsCrossingsGuildAttribute guilds match DestinationsLethNorth leth match DestinationsLethNorth show11 match DestinationsLethNorth show 11 match DestinationsLethSouth South match DestinationsLethSouth show12 match DestinationsLethSouth show 12 match DestinationsCrossingsGuildAttribute show guilds match DestinationsCrossingsGuildAttribute showguilds match DestinationsCrossingsGuildAttribute show 1 match DestinationsCrossingsGuildAttribute show1 match DestinationsCrossingsShopsAndSocieties shops match DestinationsCrossingsShopsAndSocieties show shops match DestinationsCrossingsShopsAndSocieties showshops match DestinationsCrossingsShopsAndSocieties show 2 match DestinationsCrossingsShopsAndSocieties show2 match DestinationsCrossingsOther other match DestinationsCrossingsOther showother match DestinationsCrossingsOther show other match DestinationsCrossingsOther show 3 match DestinationsCrossingsOther show3 match DestinationsCrossingsHunting hunting match DestinationsCrossingsHunting showhunting match DestinationsCrossingsHunting show hunting match DestinationsCrossingsHunting show 4 match DestinationsCrossingsHunting show4 match DestinationsTigerClan showtiger match DestinationsTigerClan show tiger match DestinationsTigerClan tiger match DestinationsTigerClan showtigerclan match DestinationsTigerClan show tiger clan match DestinationsTigerClan show 5 match DestinationsTigerClan show5 match DestinationsCougarsPivot showwolfclan match DestinationsCougarsPivot show wolf clan match DestinationsCougarsPivot wolf clan match DestinationsCougarsPivot wolfclan match DestinationsCougarsPivot showwolf match DestinationsCougarsPivot show wolf match DestinationsCougarsPivot show 6 match DestinationsCougarsPivot show6 match DestinationsArthe arthe match DestinationsArthe show arthe match DestinationsArthe showarthe match DestinationsArthe show 7 match DestinationsArthe show7 match DestinationsStoneClan showstone match DestinationsStoneClan show stone match DestinationsStoneClan showstoneclan match DestinationsStoneClan show stone clan match DestinationsStoneClan show 8 match DestinationsStoneClan show8 match DestinationsDirge dirge match DestinationsDirge showdirge match DestinationsDirge show dirge match DestinationsDirge show 9 match DestinationsDirge show9 match DestinationsCaravansary north match DestinationsCaravansary shownorth match DestinationsCaravansary show north match DestinationsCaravansary show 10 match DestinationsCaravansary show10 matchwait DestinationsCrossingsGuildAttribute: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Crossings Guild Locations: echo *** echo *** Bards – Bard Barbarians – barbs, barb echo *** Clerics – Cleric Paladins – Pally, Pallies echo *** Traders – Trader Rangers – Ranger, Rang echo *** WMGuid – WM MMGuild - MM echo *** Empaths – Emp echo *** echo *** (Thief guild locations have been excluded from this script.) echo *** echo *** Special note: MMGL sends you to the MM guild leader echo *** echo *** Crossings Attribute Locations: echo *** echo *** Asemath Academy trains Intelligence, Wisdom and Magical Feats echo *** Possible shortcuts are: int, wis, academy, asemath, feats echo *** echo *** Discipline – disc Charisma - char echo *** Strength – str Stamina - stam echo *** Reflexes - ref echo *** echo *** Note: I built a LOT of shortcuts into this script. echo *** if you prefer a particular shortcut, try it! echo *** It might work! echo *** echo *** To go to any of these locations, restart the script using the shortcut now echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Crossing’s Shops and Societies) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsCrossingsGuildAttribute again match DestinationsCrossingsShopsAndSocieties next match DestinationsMenu main matchwait DestinationsCrossingsShopsAndSocieties: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Crossings Shops Locations: echo *** echo *** Weapon Shop (Weapon) Armor Shop (Armor) echo *** Pawn Shop (Pawn) Trader’s Market (Plaza, Bazaar) echo *** Bard’s Shop (BardShop) Cleric’s Shop (ClericShop) echo *** General Store (Gen, General) Locksmith (Locks, Ragge) echo *** Gem Shop (Gems) Tannery (Tann, Furrier, furr, Skins, pelts, etc) echo *** MAMAs (mamas) Florist (Flowers) echo *** NPC Triage Empath (Triage) MetalRepair (Repair, Catrox) echo *** Alchemist (alchemist, alchemyshop) echo *** echo *** echo *** Crossings Crafting Societies: echo *** echo *** Outfitting (Outfit) Forging (Forg, Forge) echo *** Engineering (Eng) Alchemy (Alch) echo *** echo *** echo *** To go to any of these locations, type the shortcut now echo *** In the future it may be accessed by typing: .go SHORTCUT echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Other Crossing’s Locations) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsCrossingsShopsAndSocieties again match DestinationsCrossingsOther next match DestinationsMenu main matchwait DestinationsCrossingsOther: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Other Locations in Crossings: echo *** echo *** Vaults (vault, vaults, carousel) echo *** West Gate (wgate, westgate) echo *** NEGate (NEGate, NE) echo *** echo *** The Stone Grotto Altar – to GET favor orbs (Favors, Orbs, FavorOrbs) echo *** Crossing’s Altar – to offer favor orbs (Alt, Altar) echo *** Crossing’s Temple – front gate (Temple, Temp) echo *** echo *** Town Green Pond echo *** Town Hall (Hall) echo *** Bank (Bank) echo *** Estate Holder’s Bank (Strand, Veranda, Estate, Premie) echo *** Ferry to Leth (Ferry) echo *** Note: if you set Leth or Shard, the script will get you across the ferry echo *** otherwise, it simply brings you TO the ferry echo *** Jadewater (Jade) echo *** Guard House (Jail) echo *** echo *** echo *** To go to any of these locations, type the shortcut now echo *** In the future it may be accessed by typing: .go SHORTCUT echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Crossing’s Hunting) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsCrossingsShopsAndSocieties again match DestinationsCrossingsHunting next match DestinationsMenu main matchwait DestinationsCrossingsHunting: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Hunting Destinations, west-to-northeast: echo *** echo *** Out Crossing’s West Gate: echo *** Goblins (gobs) Grass Eels (eels) echo *** Bobcats (bob, bobs) Lipopods (lipo, lipos) echo *** echo *** West of the brook: echo *** Cougars (cougs) echo *** Blood Wolves (wolves) Silver-Backed Bears (bears) echo *** Young Ogres (Ogres) echo *** Note: All 3 of these lead to the same location echo *** echo *** In the City of Crossing: The Shipyard (rats) echo *** echo *** Out Crossing’s North Gate: echo *** Gargoyles (gargs), Death Spirits (DS) echo *** Pothanits, Badgers, Trollkin (brambles) echo *** echo *** Out Crossing’s NE Gate: echo *** Louts (middens) echo *** Wood Trolls, Grendels (NEWilds, grend) echo *** Ghouls (crypt) echo *** echo *** Off the Northern Trade Route: echo *** Vineyard (vine) Rock Trolls (rock, rockies) echo *** S’lai Scouts (scout, scouts) Beisswurm (beiss) echo *** Guardians / Vipers (guards, vipes) echo *** Reavers (reav) Resuscitants echo *** Tortured Souls (souls) Crypt Fiends (fiends) echo *** Firecats (cat, cats) FireSprites (sprites) echo *** Blue-bellied crocodiles (crocs) echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Tiger Clan) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsCrossingsHunting again match DestinationsTigerClan next matchwait DestinationsTigerClan: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations near Tiger Clan: echo *** echo *** The Gate itself: TC echo *** echo *** The Trader’s Post: TCTraders, TCTrade echo *** echo *** The Herbalist (sells scar herbs): TCHerbs, TCHerbalist echo *** echo *** The Brook West of Tiger Clan: brook echo *** echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Wolf Clan) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsTigerClan again match DestinationsCougarsPivot next matchwait DestinationsCougarsPivot: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations near Wolf Clan: echo *** echo *** In Wolf Clan: echo *** Traders Post: WCTrading, WCTraders, WCTrade echo *** Leather Shop: LeatherShop echo *** Leather Repair: Leather, LeatherRepair echo *** echo *** In Knife Clan: echo *** Inside the clan, outside the leather shop: KC echo *** echo *** Hunting: echo *** Cougars (cougs), Blood Wolves (wolves) echo *** Silver-Backed Bears (bears), Young Ogres (Ogres) echo *** echo *** Note: wolves, bears, and ogres are all on the same Rocky Outcrop echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Arthe) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsCougarsPivot again match DestinationsArthe next matchwait DestinationsArthe: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations in Arthe Dale: echo *** echo *** Arthe Dale Gate: Arthe echo *** echo *** Arthe Dale Tree and Swimming Hole: hole echo *** echo *** Arthe Dale Shopping District: ArtheShops echo *** echo *** Arthe Dale Traders Post: Atraders, ADtraders, etc. echo *** echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Stone Clan) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsArthe again match DestinationsStoneClan next matchwait DestinationsStoneClan: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations near Stone Clan: echo *** echo *** Trading Post: SC, SCTraders, SCTrading, StoneClanTradersPost, etc. echo *** echo *** S’lai Scouts and Beisswurm: scout, scouts, beiss, beisswurm echo *** echo *** Reavers, Tortured Souls, Crypt Fiends and Resuscitants: reav, fiends, souls, resus echo *** echo *** Stone Guardians and Vipers: guardians, guards, vipers, viper, vipe, vipes echo *** echo *** Abandoned Mine: SCMine, AbandonedMine echo *** echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Dirge) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsStoneClan again match DestinationsDirge next matchwait DestinationsDirge: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations in and related to Dirge: echo *** echo *** Dirge Gate: dirge echo *** echo *** Dirge Bank: dirgebank, dbank echo *** echo *** Dirge Mine: dirgemine, dmine echo *** echo *** Dirge Vaults: dirgevaults, dvault echo *** echo *** Note: There is a location that is only a starting point and echo *** NOT a destination at the Caravansary intersection outside of Dirge echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (North of Dirge) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsDirge again match DestinationsCaravansary next matchwait DestinationsCaravansary: echo Okay! pause 1 echo echo echo ***************************************************** echo *** Locations North of Dirge along the NTR: echo *** echo *** Firecats (cats), Fire Sprites (sprites), Crocs (crocs) echo *** echo *** The Lava Forge: lavaforge, lforge, lava echo *** The old moon mage guild near the lava forge: LavaMMGuild echo *** echo *** Faldesu Swimming – to swim across in lieu of the ferry: faldesu, river echo *** echo *** The Ferry to Haven: HavenFerry Note: stops at the ferry echo *** echo *** To ride the ferry across the river and stop at the other side: echo *** Haven, Riverhaven echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (Leth) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsCaravansary again match DestinationsLeth1 next matchwait DestinationsLethNorth: echo Okay! pause 1 echo echo echo *************************************** echo *** Destinations near Leth and the Southern Trade Route: echo ***----------------------------------------------------- echo *** Important places within Leth ttself: echo *** The City Center, Bank echo *** Temple, Gallows echo *** The Tannery, Gem Shop, echo *** Trading Post echo *** The Empath’s Triage Tent, the Vaults echo *** ------------------------------------------- echo *** Shops in Leth: echo *** General Store, Dyer, Clothing Shop echo *** Bards Shop, Bowyer, echo *** Origami, Wickerworks, echo *** Woodcraft, Dove’s Doors echo *** Candy Shop, Bakery echo *** ------------------------------------------- echo *** North of Leth: echo *** The ferry (or Crossing), The mammoths (or Ratha or Fang Cove) echo *** Moss Meys echo *** Nyads, Dryads, DS, etc, in the Forest of Night echo *** The Secluded Glade echo *** Hodierna’s Solace echo *** echo *** Go back to the menu by typing MAIN echo *** Go to the next page (South of Leth) by typing NEXT echo *** To show this page again, type AGAIN echo ***************************************************** echo pause 1 match DestinationsMenu main match DestinationsLethNorth again match DestinationsLethSouth next matchwait DestinationsLethSouth: echo Okay! pause 1 echo echo echo *************************************** echo *** Destinations south of Leth Deriel: echo *** echo *** South of Leth: echo *** Alfar’s Manor (On the STR just outside , “A haunting shadow...”) echo *** Includes Germish Din, Grave Worms echo *** Bone Wolves, and Reverent Zombies echo *** Snowies, 2 rooms: room with the snow-choked passage echo *** the STR just outside it all echo *** echo *** Tasmine’s Rest echo *** echo *** The Trader’s Outpost in Ilaya Taipa echo *** echo *** The northern platform of the gondola echo *** echo *************************************** echo match DestinationsMenu main match DestinationsLethSouth again match DestinationsMenu next matchwait SetDestinationTea: SetDestinationTeaHouse: SetDestinationTeaShop: setvariable D Tea echo echo Destination: The Teahouse! goto CheckStart SetDestinationSelisArms: SetDestinationSelis: setvariable D SelisArms echo echo Destination: Seli’s Arms! goto CheckStart SetDestinationNoels: SetDestinationNoel: SetDestinationNoelsArms: setvariable D NoelsArms echo echo Destination: Noel’s Arms! goto CheckStart SetDestinationLang: SetDestinationLangenfirth: setvariable D Lang echo echo Destination: Langenfirth! goto CheckStart SetDestinationTheren: SetDestinationTherenborough: setvariable D Theren echo echo Destination: Therenborough! goto CheckStart SetDestinationBarg: SetDestinationBarges: SetDestinationBarge: setvariable D Barge echo echo Destination: The Barge! goto CheckStart SetDestinationCityTogs: SetDestinationTogs: setvariable D CityTogs echo echo Destination: The premier shop for City Togs! goto CheckStart SetDestinationCloth: SetDestinationClothes: SetDestinationClothing: setvariable D Clothing echo echo Destination: Clothing Shop! goto CheckStart SetDestinationDye: SetDestinationDyes: SetDestinationDyer: setvariable D Dyer echo echo Destination: The Dyer! goto CheckStart SetDestinationBow: SetDestinationBows: SetDestinationBowyer: setvariable D Bowyer echo echo Destination: The Bowyer! goto CheckStart SetDestinationOrig: SetDestinationOrigam: SetDestinationOrigami: setvariable D Origami echo echo Destination: The Origami Shop! goto CheckStart SetDestinationWick: SetDestinationWicker: SetDestinationWickerworks: setvariable D Wickerworks echo echo Destination: Wickerworks! goto CheckStart SetDestinationDoves: SetDestinationDoveDoor: SetDestinationDoveDoors: SetDestinationDovesDoor: SetDestinationDelightful: SetDestinationDelight: SetDestinationDelightfulDwelling: SetDestinationDelightfulDwellings: SetDestinationDovesDoors: setvariable D DovesDoors echo echo Destination: Dove’s Doors! goto CheckStart SetDestinationCand: SetDestinationCandyShop: SetDestinationCandy: setvariable D Candy echo echo Destination: The Candy Shop! goto CheckStart SetDestinationBake: SetDestinationBakeryShop: SetDestinationBakery: setvariable D Bakery echo echo Destination: The Bakery! goto CheckStart SetDestinationGallow: SetDestinationGall: SetDestinationGallows: setvariable D Gallows echo echo Destination: The Gallows... dun dun dun! goto CheckStart SetDestinationLTraders: SetDestinationLTrading: SetDestinationLethTrading: SetDestinationLethTraders: SetDestinationLethTradingPost: SetDestinationLethTradersPost SetDestinationTradingPost: setvariable D LethTraders echo echo Destination: Leth Deriel’s Trading Post! goto CheckStart SetDestinationGermishDin: SetDestinationGermish: SetDestinationGerm: SetDestinationGerms: SetDestinationGraveWorms: SetDestinationGraveWorm: SetDestinationGrave: SetDestinationWorm: SetDestinationWorms: SetDestinationBoneWolves: SetDestinationBone: SetDestinationBones: SetDestinationReverentZombie: SetDestinationReverent: SetDestinationZombies: SetDestinationZombie: SetDestinationAlfars: SetDestinationAlfar: SetDestinationManor: SetDestinationAlfarsManor: setvariable D AlfarsManor echo echo Destination: Alfar’s Manor! goto CheckStart SetDestinationMossMey: SetDestinationMossMeys: SetDestinationMey: SetDestinationMeys: setvariable D Meys echo echo Destination: Moss Meys! goto CheckStart SetDestinationSno: SetDestinationSnow: SetDestinationSnowb: SetDestinationSnowie: SetDestinationSnowbeast: SetDestinationSnowbeasts: SetDestinationSnowies: setvariable D Snowies echo echo Destination: Snowies! goto CheckStart SetDestinationCrossing: SetDestinationCrossin: SetDestinationCross: SetDestinationCros: SetDestinationCro: SetDestinationXing: SetDestinationCrossings: setvariable D Crossings echo echo Destination: City of Crossing! goto CheckStart SetDestinationGon: SetDestinationGond: SetDestinationGondo: SetDestinationGondola: setvariable D Gondola echo echo Destination: Gondola to Shard! goto CheckStart SetDestinationSafe: setvariable D Safe echo echo Destination: Safe spot! goto CheckStart SetDestinationMam: SetDestinationMamm: SetDestinationMammo: SetDestinationMammot: SetDestinationMammoths: SetDestinationMammoth: setvariable D Mammoths echo echo Destination: The Mammoths! goto CheckStart SetDestinationCov SetDestinationFan SetDestinationCove SetDestinationFang SetDestinationFangCo SetDestinationFangCove: setvariable D FangCove echo echo Destination: Isle of Fang Cove! goto CheckStart SetDestinationRath SetDestinationRatha: setvariable D Ratha echo echo Destination: City of Ratha! goto CheckStart SetDestinationNyads: SetDestinationNyad: SetDestinationDryads: SetDestinationDryad: SetDestinationLethDeathSpirits: SetDestinationLethDS: SetDestinationDeath: SetDestinationSpirit: SetDestinationNight: SetDestinationForest: SetDestinationForestOfNight: setvariable D ForestOfNight echo echo Destination: Forest of Night! goto CheckStart SetDestinationLethWoodcraft: SetDestinationWoodcraft: SetDestinationLethWood: SetDestinationWood: setvariable D Woodcraft echo echo Destination: Woodcraft! goto CheckStart SetDestinationSecluded: SetDestinationSecludedGlade: SetDestinationGlade: setvariable D SecludedGlade echo echo Destination: The Secluded Glade! goto CheckStart SetDestinationHodier: SetDestinationHodiern: SetDestinationHodiernasSolace: SetDestinationHodierna: SetDestinationHodiernas: SetDestinationSolace: setvariable D HodiernasSolace echo echo Destination: Hodierna’s Solace! goto CheckStart SetDestinationLethSoothsayersHut: SetDestinationSoothsayersHut: SetDestinationLethSoothsayer: SetDestinationSoothsayer: SetDestinationSoothsayers: SetDestinationSooth: SetDestinationLethSooth: setvariable D Soothsayer echo echo Destination: The Soothsayer’s Hut! goto CheckStart SetDestinationTamsines: SetDestinationTamsine: SetDestinationTamsineRest: SetDestinationTamsinesRest: setvariable D TamsinesRest echo echo Destination: Tamsine’s Rest goto CheckStart SetDestinationIlaya: SetDestinationIlayaTaipa: SetDestinationTaipa: setvariable D IlayaTaipa echo echo Destination: Ilaya Taipa’s Trader’s Outpost goto CheckStart SetDestinationShard: setvariable D Shard echo echo Destination: Shard! goto CheckStart SetDestinationLeth: SetDestinationLethCenter: SetDestinationCent: SetDestinationCenter: setvariable D Leth echo echo Destination: City Center of Leth Deriel! goto CheckStart SetDestinationChamp: SetDestinationChamps: SetDestinationChampions: setvariable D ChampionsPivot echo echo Destination: Champion’s Square! goto CheckStart SetDestinationHaven: SetDestinationRiverhaven: setvariable D Haven echo echo Destination: Riverhaven! goto CheckStart SetDestinationHavenFerry: setvariable D ZolurenHavenFerry echo echo Destination: The Ferry to Haven! goto CheckStart SetDestinationCat: SetDestinationCats: SetDestinationFirec: SetDestinationFirecats: setvariable D Firecats echo echo Destination: Firecats! goto CheckStart SetDestinationFireS: SetDestinationSprites: SetDestinationFireSprites: setvariable D FireSprites echo echo Destination: Fire Sprites! goto CheckStart SetDestinationLForg: SetDestinationLForge: SetDestinationLava: SetDestinationDirgeForge: SetDestinationLavaForge: setvariable D LavaForgeInside echo echo Destination: The Lava Forge! goto CheckStart SetDestinationPond: SetDestinationTGPond: SetDestinationTownGreenPond: setvariable D Pond echo echo Destination: The Town Green Pond! goto CheckStart SetDestinationDirgeMMGuild: SetDestinationLavaMMGuild: SetDestinationLavaForgeMMGuild: setvariable D LavaForgeMMGuild echo echo Destination: The Moon Mage’s guild near the Lava Forge! goto CheckStart SetDestinationCroc: SetDestinationCrocodiles: SetDestinationCrocs: setvariable D Crocs echo echo Destination: Crocs! goto CheckStart SetDestinationFaldesu: SetDestinationRiver: SetDestinationFaldesuRiver: SetDestinationFaldesuSwimming: setvariable D FaldesuSwimming echo echo Destination: The Faldesu River! goto CheckStart SetDestinationDirg: SetDestinationDirge: SetDestinationDirgeGate: SetDestinationDirgePivot: setvariable D Dirge echo echo Destination: Dirge! goto CheckStart SetDestinationDVaul: SetDestinationDVault: SetDestinationDVaults: SetDestinationDirgeVault: SetDestinationDirgeVaults: setvariable D DirgeVaults echo echo Destination: Dirge’s Vaults goto CheckStart SetDestinationDBank: SetDestinationDirgeBank: setvariable D DirgeBank echo echo Destination: Dirge’s Bank! goto CheckStart SetDestinationWickedBurrowMine: SetDestinationWickedBurrow: SetDestinationWBMine: SetDestinationDMine: SetDestinationDirgeMine: setvariable D DirgeMine echo echo Destination: Dirge’s Mine! goto CheckStart SetDestinationDarkTemple: SetDestinationResus: SetDestinationResuscitants: SetDestinationSoul: SetDestinationSouls: SetDestinationTortured: SetDestinationTorturedSoul: SetDestinationHafwa: SetDestinationSnaer: SetDestinationSnaerHafwa: SetDestinationCryptFiend: SetDestinationFiend: SetDestinationFiends: SetDestinationCopse: SetDestinationDenseCopse: SetDestinationReav: SetDestinationReaver: SetDestinationReavers: setvariable D Reavers echo echo Destination: Reavers! goto CheckStart SetDestinationSC: SetDestinationStone: SetDestinationStoneClan: SetDestinationStoneClanPivot: setvariable D StoneClanPivot echo echo Destination: The NTR Outside Stone Clan’s Trader’s Post! goto CheckStart SetDestinationVipes: SetDestinationViper: SetDestinationVipers: SetDestinationGuards: SetDestinationGuardians: SetDestinationRockGuardians: setvariable D Guardians echo echo Destination: Rock Guardians and Vipers! goto CheckStart SetDestinationSCTP: SetDestinationSCTraders: SetDestinationStoneClanTraders: SetDestinationStoneClanTradersPost: setvariable D StoneClanTradersPost echo echo Destination: Stone Clan’s Trader’s Post! goto CheckStart SetDestinationAMine: SetDestinationSCMine: SetDestinationAbandonedMine: SetDestinationStoneClanMine: setvariable D StoneClanMine echo echo Destination: Stone Clan’s Abandoned Mine! goto CheckStart SetDestinationBeiss: SetDestinationBeisswurm: SetDestinationBeisswurms: SetDestinationScout: SetDestinationScouts: setvariable D Scouts echo echo Destination: Scouts! goto CheckStart SetDestinationArtheDaleShops: SetDestinationArtheShops: setvariable D ArtheShops echo echo Destination: Arthe Dale’s Shopping District! goto CheckStart SetDestinationATraders: SetDestinationADTraders: SetDestinationArtheTraders: SetDestinationArtheDaleTradersPost: SetDestinationArtheDaleTraders: SetDestinationArtheTradersPost: setvariable D ArtheTradersPost echo echo Destination: Arthe Dale’s Trader’s Post! goto CheckStart SetDestinationHole: SetDestinationSwimmingHole: SetDestinationArtheTree: setvariable D ArtheTree echo echo Destination: Arthe Dale’s Tree and Swimming Hole! goto CheckStart SetDestinationArthe: setvariable D Arthe echo echo Destination: The front gate of Arthe Dale! goto CheckStart SetDestinationWM: SetDestinationWMGuild: SetDestinationWarriorMageGuild: setvariable D WMGuild echo echo Destination: The Warrior Mage Guild! goto CheckStart SetDestinationMM: SetDestinationMMGuild: SetDestinationMoonMageGuild: setvariable D MMGuild echo echo Destination: The Moon Mage Guild! goto CheckStart SetDestinationMML: SetDestinationMMGL: SetDestinationMMLeader: SetDestinationMMGLeader: SetDestinationMMGuildLeader: setvariable D MMGuild echo echo Destination: The Moon Mage Guild! goto CheckStart SetDestinationLout: SetDestinationLouts: SetDestinationMiddens: setvariable D Middens echo echo Destination: The Middens! goto CheckStart SetDestinationGhoul: SetDestinationCrypt: SetDestinationGhouls: SetDestinationNEGateCrypt: setvariable D NEGateCrypt echo echo Destination: Ghouls in the Crypt! goto CheckStart SetDestinationWoodTrolls: SetDestinationWoodTroll: SetDestinationGrend: SetDestinationGrendels: SetDestinationNEWilds: setvariable D NEWilds echo echo Destination: The Northeast Wilds! goto CheckStart SetDestinationRock: SetDestinationRockies: SetDestinationRockTroll: SetDestinationRockTrolls: setvariable D RockTrolls echo echo Destination: Rock Trolls! goto CheckStart SetDestinationKaernas: SetDestinationKaernasVillage: SetDestinationKaernaVillage: SetDestinationKaerna: setvariable D Kaerna echo echo Destination: Kaerna Village! goto CheckStart SetDestinationVine: SetDestinationBaear: SetDestinationBaearholts: SetDestinationBaearholt: SetDestinationVineyard: setvariable D Vineyard echo echo Destination: The Vineyard! goto CheckStart SetDestinationNE: SetDestinationNortheastGate: SetDestinationNEGate: setvariable D NEGatePivot echo echo Destination: The Crossing’s NE Gate! goto CheckStart SetDestinationJade: SetDestinationJadewaterMansion: SetDestinationJadewater: setvariable D Jadewater echo echo Destination: The Jadewater Mansion! goto CheckStart SetDestinationGarg: SetDestinationGargs: SetDestinationGargoyle: SetDestinationGargoyles: SetDestinationCrossingsGargs: SetDestinationCrossingGarg: SetDestinationCrossingGargs: SetDestinationCrossingsGargoyles: setvariable D CrossingsGargoyles echo echo Destination: Gargoyles! goto CheckStart SetDestinationDS: SetDestinationDeathSpirits: SetDestinationCrossingDS: SetDestinationCrossingsDS: SetDestinationCrossingsDeathSpirits: setvariable D DeathSpirits echo echo Destination: Death Spirits! goto CheckStart SetDestinationBrambles: SetDestinationBadgers: SetDestinationPothanits: SetDestinationTrollkin: SetDestinationTrollkins: SetDestinationCrossingsBrambles: setvariable D CrossingsBrambles echo echo Destination: The Brambles north of Crossing! goto CheckStart SetDestinationPallies: SetDestinationPally: SetDestinationPallyGuild: SetDestinationPaladin: SetDestinationPaladins: SetDestinationPaladinsGuild: setvariable D Paladins echo echo Destination: The Paladins Guild! goto CheckStart SetDestinationEmp: SetDestinationEmpath: SetDestinationEmpaths: SetDestinationEmpathGuild: SetDestinationEmpathsGuild: setvariable D Empaths echo echo Destination: The Empaths Guild! goto CheckStart SetDestinationHeal: SetDestinationHealer: SetDestinationTriag: SetDestinationTriage: SetDestinationHosp: SetDestinationHospital: SetDestinationEmpathTriage: setvariable D Triage echo echo Destination: Empath Triage! goto CheckStart SetDestinationHerb: SetDestinationHerbs: SetDestinationHerbalist: SetDestinationMaurigasBotanicals: SetDestinationMauriga: SetDestinationMaurigas: SetDestinationCrossingHerbs: SetDestinationCrossingsHerbs: SetDestinationCrossingsHerbalist: setvariable D Herbalist echo echo Destination: The Herbalist! goto CheckStart SetDestinationBarb: SetDestinationBarbs: SetDestinationBarbGuild: SetDestinationBarbsGuild: SetDestinationBarbarianGuild: SetDestinationBarbariansGuild: setvariable D Barbarians echo echo Destination: The Barbarians Guild! goto CheckStart SetDestinationStam: SetDestinationStamina: setvariable D Stamina echo echo Destination: Stamina Training! goto CheckStart SetDestinationForg: SetDestinationForge: SetDestinationForging: SetDestinationLethForge: SetDestinationForgingSociety: setvariable D Forge echo echo Destination: The Forge! goto CheckStart SetDestinationFlower: SetDestinationFlowers: SetDestinationFlowerShop: SetDestinationOrielda: SetDestinationOrieldas: SetDestinationOrieldasBlossoms: SetDestinationBlossoms: SetDestinationFlorist: setvariable D Florist echo echo Destination: The Florist! goto CheckStart SetDestinationBank: SetDestinationLethBank: SetDestinationCrossingBank: SetDestinationCrossingsBank: setvariable D Bank echo echo Destination: The Bank! goto CheckStart SetDestinationPlaza: SetDestinationTraderPlaza: SetDestinationTradersPlaza: SetDestinationBazaar: setvariable D TradersPlaza echo echo Destination: Trader’s Plaza! goto CheckStart SetDestinationMags: setvariable D Mags echo echo Destination: Mags! goto CheckStart SetDestinationSafe2: setvariable D Safe2 echo echo Destination: Safe spot! goto CheckStart SetDestinationRef: SetDestinationRefl: SetDestinationCollegium: SetDestinationReflex: SetDestinationReflexes: setvariable D Reflexes echo echo Destination: Reflex Training! goto CheckStart SetDestinationArmor: SetDestinationArmorShop: setvariable D ArmorShop echo echo Destination: Armor Shop! goto CheckStart SetDestinationIronworks: SetDestinationIronwork: SetDestinationIron: SetDestinationStr: SetDestinationStren: SetDestinationStreng: SetDestinationStrength: setvariable D Strength echo echo Destination: Strength Training! goto CheckStart SetDestinationWeapon: SetDestinationWeapons: SetDestinationWeaponShop: SetDestinationWeaponsShop: setvariable D WeaponsShop echo echo Destination: The Armory! goto CheckStart SetDestinationCaro: SetDestinationCarousel: SetDestinationVaul: SetDestinationVault: SetDestinationVaults: setvariable D Vaults echo echo Destination: Carousel Square! goto CheckStart SetDestinationGen: SetDestinationGeneral: SetDestinationGoods: SetDestinationDryGoods: SetDestinationGeneralStore: setvariable D GeneralStore echo echo Destination: The General Store! goto CheckStart SetDestinationClericShop: SetDestinationClericsShop: setvariable D ClericsShop echo echo Destination: The Cleric’s Shop! goto CheckStart SetDestinationBardShop: SetDestinationBardsShop: setvariable D BardsShop echo echo Destination: The Bard’s Shop! goto CheckStart SetDestinationOutfit: SetDestinationOutfittingSociety: SetDestinationOutfitting: setvariable D Outfitting echo echo Destination: The Outfitting Society! goto CheckStart SetDestinationRagg: SetDestinationRagge: SetDestinationLock: SetDestinationLocks: SetDestinationLocksmithy: SetDestinationLocksmiths: SetDestinationLocksmith: setvariable D Locksmith echo echo Destination: The Locksmith’s! goto CheckStart SetDestinationHal: SetDestinationHall: SetDestinationDebt: SetDestinationTownHall: setvariable D TownHall echo echo Destination: The Town Hall! goto CheckStart SetDestinationEng: SetDestinationEngineeringSociety: SetDestinationEngineering: setvariable D Engineering echo echo Destination: The Engineering Society! goto CheckStart SetDestinationChar: SetDestinationCharisma: setvariable D Charisma echo echo Destination: Charisma Training! goto CheckStart SetDestinationGem: SetDestinationGems: SetDestinationJeweler: SetDestinationJewelry: SetDestinationGemShop: setvariable D GemShop echo echo Destination: The Gem Shop! goto CheckStart SetDestinationAlt: SetDestinationFavorsAltar: SetDestinationFavorAltar: SetDestinationAltar: setvariable D Altar echo echo Destination: The Resurrection Creche in the Crossing’s Temple! goto CheckStart SetDestinationTemp: SetDestinationTempl: SetDestinationTemple: setvariable D Temple echo echo Destination: The City Temple! goto CheckStart SetDestinationRat: SetDestinationRats: SetDestinationShip: SetDestinationShipyard: setvariable D Shipyard echo echo Destination: The Shipyard! goto CheckStart SetDestinationVer: SetDestinationVera: SetDestinationStran: SetDestinationStrand: SetDestinationEstate: SetDestinationEstateHolder: SetDestinationPremie: SetDestinationVeranda: SetDestinationEstateHolderBank: SetDestinationEstateHolderBankTeller: setvariable D EstateHolder echo echo Destination: The Estate Holder’s Bank! goto CheckStart SetDestinationFerry: SetDestinationFerrySouth: setvariable D Ferry echo echo Destination: The Ferry! goto CheckStart SetDestinationCrossingFerry: SetDestinationCrossingsFerry: setvariable D CrossingsFerry echo echo Destination: Crossing’s Ferry! goto CheckStart SetDestinationAlch: SetDestinationAlchemySociety: SetDestinationAlchemy: setvariable D Alchemy echo echo Destination: The Alchemy Society! goto CheckStart SetDestinationTrad: SetDestinationTrade: SetDestinationTrader: SetDestinationTraders: SetDestinationTradersGuild: setvariable D Traders echo echo Destination: The Trader’s Guild! goto CheckStart SetDestinationJail: SetDestinationGuard: SetDestinationGuardhouse: setvariable D Jail echo echo Destination: The Jail! goto CheckStart SetDestinationMama: SetDestinationMamas: setvariable D Mamas echo echo Destination: MAMAs! goto CheckStart SetDestinationMetal: SetDestinationMetalRep: SetDestinationRep: SetDestinationRepair: SetDestinationRepairs: SetDestinationCatrox: SetDestinationCatroxForge: SetDestinationCatroxsForge: SetDestinationMetalRepair: setvariable D MetalRepair echo echo Destination: Metal Repair! goto CheckStart SetDestinationArt: SetDestinationMagic: SetDestinationHerilos: SetDestinationZanthron: SetDestinationZanthrons: SetDestinationArtificier: SetDestinationArtificiers: SetDestinationArtificer: SetDestinationArtificers: SetDestinationMagicShop: SetDestinationArtificersShop: setvariable D Artificers echo echo Destination: The Artificer Shop! goto CheckStart SetDestinationBard: SetDestinationBards: SetDestinationBardGuild: SetDestinationBardsGuild: setvariable D Bards echo echo Destination: Bards Guild! goto CheckStart SetDestinationAgi: SetDestinationAgil: SetDestinationAgility: setvariable D Agility echo echo Destination: Agility Training! goto CheckStart SetDestinationInt: SetDestinationIntelligence: setvariable D Intelligence echo echo Destination: Intelligence Training! goto CheckStart SetDestinationWis: SetDestinationWisdom: setvariable D Wisdom echo echo Destination: Wisdom Training! goto CheckStart SetDestinationAsemath: SetDestinationAcademy: SetDestinationAcademyOfLearning: SetDestinationLearning: SetDestinationFeat: SetDestinationFeats: SetDestinationMagicalFeats: SetDestinationAsemathAcademy: SetDestinationCrossingsWisdom: SetDestinationCrossingsIntelligence: setvariable D Academy echo echo Destination: The Academy! goto CheckStart SetDestinationCler: SetDestinationCleric: SetDestinationClerics: SetDestinationClericGuild: SetDestinationClericsGuild: setvariable D Clerics echo echo Destination: Clerics Guild! goto CheckStart SetDestinationDisc: SetDestinationDiscipline: setvariable D Discipline echo echo Destination: Discipline Training! goto CheckStart SetDestinationSkin: SetDestinationSkins: SetDestinationTanning: SetDestinationFurrier: SetDestinationFurr: SetDestinationPelts: SetDestinationTann: SetDestinationTanner: SetDestinationTannery: setvariable D Tannery echo echo Destination: The Tannery! goto CheckStart SetDestinationRang: SetDestinationRanger: SetDestinationRangers: SetDestinationRangerGuild: SetDestinationRangersGuild: setvariable D Rangers echo echo Destination: Ranger’s Guild! goto CheckStart SetDestinationPawn: SetDestinationPawnShop: setvariable D PawnShop echo echo Destination: The Pawn Shop! goto CheckStart SetDestinationAsemathGate: SetDestinationAsemathNorth: SetDestinationAsemathPivot: setvariable D AsemathPivot echo echo Destination: The Gate to the Asemath Academy! goto CheckStart SetDestinationLipo: SetDestinationLipos: SetDestinationLipopod: SetDestinationLipopods: setvariable D Lipopods echo echo Destination: Lipopods west of Crossing! goto CheckStart SetDestinationWGate: SetDestinationWestGate: SetDestinationCrossingsWestGate: SetDestinationCrossingWestGate: SetDestinationCrossingsWGate: setvariable D WestGate echo echo Destination: Crossing’s West Gate! goto CheckStart SetDestinationEels: SetDestinationGrassEels: setvariable D GrassEels echo echo Destination: Grass Eels! goto CheckStart SetDestinationGob: SetDestinationGobs: SetDestinationGoblin: SetDestinationGoblins: setvariable D Goblins echo echo Destination: Goblins! goto CheckStart SetDestinationOrb: SetDestinationOrbs: SetDestinationFavorOrb: SetDestinationFavorOrbs: SetDestinationFavor: SetDestinationFavorsAltar: SetDestinationFavorAltar: SetDestinationStoneGrotto: SetDestinationFavors: setvariable D Favors echo echo Destination: The Stone Grotto west of Crossing! goto CheckStart SetDestinationBob: SetDestinationBobs: SetDestinationBobc: SetDestinationBobcat: SetDestinationBobcats: setvariable D Bobcats echo echo Destination: Bobcats beside the Stone Grotto! goto CheckStart SetDestinationTC: SetDestinationTiger: SetDestinationTigerClan: setvariable D TigerClan echo echo Destination: Tiger Clan! goto CheckStart SetDestinationTCTraders: SetDestinationTCTrading: SetDestinationTCTrade: SetDestinationTCTrader: SetDestinationTigerClanTradingPost: SetDestinationTigerClanTradersPost: setvariable D TigerClanTradersPost echo echo Destination: Tiger Clan’s Trader’s Post! goto CheckStart SetDestinationTCHerb: SetDestinationTCHerbs: SetDestinationTCHerbalist: SetDestinationTigerClanHerbalist: setvariable D TigerClanHerbalist echo echo Destination: Tiger Clan’s Herbalist, Neesa! goto CheckStart SetDestinationBrook: SetDestinationGoblinBrook: SetDestinationBrookWestOfTigerClan: setvariable D BrookWestOfTigerClan echo echo Destination: The brook west of Tiger Clan! goto CheckStart SetDestinationOgres: SetDestinationOgres: setvariable D Ogres echo echo Destination: Young Ogres! goto CheckStart SetDestinationSilverBears: SetDestinationBear: SetDestinationBears: Setvariable D Bears echo echo Destination: Bears! goto CheckStart SetDestinationBWolves: SetDestinationWolves: SetDestinationBloodWolves: setvariable D BloodWolves echo echo Destination: Blood Wolves! goto CheckStart SetDestinationKC: SetDestinationKnifeClan: setvariable D KnifeClan echo echo Destination: Knife Clan! goto CheckStart SetDestinationWC: SetDestination WolfClan: setvariable D WolfClanBuilding echo echo Destination: Wolf Clan! goto CheckStart SetDestinationLeath: SetDestinationLeather: SetDestinationLeatherRepair: setvariable D LeatherRepair echo echo Destination: The Leather Repair Shop! goto CheckStart SetDestinationLeatherShop: SetDestinationWolfClanLeatherShop: setvariable D WolfClanLeatherShop echo echo Destination: Wolf Clan’s Leather Shop! goto CheckStart SetDestinationCoug: SetDestinationCougs: SetDestinationCougar: SetDestinationCougars: setvariable D CougarsPivot echo echo Destination: Cougars west of Crossing! goto CheckStart SetDestinationWCTraders: SetDestinationWCTrade: SetDestinationWCTrader: SetDestinationWCTrading: SetDestinationWolfClanTradingPost: SetDestinationWolfClanTradersPost: setvariable D WolfClanTradersPost echo echo Destination: Wolf Clan’s Trader’s Post! goto CheckStart SetDestinationAlchemist: SetDestinationAlchemyShop: setvariable D Alchemist echo echo Destination: Alchemy Shop! goto CheckStart CheckStart: echo echo match Firecats as if smashed into the plain by the fist of an angry god match FireSprites bramble and myrtle grow on either side of an oak-bough gateway match LavaForgeInside rickety wooden table stands near a battered rack that leans against the granite match LavaForgeOutside cooled lava floor and piles in the corners of the stone building match ZolurenHavenFerry rides upon the Faldesu River forming the landing for the ferry match LavaForgeMMGuild former occupants are bits of bone and the remnants of a large crystal hand match BlueBelliedCrocs its way through the valley like a deep blue ribbon match FaldesuSwimming stone bridge that once spanned the river here now lies in ruins match CaravansaryOutsideDirge narrow path branches off to the east following a rough line of hills match Reavers sickly-colored stuff about them the way a Human child hides under a security blanket match DirgeVaults has even managed to keep some flowers growing despite the dust and dryness match DirgePivot sign painted with a large keg indicates that perhaps a drink or two match DirgeBank One or two of them look you over casually but with a wariness in their cold eyes match DirgeMine Rows of torches line the walls and cast dancing shadows down the long tunnel ahead match WickedBurrowEstateCrevice freshly-hewn corridor lined with well-kept torches extends into match WickedBurrowMineMiddle Jagged stalactites reach towards the floor and small pools of water match StoneClanPivot your eyes until it fades from view among the steeply rising mountains match StoneClanTradersPost the Stone Clan trade minister match StoneClanMine strange blue moss throws out an eerie light making it possible match StoneClanScouts All seem more attractive than the forbidding set of cliffs up ahead match StoneGuardians but it fades off before you can wonder about where it might lead match ArthePivot built specifically for those of short stature match ArtheOutsideGate adventurers and farmers from the surrounding valley mingle here match ArtheShops pale lavender-pink glaysker flowers that have been planted match ArtheTradersPost colorful silken or woolen fabrics sparkled with gleaming gold and jewels match ArtheTree massive branches reaching out to form a canopy over the local swimming hole match NEGatePivot You are before the Northeast Gate of the Crossing match NEGateInside Here stands the Northeast Gate match WMGuildInside Two gruesome and fierce-countenanced dvarapalas stare sullenly match WMGuild enormous tower of grey marble rises imposingly from the ground match MMGuild The top floor is also the nerve center of the Moon Mages match MMGuildLeader save for a narrow strip of anti-color bordering starkly on all sides match Middens this footpath can just be discerned through a field of sedge match NEGateCryptUp old rotted offerings of food and streaked with ancient pools match NEGateCryptInside Two burning torches fixed to the ceiling in heavy iron brackets light match NEGateCryptOutside Faint pinpoints of light fade in and out of the trees and you would swear match NEWilds The moonlight turns the gold of the tall grasses of the field into silver match NEWilds the skeleton of a dilapidated doorway match RockTrolls presence of rolling hills to the west and the small village of Kaerna match KaernaIntersection windows and open doorway of the Gilded Unicorn Inn match Vineyard small stone farmhouse seems caught in a struggle with the tendrils match ChampionsPivot voice of the trainers barking out instructions to the would-be fighters match CrossingsGargoyles stones mix with the weeds to mark the start of a small gully match CrossingsDeathSpirits Tatters of white netting sway from the shrubbery's slender branches match CrossingsBrambles bridge footings descend into a mix of lush cattails and creekbroom match Jadewater Brown cobbles set in herringbone rows lead from the gate match Paladins representing the symbolic equality of all guild members match CrossingsInfirmary compose the wide room that serves as the working grounds for The Crossing match CrossingsEmpaths Here healers both novice and experienced gather to share techniques match CrossingsEmpathTriage hospital of Martyr Saedelthorp match CrossingsHerbalist Mauriga the Botanist beams at you match Barbarians enormous jeweled steel greatsword glints above a raised podium match CrossingsStamina axis runs across the room and is attached to a set of gears match CrossingsForge pounding din of metal on metal from the smithies match CrossingsForge Freshly chiseled granite walls surround an area where forgers match Florist Beautifully crafted earthen pots filled with brightly hued blossoms match CrossingsBankPivot Marble tiled floors covered with heavy rugs and walls of polished jasper match CrossingsBankExchange well-padded chair is placed for your comfort while waiting match CrossingsBankLobby neat row of barred windows faces you along a marble counter match CrossingsTradersPlaza a decorated iron gate leading out of the plaza match CrossingsReflexes Rartan's Collegium of Inner Juggling and match CrossingsArmorShop Tembeg match CrossingsWeaponsShop eviscerate and otherwise discomfit your enemies can be had here match TownGreenPond Town Green Pond match CrossingsVaults Blazing to the south in the night sky are the flames on the Temple match CrossingsBardsShop Famed far and wide for its range of instruments and things bardic match CrossingsGeneralStore Berolt match ClericsShop Brother Durantine match CrossingsOutfitting a large oak door with a polished bronze knob match CrossingsLocksmith vague outlines of some rather sinister looking figures as they skulk match CrossingsTownHall [Town Hall match CrossingsTownHall nerve centers of the administrative arm of the local government match Vaults pulleys and weights within the structure form the strikingly complex match CrossingsAltar [Resurrection Creche, Li Stil rae Kwego ia Kweld] match CrossingsTemple [Temple Grounds, Entry Gates] match CrossingsShipyard Shipyard and Boat Repair is a cluttered and hectic place match CrossingsEstateHolder [Strand Communal Center match CrossingsFerry trade route to the Elven forest reaches lies south across match CrossingsAlchemy [Alchemy Society match CrossingsEngineering an elegantly carved mistwood door leading outside match CrossingsEngineering Expertly fitted grey marble slabs frame the lower half of the shop match CrossingsTraders marble columns to the frescoed ceiling depicting the god Kertigen match CrossingsCharisma seated youths are listening attentively to an Elothean lad at a podium match CrossingsGemShop Grisgonda match CrossingsMamas who is adjusting the beam of the smallest of three graduated scales match CrossingsMetalRepair The forge of Catrox the Dwarf is known throughout the lands match CrossingsArtificers Herilo the Artificer Exemplar squints match AsemathPivot Students and faculty come and go through it match CrossingsAlchemist the alchemist chizili match CrossingsBards guild commons is a place where bards young and old meet to trade match AsemathAcademy [Asemath Academy match Clerics paneled with a coarse flowing grain mark this circular chamber match CrossingsDiscipline The tiny windowless hovel feels cramped despite its minimal furnishings match CrossingsTannery presided over by the ever-alert Falken match Rangers Pine Needle Path] match CrossingsAgility the Academy of Agility match CrossingsPawnShop Cormyn match CrossingsJail Guard House match CrossingsWGatePivot grove of trees to a gate in The Crossing's western wall match GoblinIntersection you manage to identify several landmarks and reorient yourself match GoblinMiddle for the cut rows suddenly end and the grain rises match EelsExit inured stone wall marks the southern boundary of the orchard match EelsEntry route north through the apple orchard ends abruptly here match Favors four rounded stones of descending size are set one upon the other in match Bobcats massive sculpture appears to sink at an angle into the ground match Bobcats Desperately hugging the edge of the cliff match Lipopods congregating more heavily near the shimmering trees and moonlit lake match TigerClanPivot Beyond the wall you can make out the thatched rooftops match TigerClanInsideGate find fellowship and food in the conveniently match TigerClanTradersPost looking Guild trade minister is at hand to expedite match TigerClanHerbalist a mantel with several things on it and a trestle table with a simple alchemy kit match BrookWestOfTigerClan water hyacinths and horsetail grasses flourish along the gurgling brook match WolfClanBuilding of dead animals and substances of the tanning trade drift match WolfClanLeatherShop stench that permeates the rest of Crolin match LeatherRepair Behind a wood counter Randal sits smiling to himself match WolfClanTradersPost harried Guild trade minister is at hand to expedite match WolfClanBushes an exit out through a clump of dense bushes match KnifeClanOutsideLeather Dressed in brightly dyed leathers and carrying an impressive match KnifeClanInsideGate path crosses a large grassy clearing with a few scattered fire pits match BloodWolves a steep trail. match CougarsPivot standing silent and watchful like arboreal sentinels match CougarsStart A nervous red fox moves cautiously through the trees with nose to the ground match LethBankForeignStart Exchange rates in Leth Deriel match LethBankDomesticStart inside of a large fork is a chamber match LethBankLobbyStart lobby here is breathtaking match LethSafe Elder Bark Circle intersects to the west with Dragon match LethCenter mighty tree known throughout Elanthia as Sana match LethTannerySalesroomStart Assistant stands beside a hide covered doorway match LethTanneryBackOfficeStart Morikai smiles up at you with a snaggle match LethMeysStart narrow stream bubbles gently from the northwest as ferns match LethInsideSnowiesStart a snow-choked passage match LethOutsideSnowiesStart a narrow track entering a crack in the rocks match LethNorthPlatformStart the platform remains despite being abandoned by its creators match LethFerry The southern bank of the Segoltha River presents a wide match LethMammothsStart spray is thrown high into the air as waves strike the enclosing reef match LethForestOfNightStart stand of lofty ironwood trees chokes the winding road match LethAlfarsManorStart perhaps the spirit of some child lost long ago to the forest match LethTemplePrayerStart Echoes of mumbled prayers and heartfelt supplications are amplified match LethTempleMeditationBranchStart Devotees and layfolk of all races and professions sit side match LethTempleAtriumStart This atrium is in the heart of an old banyan match LethTradingPostBackroomStart counter stands Eshar's appraiser busily examining match LethTradingPostMainRoomStart younger brother of Ershem the papermaker match LethEmpathStart she methodically and compassionately moves from cot to cot match LethGemShopStart Ghendil handles the business of acquiring precious materials match RathaMammothsBeach wide enough for a pair of horses and long enough for at least ten match FangCoveMammoths swaying with the beat of the waves lapping against the ballast below match LethGeneralStore Alberdeen the Provisioner is a rather rustic-looking Elf match LethVaults a dovecote made of lashed branches holds messenger pigeons that serve match LethSafe2 erdream Bower Gate match LethClothing Ongadine match LethDyer Reena the Dyer match LethBardsShop stone fount is an unexpected centerpiece to the eccentric atelier of Sinjian match LethBowyer s Trueflight Bow and Arrow Shop match LethOrigami set of silver filigree lamps set most securely on the tent poles match LethForge compensate for the normally sooty condition of the foundries match Wickerworks cramped interior of this wattle-and-daub hut match Woodcraft Scattered all around are examples of Yerui match DovesDoors busies herself about her wares with a jar of lemon oil and a soft cotton match DovesDoors2 fresh-cut elm and wild flowers fills the back room of Dove match LethCandy grandmotherly elf and the proprietor of this popular sweet shop match LethBakery Mithin the baker stands smiling and ready to serve match LethGallows [Gallows Tree match SecludedGlade their weathered boughs overhead in a protective canopy of scintillating match HodiernasSolace a fragile-looking book on a simple stand match LethSoothsayer giant bird legs supporting the hut has settled into the ground outside match IlayaTaipa stuffed head of a massive storm bull nearly distracts from the stench of decay match TamsinesRest it is the home of Trevellyn match RathaBank Lower Bank of Ratha pause 1 put look matchwait Ratha: echo ************************************** echo *** To go to the mammoths, use “.go mammoth” echo *** while just outside the 1st tier bank (on Bank Street) echo ************************************** put .Ratha %1 Vaults: put out move out put look match CrossingsVaults Alamhif Trace match LethVaults Oakenheart Circle match DirgeVaults even managed to keep some flowers growing despite the dust and dryness match HavenVaults Riverhaven matchwait ZolurenHavenFerry: goto ZolurenHavenFerryTo%D ZolurenHavenFerryToFaldesuSwimming: FaldesuSwimming: put se put s pause 1 put s put s pause 1 put se put s pause 1 put se BlueBelliedCrocs: CrocsToHavenFerry: move w put w put w move w put nw put nw move w put w put go bridge move w put w put w move w put w put nw move n put n goto ZolurenHavenFerry CaravansaryOutsideDirge: CaravansaryToDirgeVaults: CaravansaryToDirgeBank: CaravansaryToDirgeMine: CaravansaryToDirge: put go path put e move ne put e put ne move w put nw put sw move w put n move n put n put go gate goto DirgePivot CaravansaryToHaven: CaravansaryToLang: CaravansaryToTheren: CaravansaryToFerry: CaravansaryToZolurenHavenFerry: CaravansaryToHavenFerry: put n move n put n put nw move go trail put w move climb rock put n move ne pause 2 move ne put go flow move ne put n move go tunn put n move n put n move ne put ne move n put nw move n put go bridge put n move n put nw put w move w put w put w move w put w put w move w put w put w move w put w put w move nw put nw put w move w put go bridge put w move w put w put w move w put nw put n move n goto ZolurenHavenFerryTo%D ZolurenHavenFerryToFerry: ZolurenHavenFerryToZolurenHavenFerry: pause 1 echo ************************************* echo *** You have arrived at the Ferry to Riverhaven echo *** echo *** GO FERRY to board echo ************************************* Exit ZolurenHavenFerryToLang: ZolurenHavenFerryToTheren: ZolurenHavenFerryToHaven: put go ferry match ZolurenHavenFerryToHavenNoMoney Come back when you can afford the fare match ZolurenHavenFerryToHavenWait There is no ferry here match ZolurenHavenFerryToHavenWait stuck here until match ZolurenHavenFerryToHavenWait just pulled away match ZolurenHavenFerryToHavenWait you were referring match ZolurenHavenFerryToHavenBoarded your lirums and climb aboard matchwait ZolurenHavenFerryToHavenNoMoney: pause 1 echo ************************************* echo *** You do not have the necessary 35 kronars echo *** to afford this ferry ride echo ************************************* Exit ZolurenHavenFerryToHavenWait: waitfor Next departure goto ZolurenHavenFerryToHaven ZolurenHavenFerryToHavenBoarded: pause 1 echo *********************************** echo *** You have boarded the Riverhaven Ferry echo *** Waiting for arrival on the other side echo *********************************** waitfor ties the ferry off pause 1 put go dock goto RiverhavenFerry ZolurenHavenFerryToLavaForgeMMGuild: ZolurenHavenFerryToLavaForgeInside: put s put s move se put e put e move e put e put e move go bridge put e put e move se put se put e move e put e put e move e put e put e move e put e put e move e put e put e move se put s put s move go bridge put s move se goto TrailToLavaForgeInside ZolurenHavenFerryToDirge: ZolurenHavenFerryToDirgeBank: ZolurenHavenFerryToDirgeVaults: ZolurenHavenFerryToDirgeMine: HavenFerryToDirge: put s put s move se put e put e move e put e put e move go bridge put e put e move se put se put e move e put e put e move e put e put e move e put e put e move e put e put e move se put s put s move go bridge put s goto FireSprites ZolurenHavenFerryToLeth: ZolurenHavenFerryToShard: ZolurenHavenFerryToCougarsStart: ZolurenHavenFerryToBears: ZolurenHavenFerryToBloodWolves: ZolurenHavenFerryToKnifeClan: ZolurenHavenFerryToWolfClanBuilding: ZolurenHavenFerryToLeatherRepair: ZolurenHavenFerryToTigerClan: ZolurenHavenFerryToTigerClanHerbalist: ZolurenHavenFerryToWestGate: ZolurenHavenFerryToGoblins: ZolurenHavenFerryToFavors: ZolurenHavenFerryToAsemathPivot: ZolurenHavenFerryToAlchemist: ZolurenHavenFerryToBards: ZolurenHavenFerryToAcademy: ZolurenHavenFerryToClerics: ZolurenHavenFerryToDiscipline: ZolurenHavenFerryToTannery: ZolurenHavenFerryToRangers: ZolurenHavenFerryToAgility: ZolurenHavenFerryToPawnShop: ZolurenHavenFerryToRangers: ZolurenHavenFerryToBank: ZolurenHavenFerryToTradersPlaza: ZolurenHavenFerryToReflexes: ZolurenHavenFerryToArmorShop: ZolurenHavenFerryToWeaponsShop: ZolurenHavenFerryToBardsShop: ZolurenHavenFerryToGeneralStore: ZolurenHavenFerryToClericsShop: ZolurenHavenFerryToOutfitting: ZolurenHavenFerryToTownHall: ZolurenHavenFerryToVaults: ZolurenHavenFerryToTemple: ZolurenHavenFerryToAltar: ZolurenHavenFerryToShipyard: ZolurenHavenFerryToEstateHolder: ZolurenHavenFerryToCrossings: ZolurenHavenFerryToCrossingsFerry: ZolurenHavenFerryToAlchemy: ZolurenHavenFerryToEngineering: ZolurenHavenFerryToTraders: ZolurenHavenFerryToCharisma: ZolurenHavenFerryToGemShop: ZolurenHavenFerryToMAMAs: ZolurenHavenFerryToMetalRepair: ZolurenHavenFerryToChampionsPivot: ZolurenHavenFerryToCrossingsGargoyles: ZolurenHavenFerryToOgres: ZolurenHavenFerryToJadewater: ZolurenHavenFerryToPaladins: ZolurenHavenFerryToEmpaths: ZolurenHavenFerryToDeathSpirits: ZolurenHavenFerryToCrossingsBrambles: ZolurenHavenFerryToMags: ZolurenHavenFerryToLocksmith: ZolurenHavenFerryToArtificers: ZolurenHavenFerryToTriage: ZolurenHavenFerryToHerbalist: ZolurenHavenFerryToBarbarians: ZolurenHavenFerryToStamina: ZolurenHavenFerryToIntelligence: ZolurenHavenFerryToWisdom: ZolurenHavenFerryToStrength: ZolurenHavenFerryToForge: ZolurenHavenFerryToFlorist: ZolurenHavenFerryToNEGatePivot: ZolurenHavenFerryToWMGuild: ZolurenHavenFerryToMMGuild: ZolurenHavenFerryToMMGuildLeader: ZolurenHavenFerryToMiddens: ZolurenHavenFerryToRockTrolls: ZolurenHavenFerryToKaernaIntersection: ZolurenHavenFerryToKaerna: ZolurenHavenFerryToVineyard: ZolurenHavenFerryToPond: ZolurenHavenFerryToArthe: ZolurenHavenFerryToArtheShops: ZolurenHavenFerryToArtheTradersPost: ZolurenHavenFerryToArtheTree: put s put s move se put e put e move e put e put e move go bridge put e put e move se put se put e move e put e put e move e put e put e move e put e put e move e put e put e move se put s put s move go bridge put s put se move s put sw put sw move s put s put go tunn move s put s move sw put go flow put sw move sw move s pause 2 move climb rockslide put e put go trail move se put s put s move s goto CaravansaryToNEGatePivot CaravansaryToNEGatePivot: put se move se put se put se move s put sw put sw move sw put sw put s move s put s put se move sw put s put s move sw put sw put sw move s put s put se move se put s put sw move s put go bri put s move s put s put s move s put s put s move se put sw put sw move w put w put s move sw put s put s move w put w put s move se put se put go gate move sw put s put go gate move sw put s put s move s put s put s move s put w put w move w put sw put sw move sw put s put s move s put se put se move s put s put se move sw put s put s move se put se put s move sw put sw put s move s put s goto NEGatePivot ZolurenHavenFerryToStoneClanPivot: ZolurenHavenFerryToStoneClanTradersPost: ZolurenHavenFerryToStoneClanMine: ZolurenHavenFerryToScouts: ZolurenHavenFerryToGuardians: ZolurenHavenFerryToStoneClanPivot: put s put s move se put e put e move e put e put e move go bridge put e put e move se put se put e move e put e put e move e put e put e move e put e put e move e put e put e move se put s put s move go bridge put s put se move s put sw put sw move s put s put go tunn move s put s move sw put go flow put sw move sw move s pause 2 move climb rockslide put e put go trail move se put s put s move s goto CaravansaryToStoneClanPivot ZolurenHavenFerryToCrocs: put s put s move se move e put e put e move e put e put e move go bridge put e put e move se put se put e move e put e put e goto CrocsTo%D CrocsToCrocs: move nw put n pause 1 echo ********************************* echo *** GO REED to enter Blue-Bellied Crocs echo ********************************* Exit CrocsToFaldesuSwimming: put nw move n put n put n move nw pause 1 echo ******************************* echo *** DIVE WATER to swim the Faldesu echo ******************************* Exit CaravansaryToFaldesu: CaravansaryToFaldesuSwimming: CaravansaryToCrocs: put n move n put n put nw move go trail put w move climb rock put n move ne pause 2 move ne put go flow move ne put n move go tunn put n move n put n move ne put ne move n put nw move n put go bridge put n move n put nw put w move w put w put w move w put w put w move w put w move nw put n goto CrocsTo%D CaravansaryToLavaForgeMMGuild: CaravansaryToLavaForgeInside: put n move n put n put nw move go trail put w put climb rock move n move ne pause 2 move ne put go flow move ne put n move go tunn put n put n move n put ne put ne move n goto TrailToLavaForgeInside TrailToLavaForgeInside: put go trail put nw move w put w put nw move nw put w put nw move nw put n put n move nw put w put w move w put nw put n move nw put w put nw move nw put w goto LavaForgeTo%D LavaForgeToLavaForgeInside: put go arch move go curtain pause 1 echo ******************************* echo *** You have arrived at the Lava Forge echo ******************************* Exit LavaForgeToLavaForgeMMGuild: put nw move n put w put w move nw put w put nw move w put w put w move climb stair pause 1 echo ********************************* echo *** Enter the Moon Mage Guild from here echo ********************************* Exit LavaForgeMMGuild: put climb stair move e put e put e move se put e put se move e put e put s move se goto OutsideLavaForge LavaForgeInside: put go curtain goto LavaForgeOutside LavaForgeOutside: put out goto OutsideLavaForge LavaForgeToCaravansary: OutsideLavaForge: move e put se put se move e put se put s move se put e put e move e put se put s move s put se put se move e put se put se move e put e put se move go trail put s put sw move sw put s put s move go tunn put s put s move sw put go flow put sw move sw move s pause 2 move climb rockslide put e put go trail move se put s put s move s goto CaravansaryTo%D LavaForgeToDirge: put go curtain put out move e put se put se move e put se put s move se put e put e move e put se put s move s put se put se move e put se put se move e put e put se move go trail goto OutsideLavaForgeTrail Firecats: FirecatsToCaravansary: move sw put go flow put sw move sw move s pause 2 move climb rockslide put e put go trail move se put s put s move s goto CaravansaryToDirge CaravansaryToFirecats: put n move n put n put nw move go trail put w put climb rock move n move ne pause 2 move ne put go flow move ne pause 1 echo ************************* echo *** GO TRAIL to enter Firecats echo ************************* Exit CaravansaryToFireSprites: put n move n put n put nw move go trail put w put climb rock move n move ne pause 2 move ne put go flow move ne put n move go tunn put n put n move n put ne put ne move n put nw put w pause 1 echo ******************************** echo *** CLIMB GATE to enter Fire Sprites echo *** echo *** Be parepared for the internal neck damage echo ********************************** echo Exit FireSprites: FireSpritesToCaravansary: put e move se goto OutsideLavaForgeTrail OutsideLavaForgeTrail: put s put sw move sw put s put s move go tunn put s put s goto FirecatsToCaravansary CaravansaryToLeatherRepair: CaravansaryToWolfClanLeatherShop: CaravansaryToWolfClan: CaravansaryToCougarsPivot: CaravansaryToCougarsStart: CaravansaryToBears: CaravansaryToBloodWolves: CaravansaryToKnifeClan: CaravansaryToWolfClanBuilding: CaravansaryToTigerClanTradersPost: CaravansaryToBrookWestOfTigerClan: CaravansaryToTigerClan: CaravansaryToTigerClanHerbalist: CaravansaryToGrassEels: CaravansaryToBobcats: CaravansaryToLipopods: CaravansaryToGoblins: CaravansaryToFavors: CaravansaryToAsemathPivot: CaravansaryToAlchemist: CaravansaryToBards: CaravansaryToAcademy: CaravansaryToClerics: CaravansaryToDiscipline: CaravansaryToTannery: CaravansaryToRangers: CaravansaryToAgility: CaravansaryToPawnShop: CaravansaryToRangers: CaravansaryToBank: CaravansaryToTradersPlaza: CaravansaryToReflexes: CaravansaryToArmorShop: CaravansaryToWeaponsShop: CaravansaryToBardsShop: CaravansaryToGeneralStore: CaravansaryToClericsShop: CaravansaryToOutfitting: CaravansaryToTownHall: CaravansaryToVaults: CaravansaryToTemple: CaravansaryToAltar: CaravansaryToShipyard: CaravansaryToEstateHolder: CaravansaryToCrossingsFerry: CaravansaryToCrossings: CaravansaryToAlchemy: CaravansaryToEngineering: CaravansaryToTraders: CaravansaryToCharisma: CaravansaryToGemShop: CaravansaryToMAMAs: CaravansaryToMetalRepair: CaravansaryToCrossingsGargoyles: CaravansaryToJadewater: CaravansaryToPaladins: CaravansaryToEmpaths: CaravansaryToTriage: CaravansaryToHerbalist: CaravansaryToBarbarians: CaravansaryToStamina: CaravansaryToIntelligence: CaravansaryToWisdom: CaravansaryToStrength: CaravansaryToForge: CaravansaryToFlorist: CaravansaryToWMGuild: CaravansaryToMMGuild: CaravansaryToMMGuildLeader: CaravansaryToMiddens: CaravansaryToRockTrolls: CaravansaryToKaerna: CaravansaryToVineyard: CaravansaryToArthe: CaravansaryToArtheShops: CaravansaryToArtheTradersPost: CaravansaryToArtheTree: CaravansaryToStoneClanPivot: CaravansaryToStoneClanTradersPost: CaravansaryToStoneClanMine: CaravansaryToScouts: CaravansaryToGuardians: CaravansaryToSToneClanPivot: CaravansaryToReavers: CaravansaryToDeathSpirits: CaravansaryToCrossingsBrambles: CaravansaryToMags: CaravansaryToLocksmith: CaravansaryToArtificers: CaravansaryToStoneClanPivot: put se move se put se put se move s put sw put sw move sw put sw put s move s put s put se move sw put s put s move sw put sw put sw move s put s put se move se put s put sw move s put go bridge put s move s put s put s move s put s put s move se put sw put sw move w put w put s move sw put s put s goto StoneClanPivot DirgePivot: goto DirgePivotTo%D DirgeVaults: move se put sw move s goto DirgePivot DirgePivotToDirgeVaults: move n put ne put nw move go square put go door pause 1 echo echo ****************************** echo *** You have arrived at Dirge’s Vaults echo ****************************** echo Exit Reavers: ReaversToStoneClanPivot: move sw put s put s move se put se put s move sw put s put go bridge move s put s put s move s put s put s move s put se put sw move sw put w put w move s put sw put s move s goto StoneClanPivot DirgePivotToReavers: put go gate put s move s put s put e move ne put se put e move sw put w put sw move w put go road put se move se put se put se move s put sw put sw move sw put sw put s move s put s put se move sw put s put s move sw put sw pause 1 echo ******************************* echo *** You have arrived in Reaver territory echo *** GO PATH to enter echo echo *** If you are looking for Resuscitants, echo *** Tortured Souls, Snaer Hafway or Crypt Fiends echo *** Go SW and GO COPSE echo ******************************* exit DirgeBank: put out move s goto DirgePivot DirgePivotToDirgeBank: put n put go bank pause 1 echo ***************************** echo *** You have arrived at Dirge’s Bank echo ***************************** Exit DirgeMine: put go opening put e move e put go path put go gate goto DirgePivot DirgePivotToDirgeMine: move go gate put go path put w move w put go entrance pause 1 echo ************************************** echo *** You have arrived at the Wicked Burrow Mine echo *** echo *** Continue to the Estate Holder section? echo *** ( Yes / Nope ) echo ************************************** match WickedBurrowEstateYes Yes match WickedBurrowEstateYes You nod match WickedBurrowEstateNo Nope matchwait WickedBurrowEstateNo: Exit WickedBurrowEstateYes: move e put ne put e move se put d put e move ne put go crevice pause 1 echo ************************************************************ echo *** You have arrived in the Estate Holder section of the Wicked Burrow Mine echo ************************************************************ Exit WickedBurrowEstateCrevice: put go crevice put sw move w put u put nw goto WickedBurrowMineMiddle WickedBurrowMineMiddle: move w put sw put w goto DirgeMine DirgePivotToDirge: pause 1 echo ******************************** echo *** You have arrived at Dirge’s front gate echo ******************************** Exit DirgePivotToStoneClanPivot: DirgePivotToStoneClanTradersPost: DirgePivotToStoneClanMine: DirgePivotToScouts: DirgePivotToGuardians: DirgePivotToSToneClanPivot: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToStoneClanPivot DirgePivotToLeth: DirgePivotToShard: DirgePivotToCougarsStart: DirgePivotToBears: DirgePivotToBloodWolves: DirgePivotToKnifeClan: DirgePivotToWolfClanBuilding: DirgePivotToLeatherRepair: DirgePivotToTigerClan: DirgePivotToTigerClanHerbalist: DirgePivotToWestGate: DirgePivotToGoblins: DirgePivotToFavors: DirgePivotToAsemathPivot: DirgePivotToAlchemist: DirgePivotToBards: DirgePivotToAcademy: DirgePivotToClerics: DirgePivotToDiscipline: DirgePivotToTannery: DirgePivotToRangers: DirgePivotToAgility: DirgePivotToPawnShop: DirgePivotToRangers: DirgePivotToBank: DirgePivotToTradersPlaza: DirgePivotToReflexes: DirgePivotToArmorShop: DirgePivotToWeaponsShop: DirgePivotToBardsShop: DirgePivotToGeneralStore: DirgePivotToClericsShop: DirgePivotToOutfitting: DirgePivotToTownHall: DirgePivotToVaults: DirgePivotToTemple: DirgePivotToAltar: DirgePivotToShipyard: DirgePivotToEstateHolder: DirgePivotToCrossingsFerry: DirgePivotToCrossings: DirgePivotToAlchemy: DirgePivotToEngineering: DirgePivotToTraders: DirgePivotToCharisma: DirgePivotToGemShop: DirgePivotToMAMAs: DirgePivotToMetalRepair: DirgePivotToChampionsPivot: DirgePivotToCrossingsGargoyles: DirgePivotToOgres: DirgePivotToJadewater: DirgePivotToPaladins: DirgePivotToEmpaths: DirgePivotToTriage: DirgePivotToBobcats: DirgePivotToHerbalist: DirgePivotToBarbarians: DirgePivotToStamina: DirgePivotToIntelligence: DirgePivotToWisdom: DirgePivotToStrength: DirgePivotToForge: DirgePivotToFlorist: DirgePivotToWMGuild: DirgePivotToMMGuild: DirgePivotToMMGuildLeader: DirgePivotToMiddens: DirgePivotToRockTrolls: DirgePivotToKaerna: DirgePivotToVineyard: DirgePivotToArthe: DirgePivotToArtheShops: DirgePivotToArtheTradersPost: DirgePivotToArtheTree: DirgePivotToDeathSpirits: DirgePivotToCrossingsBrambles: DirgePivotToMags: DirgePivotToLocksmith: DirgePivotToArtificers: DirgePivotToPond: DirgePivotToNEGatePivot: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToNEGatePivot DirgePivotToForge: DirgePivotToLavaForgeInside: DirgePivotToLavaForgeMMGuild: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToLavaForgeInside DirgePivotToFireSprites: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToFireSprites DirgePivotToCrocs: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToCrocs DirgePivotToFerry: DirgePivotToHaven: DirgePivotToTheren: DirgePivotToLang: DirgePivotToZolurenHavenFerry: DirgePivotToHavenFerry: move go gate put s put s move s put e put ne move se put e put sw move w put sw put w move go Road goto CaravansaryToHavenFerry StoneClanPivot: goto StoneClanPivotTo%D StoneGuardians: move sw put w put w move s put sw put s move s goto StoneClanPivot StoneClanPivotToGuardians: move n put n put ne move n put e put e move ne pause 1 echo *************************** echo *** You have arrived at the Thicket echo *** echo *** Rock Guardians, Vipers echo *** Leucros and Geni may be found echo *** by GO PATH and searching out the trails echo ********************************** Exit StoneClanPivotToStoneClanPivot: pause 1 echo ****************************************** echo *** You have arrived at the Stone Clan Trader’s Guild echo ****************************************** Exit StoneClanTradersPost: put out goto StoneClanPivot StoneClanPivotToStoneClanMine: put climb trail put u move w put u put u move go entrance put go crevice put climb ladder pause 1 echo *********************************** echo *** You have arrived at the Abandoned Mine echo *** echo *** Beware the Cave Bears! echo *********************************** Exit StoneClanMine: put climb ladder put go crevice move out put d put d move e put d put climb trail goto StoneClanPivot StoneClanScouts: put climb trail goto StoneClanPivot StoneClanPivotToScouts: put climb trail pause 1 echo ************************************ echo *** GO PATH for S’lai Scouts echo *** echo *** Beisswurms are UP and CLIMB CREEPER echo *** The mine is UP and GO ENTRANCE echo *** echo *** CLIMB TRAIL to exit the area echo ************************************ Exit StoneClanPivotToStoneClanTradersPost: put go outpost pause 1 echo **************************************** echo *** You have arrived at the Stone Clan Trader’s Post echo **************************************** Exit StoneClanTradersPost: put out goto StoneClanPivot StoneClanPivotToCougarsPivot: StoneClanPivotToCougarsStart: StoneClanPivotToBears: StoneClanPivotToBloodWolves: StoneClanPivotToKnifeClan: StoneClanPivotToWolfClanBuilding: StoneClanPivotToLeatherRepair: StoneClanPivotToTigerClan: StoneClanPivotToTigerClanHerbalist: StoneClanPivotToWestGate: StoneClanPivotToGoblins: StoneClanPivotToFavors: StoneClanPivotToAsemathPivot: StoneClanPivotToAlchemist: StoneClanPivotToBards: StoneClanPivotToAcademy: StoneClanPivotToClerics: StoneClanPivotToDiscipline: StoneClanPivotToTannery: StoneClanPivotToRangers: StoneClanPivotToAgility: StoneClanPivotToPawnShop: StoneClanPivotToRangers: StoneClanPivotToBank: StoneClanPivotToTradersPlaza: StoneClanPivotToReflexes: StoneClanPivotToArmorShop: StoneClanPivotToWeaponsShop: StoneClanPivotToBardsShop: StoneClanPivotToGeneralStore: StoneClanPivotToClericsShop: StoneClanPivotToOutfitting: StoneClanPivotToTownHall: StoneClanPivotToVaults: StoneClanPivotToTemple: StoneClanPivotToAltar: StoneClanPivotToShipyard: StoneClanPivotToEstateHolder: StoneClanPivotToCrossingsFerry: StoneClanPivotToCrossings: StoneClanPivotToAlchemy: StoneClanPivotToEngineering: StoneClanPivotToTraders: StoneClanPivotToCharisma: StoneClanPivotToGemShop: StoneClanPivotToMAMAs: StoneClanPivotToMetalRepair: StoneClanPivotToChampionsPivot: StoneClanPivotToCrossingsGargoyles: StoneClanPivotToOgres: StoneClanPivotToJadewater: StoneClanPivotToPaladins: StoneClanPivotToEmpaths: StoneClanPivotToTriage: StoneClanPivotToHerbalist: StoneClanPivotToBarbarians: StoneClanPivotToStrength: StoneClanPivotToStamina: StoneClanPivotToIntelligence: StoneClanPivotToWisdom: StoneClanPivotToForge: StoneClanPivotToFlorist: StoneClanPivotToPond: StoneClanPivotToWMGuild: StoneClanPivotToMMGuild: StoneClanPivotToMMGuildLeader: StoneClanPivotToMiddens: StoneClanPivotToRockTrolls: StoneClanPivotToKaerna: StoneClanPivotToVineyard: StoneClanPivotToArthe: StoneClanPivotToArtheShops: StoneClanPivotToArtheTradersPost: StoneClanPivotToArtheTree: StoneClanPivotToDeathSpirits: StoneClanPivotToCrossingsBrambles: StoneClanPivotToBobcats: StoneClanPivotToMags: StoneClanPivotToLocksmith: StoneClanPivotToArtificers: StoneClanPivotToFerry: StoneClanPivotToLeth: StoneClanPivotToShard: StoneClanPivotToNEGatePivot: move w put w put s move se put se put go gate move sw put s put go gate move sw put s put s move s put s put s move s put w put w move w put sw put sw move sw put s put s move s put se put se move s put s put se move sw put s put s move se put se put s move sw put sw put s move s put s goto NEGatePivot StoneClanPivotToReavers: move n put n put ne move n put e put e move ne put ne put nw move n put n put n move n put n put n move go bridge put n put n move ne put n put nw move nw put n move n put ne pause 1 echo ******************************* echo *** You have arrived in Reaver territory echo *** GO PATH to enter echo echo *** If you are looking for Resuscitants, echo *** Tortured Souls, Snaer Hafway or Crypt Fiends echo *** Go SW and GO COPSE echo ******************************* exit StoneClanPivotToDirgeBank: StoneClanPivotToDirgeVaults: StoneClanPivotToDirgeMine: StoneClanPivotToDirge: move n put n put ne move n put e put e move ne put ne put nw move n put n put n move n put n put n move go bridge put n put n move ne put n put nw move nw put n put n move ne put ne put ne move n put n put ne move nw put n put n move n put ne put ne move ne put ne put n move nw put nw put nw move nw goto CaravansaryToDirge StoneClanPivotToLavaForgeMMGuild: StoneClanPivotToLavaForgeInside: StoneClanPivotToFirecats: StoneClanPivotToFireSprites: StoneClanPivotToCrocs: StoneClanPivotToHaven: StoneClanPivotToTheren: StoneClanPivotToLang: StoneClanPivotToZolurenHavenFerry: StoneClanPivotToFaldesu: StoneClanPivotToFaldesuSwimming: StoneClanPivotToCaravansary: move n put n put ne move n put e put e move ne put ne put nw move n put n put n move n put n put n move go bridge put n put n move ne put n put nw move nw put n put n move ne put ne put ne move n put n put ne move nw put n put n move n put ne put ne move ne put ne put n move nw put nw put nw move nw goto Caravansary Caravansary: goto CaravansaryTo%D ArthePivot: goto ArthePivotTo%D ArthePivotToArtheTradersPost: move n put n put n move n put w put go door pause 1 echo *************************************** echo *** You have arrived at Arthe Dale’s Trader’s Post echo *************************************** Exit ArtheTree: put n move e put s move s goto ArthePivot ArthePivotToArtheTree: put n put n move w put s pause 1 echo ******************************************* echo *** You have arrived at the Arthe Dale Swimming Hole echo ******************************************* Exit ArtheShops: put w put s move s put s move s goto ArthePivot ArtheTradersPost: put out put e move s put s put s move s goto ArthePivot ArthePivotToArthePivot: ArthePivotToArthe: pause 1 echo *************************** echo *** You have arrived in Arthe Dale echo *************************** Exit ArtheOutsideGate: put go gate ArthePivotToLeatherRepair: ArthePivotToWolfClanLeatherShop: ArthePivotToWolfClan: ArthePivotToCougarsPivot: ArthePivotToBears: ArthePivotToTigerClanTradersPost: ArthePivotToBrookWestOfTigerClan: ArthePivotToGrassEels: ArthePivotToBobcats: ArthePivotToLipopods: ArthePivotToCougarsStart: ArthePivotToBloodWolves: ArthePivotToKnifeClan: ArthePivotToWolfClanBuilding: ArthePivotToTigerClan: ArthePivotToTigerClanHerbalist: ArthePivotToWestGate: ArthePivotToGoblins: ArthePivotToFavors: ArthePivotToAsemathPivot: ArthePivotToAlchemist: ArthePivotToBards: ArthePivotToAcademy: ArthePivotToClerics: ArthePivotToDiscipline: ArthePivotToTannery: ArthePivotToRangers: ArthePivotToAgility: ArthePivotToPawnShop: ArthePivotToRangers: ArthePivotToBank: ArthePivotToTradersPlaza: ArthePivotToReflexes: ArthePivotToArmorShop: ArthePivotToWeaponsShop: ArthePivotToBardsShop: ArthePivotToGeneralStore: ArthePivotToClericsShop: ArthePivotToOutfitting: ArthePivotToTownHall: ArthePivotToVaults: ArthePivotToTemple: ArthePivotToAltar: ArthePivotToShipyard: ArthePivotToEstateHolder: ArthePivotToCrossingsFerry: ArthePivotToCrossings: ArthePivotToAlchemy: ArthePivotToEngineering: ArthePivotToTraders: ArthePivotToCharisma: ArthePivotToGemShop: ArthePivotToMAMAs: ArthePivotToMetalRepair: ArthePivotToChampionsPivot: ArthePivotToCrossingsGargoyles: ArthePivotToOgres: ArthePivotToJadewater: ArthePivotToPaladins: ArthePivotToEmpaths: ArthePivotToTriage: ArthePivotToHerbalist: ArthePivotToBarbarians: ArthePivotToStrength: ArthePivotToStamina: ArthePivotToIntelligence: ArthePivotToWisdom: ArthePivotToForge: ArthePivotToFlorist: ArthePivotToPond: ArthePivotToWMGuild: ArthePivotToMMGuild: ArthePivotToMMGuildLeader: ArthePivotToMiddens: ArthePivotToRockTrolls: ArthePivotToKaerna: ArthePivotToVineyard: ArthePivotToStoneClanPivot: ArthePivotToStoneClanTradersPost: ArthePivotToStoneClanMine: ArthePivotToScouts: ArthePivotToGuardians: ArthePivotToSToneClanPivot: ArthePivotToCrocs: ArthePivotToHaven: ArthePivotToTheren: ArthePivotToLang: ArthePivotToZolurenHavenFerry: ArthePivotToFaldesu: ArthePivotToFaldesuSwimming: ArthePivotToDirge: ArthePivotToDirgeBank: ArthePivotToDirgeVaults: ArthePivotToDirgeMine: ArthePivotToLavaForgeMMGuild: ArthePivotToLavaForgeInside: ArthePivotToFirecats: ArthePivotToFireSprites: ArthePivotToReavers: ArthePivotToDeathSpirits: ArthePivotToCrossingsBrambles: ArthePivotToMags: ArthePivotToLocksmith: ArthePivotToArtificers: ArthePivotToLeth: ArthePivotToShard: ArthePivotToFerry: ArthePivotToNEGatePivot: put go gate put up move up put w put s move s put se put sw move s put s put se move se put s put sw move sw put s put s move s goto NEGatePivot ArthePivotToArtheShops: put n put n move n put n move e pause 1 echo ******************************************* echo *** You have arrived in Arthe Dale’s Shopping District echo ******************************************* Exit NEGatePivot: goto NEGatePivotTo%D NEGateInside: move go gate goto NEGatePivot NEGatePivotToNEGatePivot: pause 1 echo ********************************** echo *** You have arrived at Crossing’s NE Gate echo ********************************** Exit WMGuildInside: put go door goto WMGuild WMGuild: put s move sw put w put sw move nw put w put w move nw goto NEGatePivot NEGatePivotToWMGuild: move se put e put e move se put ne put e move ne put n pause 1 echo ******************************************* echo *** You have arrived at Crossing’s Warrior Mage Guild echo *** echo *** GO DOOR to enter the Guild itself echo *** then GO ARCH to speak with Guildleader Gauthus echo ******************************************* Exit MMGuildLeader: move ne move se move e move s move se move sw put touch handp move s move w move sw move nw move w move n put go stair move s move e move se move ne move e move n put go door goto MMGuildGate MMGuildGate: pause 1 echo *************************************** echo *** This is the Gate outside the Moon Mage Guild echo *** Type CONT or GTG to continue past it. echo *************************************** match MMGuild Yes match MMGuild You nod match MMGuild Cont match MMGuild GTG match MMGuildGateStop Nope matchwait MMGuild: put go gate move n move n move w move sw move sw move w move w move w move n move nw move nw move w put go sed move w move nw move n move n move u move n move n goto NEGatePivot NEGatePivotToMMGuild: move go footpath put s put d move s put s put se move e put e put e move se put se move s put e put e move e put ne put ne move e put s put s move go gate pause 1 echo ************************************** echo *** You have arrived at the Moon Mage Guild Gate echo *** CONTinue on to the Guildleader? (or GTG) echo ************************************ match MMGuildToGuildleader Yes match MMGuildToGuildleader You nod match MMGuildToGuildleader Cont match MMGuildToGuildleader GTG match MMGuildGateStop Nope matchwait MMGuildGateStop: echo Okay! Exit MMGuildToGuildleader: echo Okay! pause 1 move go door put s put w move sw put nw put w move n put go stair put s move e put se put ne move e put n put touch handp move ne put nw put n move w put nw put sw pause 1 echo ********************************** echo *** You have arrived at Guildleader Kssarh echo ************************************ Exit Middens: move w put nw put n move n put up put n move n goto NEGatePivot NEGatePivotToMiddens: move go footpath put s put d move s put s put se move e pause 1 echo ************************** echo *** Go EAST to enter the Middens echo *** echo *** Louts are right there echo *** GO SEDGE to return from them echo ************************** Exit NEGateCryptInside: put up goto NEGateCryptUp NEGateCryptUp: put out goto NEGateCryptOutside NEGateCryptOutside: move s put s put go gate move s put go path move w goto NEGatePivot NEGatePivotToNEGateCrypt: move e put go path put n move go gate put n put n move go crypt move go crack pause 1 echo ****************************** echo *** You have arrived in Ghoul territory echo *** echo *** ASSESS does not work here due to lighting echo *** This is the only room of the crypt where echo *** You may see directions without light echo ****************************** Exit NEWilds: put s put s move se put go trail put w goto NEGatePivot NEGatePivotToNEWilds: move e put go trail put nw move n put go door pause 1 echo ************************************ echo *** You have arrived in Grendel territory echo *** echo *** Wood Trolls, Grendels, Boars and Cougars echo ************************************ Exit NEGatePivotToRockTrolls: NEGatePivotToKaerna: move n put n move n put ne put ne move n put nw put nw move n put n put ne move nw put n put n move nw put nw put n move n put n put ne move ne put ne put e move e put e put n move n put n put n move n put n move ne put go gate put n goto KaernaTo%D KaernaToKaerna: pause 1 echo ******************************* echo *** You have arrived in Kaerna Village echo ******************************* Exit KaernaToRockTrolls: move w put w pause 1 echo ************************************* echo *** Climb barricade to enter Rock Troll territory echo ************************************* Exit RockTrolls: put e put e goto KaernaToNEGatePivot KaernaIntersection: KaernaToNEGatePivot: move s put go gate put sw move s put s put s move s put s put s move w put w put w move sw put sw put sw move s put s put s move se put se put s move s put se put sw move s put s put se move se put s put sw move sw put s move s put s goto NEGatePivot NEGatePivotToVineyard: move n put n put n move go trail pause 1 echo ****************************** echo *** You have arrived at the Vineyard echo *** echo *** GO FARM for Rats (‘go door’ to return) echo *** CLIMB HILL for Wood Trolls and Rams echo *** echo *** N/NE and CLIMB STILE for the Estate Holder area echo ******************************************* Exit Vineyard: put go trail move s put s put s goto NEGatePivot NEGatePivotToLeatherRepair: NEGatePivotToWolfClanLeatherShop: NEGatePivotToWolfClan: NEGatePivotToCougarsPivot: NEGatePivotToBears: NEGatePivotToTigerClanTradersPost: NEGatePivotToBrookWestOfTigerClan: NEGatePivotToGrassEels: NEGatePivotToBobcats: NEGatePivotToLipopods: NEGatePivotToCougarsStart: NEGatePivotToBloodWolves: NEGatePivotToKnifeClan: NEGatePivotToWolfClanBuilding: NEGatePivotToTigerClan: NEGatePivotToTigerClanHerbalist: NEGatePivotToWestGate: NEGatePivotToGoblins: NEGatePivotToFavors: NEGatePivotToAlchemist: NEGatePivotToBards: NEGatePivotToAcademy: NEGatePivotToClerics: NEGatePivotToDiscipline: NEGatePivotToTannery: NEGatePivotToRangers: NEGatePivotToAgility: NEGatePivotToPawnShop: NEGatePivotToRangers: NEGatePivotToAsemathPivot: move go gate put w put w move w put s put s move w put s move w put w put w move w goto AsemathPivot NEGatePivotToArthe: NEGatePivotToArtheShops: NEGatePivotToArtheTradersPost: NEGatePivotToArtheTree: NEGatePivotToArthePivot: move n put n put n move ne put ne put n move nw put nw put n move n put ne put nw move n put n put e move d put d move go gate goto ArthePivot NEGatePivotToStoneClanPivot: NEGatePivotToStoneClanTradersPost: NEGatePivotToStoneClanMine: NEGatePivotToScouts: NEGatePivotToGuardians: NEGatePivotToSToneClanPivot: NEGatePivotToCrocs: NEGatePivotToHaven: NEGatePivotToTheren: NEGatePivotToLang: NEGatePivotToZolurenHavenFerry: NEGatePivotToFaldesu: NEGatePivotToFaldesuSwimming: NEGatePivotToDirge: NEGatePivotToDirgeBank: NEGatePivotToDirgeVaults: NEGatePivotToDirgeMine: NEGatePivotToLavaForgeMMGuild: NEGatePivotToLavaForgeInside: NEGatePivotToFirecats: NEGatePivotToFireSprites: NEGatePivotToReavers: NEGatePivotToStoneClanPivot: put n put n move n put ne put ne move n put nw put nw move n put n put ne move nw put n put n move nw put nw put n move n put n put ne move ne put ne put e move e put e put n move n put n put n move n put n put ne move go gate put n put ne move go gate put nw put nw move n put e move e goto StoneClanPivot NEGatePivotToStrength: NEGatePivotToIntelligence: NEGatePivotToWisdom: NEGatePivotToCrossingsGargoyles: NEGatePivotToJadewater: NEGatePivotToPaladins: NEGatePivotToEmpaths: NEGatePivotToTriage: NEGatePivotToHerbalist: NEGatePivotToBarbarians: NEGatePivotToStamina: NEGatePivotToForge: NEGatePivotToFlorist: NEGatePivotToDeathSpirits: NEGatePivotToCrossingsBrambles: NEGatePivotToMags: NEGatePivotToChampionsPivot: Move go gate put w put w move w put s put s move w put s goto ChampionsPivot NEGatePivotToBank: NEGatePivotToTradersPlaza: NEGatePivotToReflexes: NEGatePivotToArmorShop: NEGatePivotToWeaponsShop: NEGatePivotToBardsShop: NEGatePivotToGeneralStore: NEGatePivotToClericsShop: NEGatePivotToOutfitting: NEGatePivotToTownHall: NEGatePivotToVaults: NEGatePivotToTemple: NEGatePivotToAltar: NEGatePivotToShipyard: NEGatePivotToEstateHolder: NEGatePivotToCrossingsFerry: NEGatePivotToCrossings: NEGatePivotToFerry: NEGatePivotToAlchemy: NEGatePivotToEngineering: NEGatePivotToTraders: NEGatePivotToCharisma: NEGatePivotToGemShop: NEGatePivotToMAMAs: NEGatePivotToMetalRepair: NEGatePivotToLocksmith: NEGatePivotToArtificers: NEGatePivotToLeth: NEGatePivotToShard: NEGatePivotToCrossingsBankPivot: move go gate put w put s move s put s put s move sw put s put s move s put w put w move w put go bank goto CrossingsBankPivot ChampionsPivot: goto ChampionsPivotTo%D ChampionsPivotToChampionsPivot: pause 1 echo ********************************* echo *** You have arrived at Champions’ Square! echo ********************************* Exit CrossingsBrambles: put sw put s move s put s put se move se put se put s move s put s put s move w goto CrossingsDeathSpirits CrossingsDeathSpirits: put sw put sw move sw goto CrossingsGargoyles CrossingsGargoyles: put s put sw move s put go arch put e move e goto OutsideJadewater Jadewater: put go gate goto OutsideJadewater OutsideJadewater: move e put e goto SouthOfPaladins Paladins: put out put s move s goto SouthOfPaladins SouthOfPaladins: move s put e move s put s put w move s goto ChampionsPivot ChampionsPivotToCrossingsBrambles: ChampionsPivotToDeathSpirits: ChampionsPivotToCrossingsGargoyles: ChampionsPivotToJadewater: ChampionsPivotToPaladins: move n put e put n move n put w put n goto HeraldStreetTo%D HeraldStreetToPaladins: move n put n put go guild pause 1 echo ********************************** echo *** You have arrived at the Paladin’s Guild echo *** echo *** GO ARCH to speak with Guildleader Verika echo *** Go WEST for the Donation Weapons Rack echo ********************************** Exit HeraldStreetToCrossingsBrambles: HeraldStreetToDeathSpirits: HeraldStreetToCrossingsGargoyles: HeraldStreetToJadewater: move w put w goto JadewaterBreakTo%D JadewaterBreakToJadewater: put go gate pause 1 echo ************************************** echo *** You have arrived at the Jadewater Mansion echo *** echo *** PULL BELL to receive a Mentor’s assistance echo ************************************** Exit JadewaterBreakToCrossingsBrambles: JadewaterBreakToDeathSpirits: JadewaterBreakToCrossingsGargoyles: move w put w put go arch move n put ne put n goto CrossingsGargsBreakTo%D CrossingsGargsBreakToCrossingsGargoyles: pause 1 echo ********************************** echo *** You have arrived at the Monastery echo *** echo *** GO GULLY to enter Gargoyle territory echo ********************************** Exit CrossingsGargsBreakToCrossingsBrambles: CrossingsGargsBreakToDeathSpirits: move ne put ne put ne goto CrossingsDSBreakTo%D CrossingsDSBreakToDeathSpirits: pause 1 echo ********************************** echo *** You have arrived at the Monastery echo *** echo *** GO FENCE to enter Death Spirit territory echo ********************************** Exit CrossingsDSBreakToCrossingsBrambles: move e put n put n move n put n put nw move nw put nw put n move n put n put ne pause 1 echo ******************************* echo *** You have arrived at the Brambles echo *** echo *** GO BRIDGE for Trollkins, Badgers and Pothanits echo **************************************** Exit CrossingsEmpathTriage: put go arch put s goto ChampionsPivot ChampionsPivotToTriage: put n put go arch pause 1 echo ******************************************* echo *** You have arrived at the Martyr Saedelthorps Triage echo *** echo *** JOIN LIST for healing echo ******************************************* echo Exit CrossingsInfirmary: put e goto CrossingsEmpaths CrossingsEmpaths: put out move s goto ChampionsPivot ChampionsPivotToEmpaths: move n put go door pause 1 echo ***************************************** echo *** You have arrived at the Crossing’s Empaths Guild echo *** echo *** Go NE to speak with Guildleader Salvur echo *** Go WEST for the Infirmary echo ***************************************** Exit CrossingsHerbalist: put out put e move s goto ChampionsPivot ChampionsPivotToHerbalist: move n put w move go shop pause 1 echo ************************************ echo *** You have arrived at Mauriga’s Botanicals echo ************************************ pause 1 put read catalog Exit CrossingsStamina: Barbarians: put out goto ChampionsPivot ChampionsPivotToBarbarians: move go guild pause 1 echo ******************************************* echo *** You have arrived at the Crossing’s Barbarians Guild echo *** echo *** CLIMB STAIR, GO OPENING for the echo *** Barbarian Guild’s Donations Weapon Rack echo ******************************************* Exit ChampionsPivotToStamina: move go structure pause 1 echo ********************************* echo *** You have arrived at Stamina Training echo ********************************* Exit ChampionsPivotToStrength: move w put s put s move go bazaar put go path move sw goto TGSTo%D CrossingsForge: put n put n move go door put n goto ChampionsPivot ChampionsPivotToForge: move s put go build put s pause 1 echo *********************************** echo *** You have arrived at the Crossing’s Forge echo *********************************** Exit Florist: put out put n move e goto ChampionsPivot ChampionsPivotToFlorist: move w put s put go shop pause 1 echo ********************************** echo *** You have arrived at Orielda’s Blossoms echo ********************************** pause 1 put read catalog Exit ChampionsPivotToMags: ChampionsPivotToReflexes: ChampionsPivotToTradersPlaza: move w put s put s move go bazaar goto MagsTo%D ChampionsPivotToLeatherRepair: ChampionsPivotToWolfClanLeatherShop: ChampionsPivotToWolfClan: ChampionsPivotToCougarsPivot: ChampionsPivotToBears: ChampionsPivotToTigerClanTradersPost: ChampionsPivotToBrookWestOfTigerClan: ChampionsPivotToGrassEels: ChampionsPivotToBobcats: ChampionsPivotToLipopods: ChampionsPivotToCougarsStart: ChampionsPivotToBloodWolves: ChampionsPivotToKnifeClan: ChampionsPivotToWolfClanBuilding: ChampionsPivotToTigerClan: ChampionsPivotToTigerClanHerbalist: ChampionsPivotToWestGate: ChampionsPivotToOgres: ChampionsPivotToGoblins: ChampionsPivotToFavors: ChampionsPivotToBards: ChampionsPivotToAcademy: ChampionsPivotToClerics: ChampionsPivotToIntelligence: ChampionsPivotToWisdom: ChampionsPivotToDiscipline: ChampionsPivotToTannery: ChampionsPivotToRangers: ChampionsPivotToAgility: ChampionsPivotToPawnShop: ChampionsPivotToRangers: ChampionsPivotToAlchemist: ChampionsPivotToAsemathPivot: move w put w put w move w goto AsemathPivot ChampionsPivotToBank: ChampionsPivotToArmorShop: ChampionsPivotToWeaponsShop: ChampionsPivotToBardsShop: ChampionsPivotToGeneralStore: ChampionsPivotToClericsShop: ChampionsPivotToOutfitting: ChampionsPivotToTownHall: ChampionsPivotToVaults: ChampionsPivotToTemple: ChampionsPivotToAltar: ChampionsPivotToShipyard: ChampionsPivotToEstateHolder: ChampionsPivotToCrossingsFerry: ChampionsPivotToCrossings: ChampionsPivotToFerry: ChampionsPivotToAlchemy: ChampionsPivotToEngineering: ChampionsPivotToLocksmith: ChampionsPivotToTraders: ChampionsPivotToCharisma: ChampionsPivotToGemShop: ChampionsPivotToMAMAs: ChampionsPivotToMetalRepair: ChampionsPivotToPond: ChampionsPivotToLeth: ChampionsPivotToShard: ChampionsPivotToCrossingsBankPivot: move w put s put s move go bazaar put go path put sw move s put s move se put go bank goto CrossingsBankPivot ChampionsPivotToWMGuild: ChampionsPivotToMMGuild: ChampionsPivotToMMGuildLeader: ChampionsPivotToMiddens: ChampionsPivotToRockTrolls: ChampionsPivotToKaerna: ChampionsPivotToVineyard: ChampionsPivotToArthe: ChampionsPivotToArtheShops: ChampionsPivotToArtheTradersPost: ChampionsPivotToArtheTree: ChampionsPivotToStoneClanPivot: ChampionsPivotToStoneClanTradersPost: ChampionsPivotToStoneClanMine: ChampionsPivotToScouts: ChampionsPivotToGuardians: ChampionsPivotToSToneClanPivot: ChampionsPivotToCrocs: ChampionsPivotToHaven: ChampionsPivotToTheren: ChampionsPivotToLang: ChampionsPivotToZolurenHavenFerry: ChampionsPivotToFaldesu: ChampionsPivotToFaldesuSwimming: ChampionsPivotToDirge: ChampionsPivotToDirgeBank: ChampionsPivotToDirgeVaults: ChampionsPivotToDirgeMine: ChampionsPivotToLavaForgeMMGuild: ChampionsPivotToLavaForgeInside: ChampionsPivotToFirecats: ChampionsPivotToFireSprites: ChampionsPivotToReavers: ChampionsPivotToNEGatePivot: move n put e put n move n put e put e move e put go gate goto NeGatePivot CrossingsBankPivot: goto CrossingsBankPivotTo%D CrossingsGemShop: put out put out move s put s move w put go bank goto CrossingsBankPivot CrossingsBankPivotToGemShop: put out move e put n put n move go shop put go room pause 1 echo ********************************** echo *** You have arrived at Grisgonda’s Gem Shop echo *** echo *** You may sell gems to the Appraiser echo *** Go OUT for the regular shop echo ********************************** Exit CrossingsMamas: put out move e put s move w put go bank goto CrossingsBankPivot CrossingsBankPivotToMamas: move out put e put n move w put go door echo ************************** echo *** You have arraved at MAMAS echo *** echo *** PUT <ITEM> ON COUNTER echo *** for them to weigh it for you echo **************************** Exit CrossingsMetalRepair: put out put w move w put go bank goto CrossingsBankPivot CrossingsBankPivotToMetalRepair: move out put e move e put go forge pause 1 echo ****************************************** echo *** You have arrived at Catrox’s Forge echo *** echo *** GIVE CATROX the item needing repairs echo *** or ASK CATROX ABOUT REPAIR ALL echo *** for him to repair what he may that you are wearing echo ****************************************** Exit CrossingsFerry: put go square put ne move e put e put e move e put ne put go bridge move ne put go bank goto CrossingsBankPivot CrossingsBankPivotToShard: CrossingsBankPivotToLeth: CrossingsBankPivotToFerry: CrossingsBankPivotToCrossingsFerry: move out put sw put go bridge move sw put w put w move w put w put sw move go pier goto CrossingsFerryTo%D CrossingsFerryToFerry: CrossingsFerryToCrossingsFerry: pause 1 echo ********************************** echo *** You have arrived at the Crossings Ferry echo *** echo *** GO FERRY to board echo ********************************** Exit CrossingsFerryToLeth: CrossingsFerryToShard: put go ferry match CrossingsFerryToLethNoMoney Come back when you can afford the fare match CrossingsFerryToLethWait There is no ferry here match CrossingsFerryToLethWait you were referring match CrossingsFerryToLethWait just pulled away match CrossingsFerryToLethBoarded your kronars and climb aboard matchwait CrossingsFerryToLethNoMoney: pause 1 echo *********************************** echo *** You do not have the necessary 35 kronars echo *** to afford this ferry ride echo *********************************** Exit CrossingsFerryToLethWait: waitfor pulls into the dock pause 1 goto CrossingsFerryToLeth CrossingsFerryToLethBoarded: pause 1 echo ******************************** echo *** You have boarded the Crossing’s Ferry echo *** Waiting for arrival on the other side echo ******************************** waitfor reaches the dock and its crew ties the ferry off pause 1 put go dock goto LethFerry CrossingsBankPivotToJail: CrossingsBankPivotToArtificers: CrossingsBankPivotToTraders: CrossingsBankPivotToCharisma: CrossingsBankPivotToAlchemy: CrossingsBankPivotToEngineering: move out put sw put go bridge move n put n move w put nw move w goto CrossingsSocietyPivotTo%D CrossingsSocietyPivotToJail: move w put w put w move go house pause 1 echo ************************************* echo *** You have arrived at Crossing’s Guard House echo ************************************* Exit CrossingsJail: put w put w move out put e put e move e goto CrossingsSocietiesToCrossingsBankPivot CrossingsSocietyPivotToArtificers: put w move w put w move n put n put go shop pause 1 echo ******************************** echo *** You have arrived at Herilo’s Artifacts echo ******************************** pause 1 put shop Exit CrossingsSocietyPivotToAlchemy: put go building pause 1 echo ******************************************* echo *** You have arrived at the Crossing’s Alchemy Society echo ******************************************* Exit CrossingsSocietyPivotToEngineering: move w put go building pause 1 echo ********************************************** echo *** You have arrived at the Crossing’s Engineering Society echo ********************************************** Exit CrossingsArtificers: put out put s move s put e put e move e goto CrossingsSocietiesToCrossingsBankPivot CrossingsEngineering: put go door move e goto CrossingsSocietiesToCrossingsBankPivot CrossingsAlchemy: put n put n move go door goto CrossingsSocietiesToCrossingsBankPivot CrossingsSocietyPivotToTraders: move w put w put go guild pause 1 echo ****************************************** echo *** You have arrived at the Crossing’s Trader’s Guild echo ****************************************** Exit CrossingsSocietyPivotToCharisma: move w put w put n move go cottage pause 1 echo ********************************* echo *** You have arrived at Charisma Training echo ********************************* Exit CrossingsCharisma: put out move s put e move e goto CrossingsSocietiesToCrossingsBankPivot CrossingsTraders: put out put e move e goto CrossingsSocietiesToCrossingsBankPivot CrossingsSocietiesToCrossingsBankPivot: move e put se put e move s put s put go bridge move ne put go bank goto CrossingsBankPivot CrossingsShipyard: put go gate move ne put go bridge move ne put go bank goto CrossingsBankPivot CrossingsBankPivotToShipyard: move out put sw put go bridge move sw put go gate pause 1 echo **************************** echo *** You have arrived at the Shipyard echo **************************** Exit CrossingsBankPivotToPond: move out put nw move n put n move n put go pond pause 1 echo ************************** echo *** You have arrived at the Pond echo ************************** Exit CrossingsEstateHolder: put out put out move climb step put go arch put go door move out put nw move nw put nw put go bridge move ne put go bank goto CrossingsBankPivot CrossingsBankPivotToEstateHolder: move out put sw put go bridge move se put se put se move go veranda put go door put go arch move climb step put go door pause 1 echo ************************************* echo *** You have arrived at the Strand Bank echo *** echo *** GO ALCOVE for Jasmine’s Gem Shop echo *** GO DOOR for Foreign Exchange Services echo *** OUT and GO PASSAGE for the Curio Shop echo ************************************* Exit CrossingsAltar: put go door put s goto CrossingsTemple CrossingsTemple: move go gate put ne put go bank goto CrossingsBankPivot CrossingsBankPivotToAltar: CrossingsBankPivotToTemple: move out put sw put go gate goto CrossingsTempleTo%D CrossingsTempleToTemple: pause 1 echo ************************************ echo *** You have arrived at the Crossing’s Temple echo ************************************ Exit CrossingsTempleToAltar: move n put go door pause 1 echo ****************************************** echo *** You have arrived at the Altar to offer up favor orbs echo ****************************************** Exit CrossingsBankPivotToCrossings: CrossingsBankPivotToBank: put go win pause 1 echo ***************************************** echo *** You have arrived at the Crossing’s Bank Window echo ***************************************** Exit CrossingsBankLobby: CrossingsBankExchange: put out goto CrossingsBankPivot CrossingsTradersPlaza: CrossingsTradersPlazaToMags: move go gate put go arch goto MagsToCrossingsBankPivot CrossingsReflexes: MagsToCrossingsBankPivot: put out move go path put sw goto CrossingsTGSSouth CrossingsBankPivotToReflexes: CrossingsBankPivotToTradersPlaza: CrossingsBankPivotToMags: move out put nw put n move n put ne move go path goto MagsTo%D MagsToMags: pause 1 echo *********************** echo *** You have arrived at Mags echo *********************** Exit MagsToReflexes: put go collegium pause 1 echo ******************************* echo *** You have arrived at Reflex Training echo ******************************* Exit MagsToTradersPlaza: put se move go plaza pause 1 echo ********************************** echo *** You have arrived at the Trader’s Plaza echo *** echo *** READ BOARD for a listing of shops currently open echo *** echo *** ASK GUARD ABOUT <SHOP> echo *** to get an escort directly to the shop echo *** echo *** ASK GUARD ABOUT FOYER echo *** To return to this room when done echo ********************************** Exit CrossingsArmorShop: CrossingsArmorShopToCrossingsBankPivot: put out put out move out put se goto CrossingsTGSSouth TownGreenPond: CrossingsWeaponsShop: put out put s goto CrossingsTGSSouth CrossingsBardsShop: put out move e put e put e goto CrossingsTGSSouth CrossingsTGSSouth: move s put s move se put go bank goto CrossingsBankPivot CrossingsLocksmith: put out put s move s put e put e move e put e put e move se put go bank goto CrossingsBankPivot CrossingsBankPivotToLocksmith: move out put nw put w move w put w put w move w put n put n move go door pause 1 echo ************************************ echo *** You have arrived at Ragge’s Locksmithing echo ************************************ pause 1 put read catalog Exit CrossingsBankPivotToOutfitting: CrossingsBankPivotToBardsShop: CrossingsBankPivotToArmorShop: CrossingsBankPivotToWeaponsShop: CrossingsBankPivotToStrength: move out put nw put n move n goto TGSTo%D TGSToOutfitting: move w put w put w move w put w move go building pause 1 echo ***************************************** echo *** You have arrived at Crossing’s Outfitting Society echo ***************************************** Exit CrossingsOutfitting: put go door move e put e put e move e put e goto CrossingsTGSSouth TGSToBardsShop: move w put w put w move go shop pause 1 echo ******************************* echo *** You have arrived at the Bard’s Shop echo ******************************* pause 1 put read catalog Exit TGSToWeaponsShop: move n put go shop pause 1 echo ********************************** echo *** You have arrived at Milgrym’s Weapons echo ********************************** pause 1 put shop Exit TGSToArmorShop: TGSToStrength: move nw put go shop goto CrossingsArmorShopTo%D CrossingsArmorShopToArmorShop: pause 1 echo ********************************* echo *** You have arrived at Tembeg’s Armory echo ********************************* pause 1 put shop Exit CrossingsArmorShopToStrength: put go door move go room pause 1 echo ******************************** echo *** You have arrived at Strength Training echo ******************************* Exit CrossingsGeneralStore: put out move s put s put se goto CrossingsBankPivot CrossingsBankPivotToGeneralStore: move out put nw put n move go shop pause 1 echo ********************************* echo *** You have arrived at Berolt’s Dry Goods echo ********************************* pause 1 put read catalog Exit ClericsShop: put out put out move e move se put go bank goto CrossingsBankPivot CrossingsBankPivotToClericsShop: move out put nw put w move go shop pause 1 echo ***************************************** echo *** You have arrived at the Brother Durantine’s Shop echo ***************************************** pause 1 put read catalog Exit CrossingsVaults: move se put go bank goto CrossingsBankPivot CrossingsBankPivotToVaults: move out put nw put go square move go door pause 1 echo ********************************** echo *** You have arrived at the Crossing Vaults echo ********************************** Exit CrossingsTownHall: put out put out move w put s put se move go bank goto CrossingsBankPivot CrossingsBankPivotToTownHall: move out put nw put n move e put go hall move go coll office pause 1 echo ************************************** echo *** You have arrived at the Crossing’s Town Hall echo *** echo *** PAY # to pay your debt echo ***OUT and GO REG OFFICE for a visa echo ************************************** Exit CrossingsBankPivotToLeatherRepair: CrossingsBankPivotToWolfClanLeatherShop: CrossingsBankPivotToWolfClan: CrossingsBankPivotToCougarsPivot: CrossingsBankPivotToBears: CrossingsBankPivotToTigerClanTradersPost: CrossingsBankPivotToBrookWestOfTigerClan: CrossingsBankPivotToGrassEels: CrossingsBankPivotToBobcats: CrossingsBankPivotToLipopods: CrossingsBankPivotToCougarsStart: CrossingsBankPivotToBloodWolves: CrossingsBankPivotToKnifeClan: CrossingsBankPivotToWolfClanBuilding: CrossingsBankPivotToTigerClan: CrossingsBankPivotToTigerClanHerbalist: CrossingsBankPivotToWestGate: CrossingsBankPivotToOgres: CrossingsBankPivotToGoblins: CrossingsBankPivotToFavors: CrossingsBankPivotToBards: CrossingsBankPivotToAcademy: CrossingsBankPivotToClerics: CrossingsBankPivotToIntelligence: CrossingsBankPivotToWisdom: CrossingsBankPivotToDiscipline: CrossingsBankPivotToTannery: CrossingsBankPivotToRangers: CrossingsBankPivotToAgility: CrossingsBankPivotToPawnShop: CrossingsBankPivotToRangers: CrossingsBankPivotToAlchemist: CrossingsBankPivotToAsemathPivot: move out put nw put n move n put n put n move n put n put w move w goto AsemathPivot CrossingsBankPivotToCrossingsGargoyles: CrossingsBankPivotToJadewater: CrossingsBankPivotToPaladins: CrossingsBankPivotToEmpaths: CrossingsBankPivotToTriage: CrossingsBankPivotToHerbalist: CrossingsBankPivotToBarbarians: CrossingsBankPivotToStamina: CrossingsBankPivotToForge: CrossingsBankPivotToFlorist: CrossingsBankPivotToDeathSpirits: CrossingsBankPivotToCrossingsBrambles: CrossingsBankPivotToChampionsPivot: move out put nw put n move n put n put n move n put n put e move e goto ChampionsPivot CrossingsBankPivotToWMGuild: CrossingsBankPivotToMMGuild: CrossingsBankPivotToMMGuildLeader: CrossingsBankPivotToMiddens: CrossingsBankPivotToRockTrolls: CrossingsBankPivotToKaerna: CrossingsBankPivotToVineyard: CrossingsBankPivotToArthe: CrossingsBankPivotToArtheShops: CrossingsBankPivotToArtheTradersPost: CrossingsBankPivotToArtheTree: CrossingsBankPivotToStoneClanPivot: CrossingsBankPivotToStoneClanTradersPost: CrossingsBankPivotToStoneClanMine: CrossingsBankPivotToScouts: CrossingsBankPivotToGuardians: CrossingsBankPivotToSToneClanPivot: CrossingsBankPivotToCrocs: CrossingsBankPivotToHaven: CrossingsBankPivotToTheren: CrossingsBankPivotToLang: CrossingsBankPivotToZolurenHavenFerry: CrossingsBankPivotToFaldesu: CrossingsBankPivotToFaldesuSwimming: CrossingsBankPivotToDirge: CrossingsBankPivotToDirgeBank: CrossingsBankPivotToDirgeVaults: CrossingsBankPivotToDirgeMine: CrossingsBankPivotToLavaForgeMMGuild: CrossingsBankPivotToLavaForgeInside: CrossingsBankPivotToFirecats: CrossingsBankPivotToFireSprites: CrossingsBankPivotToReavers: CrossingsBankPivotToNEGatePivot: move out put e put e move e put n put n move n put ne put n move n put n put n move e move go gate goto NEGatePivot AsemathPivot: goto AsemathPivotTo%D CrossingsAlchemist: put out put s move w put w put w move s goto AsemathPivot AsemathPivotToAlchemist: move n put e put e move e put n move go shop pause 1 echo **************************************** echo *** You have arrived at Chizili’s Alchemical Goods echo **************************************** pause 1 put shop Exit AsemathPivotToPawnShop: move w put w put go bridge move s put go shop pause 1 echo ****************************************** echo *** You have arrived at Cormyn’s House of Heirlooms echo *** echo *** Hold the item in your right hand and SELL <ITEM> echo ****************************************** Exit CrossingsPawnShop: put out put n move e put e move e goto AsemathPivot CrossingsAgility: put out move n put n put n move e put e put e move e goto AsemathPivot AsemathPivotToAgility: move w put w put go bridge move w put s put s move s put go academy pause 1 echo ******************************* echo *** You have arrived at Agility Training! echo ******************************* Exit AsemathPivotToStrength: move e put e put s move s put s move s goto TGSTo%D AsemathPivotToAsemathPivot: move go gate pause 1 echo ************************************ echo *** You have arrived at the Asemath Academy echo ************************************ Exit AsemathPivotToBards: move w put go build pause 1 echo ************************************* echo *** You have arrived at Crossing’s Bards Guild echo ************************************* Exit CrossingsBards: BardsToAsemathPivot: put out put e goto AsemathPivot AsemathPivotToIntelligence: AsemathPivotToWisdom: AsemathPivotToAsemath: AsemathPivotToAcademy: move go gate put w put w move n pause 1 echo ************************************ echo *** You have arrived at the Asemath Academy! echo *** echo *** Go NORTH to train Wisdom echo *** Go NORTHEAST to train Intelligence echo *** echo *** Ozursus is usually south/southwest for echo *** magical feat training echo ************************************ Exit AsemathAcademy: AsemathAcademyToAsemathPivot: put out move s put e put e move go gate goto AsemathPivot AsemathPivotToClerics: move n put n put n move n put go guild pause 1 echo **************************************** echo *** You have arrived at the Crossing’s Clerics Guild! echo *** echo *** GO STUDY to speak with Guildleader Esuin echo *** echo *** GO ARCH DOOR and GO BUILDING echo *** for a regular cleric hangout echo *** echo *** GO ARCH DOOR and GO ARCH echo *** for the Clerics’ Guild Chapel echo **************************************** Exit Clerics: ClericsToAsemathPivot: move out put s put s move s put s goto AsemathPivot AsemathPivotToTannery: move n put n put w move go shed pause 1 echo ******************************** echo *** You have arrived at Falken’s Tannery echo ******************************** Exit CrossingsTannery: CrossingsTanneryToAsemathPivot: move out put e put s move s goto AsemathPivot AsemathPivotToDiscipline: move n put n put n move n put go hovel pause 1 echo ********************************************* echo *** You have arrived at the Hovel for Discipline Training echo ********************************************* Exit CrossingsDiscipline: CrossingsDisciplineToAsemathPivot: move out put s put s move s put s goto AsemathPivot AsemathPivotToRangers: move n put n put w move w put go gate put n pause 1 echo ****************************************** echo *** You have arrived at the Crossing’s Rangers Guild echo ****************************************** Exit Rangers: RangersToAsemathPivot: put s move go gate move e put e put s move s goto AsemathPivot AsemathPivotToLeatherRepair: AsemathPivotToWolfClanLeatherShop: AsemathPivotToWolfClan: AsemathPivotToCougarsPivot: AsemathPivotToBears: AsemathPivotToOgres: AsemathPivotToTigerClanTradersPost: AsemathPivotToBrookWestOfTigerClan: AsemathPivotToGrassEels: AsemathPivotToBobcats: AsemathPivotToLipopods: AsemathPivotToCougarsStart: AsemathPivotToBloodWolves: AsemathPivotToKnifeClan: AsemathPivotToWolfClanBuilding: AsemathPivotToTigerClan: AsemathPivotToTigerClanHerbalist: AsemathPivotToWestGate: AsemathPivotToGoblins: AsemathPivotToFavors: AsemathPivotToCrossingsWGatePivot: move w put w put go bridge move w put w put w move w put go gate goto CrossingsWGatePivot AsemathPivotToBank: AsemathPivotToTradersPlaza: AsemathPivotToReflexes: AsemathPivotToArmorShop: AsemathPivotToWeaponsShop: AsemathPivotToBardsShop: AsemathPivotToGeneralStore: AsemathPivotToClericsShop: AsemathPivotToOutfitting: AsemathPivotToTownHall: AsemathPivotToVaults: AsemathPivotToTemple: AsemathPivotToAltar: AsemathPivotToShipyard: AsemathPivotToEstateHolder: AsemathPivotToCrossingsFerry: AsemathPivotToCrossings: AsemathPivotToFerry: AsemathPivotToAlchemy: AsemathPivotToEngineering: AsemathPivotToTraders: AsemathPivotToCharisma: AsemathPivotToGemShop: AsemathPivotToMAMAs: AsemathPivotToMetalRepair: AsemathPivotToLocksmith: AsemathPivotToArtificers: AsemathPivotToPond: AsemathPivotToLeth: AsemathPivotToShard: AsemathPivotToCrossingsBankPivot: move e put s put s move s put s put s move e put e put se move go bank goto CrossingsBankPivot AsemathPivotToCrossingsGargoyles: AsemathPivotToJadewater: AsemathPivotToPaladins: AsemathPivotToEmpaths: AsemathPivotToTriage: AsemathPivotToHerbalist: AsemathPivotToBarbarians: AsemathPivotToStamina: AsemathPivotToForge: AsemathPivotToFlorist: AsemathPivotToWMGuild: AsemathPivotToMMGuild: AsemathPivotToMMGuildLeader: AsemathPivotToMiddens: AsemathPivotToRockTrolls: AsemathPivotToKaerna: AsemathPivotToVineyard: AsemathPivotToArthe: AsemathPivotToArtheShops: AsemathPivotToArtheTradersPost: AsemathPivotToArtheTree: AsemathPivotToStoneClanPivot: AsemathPivotToStoneClanTradersPost: AsemathPivotToStoneClanMine: AsemathPivotToScouts: AsemathPivotToGuardians: AsemathPivotToSToneClanPivot: AsemathPivotToCrocs: AsemathPivotToHaven: AsemathPivotToTheren: AsemathPivotToLang: AsemathPivotToZolurenHavenFerry: AsemathPivotToFaldesu: AsemathPivotToFaldesuSwimming: AsemathPivotToDirge: AsemathPivotToDirgeBank: AsemathPivotToDirgeVaults: AsemathPivotToDirgeMine: AsemathPivotToLavaForgeMMGuild: AsemathPivotToLavaForgeInside: AsemathPivotToFirecats: AsemathPivotToFireSprites: AsemathPivotToReavers: AsemathPivotToDeathSpirits: AsemathPivotToCrossingsBrambles: AsemathPivotToMags: AsemathPivotToNEGatePivot: AsemathPivotToChampionsPivot: move e put e put e move e goto ChampionsPivot CrossingsWGatePivot: goto CrossingsWGatePivotTo%D CrossingsWGatePivotToWestGate: pause 1 echo *********************************** echo *** You have arrived at Crossing’s West Gate echo *********************************** Exit GoblinIntersection: GoblinIntersectionToCrossingsWGatePivot: move e put se put e move e put se put e move e move go path goto CrossingsWGatePivot GoblinMiddle: move nw put sw put sw move se put s put s goto GoblinIntersectionToCrossingsWGatePivot CrossingsWGatePivotToGoblins: move go path put w put w move nw put w put w move nw put w pause 1 echo ********************************** echo *** You have arrived in Goblin territory echo *** echo *** You’ll find Field Goblins to the NORTH echo ********************************** Exit CrossingsWGatePivotToGrassEels: move go path put w put w move s put s put s move sw put sw put sw move w put n put w pause 1 echo ************************************ echo *** You have arrived in Wasp and Eel territory echo *** echo *** Wasps are to the EAST echo *** echo *** GO RIVER for Eels echo *** To exit Eels afterwards, go two south echo *** from the entry room and GO LEDGE echo ************************************ Exit EelsExit: EelsExitToCrossingsWGatePivot: move e put n put n move w goto EelsEntry EelsEntry: EelsEntryToCrossingsWGatePivot: move e put s put e move ne put ne put ne move n put n put n move e put e put go path goto CrossingsWGatePivot CrossingsWGatePivotToBobcats: CrossingsWGatePivotToFavors: put nw move w put sw move sw put s move w move sw put go path move sw put s move sw put sw move se put u move u put nw move go trail put go arch put go stone goto FavorsTo%D FavorsToFavors: pause 1 echo ******************************* echo *** You have arrived at the Stone Grotto echo *** echo *** PRAY here for favor orbs echo ******************************* Exit FavorsToBobcats: move w put go path put e pause 1 echo ************************************* echo *** You have arrived in Bobcat territory echo *** echo *** Go SOUTH for cougars, jackals and bobcats echo ************************************* Exit Bobcats: BobcatsToFavors: put w move go stone goto FavorsToCrossingsWGatePivot Favors: FavorsToCrossingsWGatePivot: move e put go arch put go trail move se put d put d move nw put ne put ne move n put ne put go path move ne put e put n move ne put ne put e move se goto CrossingsWGatePivot Lipopods: LipopodstoCrossingsWGatePivot: move s put s put se move se put se put se move e put se goto CrossingsWGatePivot CrossingsWGatePivotToLipopods: move nw put w put nw move nw put nw put nw move n put n pause 1 echo ********************************************** echo *** You have arrived in Lipopod and Water Sprite territory echo *** echo *** GO TRENCH to enter echo ********************************************** Exit CrossingsWGatePivotToLeatherRepair: CrossingsWGatePivotToWolfClanLeatherShop: CrossingsWGatePivotToWolfClan: CrossingsWGatePivotToCougarsPivot: CrossingsWGatePivotToBears: CrossingsWGatePivotToOgres: CrossingsWGatePivotToTigerClanTradersPost: CrossingsWGatePivotToBrookWestOfTigerClan: CrossingsWGatePivotToCougarsStart: CrossingsWGatePivotToBloodWolves: CrossingsWGatePivotToKnifeClan: CrossingsWGatePivotToWolfClanBuilding: CrossingsWGatePivotToTigerClan: CrossingsWGatePivotToTigerClanHerbalist: CrossingsWGatePivotToTigerClanPivot: move go path put w put w move nw put w put w move nw put w put w move sw put w put w move nw put nw put w goto TigerClanPivot CrossingsWGatePivotToBards: CrossingsWGatePivotToAcademy: CrossingsWGatePivotToClerics: CrossingsWGatePivotToStrength: CrossingsWGatePivotToDiscipline: CrossingsWGatePivotToTannery: CrossingsWGatePivotToRangers: CrossingsWGatePivotToAgility: CrossingsWGatePivotToIntelligence: CrossingsWGatePivotToWisdom: CrossingsWGatePivotToPawnShop: CrossingsWGatePivotToRangers: CrossingsWGatePivotToBank: CrossingsWGatePivotToTradersPlaza: CrossingsWGatePivotToReflexes: CrossingsWGatePivotToArmorShop: CrossingsWGatePivotToWeaponsShop: CrossingsWGatePivotToBardsShop: CrossingsWGatePivotToGeneralStore: CrossingsWGatePivotToClericsShop: CrossingsWGatePivotToOutfitting: CrossingsWGatePivotToTownHall: CrossingsWGatePivotToVaults: CrossingsWGatePivotToTemple: CrossingsWGatePivotToAltar: CrossingsWGatePivotToShipyard: CrossingsWGatePivotToEstateHolder: CrossingsWGatePivotToCrossingsFerry: CrossingsWGatePivotToCrossings: CrossingsWGatePivotToFerry: CrossingsWGatePivotToAlchemy: CrossingsWGatePivotToEngineering: CrossingsWGatePivotToTraders: CrossingsWGatePivotToCharisma: CrossingsWGatePivotToGemShop: CrossingsWGatePivotToMAMAs: CrossingsWGatePivotToMetalRepair: CrossingsWGatePivotToCrossingsGargoyles: CrossingsWGatePivotToJadewater: CrossingsWGatePivotToPaladins: CrossingsWGatePivotToEmpaths: CrossingsWGatePivotToTriage: CrossingsWGatePivotToHerbalist: CrossingsWGatePivotToBarbarians: CrossingsWGatePivotToStamina: CrossingsWGatePivotToForge: CrossingsWGatePivotToFlorist: CrossingsWGatePivotToWMGuild: CrossingsWGatePivotToMMGuild: CrossingsWGatePivotToMMGuildLeader: CrossingsWGatePivotToMiddens: CrossingsWGatePivotToRockTrolls: CrossingsWGatePivotToKaerna: CrossingsWGatePivotToVineyard: CrossingsWGatePivotToArthe: CrossingsWGatePivotToArtheShops: CrossingsWGatePivotToArtheTradersPost: CrossingsWGatePivotToArtheTree: CrossingsWGatePivotToStoneClanPivot: CrossingsWGatePivotToStoneClanTradersPost: CrossingsWGatePivotToStoneClanMine: CrossingsWGatePivotToScouts: CrossingsWGatePivotToGuardians: CrossingsWGatePivotToSToneClanPivot: CrossingsWGatePivotToCrocs: CrossingsWGatePivotToHaven: CrossingsWGatePivotToTheren: CrossingsWGatePivotToLang: CrossingsWGatePivotToZolurenHavenFerry: CrossingsWGatePivotToFaldesu: CrossingsWGatePivotToFaldesuSwimming: CrossingsWGatePivotToDirge: CrossingsWGatePivotToDirgeBank: CrossingsWGatePivotToDirgeVaults: CrossingsWGatePivotToDirgeMine: CrossingsWGatePivotToLavaForgeMMGuild: CrossingsWGatePivotToLavaForgeInside: CrossingsWGatePivotToFirecats: CrossingsWGatePivotToFireSprites: CrossingsWGatePivotToReavers: CrossingsWGatePivotToDeathSpirits: CrossingsWGatePivotToCrossingsBrambles: CrossingsWGatePivotToMags: CrossingsWGatePivotToLocksmith: CrossingsWGatePivotToArtificers: CrossingsWGatePivotToPond: CrossingsWGatePivotToLeth: CrossingsWGatePivotToShard: CrossingsWGatePivotToNEGatePivot: CrossingsWGatePivotToAlchemist: CrossingsWGatePivotToAsemathPivot: move go gate put e put e move e put e put e move e put e goto AsemathPivot TigerClanPivot: goto TigerClanPivotTo%D TigerClanPivotToTigerClan: move go gate pause 1 echo *************************************** echo *** You have arrived at the front gate to Tiger Clan echo *************************************** Exit TigerClanInsideGate: TigerClanToTigerClanPivot: move go gate goto TigerClanPivot TigerClanPivotToTigerClanTradersPost: move go gate put s put se move s put sw put nw move nw put go outpost pause 1 echo *************************************** echo *** You have arrived at Tiger Clan’s Trader’s Post echo *************************************** Exit TigerClanTradersPost: TigerClanTradersPostToTigerClanPivot: put out put se move se put ne put n move nw put n put go gate goto TigerClanPivot TigerClanPivotToTigerClanHerbalist: move go gate put s put se move s put sw put go green move nw put go toft put go cottage pause 1 echo ****************************************** echo *** You have arrived at Tiger Clan’s Herbalist, Neesa echo ****************************************** Exit TigerClanHerbalist: TigerClanHerbalistToTigerClanPivot: put out put go path move se put n put ne move n put nw put n move go gate goto TigerClanPivot TigerClanPivotToBrookWestOfTigerClan: move w put nw put w move w pause 1 echo ***************************************** echo *** You have arrived at the brook, west of Tiger Clan echo *** echo *** GO BROOK to enter echo ***************************************** Exit BrookWestOfTigerClan: BrookWestOfTigerClanToTigerClanPivot: move e put e put se move e goto TigerClanPivot TigerClanPivotToGrassEels: TigerClanPivotToBobcats: TigerClanPivotToLipopods: TigerClanPivotToGoblins: TigerClanPivotToFavors: TigerClanPivotToLeth: TigerClanPivotToShard: TigerClanPivotToAsemathPivot: TigerClanPivotToAlchemist: TigerClanPivotToBards: TigerClanPivotToAcademy: TigerClanPivotToClerics: TigerClanPivotToDiscipline: TigerClanPivotToTannery: TigerClanPivotToRangers: TigerClanPivotToAgility: TigerClanPivotToPawnShop: TigerClanPivotToRangers: TigerClanPivotToBank: TigerClanPivotToTradersPlaza: TigerClanPivotToReflexes: TigerClanPivotToArmorShop: TigerClanPivotToWeaponsShop: TigerClanPivotToBardsShop: TigerClanPivotToGeneralStore: TigerClanPivotToClericsShop: TigerClanPivotToOutfitting: TigerClanPivotToTownHall: TigerClanPivotToVaults: TigerClanPivotToTemple: TigerClanPivotToAltar: TigerClanPivotToShipyard: TigerClanPivotToEstateHolder: TigerClanPivotToCrossingsFerry: TigerClanPivotToCrossings: TigerClanPivotToFerry: TigerClanPivotToAlchemy: TigerClanPivotToEngineering: TigerClanPivotToTraders: TigerClanPivotToIntelligence: TigerClanPivotToWisdom: TigerClanPivotToCharisma: TigerClanPivotToGemShop: TigerClanPivotToMAMAs: TigerClanPivotToMetalRepair: TigerClanPivotToCrossingsGargoyles: TigerClanPivotToJadewater: TigerClanPivotToPaladins: TigerClanPivotToEmpaths: TigerClanPivotToTriage: TigerClanPivotToHerbalist: TigerClanPivotToBarbarians: TigerClanPivotToStrength: TigerClanPivotToStamina: TigerClanPivotToForge: TigerClanPivotToFlorist: TigerClanPivotToWMGuild: TigerClanPivotToMMGuild: TigerClanPivotToMMGuildLeader: TigerClanPivotToMiddens: TigerClanPivotToRockTrolls: TigerClanPivotToKaerna: TigerClanPivotToVineyard: TigerClanPivotToArthe: TigerClanPivotToArtheShops: TigerClanPivotToArtheTradersPost: TigerClanPivotToArtheTree: TigerClanPivotToStoneClanPivot: TigerClanPivotToStoneClanTradersPost: TigerClanPivotToStoneClanMine: TigerClanPivotToScouts: TigerClanPivotToGuardians: TigerClanPivotToSToneClanPivot: TigerClanPivotToCrocs: TigerClanPivotToHaven: TigerClanPivotToTheren: TigerClanPivotToLang: TigerClanPivotToZolurenHavenFerry: TigerClanPivotToFaldesu: TigerClanPivotToFaldesuSwimming: TigerClanPivotToDirge: TigerClanPivotToDirgeBank: TigerClanPivotToDirgeVaults: TigerClanPivotToDirgeMine: TigerClanPivotToLavaForgeMMGuild: TigerClanPivotToLavaForgeInside: TigerClanPivotToFirecats: TigerClanPivotToFireSprites: TigerClanPivotToReavers: TigerClanPivotToPond: TigerClanPivotToLocksmith: TigerClanPivotToNEGatePivot: TigerClanPivotToWestGate: TigerClanPivotToCrossingsWGatePivot: move e put se put se move e put e put ne move e put e put se move e put e put se move e put e put go path´ goto CrossingsWGatePivot TigerClanPivotToLeatherRepair: TigerClanPivotToWolfClanLeatherShop: TigerClanPivotToWolfClan: TigerClanPivotToCougarsStart: TigerClanPivotToBears: TigerClanPivotToOgres: TigerClanPivotToBloodWolves: TigerClanPivotToKnifeClan: TigerClanPivotToWolfClanBuilding: TigerClanPivotToCougarsPivot: move w put nw put w move w put go brook move w pause 3 move w pause 3 put w put sw move w goto CougarsPivot CougarsPivot: goto CougarsPivotTo%D CougarsPivotToCougarsPivot: move w pause 1 echo ******************************* echo *** You have arrived in Cougar territory echo ******************************* Exit WolfClanLeatherShop: goto WolfClanLeatherShopToWolfClanBuilding LeatherRepair: goto LeatherRepairToWolfClanBuilding WolfClanBuilding: put out put n move n put e put n move e goto WolfClanTradersPost WolfClanTradersPost: goto WolfClanTradersPostToCougarsPivot WolfClanBushes: goto WolfClanBushesToCougarsPivot KnifeClanOutsideLeather: goto KnifeClanOutsideLeatherToKnifeClanGate KnifeClanInsideGate: goto KnifeClanToCougarsPivot BloodWolves: goto BloodWolvesToCougarsPivot CougarsStart: CougarsStartToCougarsPivot: put e goto CougarsPivot CougarsPivotToBears: CougarsPivotToOgres: CougarsPivotToBloodWolves: move w put w put w pause 1 echo ******************************************** echo *** You have arrived. echo *** echo *** CLIMB TRAIL and CLIMB CLIFF to get to Blood Wolves echo *** UP from there leads to Silver-Backed Bears echo *** Be wary of Dire Bears echo *** UP from bears you’ll find Young Ogres echo ******************************************** Exit BloodWolvesToCougarsPivot: put e put e move e goto CougarsPivot CougarsPivotToKnifeClan: move nw put go bram put ne move ne put n move ne put climb tree move nw put nw move nw put d move e move ne put climb root move n put ne put ne move n put go bush move nw put n move nw put go out move ne put ne move ne put nw move nw put n move nw put go gate move w put nw move n put go bridge move n put n move n pause 1 echo ********************************* echo *** You have arrived in Knife Clan echo *** echo *** GO CAVE for Leatherworks echo *** East twice and GO SHOP is the Smithy echo ********************************* Exit KnifeClanOutsideLeatherToKnifeClanGate: put s put s move go bridge put s put s move se put e goto KnifeClanToCougarsPivot KnifeClanToCougarsPivot: put go gate move se put s put se move se put sw put sw move sw put go out put se move s put se put go bush move s put sw put sw move s put climb root put sw move w put u put se move se put se put climb tree move sw put s put sw move go patch put s put se goto CougarsPivot WolfClanBushesToCougarsPivot: move go bush put n put w move n put ne goto CougarsPivot WolfClanTradersPostToCougarsPivot: put out move n put ne move n goto WolfClanBushesToCougarsPivot CougarsPivotToWolfClanBuilding: CougarsPivotToLeatherRepair: CougarsPivotToWolfClanLeatherShop: CougarsPivotToWolfClanTradersPost: move sw put s put s move e put go bush put s move sw put s goto WolfClanTradersPostTo%D WolfClanTradersPostToWolfClanTradersPost: put go outpost pause 1 echo ****************************************** echo *** You have arrived at the Wolf Clan’s Trader’s Post echo ****************************************** Exit WolfClanTradersPostToWolfClanBuilding: WolfClanTradersPostToWolfClanLeatherShop: WolfClanTradersPostToLeatherRepair: move w put s put w move s put s put go build goto WolfClanBuildingTo%D WolfClanBuildingToWolfClanBuilding: pause 1 echo *************************** echo *** You have arrived at Wolf Clan echo *** Non-metal repair is to the east echo *** The leather shop is to the west echo *************************** Exit WolfClanBuildingToLeatherRepair: move e pause 1 echo **************************************** echo *** You have arrived at the Wolf Clan’s Non-Metal Repair echo *** GIVE the item in question to RANDAL for repair echo *** or ASK RANDAL ABOUT REPAIR ALL echo **************************************** Exit WolfClanBuildingToWolfClanLeatherShop: move w pause 1 echo *************************************** echo *** You have arrived at Wolf Clan’s Leather Shop echo *************************************** put shop pause 1 Exit WolfClanLeatherShopToWolfClanBuilding: move e goto WolfClanBuildingToWolfClanTradersPost LeatherRepairToWolfClanBuilding: move w goto WolfClanBuildingToWolfClanTradersPost WolfClanBuildingToWolfClanTradersPost: put out put n move n put e put n move e goto WolfClanTradersPostToCougarsPivot CougarsPivotToTigerClanTradersPost: CougarsPivotToBrookWestOfTigerClan: CougarsPivotToTigerClan: CougarsPivotToTigerClanHerbalist: CougarsPivotToGrassEels: CougarsPivotToBobcats: CougarsPivotToLipopods: CougarsPivotToGoblins: CougarsPivotToFavors: CougarsPivotToAsemathPivot: CougarsPivotToAlchemist: CougarsPivotToBards: CougarsPivotToAcademy: CougarsPivotToClerics: CougarsPivotToDiscipline: CougarsPivotToTannery: CougarsPivotToRangers: CougarsPivotToAgility: CougarsPivotToPawnShop: CougarsPivotToRangers: CougarsPivotToBank: CougarsPivotToTradersPlaza: CougarsPivotToReflexes: CougarsPivotToArmorShop: CougarsPivotToWeaponsShop: CougarsPivotToBardsShop: CougarsPivotToGeneralStore: CougarsPivotToClericsShop: CougarsPivotToOutfitting: CougarsPivotToTownHall: CougarsPivotToVaults: CougarsPivotToTemple: CougarsPivotToAltar: CougarsPivotToShipyard: CougarsPivotToEstateHolder: CougarsPivotToCrossingsFerry: CougarsPivotToCrossings: CougarsPivotToFerry: CougarsPivotToAlchemy: CougarsPivotToEngineering: CougarsPivotToTraders: CougarsPivotToCharisma: CougarsPivotToGemShop: CougarsPivotToMAMAs: CougarsPivotToMetalRepair: CougarsPivotToCrossingsGargoyles: CougarsPivotToJadewater: CougarsPivotToPaladins: CougarsPivotToEmpaths: CougarsPivotToTriage: CougarsPivotToHerbalist: CougarsPivotToBarbarians: CougarsPivotToStrength: CougarsPivotToStamina: CougarsPivotToForge: CougarsPivotToFlorist: CougarsPivotToWMGuild: CougarsPivotToMMGuild: CougarsPivotToMMGuildLeader: CougarsPivotToMiddens: CougarsPivotToRockTrolls: CougarsPivotToKaerna: CougarsPivotToVineyard: CougarsPivotToArthe: CougarsPivotToArtheShops: CougarsPivotToArtheTradersPost: CougarsPivotToArtheTree: CougarsPivotToStoneClanPivot: CougarsPivotToStoneClanTradersPost: CougarsPivotToStoneClanMine: CougarsPivotToScouts: CougarsPivotToGuardians: CougarsPivotToSToneClanPivot: CougarsPivotToCrocs: CougarsPivotToLang: CougarsPivotToTheren: CougarsPivotToHaven: CougarsPivotToZolurenHavenFerry: CougarsPivotToFaldesu: CougarsPivotToFaldesuSwimming: CougarsPivotToDirge: CougarsPivotToDirgeBank: CougarsPivotToDirgeVaults: CougarsPivotToDirgeMine: CougarsPivotToLavaForgeMMGuild: CougarsPivotToLavaForgeInside: CougarsPivotToFirecats: CougarsPivotToFireSprites: CougarsPivotToReavers: CougarsPivotToPond: CougarsPivotToLocksmith: CougarsPivotToLeth: CougarsPivotToShard: CougarsPivotToIntelligence: CougarsPivotToWisdom: CougarsPivotToNEGatePivot: CougarsPivotToTigerClanPivot: move e put ne put e move go brook move e pause 3 move e pause 3 put e put e move se put e goto TigerClanPivot LethCenter: goto LethCenterTo%D LethFerry: goto LethFerryTo%D ForestOfNight: goto ForestOfNight%D IlayaTaipa: pause 1 echo ****************************************** echo *** It is not uncommon to trip on the way back to Leth echo *** Stand up and move on to continue echo ****************************************** pause 1 put out move s put s put s move sw put sw put sw move w put w put w move nw put w put go gate move go break pause 1 move se pause 1 move e pause 1 move e pause 1 move ne pause 1 move ne pause 1 move n pause 1 move e pause 1 move e pause 1 move ne pause 1 move n pause 1 move n pause 1 move n pause 1 move ne pause 1 move nw pause 1 move n pause 1 move n move n pause 1 move ne pause 1 move ne pause 1 move ne pause 1 move ne pause 1 move s pause 1 put se pause 1 move s pause 1 move se pause 1 move se put ne move go gate put ne put ne move ne put ne move ne put ne move ne goto LethCenter LethCenterToIlayaTaipa: pause 1 echo ************************************************ echo *** It is not uncommon to trip on the way back to Ilaya Taipa echo *** Stand up and move on to continue echo ************************************************ pause 1 move sw put sw move sw put sw put sw move sw put sw move go gate put sw move nw pause 1 move nw pause 1 move n pause 1 move nw pause 1 move n pause 1 move sw pause 1 move sw pause 1 move sw pause 1 move sw pause 1 move sw pause 1 move s pause 1 move s pause 1 move s pause 1 move s pause 1 move s pause 1 move se pause 1 move sw pause 1 move s pause 1 move s pause 1 move s pause 1 move sw pause 1 move w pause 1 move w pause 1 move s pause 1 move sw pause 1 move sw pause 1 move w pause 1 move w pause 1 move nw pause 1 move n put go break put go gate move e put se put e move e put e put ne move ne put ne put n move n put n move go build pause 1 echo ******************************************* echo *** You have arrived at Ilaya Taipa’s Trader’s Outpost echo ******************************************* Exit TamsinesRest: put go gate move go trail put n goto LethAlfarsManorStart LethCenterToTamsinesRest: move sw put sw move sw put sw put sw move sw put sw move go gate put sw put s move sw put sw put s move go trail put go gate pause 1 echo ******************************* echo *** You have arrived at Tamsine’s Rest echo *** echo *** GO PATH for the garden and statues echo *** GO HOUSE for the shops echo ******************************* Exit HodiernasSolace: put out put go break move go road goto HodiernaNorth LethFerryToHodiernasSolace: put s move s put s put s move go path put go clear put go arch pause 1 echo ****************************************** echo *** You have arrived at Hodierna’s Solace echo *** echo *** The COLUMN is a holy relic for pilgrimages echo *** This is where Cleric’s learn Hodierna’s Commune echo ****************************************** Exit LethSoothsayer: put out move ne put ne goto HodiernaNorth HodiernaNorth: put n move n put n move n goto LethFerry LethFerryToSoothsayer: put s move s put s put s move sw put sw put go hut pause 1 echo ******************************************** echo *** You have arrived at the Soothsayer Berdachun’s Hut echo ******************************************** pause 1 put shop Exit SecludedGlade: put go footpath move nw put n move n put ne put n move ne goto ForestOfNight ForestOfNightToSecludedGlade: move sw put s put sw move s put s move se put go footpath pause 1 echo ********************************** echo *** You have arrived at the Secluded Glade echo ********************************** Exit LethBakery: put out put sw move sw put sw move sw goto LethCenter LethCenterToBakery: put ne move ne put ne put ne move go hut pause 1 echo ******************************* echo *** You have arrived at Mithin’s Bakery echo ******************************* pause 1 put read menuboard Exit LethGallows: put up put out move se put se put se move se put se goto LethCenter LethCenterToGallows: move nw put nw put nw move nw put nw put go tree pause 1 echo *************************************** echo *** You have arrived at Leth Deriel’s Gallows Tree echo *************************************** Exit LethClothing: put n put out move n put n goto LethCenter LethCenterToClothing: move s put s put go hole pause 1 echo *************************************** echo *** You have arrived at Ongadine’s Garb and Gear echo *************************************** pause 1 put read catalog Exit LethDyer: put out put nw move nw put nw move nw goto LethCenter LethCenterToDyer: move se put se put se move se put go shack pause 1 echo ******************************** echo *** You have arrived at Reena’s Rainbow echo ******************************** pause 1 put read menu Exit LethBardsShop: put out move n put n put n move n put n goto LethCenter LethCenterToBardsShop: move s put s put s move s put s put go knothole pause 1 echo **************************************** echo *** You have arrived at Sinjian’s Bardic Requisites echo **************************************** pause 1 put read catalog Exit LethBowyer: put d put out move go path put e put e move e put e move e goto LethCenter LethCenterToBowyer: put w move w put w put w move w put go path put go door pause 1 echo *********************************************** echo *** You have arrived at Huyelm’s Trueflight Bow and Arrow echo *********************************************** pause 1 put read catalog Exit LethOrigami: put out put se move ne put ne move ne goto LethCenter LethCenterToOrigami: put sw move sw put sw put sw move nw put go tent pause 1 echo *********************************** echo *** You have arrived at the Origami Boutique echo *********************************** pause 1 put read placard put shop Exit LethForge: put go curtain move go gate put e move e put e goto LethCenter LethCenterToForge: put w move w put w put go gate move go curtain pause 1 echo *************************************************** echo *** You have arrived at Leth Deriel’s Forge, the Iltesh Neg Degti echo *** echo *** Supplies are to the SE echo *** Crucibles and forges are to the EAST (then South) echo *************************************************** Exit Wickerworks: put out put se move e put n put n move n put n put n move n goto LethCenter LethCenterToWickerworks: move s put s put s move s put s put s move w put nw put go hut pause 1 echo *********************************************** echo *** You have arrived at Blanca’s Basketry and Wickerworks echo *********************************************** pause 1 put read catalog put read page 1 Exit Woodcraft: put go door put sw move n put n move n goto LethCenter LethCenterToWoodcraft: move s put s put s move ne put go door pause 1 echo *********************************************** echo *** You have arrived at Blanca’s Basketry and Wickerworks echo *********************************************** pause 1 put shop Exit DovesDoors2: put go curtain DovesDoors: put out move nw put nw put nw move nw put nw goto LethCenter LethCenterToDovesDoors: move se put se put se move se put se put go cottage pause 1 echo ***************************************** echo *** You have arrived at Dove’s Delightful Dwellings echo ***************************************** pause 1 put shop Exit LethCandy: put out move nw put nw put sw move sw put sw put sw move sw put sw goto CheckStart LethCenterToCandy: put ne move ne put ne put ne move ne put ne put se move se put go house pause 1 echo ************************************* echo *** You have arrived at De’ali’s Elven Delights echo ************************************* pause 1 put read menuboard Exit LethVaults: put n goto LethCenter LethCenterToVaults: move s put go square put go door pause 1 echo ****************************************** echo *** You have arrived at Leth Deriel’s Carousel Square echo ****************************************** Exit LethGemShopStart: put out put ne move ne goto LethCenter LethCenterToGemShop: put sw put sw move go door goto LethCenterToGemShopArrived LethCenterToGemShopArrived: pause 1 echo ************************************* echo *** You have arrived at Leth Deriel’s gem shop echo echo *** The jeweler in residence is Ghendil echo ************************************* Exit LethGeneralStore: move out put w put w move w put w goto LethCenter LethCenterToGeneralStore: move e put e put e move e put go open pause 1 echo ********************************************* echo *** You have arrived at Alberdeen’s Meats and Provisions echo ********************************************* put shop Exit LethEmpathStart: put out move e goto LethCenter LethCenterToEmpaths: LethCenterToTriage: move w put go tent goto LethCenterToEmpathArrived LethCenterToEmpathArrived: pause 1 echo **************************************************** echo *** You have arrived at Leth Deriel’s empath, Arthianna Os’Nedora echo echo *** To receive healing LAY echo **************************************************** Exit LethTradingPostBackroomStart: put s goto LethTradingPostMainRoomStart LethTradingPostMainRoomStart: put out move nw goto LethCenter LethCenterToTraders: LethCenterToLethTraders: move se put go shanty goto LethCenterToTradingPostArrived LethCenterToTradingPostArrived: pause 1 echo *************************************** echo *** You have arrived at Leth Deriel’s Trading Post echo *************************************** Exit LethCenterToTemple: move ne put ne put go path move e goto LethCenterToTempleArrived LethCenterToTempleArrived: pause 1 echo *************************************************** echo *** You have arrived at Kilth Aldiyaus, the temple of Leth Deriel echo *************************************************** Exit LethTemplePrayerStart: put w goto LethTempleAtriumStart LethTempleMeditationBranchStart: put e goto LethTempleAtriumStart LethTempleAtriumStart: move out put sw put sw goto LethCenter LethAlfarsManorStart: put ne put ne move n put ne put go gate move ne put ne put ne move ne put ne put ne move ne goto LethCenter LethCenterToAlfarsManor: move sw put sw move sw put sw put sw move sw put sw move go gate put sw put s move sw put sw pause 1 echo *********************************************** echo *** You have arrived at Alfar’s Manor echo echo *** Go WEST to enter echo *** Revenant Zombies are closest echo echo *** Far west and up the tree are Bone Wolves and Grave Worms echo echo *** North and beyond the trail is Germish’din echo *********************************************** Exit ForestOfNightToForestOfNight: pause 1 echo ********************************* echo *** You have arrived at the Forest of Night echo echo *** GO SHADOW to enter echo *** then SOUTH for Dryads and Nyads echo echo *** For Death Spirits, GO SHADOW echo *** then GO TRAIL and hope it’s night echo echo *** To return to the road, GO OPENING echo ********************************* Exit LethCenterToLeth: pause 1 echo ***************************************** echo *** You have arrived at the city center of Leth Deriel echo ***************************************** Exit LethSafe: put w put w move w put w put w move w goto LethCenter LethTanneryBackOfficeStart: put out goto LethTannerySalesroomStart LethTannerySalesroomStart: put out move ne put se put se move se put se put se move se goto LethCenter LethBankForeignStart: put d LethBankDomesticStart: put d LethBankLobbyStart: move out put w put w goto LethCenter LethCenterToSafe: put e put e move e put e put e move e goto LethCenterToSafeArrived LethCenterToSafeArrived: pause 1 echo *********************************** echo *** You have arrived at the Safe Spot in Leth echo *********************************** Exit LethCenterToBank: put e put e move go door put up goto LethCenterToBankArrived LethCenterToBankArrived: pause 1 echo ********************************** echo *** You have arrived at Leth Deriel’s bank echo ********************************** Exit LethCenterToTannery: move nw put nw put nw move nw put nw put nw move sw put go hut put go door goto LethCenterToTanneryArrived LethCenterToTanneryArrived: pause 1 echo ************************************ echo *** You have arrived at the Morikai’s Tannery echo ************************************ Exit LethCenterToMeys: put nw move nw put nw put nw move nw put nw move nw put go gate put nw move n put n put ne move ne put ne move ne put climb monol put e move ne put n put ne move e goto LethCenterToMeysArrived LethCenterToMeysArrived: pause 1 echo *************************** echo *** GO BANK to enter Moss Meys echo *************************** Exit LethSafe2: put sw move sw put sw put sw move sw put sw move sw goto LethCenter LethCenterToSafe2: move ne put ne put ne move ne put ne put ne move ne goto LethCenterToSafeArrived LethCenterToSnowies: put sw move sw put sw put sw move sw put sw put sw move go gate put sw put s move sw put sw put s move s put sw put sw move s put s put sw move sw put sw put s move s put s put s move sw put s put sw move sw put sw put sw move sw put s put s move sw put sw put s move s put sw put sw move s put sw put sw move sw put sw put sw move s put s put sw move w put sw put s move sw put s put sw move s put s put w move w put sw put sw move s put sw put s move sw put s put sw move s put sw move sw put go block move s put go track put w move sw put w put sw goto LethCenterToSnowiesArrived LethCenterToSnowiesArrived: pause 1 echo ******************** echo *** Snowies are to the SE echo ******************** Exit LethCenterToDeathSpirits: LethCenterToCrossings: LethCenterToHaven: LethCenterToLang: LethCenterToTheren: LethCenterToCrossingsFerry: LethCenterToFerry: LethCenterToSoothsayer: LethCenterToHodiernasSolace: LethCenterToSecludedGlade: LethCenterToForestOfNight: put nw move nw put nw put nw move nw put nw put nw move go gate put nw put n move n put nw put nw move n put n put nw move nw put ne put n move ne put ne put ne move ne put nw put nw move n put n put ne move n put ne goto ForestOfNightTo%D ForestOfNightToSoothsayer: ForestOfNightToHodiernasSolace: ForestOfNightToCrossings: ForestOfNightToHaven: ForestOfNightToLang: ForestOfNightToTheren: ForestOfNightToFerry: ForestOfNightToCrossingsFerry: put nw move n put ne put ne move ne put n put n move nw put nw put n move ne put ne put ne move ne put n put n move n put n goto LethFerry LethFerryToCrossingsFerry: LethFerryToFerry: pause 1 echo ********************************** echo *** You have arrived at the Crossings Ferry echo echo *** GO FERRY to board echo ********************************** Exit LethFerryToHaven: LethFerryToLang: LethFerryToTheren: LethFerryToCrossings: put go ferry match LethFerryToCrossingsNoMoney Come back when you can afford the fare match LethFerryToCrossingsWait There is no ferry here match LethFerryToCrossingsWait what you were referring match LethFerryToCrossingsWait just pulled away match LethFerryToCrossingsBoarded your kronars and climb aboard matchwait LethFerryToCrossingsNoMoney: pause 1 echo ************************************ echo *** You do not have the necessary 35 kronars echo *** to afford this ferry ride echo ************************************ Exit LethFerryToCrossingsWait: match LethFerryToCrossings pulls into the dock match LethFerryToCrossings Next departure in matchwait LethFerryToCrossingsBoarded: pause 1 echo ********************************** echo *** You have boarded the Crossing’s Ferry echo *** Waiting for arrival on the other side echo ********************************** waitfor reaches the dock and its crew ties the ferry off pause 1 put go dock put go square move ne put e put e move e put e put ne move go bridge put ne put go bank pause 1 echo *********************************** echo *** You have arrived at the Crossing’s Bank echo *** GO WINDOW for the Teller echo *********************************** Exit LethCenterToShard: LethCenterToGondola: put sw move sw put sw put sw move sw put sw put sw move go gate put sw put s move sw put sw put s move s put sw put sw move s put s put sw move sw put sw put s move s put s put s move sw put s put sw move sw put sw put sw move sw put s put s move sw put sw put s move s put sw put sw move s put sw put sw move sw put sw put sw move s put s put sw move w put sw put s move sw put s put sw move s put s put w move w put sw put sw move s put sw put s move sw put s put sw move s put sw put sw move go block put s move se put sw move s put climb plat goto LethTo%D LethToGondola: LethGondolaArrived: pause 1 echo **************************** echo *** You have arrived at the gondola echo echo *** GO GONDOLA to board echo **************************** put look gondola Exit LethToShard: put go gondola put look match LethToShardWaitForGondola Obsidian Pass match LethToShardGoSouth Cab North match LethToShardGoNorth Cab South matchwait LethToShardWaitForGondola: put look gondola echo *********************** echo *** Waiting for the gondola echo *********************** waitfor door silently swings open put go gond match LethToShardGoSouth Cab North match LethToShardGoNorth Cab South matchwait LethToShardGoSouth: move south goto LethToShardWaitforExit LethToShardGoNorth: move north goto LethToShardWaitForExit LethToShardWaitForExit: waitfor gondola comes to a stop at move out LethToShardArrived: pause 1 echo ****************************************** echo *** You have arrived on the other side of the gondola echo ****************************************** Exit LethMammothsStart: goto LethMammothsTo%D LethMammothsToCrossings: LethMammothsToShard: LethMammothsToLeth: put go beach put w move w put w put go trail move u put u put u move w put sw put sw move sw put sw put sw move sw put w put sw move sw put sw put w move sw put s put go cave move sw put w put go open move w put go bridg put go south face move w put sw put sw move s put sw put w move sw put go tunn put go west open move sw put sw put nw move sw put w put sw move sw put sw put sw move sw put sw put sw move sw put sw goto LethCenter LethCenterToRatha: LethCenterToFangCove: LethCenterToMammoths: put ne put ne move ne put ne put ne move ne put ne put go gate move ne put e put ne move se put ne move ne put go tunn put go east open move ne put e put ne move n put ne put ne move e put go bridg put go north face move e put go crev put e move ne put go open put n move ne put e put ne move ne put ne put e move ne put ne put ne move ne put ne put ne move e put d put d move d put d put e move e put e put go pier goto LethMammothsTo%D LethMammothsToMammoths: pause 1 echo ******************************* echo *** You have arrived at the mammoths echo *** echo *** go TALL mammoth for Fang Cove echo *** go SEA mammoth for Ratha echo ******************************** Exit FangCoveMammoths: goto FangCoveMammothsTo%D FangCoveMammothsToFangCove: pause 1 echo **************************************** echo *** You have arrived at the Fang Cove Mammoths echo **************************************** Exit RathaMammoths: RathaMammothsBeach: goto RathaMammothsTo%D RathaMammothsToMammoths: pause 1 echo ************************************************* echo *** You have arrived at the mammoths echo *** There are only three possible destinations echo *** from here: Bank, Fang Cove, or Leth echo echo *** Please restart the script with one of these three destinations echo ************************************************* Exit RathaMammothsToCrossings: RathaMammothsToLeth: RathaMammothsToFangCove: FangCoveMammothsToRatha: put join sea mammoth match RathaMammothsWait What were you referring match LethMammothsF2POops Because your account is free match RathaMammothsBoarded Aboard the Mammoth matchwait RathaMammothsWait: waitfor driver says goto RathaMammothsToFangCove FangCoveMammothsWait: waitfor driver says goto FangCoveMammoths LethMammothsWait: waitfor driver says goto LethMammothsTo%D FangCoveMammothsToCrossings: FangCoveMammothsToLeth: LethMammothsToRatha: LethMammothsToFangCove: put join tall mammoth match LethMammothsWait What were you referring match LethMammothsF2POops Because your account is free match LethMammothsBoarded Aboard the Mammoth matchwait RathaMammothsBoarded: pause 1 echo *************************** echo *** You are now on the mammoth echo *** between Ratha and Fang Cove echo *** Enjoy the ride! echo *************************** goto CheckStart RathaBank: RathaBankToMammoths: pause 1 echo **************************************************** echo *** This script only has minimal functionality in Ratha. echo *** There are two starting spots: the beach awaiting mammoths echo *** and any of the rooms in the 1st tier bank. echo *** Only “mammoth,” “bank,” “Fang Cove,” and “Leth” are possible destinations. echo *** echo *** I highly recommend use of the RATHA travel script echo *** while on the island. echo **************************************************** pause 2 put go atrium RathaBankToMammothsDoor: put go door pause 1 put climb stair match RathaBankToMammothsDoor What were you match RathaBankToMammothsCont Bank Street matchwait RathaBankToMammothsCont: move sw put s put s move s put e put e move e put e put e move s put se put se move ne put se put e move e put ne put e move go rock pause 1 goto RathaMammoths RathaMammothsToRatha: RathaMammothsToBank: echo Okay! pause 1 put go beach put w move sw put w put w move nw put sw put nw move nw put n put w move w put w put w move w put n put n move n move ne put cli stai put go do pause 1 echo **************************************************** echo echo *** This script only has minimal functionality in Ratha. echo *** There are two starting spots: the beach awaiting mammoths echo *** and any of the rooms in the 1st tier bank. echo *** Only “mammoth,” “bank,” “Fang Cove,” and “Leth” are possible destinations. echo *** echo *** I highly recommend use of the RATHA travel script echo *** while on the island. echo echo ************************************** pause 1 echo echo *** You have arrived at Ratha’s 1st Tier Bank echo *** GO BURSAR for exchange echo *** GO CASHIER for deposit/withdrawal echo echo ************************************** Exit LethMammothsBoarded: pause 1 echo *************************** echo *** You are now on the mammoth echo *** between Leth and Fang Cove echo *** Enjoy the ride! echo *************************** goto CheckStart LethMammothsF2POops: pause 1 echo ******************************* echo *** Due to your account status as F2P echo *** You are not permitted to travel there echo ******************************** Exit LethMeysStart: put w put sw move s put sw move w put climb monol put sw move sw put sw put sw move s put s move se put go gate put se move se put se put se move se put se move se goto LethCenter LethNorthPlatformStart: put go ridge put n move ne put nw goto LethOutsideSnowiesStart LethInsideSnowiesStart: put ne put e move ne put e move se goto LethOutsideSnowiesStart LethOutsideSnowiesStart: put n put n move ne put ne put n move ne put n put ne move n put ne put n move ne put ne put e move e put n put n move ne put n put ne move n put ne put e move ne put n put n move ne put ne put ne move ne put ne put n move ne put ne put n move n put ne put ne move n put n put ne move ne put ne put ne move ne put n put ne move n put n put n move n put ne put ne move ne put n put n move ne put ne put n move n put ne put ne move n put ne put go gate move ne put ne put ne move ne put ne put ne move ne goto LethCenter LethFerryToLeth: LethFerryToBank: LethFerryToClothing: LethFerryToDyer: LethFerryToBowyer: LethFerryToOrigami: LethFerryToWickerworks: LethFerryToDovesDoors: LethFerryToCandy: LethFerryToBakery: LethFerryToGallows: LethFerryToLethTraders: LethFerryToTraders: LethFerryToMeys: LethFerryToSnowies: LethFerryToGondola: LethFerryToSafe: LethFerryToShard: LethFerryToMammoths: LethFerryToFangCove: LethFerryToRatha: LethFerryToWoodcraft: LethFerryToTamsinesRest: LethFerryToIlayaTaipa: LethFerryToAlfarsManor: LethFerryToSecludedGlade: LethFerryToForestOfNight: put s put s move s put s put sw move sw put sw put sw move s put se put se move s put s put sw move sw put sw put s move se goto LethForestOfNightStart LethForestOfNightStart: ForestOfNightToClothing: ForestOfNightToBank: ForestOfNightToDyer: ForestOfNightToBowyer: ForestOfNightToOrigami: ForestOfNightToWickerworks: ForestOfNightToDovesDoors: ForestOfNightToCandy: ForestOfNightToBakery: ForestOfNightToGallows: ForestOfNightToLethTraders: ForestOfNightToTraders: ForestOfNightToMeys: ForestOfNightToSnowies: ForestOfNightToGondola: ForestOfNightToSafe: ForestOfNightToShard: ForestOfNightToMammoths: ForestOfNightToFangCove: ForestOfNightToRatha: ForestOfNightToWoodcraft: ForestOfNightToTamsinesRest: ForestOfNightToIlayaTaipa: ForestOfNightToAlfarsManor: ForestOfNightToLeth: put sw put s move sw put s put s move se put se put sw move sw put sw put sw move s put sw put se move se put s put s move se put se put s move s put se put go gate move se put se put se move se put se put se move se goto LethCenter