Search found 193 matches

by Omit
Tue Nov 22, 2011 10:59 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652886

Re: Mudlet API requests

I would like to request a new function(if this isn't already there)
getRoomChar(ID)

It would allow checking if the map is aligned (by comparing a map generated by the mud to what is stored in mudlet) as well as the ability to use this info in a miniwindow (user created map widget).
by Omit
Tue Nov 22, 2011 9:52 pm
Forum: Mudlet Mapper
Topic: support for large LPC style color grid maps added
Replies: 4
Views: 5767

Re: support for large LPC style color grid maps added

Is there any documentation on displaying the ascii map?

I would also like to suggest adding the ability to display this style of map by hitting a button in the map window. (2D/3D/Ascii)
by Omit
Wed Nov 16, 2011 6:00 am
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

That is why the "key" is the command string.(or was when special exits were added to the api.) I do not know C++ but have many many years of experience with relational data... That is the only way it makes sense to do it. ( this is my fourth mapper I have written, all but this one I have c...
by Omit
Wed Nov 16, 2011 4:18 am
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

Try it again with the swap function.... Special exits are funky... Hence the need to store the data as it was. getSpecialexit give A valid command to destination id and swap gives you all valid commands. An exit should only be overwritten if you define one with the same command. addSpecialExit(90,14...
by Omit
Tue Nov 15, 2011 11:18 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652886

Re: Mudlet API requests

I have 2 hopefully simple requests reguarding MXP. (MXP is very broken, not by mudlet but as a standard) !st is that commands sent to the mud using the send() function go directly to the mud. (currently they are being sent through mxp and never make it.) This would allow those that play muds that r...
by Omit
Tue Nov 15, 2011 1:38 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652886

Re: Mudlet API requests

I have 2 hopefully simple requests reguarding MXP. (MXP is very broken, not by mudlet but as a standard) !st is that commands sent to the mud using the send() function go directly to the mud. (currently they are being sent through mxp and never make it.) This would allow those that play muds that re...
by Omit
Mon Nov 14, 2011 9:48 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

@Chris.... I looked at this earlier and it bothered me... took me a little while to figure out why. I think your goal is to have a list of unlocked exits for a room with RoomID as the Key value.... problem is the ones you want to use for that can fail to deliver usefull results. ... Here is the outp...
by Omit
Mon Nov 14, 2011 6:49 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

Of the three "bugs" I mention, this is the least of them. This is new in this version (so won't break anything previously done) and there is a fairly easy work-around for it. If the behavior does not change it would not break my heart. EDIT: I would love feedback on my suggestions for the ...
by Omit
Mon Nov 14, 2011 6:29 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

Yes, I know that but the average user is alot less likely than I to figure that out, if you do pull the entire table, you have to do an additional check on it. It is alot more user friendly to have it return nil. (and I would argue that any function added to the mapping api should do the same, prett...
by Omit
Mon Nov 14, 2011 6:06 pm
Forum: General Forum
Topic: Mudlet-2.0-test4 released
Replies: 87
Views: 55357

Re: Mudlet-2.0-test4 released

Thus far I have only found 3 bugs in the mapping functionality in mudlet…. 1>setCustomEnvColor(environmentID, r,g,b,a) - the fourth parameter(alpha) should be optional and default to 255 2>getmapvar(“whatever”) - should return nil if the variable does not exist. 3> Special Exits – (see below for my ...