Search found 813 matches
- Sat Aug 13, 2022 8:56 pm
- Forum: General Forum
- Topic: Request for help to gather some data
- Replies: 0
- Views: 75
Request for help to gather some data
hello! We've been plugging along at Mudlet for quite some time now, and it's occurred to me that it's been some time since we did much in the way of display benchmarking, and that got me wondering... what kind of lines per second are actually encountered in the wild? Now, it might seem an idle curio...
- Fri Aug 12, 2022 11:55 pm
- Forum: International
- Topic: plz support korean language
- Replies: 2
- Views: 117
Re: plz support korean language
Hi there!
Sorry it took us a while to respond. We have the person who is most familiar with the encodings and how to add them looking into this. In the meantime I made an issue on github for tracking this so it doesn't get forgotten: https://github.com/Mudlet/Mudlet/issues/6230
Sorry it took us a while to respond. We have the person who is most familiar with the encodings and how to add them looking into this. In the meantime I made an issue on github for tracking this so it doesn't get forgotten: https://github.com/Mudlet/Mudlet/issues/6230
- Wed Aug 10, 2022 10:56 pm
- Forum: Help Forum
- Topic: Help capturing multiple words into single variable, then returning them with hyphens?
- Replies: 1
- Views: 25
Re: Help capturing multiple words into single variable, then returning them with hyphens?
Change the \w+ in the pattern for getting a single word weapon to .+ to capture everything there. ^(?<disarmer>\w+) DISARMS your ('?<weapon>.+')! then you can use string.gsub to change all the spaces into dashes and send the commands. local weapon = matches.weapon:gsub(" ", "-") ...
- Wed Aug 10, 2022 10:50 pm
- Forum: Help Forum
- Topic: No encoding setting on Linux/Mac?
- Replies: 3
- Views: 105
Re: No encoding setting on Linux/Mac?
I see them myself in the MacOS version, just checked.
Using version 4.16.0 in all cases?
It's next to the Mudlet interface language for me, labeled "Server data encoding"
Using version 4.16.0 in all cases?
It's next to the Mudlet interface language for me, labeled "Server data encoding"
- Wed Aug 10, 2022 12:07 am
- Forum: Scripts & Packages
- Topic: the Stressinator!
- Replies: 1
- Views: 2932
Re: the Stressinator!
What's that? A new Stressinator just dropped? It reads a piece of classic literature to Mudlet?? It's got more information and a better report?!?! That's RIGHT! The Stressinator 2.0.1 is here! Now it stress tests your trigger set in a much classier way, by reading it The Count of Monte Cristo! You c...
- Sun Aug 07, 2022 12:31 am
- Forum: Help Forum
- Topic: Aggregating multiple lines.
- Replies: 4
- Views: 242
Re: Aggregating multiple lines.
I would do like the video, and use a trigger gate to capture the lines as they come in and delete them, then print out the condensed version when the prompt/ending trigger fires. Rather than trying to make one multiline AND trigger that captures it all.
- Mon Aug 01, 2022 1:35 pm
- Forum: Help Forum
- Topic: Aggregating multiple lines.
- Replies: 4
- Views: 242
Re: Aggregating multiple lines.
For this, you probably want to use a trigger chain. Make a trigger to match on the first line, and set its fire length to 99, then make a trigger which matches on your prompt, and drag that onto the first one. The code for this child trigger should be setTriggerStayOpen("Name of Parent Trigger&...
- Thu Jul 21, 2022 1:34 pm
- Forum: Help Forum
- Topic: Help with aliases to allow targeting me or ally?
- Replies: 2
- Views: 152
Re: Help with aliases to allow targeting me or ally?
If you use the pattern ^hh( \w+)?$ Then it will match on either hh by itself, or hh followed by a word. Then remove anything you might have in the 'command' line, and instead use the script box at the bottom, with something like this local target = matches[2] or "" send("c 'haste'&quo...
- Wed Jul 20, 2022 3:24 am
- Forum: Mudlet Development
- Topic: Introducing muddler, the build tool for Mudlet packages
- Replies: 10
- Views: 13867
Re: Introducing muddler, the build tool for Mudlet packages
muddler 0.12 released. https://github.com/demonnic/muddler/releases/tag/0.12 no longer makes any file changes if there's no src directory to build a package from now ensures the write buffer for the XML file is flushed before it creates the zip file, at least one person was getting 0byte XML files u...
- Wed Jun 22, 2022 1:31 pm
- Forum: Help Forum
- Topic: Is there a Lua function to identify which computer I'm using?
- Replies: 3
- Views: 251
Re: Is there a Lua function to identify which computer I'm using?
Taken and modified slightly from https://gist.github.com/h1k3r/089d43771bdf811eefe8 to assume instead that 'hostname' is in the path function getHostname() local f = io.popen ("hostname") local hostname = f:read("*a") or "" f:close() hostname =string.gsub(hostname, &quo...