Search found 160 matches

by Jomin
Sat Apr 22, 2023 5:26 pm
Forum: Help and Newbie Area
Topic: A Solution for Alt Separation on Discord
Replies: 3
Views: 2525

Re: A Solution for Alt Separation on Discord

Also, if you are using Mudlet's Discord RPC features you will want to set the Discord name (and discriminator, the 4 digit number, though it is not compulsory) in the settings for ALL your WoTMUD Mudlet profiles. This will stop Mudlet from doing anything with the RPC if the name that Discord tells i...
by Jomin
Fri Jun 10, 2022 9:28 pm
Forum: Player's Lounge
Topic: Itsy's Janky Code Blog
Replies: 47
Views: 13061

Re: Itsy's Janky Code Blog

Regarding this function: char * return_clan_acronym(char * clan_name_string) { #define MAX_ACRO_LENGTH 10 // note 1 char acronym[MAX_ACRO_LENGTH]; //note 2 int words = 1; int i = 0; while (*(clan_name_string + i) != '\0') { //note 3 if (*(clan_name_string + i) == ' ') { // note 4 words++; // note 5 ...
by Jomin
Sun Mar 14, 2021 11:34 pm
Forum: Resources
Topic: CLIENT: Dump of mudlet related things for y'all
Replies: 252
Views: 190393

Re: Dump of mudlet related things for y'all

As that Mudlet developer I can tell you that with the recently released Mudlet 4.11.0 , erm actaully 4.11.1 now, there are a couple of Lua functions that have made it into the arsenal of it's end-user scripting capabilities: saveJsonMap(...) will export the currently loaded map (in its entirety, i.e...
by Jomin
Wed Jan 27, 2021 4:35 pm
Forum: Resources
Topic: CLIENT: Dump of mudlet related things for y'all
Replies: 252
Views: 190393

Re: Dump of mudlet related things for y'all

Here is the same script but presented inside code tags so as to preserve the spacing - I've also moved all the direct "commands" to be lua send(...) s and run Mudlet's built in Lua formatter over that part of things... <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE MudletPackage> <MudletPackage ve...
by Jomin
Fri Jan 15, 2021 11:49 am
Forum: Player's Lounge
Topic: Vote for the MUD!
Replies: 29
Views: 34053

Re: Vote for the MUD!

Blooming 'eck, it is not just me who hasn't been arsed to jump through the Recapcha hoops to find all those above ground fire hydrants (totally unknown in UK!) and "crosswalks" (en_GB translation: "pedestrian crossings") - no wonder we are languishing in the mid 20's with only 40 odd votes this mont...
by Jomin
Sat Dec 26, 2020 5:45 pm
Forum: Bugs
Topic: Re: Typos
Replies: 322
Views: 307221

Re: Typos

[FIXED - Aureus 2021.07.19] Working on something that will import and export maps from Mudlet in a JSON format and came across this: { "coordinates": [ -93, 81, 0 ], "environment": 21, "exits": [ { "exitId": 1670, "name": "south" }, { "exitId": 1659, "name": "down" } ], "name": "On a Black Boulder"...
by Jomin
Sun Apr 26, 2020 4:35 pm
Forum: Player's Lounge
Topic: Anyway advice - want to try new browser
Replies: 10
Views: 5816

Re: Anyway advice - want to try new browser

Palemoon - a FireFox fork that uses a different rendering engine and which strives to excise all the telemetry that Mozilla has in their product that reports back to them what you are doing with their browser. Also has deliberately kept the XUL addon's API which allows for better and more powerful i...
by Jomin
Sun Apr 26, 2020 4:15 pm
Forum: Help and Newbie Area
Topic: Managing Multiple Chars on Forums?
Replies: 2
Views: 3132

Re: Managing Multiple Chars on Forums?

There used to be a FireFox addon to allow quick login character changes - but since they got rid of the XUL API I no longer use FF - and PaleMoon, my normal browser nowadays is no longer supported in FreeBSD so I do not even know if it still works. I will upload it to the Public area of my room in t...
by Jomin
Wed Apr 08, 2020 1:17 pm
Forum: Resources
Topic: CLIENT: Dump of mudlet related things for y'all
Replies: 252
Views: 190393

Re: Dump of mudlet related things for y'all

I wasn't aware of the on-line player numbers that are supposed to be available after using the who alias but I am looking at it and finding that it is currently failing - it seems that "SSL handshake failed" errors are happening. I know that the connection to the game server does not use SSL so I wo...
by Jomin
Tue Apr 07, 2020 2:42 pm
Forum: Help and Newbie Area
Topic: Plea for Discord WoTMUD Guild Clan Icons
Replies: 0
Views: 2395

Plea for Discord WoTMUD Guild Clan Icons

I've been hacking around in the last couple of days and I wanted to finish off a Discord RPC package for WoTMUD on Mudlet so that those using this Client can wear their main character's attributes (Side + Level) on their Profile in Discord (revealed by clicking on the hamburger icon after the activi...