GUI show off thread

by Svorai

Back to Mechanic's Corner.

Svorai2012-01-08 12:11:53
I couldn't find one - so I've made this thread so we can all show off how we organise our clients to play Lusternia. Please post your own pics!

I'm going to start it off with my own - made today and yesterday. It's really Vadi's work ^_^ - I just fiddled with things until I liked the way it looked. Made in Mudlet, with Demonnic's tabbed chats (minus the tabs), and Mudlet's mapper (nicely squished). Thanks to Zilias for finding the picture, and of course Vadi for patiently showing me how everything works, and generally being awesome.

The quote along the top is set to randomise several lines, alias reminders to the left (yet to be updated) to the left, and runecasting plugin to the right (yet to be populated).



Please share your own!
Unknown2012-01-08 14:03:23
Funny you should post this. I was just working on adding/improving my own this morning.



The exits on the left-hand GUI were changed to use GMCP. Was going to use the empty space there for -something- - Not sure yet.

Might add more stuff to the utility window, too.
Unknown2012-01-08 18:20:34
Mine is the fanciest one of all:

Chade2012-01-12 13:04:34
Ha, completely independently, mine is a carbon copy of Shu's.
Kagato2012-01-12 13:16:00
I wish I simply knew how to modify my GUI like that full stop, I'm just using the default Mudlet interface ><
Unknown2012-01-13 13:28:32
Here we go. I had a little play around earlier and came up with this.

Note: My design skills suck.

Tandrin2012-01-13 15:26:19
I tried using Chade's instructions rather insertion of the mapper using the script code.

When I login, it loads a blank map. If I mmap load, it loads a more complete map, but it loads as if I am in a different area entirely than I am. Any clue how to deal with this?
Enyalida2012-01-13 23:50:21
That looks a lot closer to something I'd use, hehe. I have a very... minimal layout. At max, I'd want a timerbox for various timers, a small map, and a vitals ticker, though that last one is not as necessary. Chatbox is nice, but the only thing I really want is targeting info in that box...
vorld2012-01-15 05:30:43
how did you all get so fancy? I just have the fancy lusternia gui for mudlet. Still trying to figure out how to make a target info box.
Unknown2012-01-15 06:53:05
Flat Mushclient here. I don't have any GUI at all.
Unknown2012-01-15 09:01:25
vorld:

how did you all get so fancy? I just have the fancy lusternia gui for mudlet. Still trying to figure out how to make a target info box.


I posted code for this on these forums somewhere.
Okin2012-01-15 12:11:27
Draylor:


I posted code for this on these forums somewhere.


Well... could you link us? :P
Unknown2012-01-15 16:07:20
Well....

Not sure, so I kind of... Searched?

http://forums.lusternia.com/index.php?showtopic=19473
vorld2012-01-15 16:39:34

system.tracking.paused = false
system.gui = system.gui or {}
system.temp = system.temp or {}
system.gui.functions = system.gui.functions or {}
system.tracking.simpleTarget = "NOTHING"


statusBarOutline = Geyser.Label:new({
name = "target_bar_outline",
x = 305, y = -25,
width = "403", height = 25,
color = "DarkSlateGrey",
}, layout)

statusBar = Geyser.Label:new({
name = "target_bar",
x = 306, y = -23,
width = "400", height = 21,
color = "black",
}, layout)
statusBar:setFontSize(8)

system.gui.functions.targetui =
function()
local output = "Target: " .. system.tracking.simpleTarget .. (system.tracking.paused and " * PAUSED *" or "")
output = output .. (system.temp.currentAurics and (" | Auric Chain: " .. system.temp.currentAurics) or "")
output = output .. (system.temp.suggestions and (" | Suggestions: " .. #system.temp.suggestions) or "")


statusBar:echo(output, "orange", "cb")
end

system.gui.functions.targetui()


I don't know where to put this code though
Unknown2012-01-15 16:43:30
Should really be moved to the Mudlet support thread this, mate.
vorld2012-01-15 16:45:10
good point
Zilias2012-01-23 16:46:26
Hey Svorai,

What size monitor are you using and at what resolution?


Thanks,