2 things.
1: Bump.
2: I don't like seeing my "ride" down there, and would instead like to see MOOD.
How do I do this? In "Copy and paste" language please.
go into the XML file, find this:
--Riding Status
InfoColour ("black")
Info ("Riding: ",CurrentRiding," ")
Change each instance of Riding to Mood. Including CurrentRiding to CurrentMood.
Feel free to experiment. The "Info" command takes multiple arguments that are all mashed together. CurrentRiding/CurrentMood holds the text captured from the MUD.
So you could also replace
Info ("Riding: ",CurrentRiding," ")
with this
Info (CurrentMood," ")
to save some space.
You can add other variables that are already being captured and are easy to add like Mood. I have comments in the file on how to add more.
@Aruven lol, glad you like it.