Search found 33 matches

by jieiku
Mon Jun 24, 2019 8:10 pm
Forum: Scripts & Packages
Topic: Aardwolf Mudlet Module
Replies: 0
Views: 10490

Aardwolf Mudlet Module

AardwolfMudlet is an Aardwolf mud package for Mudlet client created specifically for Aardmud.

For a full list of Features, issues, info, etc. please visit the github page:

https://github.com/jieiku/AardwolfMudlet

aardwolfmudlet.png
by jieiku
Thu Apr 25, 2019 1:51 pm
Forum: Scripts & Packages
Topic: Visual Label Adjustment
Replies: 6
Views: 9873

Re: Visual Label Adjustment

I just realized there are geyzer labels and then there are mapper labels. Does this also work to resize mapper labels?
by jieiku
Thu Apr 25, 2019 1:36 pm
Forum: Scripts & Packages
Topic: Visual Label Adjustment
Replies: 6
Views: 9873

Re: Visual Label Adjustment

This feature still works for you? I cannot get it to work on 3.19.0 I even created a blank profile, as well as inserting multiple echo("\nTESTING\n") messages. It seems the script is not being called at all... Any chance I could get you to test resizing a label on 3.19.0? With none of my e...
by jieiku
Thu Apr 25, 2019 7:59 am
Forum: Scripts & Packages
Topic: Visual Label Adjustment
Replies: 6
Views: 9873

Re: Visual Label Adjustment

hmmm, need a little more info on how to use this to resize labels. Moving the labels seems to be working.
by jieiku
Sun Apr 21, 2019 12:39 pm
Forum: Help Forum
Topic: How do I create an Ansi/Color Trigger to capture multiple values.
Replies: 7
Views: 6809

Re: How do I create an Ansi/Color Trigger to capture multiple values.

Yes, it has trouble when the roomname itself has parenthesis as part of the roomname, which is why i turned to the color triggers:
2019-04-20_05-31.png
2019-04-20_05-31.png (1.59 KiB) Viewed 6744 times
maybe there is a way to rewrite this so that it understand to match on the outer most parenthesis?

Code: Select all

^You still have to kill \* (.*) \((.*)\)$
by jieiku
Sun Apr 21, 2019 8:04 am
Forum: Help Forum
Topic: How do I create an Ansi/Color Trigger to capture multiple values.
Replies: 7
Views: 6809

Re: How do I create an Ansi/Color Trigger to capture multiple values.

In this case it is multimatches[3][1] "A catwalk overlooking the exercise yard" But it only matched because the entire room name is cyan. Occasionally the roomname is different colors, such as cyan and red, as well as cyan, red and white. Occasionally the room is all red as well. However t...
by jieiku
Sat Apr 20, 2019 4:08 pm
Forum: Help Forum
Topic: How do I create an Ansi/Color Trigger to capture multiple values.
Replies: 7
Views: 6809

Re: How do I create an Ansi/Color Trigger to capture multiple values.

I am now left with a question.... What if I want to mach on the grey color (The outer Parenthesis on the Location), and capture what is between? I am now matching the grey color: 2019-04-20_09-02.png I want to use a color trigger to detect which parenthesis are the grey outside parenthesis, and then...
by jieiku
Sat Apr 20, 2019 2:15 pm
Forum: Help Forum
Topic: How do I create an Ansi/Color Trigger to capture multiple values.
Replies: 7
Views: 6809

Re: How do I create an Ansi/Color Trigger to capture multiple values.

So part of the problem was I broke the original pattern into its individual pieces. I did this because I thought I needed to have each regex pattern following its color trigger section Thats why the opening post I have 10 lines for my patterns. It is actually much simpler, you just use the complete ...
by jieiku
Sat Apr 20, 2019 12:40 pm
Forum: Help Forum
Topic: How do I create an Ansi/Color Trigger to capture multiple values.
Replies: 7
Views: 6809

How do I create an Ansi/Color Trigger to capture multiple values.

here is the output I am trying to create a Trigger for: 2019-04-20_05-51.png Initially I had a trigger with a pattern like this: ^You still have to kill \* (.*) \((.*)\)$ aard.qTarget = matches[2] aard.qLocation = matches[3] This worked fairly well in most cases, but there are some situations where ...
by jieiku
Thu Apr 11, 2019 2:15 pm
Forum: Scripts & Packages
Topic: Drag and Drop GUI Framework
Replies: 15
Views: 38766

Re: Drag and Drop GUI Framework

Add this to the bottom of the function

Code: Select all

GUIframe.saveSettings()

Code: Select all

echo("\nSettings Saved.\n")
This way there is confirmation that the function completed. (meaning the settings should have properly saved.)