Lich mapping reference: Difference between revisions
ARCHIMEDIAN (talk | contribs) (→Complex Movements: Changed heading, added explanation of bescort usage) |
ARCHIMEDIAN (talk | contribs) (→Calling Bescort with StringProcs: add example) |
||
Line 170: | Line 170: | ||
==== Calling Bescort with StringProcs ==== |
==== Calling Bescort with StringProcs ==== |
||
Certain actions like navigating mazes and ferry crossings are more smoothly handled by a separate script. Rather than create a complicated StringProc, its preferred to use <code>bescort</code>. Modify <code>bescort.lic</code> to handle the navigation and then start it in the desired room using a StringProc. |
Certain actions like navigating mazes and ferry crossings are more smoothly handled by a separate script. Rather than create a complicated StringProc, its preferred to use <code>bescort</code>. Modify <code>bescort.lic</code> to handle the navigation and then start it in the desired room using a StringProc. |
||
Here is an example of a StringProc to call bescort to take the sea mammoth from Ratha to Fang Cove. |
|||
<pre> |
|||
StringProc.new("start_script('bescort', ['mammoth', 'fang']);wait_while{running?('bescort')};") |
|||
</pre> |
|||
It is also suggested that you get some sort of accurate estimate of the crossing time! Don't use the default 0.2 seconds for the timeto if it takes minutes. Timing impacts the route <code>go2</code> decides to take. |
|||
=== Update Rooms with multiple descriptions === |
=== Update Rooms with multiple descriptions === |
Revision as of 05:57, 8 April 2017
Introduction to Mapping
The map is a database that is downloaded to your lich directory each time you login to the game. The database consists of rooms. All rooms need to have a wayto and a timeto. A wayto describes the movement to get to the room. The timeto describes how long it takes to get there (0.2 seconds is the default). ;automap
handles adding this data automatically in most cases. If you map a room manually without ;automap
then you need to be sure that you include both the timeto and the wayto, forgetting one will break ;go2's ability to navigate to that room.
Refreshing Your MapDB
To fetch the latest version of the map database run these commands:
;repository download-mapdb ;e Map.reload
To Get Started
Check out the map database. This will replace your current map database with the remote. This means that any changes you have made will be erased! This does not include anything like ;go2
saved rooms.
You need to have a password on file to check out the mapdb. This password is stored in plain text locally, so don't make it anything important.
When you checkout the map db, you own the database for 24 hours. This means that no one else can check it out until you upload or release it. Please, for the love of god, don't forget this.
> ;repository checkout-mapdb [repository: success; running download-mapdb now...] [repository: map database is up-to-date] [repository: done] [repository: edit your map database and ;repository upload-mapdb within 24 hours.] --- Lich: repository has exited.
I Screwed Up
All changes are local until you upload the database. If you didn't upload it, you can RELEASE it which will erase your changes since your checkout and allow others to check out the mapdb again.
;repository release-mapdb
Referencing Rooms
Rooms can be referenced in two ways: Map.list[room_id]
or Room[room_id]
. There are some idiosyncrasies between the two, but in most cases either will work fine.
Room.current refers to your current room.
Room[room_id]
refers to any room with the given id
Useful Aliases
If you are using the Dependency suite of scripts, please run ;setupaliases
to install these some of these useful mapping aliases. It will not install all of them, currently.
;alias add lr = ;e echo Room[Room.current.id].inspect ;alias add ad = ;e Room[/?].description.push(XMLData.room_description) # Usage: ad roomnumber ;alias add snip = ;e Room.current.timeto.delete("\?")\r;e Room.current.wayto.delete("\?"); # Usage: snip roomnumber ;alias add ids = ;e echo "#{Room.current.id}:#{Room.current.wayto}"
Useful commands
;e echo Room.current.inspect # This is the lr alias ;e echo Room.current.wayto
When You Are Done
Upload your version of the map database to replace the global one. Players that are logged in will not receive this update, they will have to execute the commands given above, or re-login to the game.
;repository upload-mapdb
If its your first time mapping, please make sure to announce to LNet that you have fixed or mapped something. It is no small feat! Folks realize something new is added or working. You will make mistakes and you will probably mess something up eventually, but that is the best way to learn. If you map X and someone mentions that X is now messed up, please speak up! This is far from a perfect system and no one will get it right the first time (or second or third). Mapping is all about collaboration, the effort is always welcomed and folks will discuss what could have been done differently.
Common Mapping Techniques
Adding New Rooms
Example
[MAMAS Hibarnhvidar, Main Office] Several small work stations ring the large cavern of the Merchant Adventurers' Mapping, Assay, and Survey Company's primary office in Forfedhdar. Tools and survey instruments lie stacked at the various stations, soon to be available for purchase by adventurers needing the latest in mining equipment. At the end of the cavern, a lone clerk stands by a counter with a set of small scales used to weigh individual items and stones of valuable minerals. You also see a sign. Obvious exits: out. I> You feel fully attuned to the mana streams again. I>out You stroll out. [Inner Hibarnhvidar, Upper Cavern] The generations of skilled Dwarven craftsmen that cleaved this cavern out of the living rock of the mountain let their imaginations run free in the carvings surrounding the arches leading to the shops and work-caverns. One is surrounded by flowing rock-hewn ribbons pleated in an intricate pattern, others are studded with cabochon gems or tiny carvings in minute detail. You also see a stone arch inscribed with the MAMAS Company logo. Obvious exits: north, northeast, east, southeast. Room Number: 3812 I>ids --- Lich: exec1 active. [exec1: 3812:{"3815"=>"northeast", "3811"=>"north", "3813"=>"southeast", "3814"=>"east"}] --- Lich: exec1 has exited. I> You maintain control of the Steps of Vuan spell. The bent light surrounding you shimmers slightly but otherwise does not change. I> You feel fully attuned to the mana streams again. I>rel sov The refractive field surrounding you fades away. >l [Inner Hibarnhvidar, Upper Cavern] The generations of skilled Dwarven craftsmen that cleaved this cavern out of the living rock of the mountain let their imaginations run free in the carvings surrounding the arches leading to the shops and work-caverns. One is surrounded by flowing rock-hewn ribbons pleated in an intricate pattern, others are studded with cabochon gems or tiny carvings in minute detail. You also see a stone arch inscribed with the MAMAS Company logo. Obvious exits: north, northeast, east, southeast. Room Number: 3812 >ids --- Lich: exec1 active. [exec1: 3812:{"3815"=>"northeast", "3811"=>"north", "3813"=>"southeast", "3814"=>"east"}] --- Lich: exec1 has exited. >go arch [MAMAS Hibarnhvidar, Main Office] Several small work stations ring the large cavern of the Merchant Adventurers' Mapping, Assay, and Survey Company's primary office in Forfedhdar. Tools and survey instruments lie stacked at the various stations, soon to be available for purchase by adventurers needing the latest in mining equipment. At the end of the cavern, a lone clerk stands by a counter with a set of small scales used to weigh individual items and stones of valuable minerals. You also see a sign. Obvious exits: out. [General] Your mind hears Maltris thinking, "Moon Mage around Crossing able to help me retune a piece of cambrinth by chance?" >out You stroll out. [Inner Hibarnhvidar, Upper Cavern] The generations of skilled Dwarven craftsmen that cleaved this cavern out of the living rock of the mountain let their imaginations run free in the carvings surrounding the arches leading to the shops and work-caverns. One is surrounded by flowing rock-hewn ribbons pleated in an intricate pattern, others are studded with cabochon gems or tiny carvings in minute detail. You also see a stone arch inscribed with the MAMAS Company logo. Obvious exits: north, northeast, east, southeast. Room Number: 3812 >;repo checkout-mapdb --- Lich: repository active. [repository: success; running download-mapdb now...] [repository: downloading map database...] [repository: deleting old map databases...] [repository: loading map database...] [repository: done] [repository: edit your map database and ;repository upload-mapdb within 12 hours.] --- Lich: repository has exited. >;automap --- Lich: automap active. Starting **Mapping (abort to cancel, stop to finish)** Your feet are still soaked. >go stone arch [MAMAS Hibarnhvidar, Main Office] Several small work stations ring the large cavern of the Merchant Adventurers' Mapping, Assay, and Survey Company's primary office in Forfedhdar. Tools and survey instruments lie stacked at the various stations, soon to be available for purchase by adventurers needing the latest in mining equipment. At the end of the cavern, a lone clerk stands by a counter with a set of small scales used to weigh individual items and stones of valuable minerals. You also see a sign. Obvious exits: out. **Mapping (abort to cancel, stop to finish)** >out You stroll out. [Inner Hibarnhvidar, Upper Cavern] The generations of skilled Dwarven craftsmen that cleaved this cavern out of the living rock of the mountain let their imaginations run free in the carvings surrounding the arches leading to the shops and work-caverns. One is surrounded by flowing rock-hewn ribbons pleated in an intricate pattern, others are studded with cabochon gems or tiny carvings in minute detail. You also see a stone arch inscribed with the MAMAS Company logo. Obvious exits: north, northeast, east, southeast. Room Number: 3812 **Mapping (abort to cancel, stop to finish)** >ids --- Lich: exec1 active. [exec1: 3812:{"3815"=>"northeast", "3811"=>"north", "3813"=>"southeast", "3814"=>"east", "12182"=>"go stone arch"}] --- Lich: exec1 has exited. >;k automap --- Lich: automap has exited. >go arch [MAMAS Hibarnhvidar, Main Office] Several small work stations ring the large cavern of the Merchant Adventurers' Mapping, Assay, and Survey Company's primary office in Forfedhdar. Tools and survey instruments lie stacked at the various stations, soon to be available for purchase by adventurers needing the latest in mining equipment. At the end of the cavern, a lone clerk stands by a counter with a set of small scales used to weigh individual items and stones of valuable minerals. You also see a sign. Obvious exits: out. Room Number: 12182
Delete a room
Go to each surrounding room and perform the following, where "roomid" is the id of the room you are going to delete. It must be enclosed in quotation marks. This is the same as the 'snip' alias above.
;e Room.current.wayto.delete("roomid") ;e Room.current.timeto.delete("roomid")
Finally, remove the room. Roomid is NOT quoted here. Enter it as a number.
;e Map.list[roomid] = nil
Advanced Movements with StringProcs
Complicated actions ones which require multiple movements to get to the target room. A complex action is not just go, move, climb, etc... but involving searching to discover the path, or pushing an object to open a door. Use a stringproc to add these. Note: these actions require approval from the mapdb admin, and will lock the mapdatabase until they are approved/rejected. Do not add them without testing them.
;e Room.current.wayto['1220'] = StringProc.new(“fput 'search'; move 'go path'”)
Calling Bescort with StringProcs
Certain actions like navigating mazes and ferry crossings are more smoothly handled by a separate script. Rather than create a complicated StringProc, its preferred to use bescort
. Modify bescort.lic
to handle the navigation and then start it in the desired room using a StringProc.
Here is an example of a StringProc to call bescort to take the sea mammoth from Ratha to Fang Cove.
StringProc.new("start_script('bescort', ['mammoth', 'fang']);wait_while{running?('bescort')};")
It is also suggested that you get some sort of accurate estimate of the crossing time! Don't use the default 0.2 seconds for the timeto if it takes minutes. Timing impacts the route go2
decides to take.
Update Rooms with multiple descriptions
Go2 uses room descriptions part of determining what room you're in. If the room has multiple descriptions, the room you are in may appear to be unmapped during some seasonal/time change. To correct this, add the room description to the correct room. Do not remap the room.
This assumes you are standing in the target room with its new description and you know the roomid.
;repo checkout-mapdb ;e Map.list[1263].description.push(XMLData.room_description) ;repo upload-mapdb
Example
The first room in the log below doesn't have a room ID. This could either be unmapped or missing a description. To find out, we'll visit a neighboring room and check its exits using the 'ids' alias. If the exits point to the missing room then we know its room ID and just have to update the description. When we know the room ID we walk back and use the 'ad ####' alias to update the given roomid with the description of the room we are standing in. To verify it was updated, we re-enter the room and see that it now has a room id.
[Boar Clan, Split-Log Path] The sounds of the forest permeate the palisade wall and wash over the sleeping village. Each breath of wind rustles the trees that stir the night air and conduct the arboreal symphony. Chirping insects and the deep throaty calls of frogs keep the rhythm while high-pitched animal cries weave a soprano's song with a melody only nature could compose. Obvious paths: northeast, west. >ne You stroll northeast. [Boar Clan, Split-Log Path] A tall palisade wall of thick iron-banded tree trunks embraces the small village of thatched longhouses and bark-covered huts. Split log walkways snake between the structures. One rutted dirt path leads from the gate to a squarish building with deep eaves that shelters stacks of crates and barrels piled outside the door. You also see a palisade gate, the stable doors and a long log nestled underneath a nearby tree. Obvious paths: northeast, southwest. Room Number: 4106 >;repo checkout-mapdb --- Lich: repository active. [repository: success; running download-mapdb now...] [repository: map database is up-to-date] [repository: done] [repository: edit your map database and ;repository upload-mapdb within 24 hours.] --- Lich: repository has exited. >ids --- Lich: exec1 active. [exec1: 4106:{"4105"=>"go gate", "4107"=>"southwest", "4109"=>"northeast"}] --- Lich: exec1 has exited. >sw You stroll southwest. [Boar Clan, Split-Log Path] The sounds of the forest permeate the palisade wall and wash over the sleeping village. Each breath of wind rustles the trees that stir the night air and conduct the arboreal symphony. Chirping insects and the deep throaty calls of frogs keep the rhythm while high-pitched animal cries weave a soprano's song with a melody only nature could compose. Obvious paths: northeast, west. > Your body below the waist is dripping with water. Pools of it are forming all around you. > You've gained a new rank in your knowledge of sorcery. >ad 4107 --- Lich: exec1 active. --- Lich: exec1 has exited. >ne >sw You stroll northeast. [Boar Clan, Split-Log Path] A tall palisade wall of thick iron-banded tree trunks embraces the small village of thatched longhouses and bark-covered huts. Split log walkways snake between the structures. One rutted dirt path leads from the gate to a squarish building with deep eaves that shelters stacks of crates and barrels piled outside the door. You also see a palisade gate, the stable doors and a long log nestled underneath a nearby tree. Obvious paths: northeast, southwest. Room Number: 4106 > You stroll southwest. [Boar Clan, Split-Log Path] The sounds of the forest permeate the palisade wall and wash over the sleeping village. Each breath of wind rustles the trees that stir the night air and conduct the arboreal symphony. Chirping insects and the deep throaty calls of frogs keep the rhythm while high-pitched animal cries weave a soprano's song with a melody only nature could compose. Obvious paths: northeast, west. Room Number: 4107
Adding a new map image
Lets add a new map image!
Copied from lrn2map:
Step 6: Add to narost (if needed or wanted)
6a. Add the image to the map database. Narost will only display images that are already in the map database. If the image is already in the map database because it's used by other rooms, move on to 6b. If not, save the image in the lich\maps directory, go to a room that will use the image, and type ;e Room.current.image = 'filename' # substitute the actual filename of the image, including the file extension, but without the path.
6b. Start narost in fix mode (;type ;narost fix)
6c. Bring up the image in narost. Right-click in the narost window, click on “view map” in the popup menu, and click on the image name that you'll be adding to.
6d. Move the image around to find where your current room goes.
6e. Hold down the Shift and Ctrl keys, click on the top left and bottom right corners of the room on the image, let go of Shift and Ctrl.
6f. If there are more rooms to add, move to the next room in game, go to step 6d.
6g. Save the map database (type ;e Map.save). While the mapmap script saves the map database every time it closes, narost does not. You can save the map database as often as you like if you are worried about losing your progress.