Search found 12 matches

by imany
Mon May 02, 2016 12:30 am
Forum: Help Forum
Topic: Evennia Special Characters
Replies: 0
Views: 3528

Evennia Special Characters

I'm getting this issue with running Evennia where it's displaying special characters as their Python explicit definitions. i.e., < gets displayed as < and > is displayed as >. https://imgur.com/R4K15Yv Forcing MXP negotiation off seems to fix the problem, but does anyone know if there's any way to f...
by imany
Wed Jun 03, 2015 8:11 pm
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Re: Geyser/Window Layout Question

Oh, okay! I guess my test HPcolor values were a little wonky, going hex all the way worked. Thanks! :)
by imany
Wed Jun 03, 2015 10:30 am
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Re: Geyser/Window Layout Question

How do you get a variable into a color tag? HP:echo([[<span style="color:#]]..HPcolor..[[;font-size: 11pt">]]..currentHP..[[<span><span style="color:#FFFFFF;font-size: 11pt">/]]..maxHP..[[</span><span style="color:#]]..HPcolor..[[;font-size: 11pt"> ]]..percHP..[[%<span>...
by imany
Fri Apr 24, 2015 12:06 pm
Forum: Help Forum
Topic: Echoing Changes in Prompt
Replies: 0
Views: 2720

Echoing Changes in Prompt

I capture all my prompt echoes to the bottom of my screen, which works fine. What I'd like to do is print changes in HP to the buffer as they come in per line. How would I do this? If it helps, this is my current HP script snippet: function convertHP(currentHP, maxHP) if currentHP and maxHP then cur...
by imany
Fri Jan 02, 2015 10:28 am
Forum: Help Forum
Topic: Window Resize Event Eating Commands?
Replies: 0
Views: 2104

Window Resize Event Eating Commands?

I've been running into a sporadic issue with Mudlet 2.1 eating say commands in Armageddon sporadically, where it will eat several repeated commands 2-3x in a row and then work at last. I ran the debugger and this is what it turned up on each input that didn't appear to be recognized by the mud: LUA ...
by imany
Wed Nov 26, 2014 12:03 am
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Re: Geyser/Window Layout Question

Thanks, that's really helpful!

One more question: Can you use a variable for a color in the <span> tag?
by imany
Fri Nov 21, 2014 5:33 pm
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Re: Geyser/Window Layout Question

I may be misunderstanding what you mean, but I tried setFontSize() on the container in question and it didn't seem to be inherited by the labels. It also didn't seem to be able to applied directly to the labels themselves. I'm also not quite sure what you mean by a full Qt stylesheet? Is there an al...
by imany
Fri Nov 21, 2014 2:11 pm
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Re: Geyser/Window Layout Question

Okay, another question. I'm having trouble with this: local prompt_container = Geyser.HBox:new({ name = "prompt_container", x = "0", y = "-30", width = "100%", height = "30", }) local HP1 = Geyser.Label:new({ name = "HP1", width = "30&...
by imany
Wed Nov 19, 2014 9:32 am
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8379

Geyser/Window Layout Question

Is Geyser or any of the other window layout-oriented stuff able to create a margin above the input area so that you can fit a label at the bottom of the screen without it covering pertinent information?
by imany
Wed Nov 19, 2014 1:06 am
Forum: Help Forum
Topic: Efficiently Replicating a Trigger With Tables?
Replies: 1
Views: 2053

Efficiently Replicating a Trigger With Tables?

I'd like to be able to use the following more efficiently than creating an individual trigger. This trigger is for remembering a character's short description with a name. selectString("short description",1) fg("cyan") replace("short description (Example Name)" I think,...