Search found 5022 matches

by Vadi
Thu Jul 09, 2009 9:16 pm
Forum: General Forum
Topic: Bug: line breaks added when copying text
Replies: 5
Views: 5339

Re: Bug: line breaks added when copying text

Copy & pasting a wrapped tell removes the pain of deleting the linebreaks manually is one example.
by Vadi
Thu Jul 09, 2009 11:06 am
Forum: Scripts & Packages
Topic: Achaea: Vadi Mapper capture window
Replies: 20
Views: 20476

Re: Achaea: Vadi Mapper capture window

Yeah that does look quite weird. Not sure whats up with that. For better fonts though, enable "anti-aliasing" in main window settings.
by Vadi
Wed Jul 08, 2009 9:29 pm
Forum: Mudlet Development
Topic: Displaying variables
Replies: 8
Views: 7908

Displaying variables

The only thing missing for the 1.0 release, for me personally, is variable display. Some people even think Mudlet doesn't have variables because they don't see a button for them :? I think that the solution to this should come in two steps, the "easy to implement" one and a "fully-fea...
by Vadi
Tue Jul 07, 2009 12:25 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: zmud/nexus #wait → mudlet
Replies: 5
Views: 8363

zmud/nexus #wait → mudlet

Some clients offer a #wait function, which will "pause" the script for a certain amount of time before allowing it to continue. Mudlet doesn't provide that; it uses timers instead. Timers are better because they are easier to work with (they can be named/enabled/disabled), are less prone t...
by Vadi
Sun Jul 05, 2009 3:26 pm
Forum: General Forum
Topic: Bug: newlines being stripped when pasted to command line
Replies: 4
Views: 4802

Re: Bug: newlines being stripped when pasted to command line

This is done intentionally actually; the only bug is that newlines actually get deleted only and not replaced with a space. For multi-line pastes ("as intended", but usually that's not the common type) mud clients usually either a) provide a separate dialog, or b) provide an button beside ...
by Vadi
Sun Jul 05, 2009 3:19 pm
Forum: General Forum
Topic: Bug: Consecutive newlines stripped from output
Replies: 3
Views: 4536

Re: Bug: Consecutive newlines stripped from output

Hey, thanks for reporting this and working on a solution.

Though, there is a bug in the current windows release where it will strip blank newlines that was fixed in git. Maybe this affects yours?

(also, bug reports are located here for future reference: https://bugs.launchpad.net/mudlet)
by Vadi
Fri Jul 03, 2009 10:49 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Combining tables
Replies: 2
Views: 4651

Re: Combining tables

function combinelists(l1, l2) if typeof l1 ~= "table" or typeof l2 ~= "table" then return end local list1 = l1 local list2 = l1 local index = {} for i = 1, #list2 do for v = 1, #list1 do if list2[i] == list1[v] then table.insert(index,i) end end end for i = 0, #index-1 do table....
by Vadi
Thu Jul 02, 2009 5:04 pm
Forum: General Forum
Topic: Beta-12 released
Replies: 6
Views: 5950

Re: Beta-12 released

Sure. I've updated the package and send it for building - should be available via the update manager in a few h.
by Vadi
Thu Jul 02, 2009 12:53 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Print out all named colors
Replies: 10
Views: 18354

Re: Print out all named colors

I've actually submitted a patch to get rid of the duplicate colors, its not in yet. But that is nicer.
by Vadi
Tue Jun 30, 2009 3:20 pm
Forum: Scripts & Packages
Topic: Vadi Sipper for Achaea
Replies: 25
Views: 28206

Re: Vadi Sipper for Achaea

I play on Lusternia and know that all the mentions of moss will need to be changed over to sparkleberry . Could this be as easy as to open the script in a notepad editor and replace every mention of moss with sparkleberry? I would also need to find the sparkleberry balance trigger lines as well... ...