Search found 31 matches

by Jaren
Fri Jan 18, 2019 3:41 pm
Forum: Scripts & Packages
Topic: Adding GMCP to my MUD
Replies: 7
Views: 8284

Adding GMCP to my MUD

I have a small mud that I am trying to push a GUI package to the users with and I can't for the life of me get it to work. I followed this page https://wiki.mudlet.org/w/Manual:GMCP_Extensions page to the letter and even tried the example and it won't work. I have the mud sending this string as a te...
by Jaren
Mon Mar 26, 2018 9:32 pm
Forum: Help Forum
Topic: Multiple Triggers Same Line
Replies: 2
Views: 2647

Re: Multiple Triggers Same Line

Thanks, I can work with that. I never thought about running the trigger once and for looping the rest.
by Jaren
Mon Mar 26, 2018 8:26 am
Forum: Help Forum
Topic: Multiple Triggers Same Line
Replies: 2
Views: 2647

Multiple Triggers Same Line

I am trying to figure out a way to run the same trigger multiple times every time it finds the keyword on the same line. Example text: Foods: burrito, soft-drink, burrito, soft-drink, burrito and burrito Example trigger with match all enabled: (\, |\: |and )(\w+) foodtype = matches[3] if foodtype ==...
by Jaren
Wed Jan 28, 2015 1:57 pm
Forum: Help Forum
Topic: Help playing sound file using the 3.0.0 gamma version
Replies: 15
Views: 11430

Re: Help playing sound file using the 3.0.0 gamma version

I am running Windows 7 Pro and 'playSoundFile()' works great for me in version 2.1 but it will not work at all in 3.0.0 gamma. I found this old post about a workaround using gstreamer but I can't seem to get the correct syntax for a windows OS. http://forums.mudlet.org/viewtopic.php?f=9&t=1506 I...
by Jaren
Sat Mar 29, 2014 4:35 pm
Forum: Help Forum
Topic: Can the input bar be moved?
Replies: 1
Views: 2045

Can the input bar be moved?

I am designing a UI where the information is displayed on the left of the screen and I was wondering if it was possible to move or shrink the input bar to align with the main display? I checked around and found nothing but an old post that was over two years old. here Here is a screenshot of my UI. ...
by Jaren
Mon Jan 27, 2014 12:17 am
Forum: Help Forum
Topic: Simple table in Labels.
Replies: 3
Views: 3048

Re: Simple table in Labels.

Thanks, that worked like a charm. These ideas have given me a few more tools to work with.
by Jaren
Sun Jan 26, 2014 9:21 am
Forum: Help Forum
Topic: Simple table in Labels.
Replies: 3
Views: 3048

Simple table in Labels.

I apologize in advance for my ignorance however I looked and looked and something so simple seems to elude me. How do I print, echo or display a simple table in a label? I've tried this but it only displays the last key when the entire label is restarted: for i, v in ipairs(mytable) do mylabel:echo(...
by Jaren
Sat Jan 25, 2014 6:19 pm
Forum: Help Forum
Topic: Wildcard Limit
Replies: 3
Views: 2701

Re: Wildcard Limit

Thanks, I was looking for a way to parse it out internally and that worked like a charm. Now I just need to adjust it a bit to work with the skills section at the end but I have enough here to figure it out.
by Jaren
Sat Jan 25, 2014 6:56 am
Forum: Help Forum
Topic: Wildcard Limit
Replies: 3
Views: 2701

Wildcard Limit

I noticed that there seems to be a limit to how many wildcards you can parse from the matches table. So far, the limit I have found is 33. I have a unique situation where I have set it up so my MUD is sending the player information via a large one line array (Example below) and I need to do somethin...
by Jaren
Thu Dec 12, 2013 12:02 am
Forum: Help Forum
Topic: Main Toolbar command line hide.
Replies: 7
Views: 5766

Re: Main Toolbar command line hide.

I am aware of the option to switch out for the menubar however this also requires space that could otherwise be used and would also be a nice thing to be able to toggle via command line. My main problem is that many in the MUD I write plugins for tend to be of the "casual MUDer" brand of i...