Set your prompt to the following:
prompt %h %H %t %T %v %V %s %w %o\n -->
Then open your default script for editing by selecting Game->Configure->Scripting (Shift-Ctrl-6)
Click on the Edit Script button.
Paste in the following Sub:
sub infobar(thename, theoutput, data)
world.infoclear
world.infoBackground "black"
world.infoColour "lime"
world.infoFont "Verdana",10,1
if Cint(data(1)) < 60 then
world.infoColour "red"
elseif Cint(data(1)) < 70 then
world.infoColour "orange"
elseif Cint(data(1)) < 82 then
world.infoColour "khaki"
else
world.infoColour "lime"
end if
world.info data(1) + "(" + data(2) + ")hp "
if Cint(data(3)) < 40 then
world.infoColour "red"
elseif Cint(data(3)) < 60 then
world.infoColour "orange"
elseif Cint(data(3)) < 80 then
world.infoColour "khaki"
else
world.infoColour "lime"
end if
world.info data(3) + "(" + data(4) + ")st "
if Cint(data(5)) < 70 then
world.infoColour "red"
elseif Cint(data(5)) < 120 then
world.infoColour "orange"
elseif Cint(data(5)) < 140 then
world.infoColour "khaki"
else
world.infoColour "lime"
end if
world.info data(5) + "(" + data(6)+ ")mv "
world.infoFont "Verdana",10,0
world.infoColour "khaki"
world.info " Plazgoth is currently "
world.infoFont "Verdana",10,1
world.infoColour "lime"
world.info data(7)
world.infoFont "Verdana",10,0
world.infoColour "khaki"
world.info " , he is "
world.infoFont "Verdana",10,1
select case data(8)
case "running"
world.infoColour "lime"
case "walking"
world.infoColour "red"
case "sneaking"
world.infoColour "lightblue"
end select
world.info data(8)
world.infoFont "Verdana",10,0
world.infoColour "khaki"
world.info " ,and speaking "
world.infoFont "Verdana",10,1
world.infoColour "lime"
world.info data(9)
end sub
Save the script and when asked about parsing it say yes.
Then create a trigger in Mushclient by selecting Game->Configure->Triggers (Shift-Ctrl-8)
Click on the Add… button.
In the trigger space paste in the following regular expression:^.*?(\d+) (\d+) (\d+) (\d+) (\d+) (\d+) (.*?) (\w+) (\w+)$
Make sure the following check marks are clicked: Enabled, Omit from Output, Regular Expression.
Down on the bottom right of that dialog in the script box type in infobar
Hit OK
That should get you the infobar exactly the same as mine. You can obviously change the colors and fonts, and even the treshholds. Put your own's character's name in there unless you like seen Plazgoth in your infobar.