Search found 19 matches

by Buck
Thu Mar 02, 2017 9:23 am
Forum: Help Forum
Topic: Delete window/label?
Replies: 10
Views: 9182

Re: Delete window/label?

Correct me if I'm wrong, but if I create a label with a specific name, and then try to create a label with the same name, no new label is created, the original one is just "recycled" so to speak. While it wouldn't be bad to be able to delete a label, I have never had issues come up due to...
by Buck
Mon Feb 20, 2017 10:03 am
Forum: General Forum
Topic: Mudlet 3.0 final - do you have any issues with delta, epsilo
Replies: 23
Views: 35467

Re: Mudlet 3.0 final - do you have any issues with delta, ep

iota causes Mudlet to crash on using a database through lua.
by Buck
Thu Feb 16, 2017 2:29 pm
Forum: General Forum
Topic: Whats Your Gui Look like?
Replies: 114
Views: 405651

Re: Whats Your Gui Look like?

Very impressive work. How does the API for your command-line alias and trigger engine look like? (post in a new thread if you're happy to explain) Thanks a lot! I posted some explanation on how to use the aliases and triggers here: http://forums.mudlet.org/viewtopic.php?f=6&t=16462 . If you nee...
by Buck
Thu Feb 16, 2017 2:27 pm
Forum: Scripts & Packages
Topic: Input line alias/trigger scripts.
Replies: 5
Views: 11057

Input line alias/trigger scripts.

As per request, some details about my alias/trigger scripts. In order to make Mudlet more accessible to both newbies and mushclient players, I added the ability to set aliases and mushclient like triggers via the input line. This makes it easier for people to use simple aliases and triggers without ...
by Buck
Sun Jan 22, 2017 8:18 pm
Forum: General Forum
Topic: Whats Your Gui Look like?
Replies: 114
Views: 405651

Re: Whats Your Gui Look like?

I applaud you Buck. I find the blue rings you use as cooldown timers very clever! How are you doing this through Geyser? Thanks Akaya, I appreciate it! For the blue rings I used stylesheets to set round borders: container:setStyleSheet( string.format( [[ background-color: black; border: %fpx solid ...
by Buck
Thu Jan 19, 2017 2:37 pm
Forum: General Forum
Topic: Whats Your Gui Look like?
Replies: 114
Views: 405651

Re: Whats Your Gui Look like?

My GUI for 4Dimensions : http://imgur.com/kJIGMcGl.png I got a little bit carried away while developing this, but it's fun to do. I don't use bitmap graphics because they don't scale well, and I like to keep things clear and simple. I used Geyser for the GUI. Some of the functionality: The top left ...
by Buck
Wed Dec 14, 2016 9:07 pm
Forum: Geyser Layout Manager
Topic: Find and access label by name?
Replies: 1
Views: 14018

Re: Find and access label by name?

I wrote some code for finding any existing window by name (so not only labels): -- Searches for a geyser window by name local function addToStack( stack, window_list) for name, window in pairs( window_list) do table.insert( stack, window) end end function getWindow( name) local stack = {} addToStack...
by Buck
Wed Dec 14, 2016 2:12 pm
Forum: General Forum
Topic: Mudlet-3.0.0-iota (preview #6) is available!
Replies: 9
Views: 30245

Re: Mudlet-3.0.0-iota (preview #6) is available!

It wouldn't surprise me if those profiles are crashing for the same reason - I can't be the only person using sql databases in their script. Somewhat related to my initial post, I had to upload the previous windows version (Epsilon) to my github with it no longer being available for download on the...
by Buck
Wed Nov 09, 2016 5:16 pm
Forum: Help Forum
Topic: msdp.AFFECTS not getting populated
Replies: 7
Views: 6064

Re: msdp.AFFECTS not getting populated

SlySven wrote: as - of course - you cannot include that raw ASCII control code in Mudlet scripts
You wouldn't have to store it as a raw ASCII control code - you would just generate it as you would in any other scripting language:

Code: Select all

local affects = string.split( msdp.AFFECTS, string.char(7))
by Buck
Tue Nov 08, 2016 8:26 am
Forum: Help Forum
Topic: msdp.AFFECTS not getting populated
Replies: 7
Views: 6064

Re: msdp.AFFECTS not getting populated

No, it's not a valid JSON value. I presume only this MUD uses it, though I haven't checked out other (Circle) muds.