How do you get information to be displayed like on the Nexus client? I switched over to Mudlet after hearing a few people recommend it, but it's just a big window with text. Playing around and with some help I managed to get the map to come up, but it's huge and takes up half the screen unlike the corner map on Nexus. Is setting it up to where I can have information displayed to my preference like in Nexus something that can be reasonably accomplished for an amateur?
0
Comments
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
And in the event I wanted to use the svfo single-prompt, is there a way to make that stationary just above the mana/health bars? I would love to not have prompt spam. Starting to hurt my eyes. X.x
svo.bottomprompt
with a custom:reposition()
function to keep it at the bottom of the screen. Here’s an example on setting one, create a new script after Svof’s scripts (or use thesvo system loaded
event) and put this in:function svo.bottomprompt:reposition()
local width,height = calcFontSize(svo.conf.singlepromptsize or 11)
local x,y,w,h = self:get_x(), self:get_y(), self:get_width(), self:get_height()
moveWindow(self.name, self:get_x(), self:get_y()-(height+(height/3)))
resizeWindow(self.name, self:get_width(), self:get_height())
end
For the information up top regarding gold, and lessons, you need to understand how to use GMCP. You can check out mData by Trevize which helps understanding/utilizing GMCP a bit easier.
What you can do is echo something like this:
topLabelLessons:echo("Lessons: "..to.number(gmcp.Char.Status.Lessons), nil, "c")
-- topLabelLessons would be whatever the name of your label is, for the lesson echo.
Does anyone know how to add a window inbetween the Battle Rage commands and the prompt updates window in the above GUI to show people/denizens in the room you are in?