Search found 5 matches

by nullByte
Tue Aug 16, 2022 2:50 am
Forum: General Forum
Topic: Any other enginerds/devs having a hard time searching for simple things?
Replies: 2
Views: 13445

Any other enginerds/devs having a hard time searching for simple things?

TLDR; I'm old, grumpy, and am getting mad at simple search terms like "mudlet sleep/delay method" or "WoW style timer bar" turning up nada. How old do I need to be mentally for maximum success? I'll be the first to admit that my point-of-view on coding/scripting/dev is scewed. I'...
by nullByte
Tue Aug 16, 2022 2:32 am
Forum: Help Forum
Topic: No encoding setting on Linux/Mac?
Replies: 5
Views: 5553

Re: No encoding setting on Linux/Mac?

Code: Select all

Technical information:
Version   Mudlet 4.16.0
OS        Fedora Linux 35 (Thirty Five)
CPU       x86_64
I have multiple encoding options in preferences. From server side encoding to client side log encoding... uname -a?
by nullByte
Tue Aug 16, 2022 2:18 am
Forum: Help Forum
Topic: Aggregating multiple lines.
Replies: 5
Views: 5418

Re: Aggregating multiple lines.

That appears to be the most CPU efficient method. Thank you all! Feel free to steal my code.
by nullByte
Sat Aug 06, 2022 7:31 am
Forum: Help Forum
Topic: Aggregating multiple lines.
Replies: 5
Views: 5418

Re: Aggregating multiple lines.

So doing some fiddling, I think I've got some working code to compress the lines as desired: --[[ Counts up the occurences of each unique line Example Outputs: [..3] Unique Line A [.42] Unique Line B [183] Unique Line C ]] function aggregate_duplicates(text_stream) local unique_text = {} local uniqu...
by nullByte
Mon Aug 01, 2022 5:11 am
Forum: Help Forum
Topic: Aggregating multiple lines.
Replies: 5
Views: 5418

Aggregating multiple lines.

Still learning the basic features of Mudlet, so please forgive the really simplistic scenario. I have no LUA experience, but have some experience from my day job in a few interpreted scripting languages. I have a unique line before the list of lines I want to aggregate following by a new line and my...