Mudlet Mapper

From Mudlet
Revision as of 14:54, 16 June 2011 by Vadi (talk | contribs) (→‎Mapping)
Jump to navigation Jump to search

Mapping

Tips

  1. Don't move the room you're currently in, you'll go haywire
  2. The number when spreading/shrinking room selections it the multiplication factor - 2 is a good number to try

Placing the mapper into a corner

Here's a snippet you can use to place the mapper window into a corner and have it automatically come up whenever you open Mudlet. To use this, create a new script and copy/paste the code into it.

<lua> local main = Geyser.Container:new({x=0,y=0,width="100%",height="100%",name="ofn.whc"})

local mapper = Geyser.Mapper:new({

 name = "mapper",
 x = "70%", y = 0, -- edit here if you want to move it
 width = "30%", height = "50%"

}, main) </lua>