Infobar

Posted by Plazgoth on Wed 26 Mar 2003 12:02 AM — 2 posts, 11,663 views.

USA #0
Is there a way to have the infobar placed above the command window? Also is there a way to have different colors for different things in the infobar? Thanks, this is what my infobar script looks like right now:

sub infobar(thename, theoutput, data)
world.infoclear
world.infoBackground "black"
world.infoColour "lime"
world.infoFont "Fixedsys",12,0
world.info data(1) + "(" + data(2) + ")hp " + data(3) + "(" + data(4) + ")st " + data(5) + "(" + data(6)+ ")mv " + data(7) + " is " + data(8) + " and " + data(9) + "."
current_stance=data(8)
current_pace=data(9)
end sub
Australia Forum Administrator #1
You can move the info bar to the top of the MUSHclient window (above the world windows, below the button bars). You can't put it above the command window as such. There are multiple command windows (if you have multiple worlds open) but only one info bar.

You can mix colours, just change colours and then do another world.info. eg.

world.InfoColour "lime"
world.Info "hp blah blah"
world.InfoColour "yellow"
world.Info "more stuff here"

Do a world.InfoClear when you want to start with a new line, otherwise text keeps appending to the current one.