function setMap()
local main = Geyser.Container:new({x=0,y=0,width="100%",height="100%",name="mapper container"})
local mapper = Geyser.Mapper:new({
name = "mapper",
x = 710, y = 10,
width = 250, height = 190
}, main)
end
The mudlet mapper background colour is black and I don't really wanna change it because it might make the other colours used by the map less visible or whatev but I want to see borders on it. Can I use this?
setBorderColor( 0, 255, 0 )
and if I can, how do I incorporate it in my above script?
Comments
Svof
Mudlet Discord join up
내가 제일 잘 나가!!!111!!1
Svof
Mudlet Discord join up
WindowWidth = 0; WindowHeight = 0; WindowWidth, WindowHeight = getMainWindowSize(); createMiniConsole("sys",WindowWidth-650,0,650,300) setBackgroundColor("sys",85,55,0,255) setMiniConsoleFontSize("sys", 8) -- wrap lines in window "sys" at 65 characters per line setWindowWrap("sys", 40) -- set default font colors and font style for window "sys" setTextFormat("sys",0,35,255,50,50,50,0,0,0)내가 제일 잘 나가!!!111!!1
sysConsole = Geyser.MiniConsole:new({
name="sys",
x=-650,
y=0,
width=650,
height=300,
color={85,55,0},
fontSize=8,
wrapAt=40,
})
sysConsole:setTextFormat(0,35,255,50,50,50,0,0,0)
This should create the exactly same console, but it will reposition itself automatically.
→My Mudlet Scripts
내가 제일 잘 나가!!!111!!1
→My Mudlet Scripts
내가 제일 잘 나가!!!111!!1
→My Mudlet Scripts
function setMap()
local main = Geyser.Container:new({x=0,y=0,width="100%",height="100%",name="mapper container"})
local mapper = Geyser.Mapper:new({
name = "mapper",
x = -300, y = 10,
width = 285, height = 190
}, main)
end
Just to understand more about this, where is the part that says post map on the miniconsole? I don't know if it has been answered but I'm getting lost in this code speak.
내가 제일 잘 나가!!!111!!1
→My Mudlet Scripts