Search found 94 matches

by keneanung
Thu Jul 25, 2013 6:52 am
Forum: Help Forum
Topic: Profile Issues
Replies: 7
Views: 6004

Re: Profile Issues

I had similar issues where all of a sudden my whole profile will be called something else. I didn't try to reproduce it yet, yet but each time this happened I created a new profile and saved them in some order (I think). In the end I had my usual profile with another name and something strange happe...
by keneanung
Fri Jul 19, 2013 8:59 am
Forum: Help Forum
Topic: Combat Window
Replies: 1
Views: 1745

Re: Combat Window

svo's knight limb counter output are echoes, which can not be captured with triggers.

But if you look at http://doc.svo.vadisystems.com/knightli ... r.html#api you see that it's easy to get the data and echo them into your own window. (using the events and the svo.kl_list table)
by keneanung
Thu Jul 18, 2013 10:08 am
Forum: Help Forum
Topic: Two "Match Alls" in Same Line Interfering with Each Other
Replies: 4
Views: 3316

Re: Two "Match Alls" in Same Line Interfering with Each Othe

From your description, you currently highlight both the same colors: fg:white and bg:blue.

It should work as you described, if you set the multiline delta to 0. Maybe I am overseeing something though.
by keneanung
Mon Dec 10, 2012 6:00 pm
Forum: Scripts & Packages
Topic: Vadi Sipper for Achaea
Replies: 25
Views: 29526

Re: Vadi Sipper for Achaea

I cobbled together a gmcp Sipper, which does essentially the saaem, so here you are!

EDIT: You may want to add lines for additional or changed cures. They might be outdated.
by keneanung
Mon Dec 10, 2012 5:34 pm
Forum: Scripts & Packages
Topic: Vadi Sipper for Achaea
Replies: 25
Views: 29526

Re: Vadi Sipper for Achaea

Are you using the version of post number one? In that case you'd need to adapt the sipper for gmcp.

EDIT Or rather in this post is the ATCP version
by keneanung
Sat Mar 03, 2012 8:49 am
Forum: Help Forum
Topic: ipairs!
Replies: 4
Views: 4075

Re: ipairs!

ipairs traverses a table that is coninously numbered and has no "holes" in it. If the next number is not found as an index, ipairs stops.
by keneanung
Sun Feb 26, 2012 8:20 pm
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 278198

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

Some questions about the box: is the init_frames a table? And in which format is it? That's not quite clear in the documentation. And do I need to give the Frames in the box a position? Or would that defeat the box?
by keneanung
Wed Feb 22, 2012 10:54 am
Forum: General Forum
Topic: achaea gmcp time
Replies: 12
Views: 11903

Re: achaea gmcp time

HELP TIME states this: Achaea - That Other Context ------ ------------------ 1 Year ~ 300 hours (about 12 and a half days) 1 Month ~ 25 hours 1 Day ~ 1 hour 1 Hour ~ 2 and a half minutes 1 Minute ~ 2 and a half seconds 1 Second ~ 1/24 of a second
by keneanung
Wed Feb 22, 2012 10:51 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 278198

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

and the word wrap of the main window is not 100% correct for me. One letter is gagged if the line is exactly the line width long.
by keneanung
Mon Feb 20, 2012 8:26 pm
Forum: Help Forum
Topic: how can i get a variable to compare to a number
Replies: 3
Views: 2953

Re: how can i get a variable to compare to a number

to you maybe try to compare a string with a number? Try
Code: [show] | [select all] lua
if tonumber(myhealth) > 5 then
  echo("I'm good!")
end