Search found 5028 matches

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: 4836

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: 4583

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: 5009

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: 6019

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: 19077

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: 28407

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... ...
by Vadi
Fri Jun 26, 2009 4:15 pm
Forum: Scripts & Packages
Topic: Defence list for Achaea
Replies: 6
Views: 9104

Re: Defence list for Achaea

That's a neat tip. Thanks!
by Vadi
Wed Jun 24, 2009 10:44 pm
Forum: Scripts & Packages
Topic: Tabbed Chat [w/ screenshot+package]
Replies: 38
Views: 36428

Re: Tabbed Chat [w/ screenshot+package]

The big A top-left suggests Arch Linux.
by Vadi
Wed Jun 24, 2009 3:43 pm
Forum: Scripts & Packages
Topic: Tabbed Chat [w/ screenshot+package]
Replies: 38
Views: 36428

Re: Tabbed Chat [w/ screenshot+package]

What a crazy and wonderful idea. It's like the 2nd gen chat windows.

One prob though. Word wrapping?
by Vadi
Tue Jun 23, 2009 6:41 pm
Forum: Scripts & Packages
Topic: Defence list for Achaea
Replies: 6
Views: 9104

Re: Defence list for Achaea

It's a bit complicated to do. Lua doesn't care about the order of this type here (where it's key = value), so the way it saves them is rather random. It is possible to make it go in an orderly fashion, someone suggested to try "so instead of "for k,v in pairs(t) do ..." you can do &qu...