Search found 885 matches

by demonnic
Mon Mar 25, 2024 1:13 pm
Forum: Scripts & Packages
Topic: Performance Package
Replies: 3
Views: 3925

Re: Performance Package

You can drag and drop the package file onto Mudlet after download, or open the Package Manager via the toolbar button or the keyboard shortcut alt+o (as in oscar) and click "Install Package" and browse to the packagefile. or for this package in particular you may be able to use the command...
by demonnic
Fri Jan 05, 2024 7:13 pm
Forum: Help Forum
Topic: First time using Mudlet and couldn't connect on macOS
Replies: 3
Views: 2784

Re: First time using Mudlet and couldn't connect on macOS

then I'm not entirely sure, honestly. I've never had any issues when using an ipv4 directly, even with the wrong port I'd expect a timeout. It's almost like something is blackholing the connection. It's not the standard telnet port but I have seen where some ISPs will do that. Do other clients work ...
by demonnic
Sun Dec 17, 2023 5:29 am
Forum: Help Forum
Topic: First time using Mudlet and couldn't connect on macOS
Replies: 3
Views: 2784

Re: First time using Mudlet and couldn't connect on macOS

Did you put the IP address in yourself, or did you use the hostname and it resolved the IP address? If the latter, is it an IPv4 address (0-255.0-255.0-255.0-255) or IPv6 (xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx)? If the latter, it could be that their hostname resolves to an ipv6 address but isn't l...
by demonnic
Tue Oct 10, 2023 1:43 pm
Forum: Scripts & Packages
Topic: Find alias ala ctrl+f
Replies: 14
Views: 15579

Re: Find alias ala ctrl+f

The color codes you're showing are for decho, not cecho. I believe Vadi made mention of that a little earlier in the thread. But there's also a link to another package for the same thing earlier in the thread as well which may work better, might be worth checking out.
by demonnic
Thu Oct 05, 2023 4:26 pm
Forum: General Forum
Topic: Whats Your Gui Look like?
Replies: 114
Views: 405544

Re: Whats Your Gui Look like?

That looks really nice, thanks for sharing =)
by demonnic
Tue Aug 15, 2023 5:19 pm
Forum: Scripts & Packages
Topic: Procedural Realms Ascii Map
Replies: 6
Views: 19479

Re: Procedural Realms Ascii Map

Hmm, I've used the pattern of wiping and dumping lines to the map many times. Though usually I'll use a trigger chain rather than tempLineTrigger. I haven't had any issues with this being slow, even in situations where I'm receiving a ton of lines. I may give it a try and see how it runs for me late...
by demonnic
Wed Aug 09, 2023 2:56 pm
Forum: Help Forum
Topic: Is this even possible? Script Idea
Replies: 2
Views: 6129

Re: Is this even possible? Script Idea

We connected on discord, but for anyone coming behind the short answer is yes, it's absolutely possible. The long answer is there's several moving parts to it, and the order I recommend tackling them is 1. track vitals 2. setup vitals recovery (drink potions, etc) 3. track mobs in the room 4. kill m...
by demonnic
Wed Aug 02, 2023 10:00 pm
Forum: Help Forum
Topic: How to trigger split coins
Replies: 3
Views: 5305

Re: How to trigger split coins

if you click 'show' on the code box in my answer it gives what to put in the script box. Reproduced below without the formatting.

send("split " .. matches[2] .. " coins")
by demonnic
Tue Aug 01, 2023 5:42 pm
Forum: Help Forum
Topic: How to trigger split coins
Replies: 3
Views: 5305

Re: How to trigger split coins

You can make a perl regex trigger with the pattern "you get (\d+) coins from corpse" (without the "") and then in the script box at the bottom put in
Code: [show] | [select all] lua
send("split " .. matches[2] .. " coins")
by demonnic
Mon Jul 24, 2023 2:05 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652680

Re: Mudlet features and API requests

Mudlet has an IRC feature built in already which allows you to set server and room. It's currently a dropdown underneath the Discord icon in the toolbar, or help->irc in the menu. Defaults to irc.libera.net I believe and #Mudlet as the channel but it's all configurable under settings->chat. There ar...