Search found 138 matches

by naftali
Thu May 20, 2010 11:54 pm
Forum: Mudlet Development
Topic: Feature Request: settings for case insensitive history searc
Replies: 5
Views: 4644

Re: Feature Request: settings for case insensitive history searc

methinks he means a main window buffer search. Vadi put up a script that does a case sensative search of the main buffer, you can download that and modify it to be case insensitive. Although this might be a cool feature, so long as it doesn't cause too much trouble or clutter anything up.
by naftali
Thu May 13, 2010 6:38 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 720723

Re: Mudlet API requests

I thought so too, which is why I made sure to test each one repeatedly. I can't explain it, just calling it like I see it.
by naftali
Tue May 11, 2010 3:18 pm
Forum: Whatever
Topic: Qt on Android
Replies: 30
Views: 29749

Re: Qt on Android

Agreed about the iphone. Mini mudlet on Android would lead to so much auto-ing while only barely there...
by naftali
Tue May 11, 2010 3:08 pm
Forum: Help Forum
Topic: Errors loading Lua
Replies: 5
Views: 4578

Re: Errors loading Lua

I've had something similar happen as well, generally after a crash. Restart fixes the problem. Also on the official mac build
by naftali
Tue May 11, 2010 3:05 pm
Forum: General Forum
Topic: Enable 'save profile on exit' by default?
Replies: 5
Views: 9301

Re: Enable 'save profile on exit' by default?

That would be nice. Though, with the popup, it would be more useful if we could cancel the window closing action as well. If you fat finger something, and your mudlet window is closing, the popup is like a mockery to prolong the agony. Apparently this is in the works. I know I've asked for it befor...
by naftali
Tue May 11, 2010 2:47 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 720723

Re: Mudlet API requests

cecho() should explicitly deselect() before starting to change the colors - currently the following script: selectString(line,1) cecho("<red>Testing") will color the selected line red and then echo "Testing" in red. Since decho() and hecho() don't behave like this I assume it's n...
by naftali
Fri May 07, 2010 4:28 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Flexible offensive aliases
Replies: 24
Views: 21734

Re: Flexible offensive aliases

the flexibility comes in when you have optional arguments for your alias, kinda. Lets say, for example, you have a variable called 'tar' set to 'naftali', and another one 'bdp' set to 'neck'. You then make an alias that looks like such. pattern: ^str(?:| (\w+)(?:| (\w+)))$ explanation of the pattern...
by naftali
Fri May 07, 2010 4:02 pm
Forum: Help Forum
Topic: select and replace instead of deleteline
Replies: 3
Views: 3043

Re: select and replace instead of deleteline

hrm, lessee. Assuming they all look like that, you could probably make a regexp trigger with a pattern like such:

Code: Select all

(#K%[a-zA-z0-:\.9]{16})
For the script use this:

Code: Select all

selectString(matches[2],1)
replace("")
see how that works.
by naftali
Wed May 05, 2010 4:41 am
Forum: Help Forum
Topic: Recursive Function (bug or my own stupidity?)
Replies: 5
Views: 4076

Re: Recursive Function (bug or my own stupidity?)

also tempTimer(1, echo("boing") ) will do the echo when tempTimer() is called, not after 1 second. To have it work after 1 second use this: tempTimer(1, function () echo("boing") end ) except instead of echoing boing have the function be whatever you want it to be, obviously. Jus...
by naftali
Mon May 03, 2010 10:52 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Duplicating triggers
Replies: 4
Views: 6532

Re: Duplicating triggers

The advantage to doing things the way Meridian describes is that it is then easy to make lots of different substring patterns do the same thing. I.e. one trigger for everything that afflicts with stupidity, one for everything that paralyzes, etc. Not efficient, but for bashing triggers definitely th...