Search found 1584 matches
- Wed Apr 29, 2009 7:07 am
- Forum: General Forum
- Topic: bug: event handlers #2
- Replies: 1
- Views: 1838
Re: bug: event handlers #2
That's a bug. I'll look into this.
- Tue Apr 28, 2009 9:24 am
- Forum: Help Forum
- Topic: alias problem ^wc(.+)?$
- Replies: 4
- Views: 2726
Re: alias problem ^wc(.+)?$
Here you go: pattern: ^wc\s?(.+)?$ if matches[2] == nil then echo("caled alias called without arguments\n"); else echo("caled alias called cap group<"..matches[2]..">\n"); end patterns like ^wc *(.+)?$ or ^wc *(.*) would also work. info on regex quantifiers: http://www....
- Sun Apr 26, 2009 3:49 pm
- Forum: Help Forum
- Topic: Help with highlighting names and groups
- Replies: 1
- Views: 2222
Re: Help with highlighting names and groups
This can be done with a small script that parses the output of city ennemies and creates a tempTrigger for each name on the list and colorize the name red. Beta-10pre has a simple GUI to help with colorization triggers. Beta-10pre is already available via git or ubuntu repository. Windows users will...
- Sun Apr 26, 2009 11:30 am
- Forum: Help Forum
- Topic: Ansi triggers
- Replies: 1
- Views: 1987
Re: Ansi triggers
Triggers on colors will be finnished next week.
- Sun Apr 26, 2009 10:19 am
- Forum: Help Forum
- Topic: stripping out the prompt
- Replies: 1
- Views: 2021
Re: stripping out the prompt
Yes, it's possible. If you call deleteLine() from the prompt trigger the prompt will be gone without a trace. You'll be able to show it in a different font size or differnt font on a label which is something like a button, but meant for small custom image/text/graphics displays in the custom user in...
- Sat Apr 25, 2009 1:14 pm
- Forum: General Forum
- Topic: possible bug with events
- Replies: 17
- Views: 7401
Re: possible bug with events
Sure, you can set up the order in which the handlers are called with drag & drop. The first on the list if called first, then the second etc.. This is the same with all tree items in Mudlet, triggers, alias, scripts etc..
- Sat Apr 25, 2009 12:25 pm
- Forum: General Forum
- Topic: possible bug with events
- Replies: 17
- Views: 7401
Re: possible bug with events
OK. It was an obvious bug. I fixed it in my local version. I'll release Beta-10 on sunday.
- Sat Apr 25, 2009 12:03 pm
- Forum: General Forum
- Topic: possible bug with events
- Replies: 17
- Views: 7401
Re: possible bug with events
That's clearly a bug. I'll look after it and fix it.
- Sat Apr 25, 2009 8:03 am
- Forum: General Forum
- Topic: editing profile while offline
- Replies: 3
- Views: 3194
Re: editing profile while offline
You can just log out in the MUD and keep working on the profile.
- Sat Apr 25, 2009 8:00 am
- Forum: Help Forum
- Topic: event help
- Replies: 2
- Views: 2329
Re: event help
You need to add a script item that handles your event e.g. add new script "eventHandlerOnBalance" In the script of this script item you declare the event handler function. The requirement is that this function is named after the script item name. In this example the event handler must be n...