CLIENT: Dump of mudlet related things for y'all

The place with help files for new players, weapon and equipment stats and other pertinent information for players of all levels and experience.
Adael
Posts: 1097
Joined: Sun Mar 22, 2015 12:34 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Adael » Sat Sep 09, 2023 5:26 pm

I hadn't had a chance to reply, but Reyne's reply is nearly spot on.

The only thing that I would change is the regex pattern. As written, it will capture, e.g., "an ancient tree" as the targetting variable - but trying to "kill an ancient tree" will likely not give the response you want :)

The pattern I had was

Code: Select all

(\S+): (\S+) >
which can be used to capture the last word of whatever you're engaged on (in my example case, just "tree"), which I've found is typically a keyword that can be used for most mobs. For pcs, this will always capture their name. And in this case you would use

Code: Select all

CurrentEnemy = matches[2]
to set the target, as the pattern was slightly different.

Jada
Posts: 8
Joined: Wed May 20, 2015 9:38 pm

Re: CLIENT: Dump of mudlet related things for y'all

Post by Jada » Sun Sep 10, 2023 11:51 pm

This works perfectly. Thanks to you both.

Adael
Posts: 1097
Joined: Sun Mar 22, 2015 12:34 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Adael » Mon Sep 11, 2023 4:13 pm

Fixed a bug in the equipment trainer that was *still* requiring the equipment database package to be installed in the right order :roll:
Hopefully the problem is gone now so that it doesn't matter what is installed first...

Thore
Posts: 443
Joined: Sun Mar 22, 2015 2:06 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Thore » Mon May 13, 2024 12:27 am

Had installed Mudlet fresh on a new PC. Installed the wotpack. Got the mapper working. Went to install comms window and Mudlet crashed and when I re-opened, all of my packages were gone. Reinstalled wotpack, and when I went to load the mapper it crashed again.

Any idea what might be causing this?

Adael
Posts: 1097
Joined: Sun Mar 22, 2015 12:34 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Adael » Mon May 13, 2024 5:14 am

The first line of the readme :P

There’s a bug in mudlet 4.17 when installing packages from the command line. You can downgrade to 4.16 (there’s a link in the readme) and that should work fine. Hopefully they release 4.18 soon though.

If you have your old PC though, it’s a lot easier to transfer one file to your new PC and have your exact same setup with no work.

Thore
Posts: 443
Joined: Sun Mar 22, 2015 2:06 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Thore » Mon May 13, 2024 10:06 am

Shoot. Ok - we mudders skim text don't ya know :D I'll see what I can do.

Eros
Posts: 63
Joined: Sun Mar 22, 2015 1:44 pm

Re: CLIENT: Dump of mudlet related things for y'all

Post by Eros » Fri May 17, 2024 9:12 pm

Anyone knows if there is a TRACK script for mudlet. TROLLOC/HUMAN leaving EAST>>>. something of that nature. any ideas??

Thank you in advanced.

Adael
Posts: 1097
Joined: Sun Mar 22, 2015 12:34 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Adael » Sat May 18, 2024 7:00 am

There is, in the room highlights package. Fair warning, that probably has triggers to highlight or change the color on a buncha other things, so I’d go through them all and see which you want to keep or remove after installing.

Eros
Posts: 63
Joined: Sun Mar 22, 2015 1:44 pm

Re: CLIENT: Dump of mudlet related things for y'all

Post by Eros » Sat May 18, 2024 9:03 am

Adael wrote:
Sat May 18, 2024 7:00 am
There is, in the room highlights package. Fair warning, that probably has triggers to highlight or change the color on a buncha other things, so I’d go through them all and see which you want to keep or remove after installing.

Thank you Adael!

Amazing to see what you have become for this community. You were always so helpful. Good to see you again.

Adael
Posts: 1097
Joined: Sun Mar 22, 2015 12:34 am

Re: CLIENT: Dump of mudlet related things for y'all

Post by Adael » Wed May 07, 2025 4:17 am

Have updated my map scripts to take into account the moonlight changes. Fairly significant changes to how tracking movement is done, so I won't yet promise it works exactly the same, but I haven't encountered any issues personally. You'll need to do a few things to install the updated scripts however

1) You'll need to "wotpack update" and restart mudlet - *DO NOT SKIP THIS*
2) "wotpack install mapper" - you'll probably notice that the files (un)install a little slower than what you might expect or remember. this is necessary, as it turns out spamming mudlet to (un)install a bazillion files at once (or even just a few!) causes problems due to profile saving asynchronicity, and I needed to slow it down a bit
3) You can "map update". there's been a handful of rooms I ran across with changed descs/names
4) Have added the moon rise/set messages to the tic timer as well, "wotpack install tic timer" if you care

As usual, let me know if you encounter issues or problems! Logs are always helpful in those cases :D

Post Reply