Search found 232 matches

by Belgarath
Wed Jun 24, 2015 4:20 am
Forum: Mudlet Mapper
Topic: (mapping script) Mudlet Mapper script for Achaea/IREs
Replies: 241
Views: 351540

Re: (mapping script) Mudlet Mapper script for Achaea/IREs

Have you tried re-installing the mudlet mapper?
by Belgarath
Wed Jun 17, 2015 3:53 pm
Forum: Mudlet Development
Topic: Mudlet 3.0.0-delta (preview #4)
Replies: 146
Views: 281877

Re: Mudlet 3.0.0-delta (preview #4)

Any chance of another pre-release fixing the annoying resize bug?
by Belgarath
Wed Jun 17, 2015 3:30 pm
Forum: Help Forum
Topic: map table troubles
Replies: 5
Views: 5516

Re: map table troubles

No problem. ;) gmatch iterates over a string, allowing you to take action on each match (eg. on each word): -- %a matches all letters for word in string.gmatch("mudlet is the best", "%a+") do print(word) end In the map_table function I used a dot which represents any/all characte...
by Belgarath
Wed Jun 17, 2015 11:30 am
Forum: Help Forum
Topic: Mapper isn't showing any maps!
Replies: 4
Views: 3178

Re: Mapper isn't showing any maps!

You'll want to go into your mudlet profile folder (you can see that by doing lua getMudletHomeDir()) and delete the map folder/settings. Then you can restart the profile and disable/re-enable the crowdmap.
by Belgarath
Wed Jun 17, 2015 11:26 am
Forum: Help Forum
Topic: map table troubles
Replies: 5
Views: 5516

Re: map table troubles

This method works without error: function scan_to_table () sr = {} local key = { ["?"] = "unknown", ["$"] = "black_hole", ["0"] = "planet_0", ["O"] = "planet_O", ["*"] = "star", ["N"] = &quo...
by Belgarath
Wed Jun 17, 2015 10:44 am
Forum: Help Forum
Topic: Mapper isn't showing any maps!
Replies: 4
Views: 3178

Re: Mapper isn't showing any maps!

Try doing mconfig crowdmap on and see if that fixes it.
by Belgarath
Wed Jun 17, 2015 10:40 am
Forum: Help Forum
Topic: Log directory?
Replies: 1
Views: 2041

Re: Log directory?

Let me look at the profile preferences tab and check... Ah, nope, I see no option to change the log directory.

However, there are scripts that can log and save to a specified directory for you (such as this one).
by Belgarath
Wed Jun 17, 2015 10:26 am
Forum: Help Forum
Topic: Mudlet Mapper - wait for pathing complete
Replies: 3
Views: 3059

Re: Mudlet Mapper - wait for pathing complete

It would require a bit more scripting on your part, but I think the easiest method would be to use the mmapper arrived event. You could change your table to: { { id = 15400, action = "turn knob" }, -- etc. } This way you can check whether the table is empty, or move on to the next location.
by Belgarath
Tue Jun 09, 2015 10:03 pm
Forum: Help Forum
Topic: newbie wants help with lua
Replies: 3
Views: 2890

Re: newbie wants help with lua

Heya Joe. There are tons of resources for learning mudlet on its wiki. Depending on which MUD you play, you can get further scripting examples or packages from their forums. If you have any specific questions then feel free to ask here.
by Belgarath
Sun May 17, 2015 1:31 pm
Forum: Help Forum
Topic: Trigger capturing
Replies: 3
Views: 3101

Re: Trigger capturing

Try changing the [are|is] to (?:are|is) or simply a \w+ and see if it solves your problem.