Mudlet Mapper

From Mudlet
Revision as of 22:43, 7 June 2011 by Vadi (talk | contribs) (Created page with "== 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. <lua> ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

<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>