kiriel.gifKiriel D'Sol

Macros

Macros Available:

Foothills Directions Macro

To use, copy and paste the following text into your Clan Lord macros file. Feel free to customize for your own use as needed.


// Foothills Directions v1.0 // Based on the Foothills map at: http://users.mm2k.net/spiffyzha/foothills_small.html // Macro created by Kiriel D'Sol // Notify kiriel@windsofdawn.org if you find a mistake or want to suggest an improvement "fhdir" { // To Camp Dred from snell 1 (exit from DP) if @text == "tocd" message "" message "Directions from Snell 1 (exit from DP) to Camp Dred:" message "E to 3" message "N to 5" message "E to 23" message "N through path in NW corner to 22" message "E to 15" message "S in SE corner to 14" message "S to 13" message "W to 12" message "N to 10 (pool room)" message "S in SW corner to 11" message "S through path in SW corner to 25" message "E through path in NE corner to Camp Dred" message " " // To Pool Room from snell 1 (exit from DP) else if @text == "top" message "" message "Directions from Snell 1 (exit from DP) to Pool Room (PF-required route):" message "E to 3" message "N to 5" message "E to 23" message "N through path in NW corner to 22" message "E to 15" message "S in SE corner to 14" message "S to 13" message "W to 12" message "N to Pool Room (10)" message " " // To Pool Room from snell 1 (exit from DP), non-PF route else if @text == "topnp" message "" message "Directions from Snell 1 (exit from DP) to Pool Room (non-PF route):" message "E to 3" message "N to 5" message "E to 23" message "E to 9" message "N to 16" message "S in W middle to 15" message "S in SE corner to 14" message "S to 13" message "W to 12" message "N to Pool Room (10)" message " " // To Shroom Room from Snell 1 (exit from DP) else if @text == "tos" message "" message "Directions from Snell 1 (exit from DP) to Shroom Room:" message "E to 3" message "N to 5" message "E to 23" message "N through path in NW corner to 22" message "N in NW corner to 21" message "N in N part of SE corner to 20" message "S through path in middle of S edge to Shroom Room" message " " // To Ash Valley from Snell 1 (exit from DP) else if @text == "toa" message "" message "Directions from Snell 1 (exit from DP) to Camp Dred:" message "E to 3" message "N to 5" message "E to 23" message "N through path in NW corner to 22" message "E to 15" message "N in N part of SE corner to 18" message "Up ladder in SE corner to Ash Valley" message " " // To Kaptus Cave from Pool Room (PF-required route) else if @text == "p2c" message "" message "Directions from Pool Room to Kaptus Cave:" message "S in SE corner to 12" message "E to 13" message "N to 14" message "N to 15" message "W in middle W edge to 22" message "S through path in SW corner to 23" message "W in SW corner to 5" message "S to 3" message "W to 1" message "N to 2 (cave is in the middle of the E half of the snell)" message " " // To Kaptus Cave from Pool Room (non-PF route) else if @text == "p2cnp" message "" message "Directions from Pool Room to Kaptus Cave:" message "S in SE corner to 12" message "E to 13" message "N to 14" message "N to 15" message "N in NW corner to 16" message "S to 9" message "W to 23" message "W in SW corner to 5" message "S to 3" message "W to 1" message "N to 2 (cave is in the middle of the E half of the snell)" message " " // Instructions else message "" message "Specify choice for Foothills directions" message "i.e. fhdir tocamp" message "" message "Snell 1 to Camp Dred: tocd" message "Snell 1 to Pool Room: top or topnp (non-PF route)" message "Snell 1 to Shroom Room: tos" message "Snell 1 to Ash Valley: toa" message "Pool Room to Kaptus Cave: p2c or p2cnp (non-PF route)" message "" message "Foothills Map at: http://users.mm2k.net/spiffyzha/foothills_small.html" message "" end if }