Search found 1015 matches

by SlySven
Sat Oct 24, 2020 3:15 am
Forum: Mudlet Development
Topic: Bugs in MXP implementation, is this work in progress?
Replies: 10
Views: 38043

Re: Bugs in MXP implementation, is this work in progress?

Now, if your mud does not allow players to generate mxp tags gor other players at all, you are fine. You can just go into locked secure mode at login, and that's it. That the thing though - with a client such as Mudlet the user could generate so-called "secure" tags and use them in messag...
by SlySven
Thu Oct 22, 2020 3:46 am
Forum: Mudlet Development
Topic: Bugs in MXP implementation, is this work in progress?
Replies: 10
Views: 38043

Re: Bugs in MXP implementation, is this work in progress?

Finally, I'm a bit scared on trying to implement the different MXP line modes and reset escape sequences. Though all works in a permanent secure mode, our players can send any tags in says and tells in open mode (as the MXP standard suggests), and if the mud client doesn't stop it by enforcing open...
by SlySven
Tue Oct 20, 2020 3:10 am
Forum: General Forum
Topic: which file records profile settings
Replies: 1
Views: 9743

Re: which file records profile settings

Ideally you'd want to copy everything in: C:\User\<username>\.config\mudlet\* and C:\User\<username>\.config\Mudlet\* (Windows) /home/<username>/.config/mudlet/* and /home/<username>/.config/Mudlet/* (other OSes) However you may also need to switch to the (less secure) method of storing character/lo...
by SlySven
Tue Oct 20, 2020 2:59 am
Forum: Mudlet Development
Topic: Bugs in MXP implementation, is this work in progress?
Replies: 10
Views: 38043

Re: Bugs in MXP implementation, is this work in progress?

TBH Very few persons fully understand MXP - I don't (and I sometimes wonder about Zugg!) - the Mudlet MXP code did get a major refactoring recently - if you can use Git you can look back through the history and see that @gcms on GitHub has made some substantial changes a few months back: https://git...
by SlySven
Sat Sep 19, 2020 2:37 pm
Forum: Help Forum
Topic: List of MUDs that can be connected to securely (TLS)
Replies: 5
Views: 41226

Re: List of MUDs that can be connected to "Securely"

Will add StickMUD (stickmud.com)- one of the Mudlet predefined ones using 8680 for TLS/SSL (7680 for unencrypted connections) once Pull Request #4072 gets into the next release.
by SlySven
Sat Sep 19, 2020 1:37 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Sending commands to another char
Replies: 1
Views: 15296

Re: Sending commands to another char

You will need to incorporate the name of the profile you want to send the message/command to - and to do that you will need to develop a protocol that allows each profile to be made aware of the other profiles that are currently active. The ":" alias makes use of the raiseGlobalEvent(...) ...
by SlySven
Sat Sep 19, 2020 1:23 pm
Forum: Mudlet Mapper
Topic: Extracting a map from .are files.
Replies: 10
Views: 19222

Re: Extracting a map from .are files.

For the record Mudlet's XML map file parser will ignore the "important" and "color" attributes of the <room ...> elements and, currently, the "htlmcolor" of the <environment ...> ones!
by SlySven
Sat Sep 19, 2020 1:07 pm
Forum: Help Forum
Topic: Creating an alias to unlock a group
Replies: 2
Views: 12154

Re: Creating an alias to unlock a group

As the "pattern" is a regexp I'd recommend ensuring that they are only triggered when you enter exactly the command text and nothing else - otherwise they might go off when you enter that pattern in something else - e.g. if you were chatting about text formats and happened to include somet...
by SlySven
Sat Sep 19, 2020 12:54 pm
Forum: Help Forum
Topic: Can't select color for trigger
Replies: 1
Views: 11698

Re: Can't select color for trigger

Are you on Windows perchance? I have noticed that some Anti-virus systems on that OS get really intrusive and insist on checking every "file" the first time that it is used - and the "colour picker" as you put it for those is a file held internally to the application but which do...
by SlySven
Wed Aug 19, 2020 4:40 pm
Forum: Mudlet Development
Topic: UTF8 emoji display issue
Replies: 9
Views: 22418

Re: UTF8 emoji display issue

That emoji seems to be U+2708 {Airplane} and was introduced in Unicode 1.1 - that seems to be one of the range that we have problems with (see https://github.com/Mudlet/Mudlet/pull/3 ... -608507077 )...