Search found 30 matches

by tarkenton
Wed Sep 02, 2015 4:13 am
Forum: Help Forum
Topic: How to begin developing scripts
Replies: 5
Views: 4397

Re: How to begin developing scripts

I'd suggest using http://www.aardwolf.com/wiki/index.php/ ... ardwolfGUI as a template/base.
by tarkenton
Fri Aug 21, 2015 5:05 am
Forum: Help Forum
Topic: How to match with spaces?
Replies: 3
Views: 3337

Re: How to match with spaces?

^\w+ says 'tele to (.*)'$ https://regex101.com is an awesome tool that helps show you what is matching with your statements, and gives a pretty good reason as to why. What the regex above does is it captures any number of words/characters/whatevers after to and before the '. If there's better punctu...
by tarkenton
Thu Jul 30, 2015 2:12 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652805

Re: Mudlet features and API requests

Fitting into a GUI is exactly what I'm looking for. Figured why recode if the functionality is already there. Is no big deal, I can write a simple, terribly optimized scratch pad. But having the user able to click on a GUI window, and just write something, would be nice instead of aliases and the li...
by tarkenton
Wed Jul 29, 2015 8:37 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652805

Re: Mudlet features and API requests

Haven't gone digging, as this was a toilet thought. Is there any way to put the notes functionality into a label/miniconsole? If not, that's something I and others would find handy since it would allow for a scratchpad to easily be implemented to store info people want to scribble down or see at a g...
by tarkenton
Wed Jul 29, 2015 6:12 pm
Forum: Scripts & Packages
Topic: Total newbie, trigger question
Replies: 5
Views: 7277

Re: Total newbie, trigger question

Nah, matches[2]. The first w is non capturing due to a lack of parentheses.
by tarkenton
Sun Jul 26, 2015 1:26 am
Forum: Scripts & Packages
Topic: Vyzor, UI Manager for Mudlet
Replies: 329
Views: 256040

Re: Vyzor, UI Manager for Mudlet

Any updates to Vyzor not working? Running Win 8, 64 bit, delta mudlet, tried downloading a few times and nada. Having read over the features, and how it does things, I'd definitely like to start building my UIs with it if I can get it working.
by tarkenton
Mon Mar 09, 2015 5:51 am
Forum: Scripts & Packages
Topic: Console showing people in room?
Replies: 1
Views: 4914

Re: Console showing people in room?

I have three script files for this. named updatepeople Event Handler: gmcp.Room.Players function updatepeople() my_people = {} for k,v in pairs(gmcp.Room.Players) do table.insert(my_people, [[<span style="color: ]] .. ndb.getcolor(gmcp.Room.Players[k].name) .. [[">]] .. gmcp.Room.Players[k...
by tarkenton
Mon Dec 08, 2014 5:36 am
Forum: Help Forum
Topic: Checking to see if a text file has been updated
Replies: 1
Views: 2653

Checking to see if a text file has been updated

Hi all, quick question. Looking to make a little label that echos the contents of a text file, in this case a standalone program that places your currently playing song from a number of music players into a text file (https://github.com/dlrudie/Snip/releases/tag/v4.6.0). Of course, the tricky part i...
by tarkenton
Mon Dec 08, 2014 5:31 am
Forum: Help Forum
Topic: Need help with bad fonts
Replies: 6
Views: 3813

Re: Need help with bad fonts

m&m always has triples. It's just how Vadi has it set up to categorize things. As for TarxUI being goobered for you, I'll see if I can push something this week to fix that.
by tarkenton
Sat Oct 25, 2014 5:11 am
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652805

Re: Mudlet features and API requests

Also, agree that being able to adjust Z position of labels / consoles would be nice.