Search found 1019 matches

by SlySven
Tue Apr 06, 2021 7:17 pm
Forum: Help Forum
Topic: How to use Lua scripts in addSpecialExit()
Replies: 14
Views: 48422

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...
by SlySven
Tue Apr 06, 2021 7:10 pm
Forum: Help Forum
Topic: Unexpected output from getAreaRooms()
Replies: 4
Views: 3439

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...
by SlySven
Tue Apr 06, 2021 7:03 pm
Forum: Help Forum
Topic: Mudlet Control Across Different Profile
Replies: 18
Views: 10584

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...
by SlySven
Tue Apr 06, 2021 6:59 pm
Forum: Help Forum
Topic: Special exits as normal exits
Replies: 2
Views: 4225

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...
by SlySven
Tue Apr 06, 2021 5:56 pm
Forum: General Forum
Topic: Linux Oddities
Replies: 6
Views: 16800

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! :o
by SlySven
Mon Mar 22, 2021 3:36 am
Forum: Help Forum
Topic: Global exits
Replies: 14
Views: 12901

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...
by SlySven
Sat Jan 30, 2021 6:48 pm
Forum: Mudlet Mapper
Topic: Generic Mapping Script
Replies: 441
Views: 460104

Re: Generic Mapping Script

@kerhuso Welcome back - it has been a while since you joined us (2011!)- even before my time.
by SlySven
Sat Jan 02, 2021 4:50 am
Forum: Help Forum
Topic: IPV4 versus IPV6
Replies: 6
Views: 4707

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
by SlySven
Sat Jan 02, 2021 4:43 am
Forum: Mudlet Development
Topic: MQTT support?
Replies: 8
Views: 29658

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...