Many of you would have noticed has been a busy year for Mudlet. Here’s a recap!

Gameplay features

Mudlet enables you to play text RPG games, aka MUDs. Such online games have been polishing the player experience for decades and are an awesome alternative to mainstream games. Mudlet hasn’t been slack and has been polishing the player experience as well!

New website

The first thing new users see about Mudlet is, arguably, the website – and ours was 8 years old. Thanks to the efforts of itsTheFae, Mudlet now has a new, modern website that brings it into the modern age.

Better installers

Continuing the theme of a better first impression, vadi2 ditched the old wizard-based installer for Windows because that was so 2000’s. The new Windows installer doesn’t require admin privs, no “next” buttons, and installs Muldet in under 5s.

On Linux, thanks to the available AppImage technology, we were able to go a step further. We ditched the wizard-based installer as well and replaced it with a version of Mudlet that can run straight out of the box, no installation needed.

Mudlet on macOS already has been a super-convenient .dmg for years and that’s as good as it gets!

Online search

Don’t know what that fancy word you saw in the game means? Look it up!

Same goes for code. Got a confusing error message? Select, right-click, Google. gilmoa added this awesome feature.

Better defaults

GMCP is now enabled by default and the mapper’s settings have been tweaked to look better out of the box:

Internationalization

MUDs are a worldwide phenomenon with games out there in Spanish, Polish, Chinese, Russian, Italian, … you name it. SlySven has been putting in a ton of work to bring Mudlet to the international arena. Mudlet can now understand and show other encodings such as those for Spanish and Russian, and display of other alphabets like Chinese is something that’ll come. The Lua environment has also been updated with functions to be able to work on international text. Overall, i18n is still a work in progress, but a ton of progress has been achieved so far.

Improvements for coders

A fun part of playing MUDs is also learning how to code dinky scripts that do your bidding. We’ve improved the experience and are adding more IDE features to Mudlet!

New editor

tomcss took it upon himself to replace the old code editor in Mudlet with edbee, made by gamecreature. Edbee supports multiple cursors, highlights text better, handy shortcuts for manipulating text, and, of course, themes! Want to make your Mudlet look like Sublime Text? You can! Just pick the Monokai theme. That theme and 350+ other themes from ColorSublime are available for use.

Copy/paste

You can now duplicate in your own profile, or across profiles, with copy/paste as you’d expect to:

Credits to dicene and vadi2 for making this happen!

Prompt trigger pattern

You can now select the prompt as a trigger pattern for your scripts! In addition, you can use it from scripts via tempPromptTrigger(), as well – credits to vadi2.

Coroutines

This feature is for the professionals out there – all of Mudlets API now supports coroutines, which open up new avenues for design and help you create state machines. Props to ahmedcharles for working that out!

Functions in triggers and events

All of the triggers you can create in your scripts – tempTrigger, tempRegexTrigger, and so on – can now take a function to run as well as Lua code as a string. Previously, if you wanted a trigger to run a function, you’d have to do tempTrigger(“pattern”, “myfunction()”) – now you can just do tempTrigger(“pattern”, myfunction). This lets you use local functions, lets you capture variables easier, and in general simplify your scripting – a feature added by vadi2.

keneanung added a similar feature to events.

Map improvements and optimisations

SlySven has put his signature thorough touch on the mapper, optimising it and making it more consistent in what it allowed. Duplicate area names, unnamed areas, rooms in areas that don’t exist and so on are longer possible to create. In addition to that, Mudlet will also automatically fix up your map should it have any of the dodgy things in it.

Code beautifier

Tired of looking at other people’s messy scripts? Have some messy scripts of your own? Right-click on it and select Format All. Bam, magic. It’ll turn your mess into something beautiful. Can’t speak for the code quality itself, though. vadi2 integrated martin-eden‘s Lua formatter to make this happen.

More UI features

WackyWormer added nice features for UI customisation: toggling scrollbars on miniconsoles, double-click, mouse move and scrollwheel events, and the ability to see what keys are pressed as well.

Infrastructure

In addition to all of features we’ve added to Mudlet, we’ve also made Mudlet a lot more nicer to contribute to. keneanung added automated generation of Windows, macos, and Linux preview builds – which means that when you contribute a new feature to Mudlet, test versions of Mudlet are available with your feature. macOS and Linux releases have also been automated which makes the whole process quicker. We also have:

  • modernized code to take advantage of C++11 features
  • completely migrated to GitHub from Launchpad
  • merged the long-running 3.0 release branch, eliminating duplication
  • updated website infrastructure, added HTTPS support, updated forums and wiki software
  • merged Mudlet’s Lua code back into the main repository for an easier workflow
  • added autoupdate functionality, making Mudlet an evergreen MUD client

Conclusion

As you can see, we’ve put in a ton of work improving Mudlet this year! All of this is freely available – in price and open-source freedom – so you’re not on the latest 3.6.1 already, grab the latest Mudlet and enjoy MUDs :)