Search found 991 matches
- Tue Apr 06, 2021 7:36 pm
- Forum: Mudlet Mapper
- Topic: Dev seeks elementary advice on generic mapper
- Replies: 2
- Views: 121
Re: Dev seeks elementary advice on generic mapper
Also as a hand-editing tool we have recently added a (complete) JSON map exporter/importer to the Mudlet core functionality - it is certainly already present in the latest release version 4.11.2 so you can use it to hand edit a map if you need to... (The XML importer by comparison is limited and the...
- Tue Apr 06, 2021 7:17 pm
- Forum: Help Forum
- Topic: How to use Lua scripts in addSpecialExit()
- Replies: 5
- Views: 193
Re: How to use Lua scripts in addSpecialExit()
So it looks like support for "script: " is not actually built-in to mudlet itself but is down to the mapper script to process it. Yep - it is a deceptive tool-tip which actually only ties up with the external generic mapper - you can put anything as the special exit name/command (unfortun...
- Tue Apr 06, 2021 7:10 pm
- Forum: Help Forum
- Topic: Unexpected output from getAreaRooms()
- Replies: 4
- Views: 149
Re: Unexpected output from getAreaRooms()
Technically the output: lua getAreaRooms(7) { 67, 64, 65, 63, [0] = 66 } is actually: lua getAreaRooms(7) { [1] = 67, [2] = 64, [3] = 65, [4] = 63, [0] = 66 } The table printing code assumes that when the indexes are monotonically incrementing from 1 it is a Lua list/indexed table and suppresses the...
- Tue Apr 06, 2021 7:03 pm
- Forum: Help Forum
- Topic: Mudlet Control Across Different Profile
- Replies: 18
- Views: 1202
Re: Mudlet Control Across Different Profile
You can also pass the profile name with the event so you can tell which event the profile came from. Actually the raiseGlobalEvent(...) does that automagically - it always appends the sending profile name to the end of the list of arguments that the user (script/package-writer) gives to the functio...
- Tue Apr 06, 2021 6:59 pm
- Forum: Help Forum
- Topic: Special exits as normal exits
- Replies: 2
- Views: 1365
Re: Special exits as normal exits
TinTin++ does this as well - normal and special exits are handled quite similarly - it is just that the name i.e. "e" is directly mapped to the "e" command inherently - but it can be changed there (you can get really confused if you swap the commands with the one for the opposite...
- Tue Apr 06, 2021 5:56 pm
- Forum: General Forum
- Topic: Linux Oddities
- Replies: 6
- Views: 866
Re: Linux Oddities
To pan the map in KDE on Linux (and FreeBSD BTW) try <Alt>+<Ctrl>+mouse move... Mudlet doesn't pick up on the extra <Ctrl> modifier but the DE does and ignores the <Alt> one leaving the mouse movement to be used by Mudlet! 

- Mon Mar 22, 2021 3:36 am
- Forum: Help Forum
- Topic: Global exits
- Replies: 14
- Views: 4949
Re: Global exits
There was a bug in Mudlet 4.11.0 (but not in the previous 4.10.x versions) in the generation of the Boost Graph Library graph that Mudlet needs for pathfinding and it particular concerned locked special exits - it might be that in correcting that bug (done by 4.11.1) it takes longer to produce a val...
- Sat Jan 30, 2021 6:48 pm
- Forum: Mudlet Mapper
- Topic: Generic Mapping Script
- Replies: 404
- Views: 191431
Re: Generic Mapping Script
@kerhuso Welcome back - it has been a while since you joined us (2011!)- even before my time.
- Sat Jan 02, 2021 4:50 am
- Forum: Help Forum
- Topic: IPV4 versus IPV6
- Replies: 6
- Views: 1000
Re: IPV4 versus IPV6
This is an issue that has been hanging around our necks for a while:
https://github.com/Mudlet/Mudlet/issues/3053
https://github.com/Mudlet/Mudlet/issues/3791
https://github.com/Mudlet/Mudlet/issues/3053
https://github.com/Mudlet/Mudlet/issues/3791
- Sat Jan 02, 2021 4:43 am
- Forum: Mudlet Development
- Topic: MQTT support?
- Replies: 8
- Views: 1377
Re: MQTT support?
My 64-bit builds work for me - but I am not entirely sure of the form of the release builds. A lot of places in the Windows CI make mention of "Mingw" stuff - which is confusing because they might actually be the "Mingw-w64" fork - only the latter actually natively supports 64 Bi...