Search found 94 matches

by keneanung
Wed Feb 01, 2012 10:38 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 278210

Re: Vyzor, UI Manager for Mudlet [Beta?]

That's what Oneymus said (see 3 posts above). I just thought there'd be a (undocumented) function/field to set it. And I wasn't quite sure which of the classes was the label.
by keneanung
Tue Jan 31, 2012 7:52 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 278210

Re: Vyzor, UI Manager for Mudlet [Beta?]

There are some classes (in Achaea) that can make it happen quite easily. For example monks, who use "split mind" which reduces the total mana. Or I think necromanters can raise their health above the limit. Geyser gradient gauges handle this by pushing the color change towards maximum. But...
by keneanung
Tue Jan 31, 2012 4:46 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 278210

Re: Vyzor, UI Manager for Mudlet [Beta?]

First of all... I really like your afford.

You the gauges seem to have a bug though: If you have above 100% of the stat, the gauge does not show correctly.
by keneanung
Mon Aug 29, 2011 7:42 am
Forum: Help Forum
Topic: exact match or anchoring with regex
Replies: 5
Views: 3915

Re: exact match or anchoring with regex

You could make it a multiline trigger with a line delta of 0 as well. Then you'd have only a single trigger to work with.
by keneanung
Mon Aug 29, 2011 7:37 am
Forum: Help Forum
Topic: what am I doing wrong?
Replies: 10
Views: 6779

Re: what am I doing wrong?

sure you can, you'd need to use
Code: [show] | [select all] lua
local to_eat = hearbs[add]
by keneanung
Fri Aug 12, 2011 7:55 am
Forum: Help Forum
Topic: Table Calling?
Replies: 7
Views: 5234

Re: Table Calling?

uh I forgot... send("astrocast " .. astronumeric[tonumber(matches[2])].. " sphere at " .. target) Matches are always strings, even though they should be numbers. On another note, if you want to match only numbers after as, then your regex should be "^as (\d+)$". \d matc...
by keneanung
Fri Aug 12, 2011 7:31 am
Forum: Help Forum
Topic: Table Calling?
Replies: 7
Views: 5234

Re: Table Calling?

Just use
Code: [show] | [select all] lua
send("astrocast " .. astronumeric[matches[2]].. " sphere at " .. target)
That should fix it.
by keneanung
Fri Jul 22, 2011 6:39 am
Forum: Scripts & Packages
Topic: Vadi Sipper for Achaea
Replies: 25
Views: 29526

Re: Vadi Sipper for Achaea

Vadi had one that uses ATCP, but GMCP is the state of art right now.
Adapting it for gmcp isn't hard, although I can't do the changes right now without mudlet with me.
by keneanung
Fri Jul 22, 2011 6:27 am
Forum: Scripts & Packages
Topic: Vadi Sipper for Achaea
Replies: 25
Views: 29526

Re: Vadi Sipper for Achaea

That depends on the mudbot you use. Some were adapted to let gmcp or atcp pass through.
by keneanung
Mon Jul 18, 2011 7:47 am
Forum: Help Forum
Topic: Lua error in mapper
Replies: 2
Views: 2502

Re: Lua error in mapper

That bug should be fixed in the meantime. It was in fact a malformed string, but that createStopWatch was the first line of that script, not some string or somthing.