Search found 92 matches

by Phoenix
Thu Apr 04, 2013 4:24 am
Forum: Scripts & Packages
Topic: GMCP Item Tracker
Replies: 2
Views: 8150

GMCP Item Tracker

This GMCP Item Tracker takes care of all the item tracking. In order to not get messed up with other functions modifying GMCP.Item information, this tracker uses all of its own tables as well as a manual deep-copy of the gmcp tables into its own tables. This was programmed for Achaea, and follows th...
by Phoenix
Fri Feb 08, 2013 8:12 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Run Lua code from the command line
Replies: 14
Views: 66159

Re: Run Lua code from the command line

... I see. pack() is interesting, looks like it basically just wraps {} around the arguments, and throws in a key of 'n' equal to the number of arguments. I wonder how it compares speedwise to r = {f()}...
by Phoenix
Fri Feb 08, 2013 7:54 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: Run Lua code from the command line
Replies: 14
Views: 66159

Re: Run Lua code from the command line

Interesting - what is the pack() function doing with f()? Would not r = {f()} be more simple? I've long since modified my lua code alias to do that, just never updated this post...
by Phoenix
Thu Jan 31, 2013 10:42 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652554

Re: Mudlet features and API requests

Two things, which I feel go hand-in-hand: When a "Key" is defined, it needs to over-ride the default that Mudlet makes for that key - IE, 'alt+n' if defined as a key should not open the notes for that character. Secondly, each of these defaults that Mudlet has needs to have a function that...
by Phoenix
Tue Jan 29, 2013 7:33 pm
Forum: General Forum
Topic: Mudlet 2.1
Replies: 67
Views: 59089

Re: Mudlet 2.1

To be honest, I think the kinds of people who use display() are more than capable to differentiate between the different outputs and requesting things like this really is just overkill and a waste of time. Just my 2c. Eh. I agree with you on the end of the post, the 'not showing keys' issue is a bi...
by Phoenix
Mon Jan 28, 2013 9:12 pm
Forum: General Forum
Topic: Mudlet 2.0 final
Replies: 33
Views: 36215

Re: Mudlet 2.0 final

Just tested on test4 - it's there as well. The one that was fixed at that point was this same bug, but in the main window; If I claimed it was fixed in miniconsoles at that point, then I was mistaken. My apologies on that point. So without highlighting, do ASCII maps in miniconsoles look right or o...
by Phoenix
Thu Jan 24, 2013 8:58 am
Forum: General Forum
Topic: Mudlet 2.1
Replies: 67
Views: 59089

Re: Mudlet 2.1

display() has a couple of issues, as listed below display() does not show the key entry for iterated pairs tables - this makes it hard to tell what entry you're looking at on longer tables When displaying tables with string entries that have \ in them, two \ are displayed. However, when displaying a...
by Phoenix
Sat Jan 19, 2013 5:51 am
Forum: General Forum
Topic: Mudlet 2.1
Replies: 67
Views: 59089

Re: Mudlet 2.1

echoPopup seems to have an issue, wherein all the tooltips in the tooltip table are displayed simply by hovering over it, even though left-clicking only runs the first one... Thus, only that tooltip should be shown on hover, with all of them being shown only on right click. Or, just that one, with a...
by Phoenix
Fri Jan 18, 2013 6:43 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652554

Re: Mudlet features and API requests

There's no way to make a macro that -only- fires on the 'a' key though, for instance... so I can't know if 'A', 'K', and 'X' are held down together, and thus make something that fires if those three keys are held down, or pressed in quick succession... Granted, holding them / pressing them would als...
by Phoenix
Fri Jan 18, 2013 4:40 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652554

Re: Mudlet features and API requests

Hm, inconsistency isn't good. It should be in line with how existing triggers/aliases work - so we'd want tempKey, killKey, permKey. Whoa, I think you misunderstood what I was asking for. But yes, those would be nice... but then you'd hafta be able to define "Keys" properly. How would tha...