Search found 193 matches

by Omit
Sun Nov 13, 2011 11:57 pm
Forum: General Forum
Topic: Question on Aliases
Replies: 5
Views: 4915

Re: Question on Aliases

You will need to do something with the second varible as it will change(unless I don't understand the problem) so maybe alias a pattern like... ^fh (.*)$ (assumes you want to fully heal the target) you will need some way to interpert the target... I would use a table raceTable= {} raceTable["he...
by Omit
Sun Nov 13, 2011 11:26 pm
Forum: General Forum
Topic: Question on Aliases
Replies: 5
Views: 4915

Re: Question on Aliases

Check the manual.... I don't quite follow what you are tring to do but maybe this will help...

matches[1] is the entire line
matches[2] is the first wildcard value
matches[3] is the second wildcard value
...
by Omit
Sun Nov 13, 2011 6:37 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 59387

Re: Mudlet-2.0-test4 released

Hmm... It appears the Special Exits are more broken than I thought. It does NOT appear that you can save more than one command for a single direction any longer..... Something changed in the way they are stored(likely using the room id as the key, this makes it incompatable with alot of speciel exit...
by Omit
Sun Nov 13, 2011 4:08 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 59387

Re: Mudlet-2.0-test4 released

Nope, was not moving and clicking..... On closer inspection, It doesn't seem to happen every time. It does seem to happen very very frequently.(maybe every 4th or fifth room selected.) When the error does occur, the map view gets shifted down by exactly 1 room (and the room you tried to select is no...
by Omit
Sun Nov 13, 2011 2:10 am
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 59387

Re: Mudlet-2.0-test4 released

Hmm.... I noticed a fairly minor issue with the map.
In 2d mode, simply left clicking a room changes the maps center.(...and doesn't even center on the room selected...I do not have any scripting attached to this event) If you continue to click rooms, the map may even move out of the visable area.
by Omit
Sun Nov 13, 2011 1:35 am
Forum: Help Forum
Topic: Mudlet Mapper question
Replies: 2
Views: 2426

Re: Mudlet Mapper question

what scripting are you using for the map?
My guess is there is an error in it.....

sometime after you move the scripting should call the the function
centerview(RoomID)
my guess is that it isn't calling it when you move up or down.

(this works just fine for me in 2d mode)
by Omit
Sun Nov 13, 2011 12:01 am
Forum: Mudlet Mapper
Topic: (mapping script) Base Mapping script for LP muds
Replies: 31
Views: 119420

Re: (mapping script) Base Mapping script for LP muds

Progress has been made, It maps again, I have made some changes so all the mapping/color/current room/... info is now saved nicely with the map file and is restored from there.(previously this was not possible). It still has issues with the special exits. (The functions are more than a little F'ed u...
by Omit
Sat Nov 12, 2011 11:13 pm
Forum: General Forum
Topic: added MXP support to Mudlet
Replies: 6
Views: 5945

Re: added MXP support to Mudlet

2nd question regaurding MXP.... I would love to trigger on mxp tags (best way to capture room info, amoung other things) and I see that it does not raise an event, they don't pass through the trigger engine, so.... Is there any way to access the mxp information from scripting..... I thought prehaps ...
by Omit
Fri Nov 11, 2011 5:23 am
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 59387

Re: Mudlet-2.0-test4 released

*facepalm ....I think I want to ask you to change the w..ay the table is returned for specialexitsswap...again. It was added at my request for the following kind of useage. (Can't think why you would care if the exit is locked in when using it....please forgive my phsdo code...I am on my phone atm.)...
by Omit
Fri Nov 11, 2011 1:30 am
Forum: Whatever
Topic: Something else to do with Lua....
Replies: 4
Views: 5767

Re: Something else to do with Lua....

There is some access to some of the functionality of native api's (not all) and only through their Lua implimentation of them. Some parts of it they have done well with, other parts need work (example: they give some access to the fine location api(GPS) but it is poorly done....least on android....t...