Search found 23 matches

by SilverDragon
Mon Jun 26, 2017 3:28 pm
Forum: General Forum
Topic: Mudlet 3.2 is available!
Replies: 25
Views: 33085

Re: Mudlet 3.2 is available!

Quick update, after some more twiddling. Found out I wasn't (yet) using crowdmap, so I enabled that, and after it downloaded and made all the audit changes, I tried recopying (see 2nd screenshot), that ended in failure. I then reloaded the profile (see 1st screenshot) and tried to copy it to a -diff...
by SilverDragon
Mon Jun 26, 2017 3:14 pm
Forum: General Forum
Topic: Mudlet 3.2 is available!
Replies: 25
Views: 33085

Re: Mudlet 3.2 is available!

Sure!

zipped it together with the errors.txt file from the error folder in the profile, (since .dat attachments aren't allowed)

I also took a screenshot of the mudlet load sequence (so you could see all the actions it performs).


Thanks. :]
by SilverDragon
Fri Jun 23, 2017 11:07 pm
Forum: Help Forum
Topic: Hanging indent
Replies: 8
Views: 5527

Re: Hanging indent

You'll want to check out Preferences --> Main Display --> Word wrapping. There's two options "wrap lines at", and "indent wrapped lines by", I daresay what you're looking for is the second option. :] However, one caveat I can think of is that there's no automatic adjustment for h...
by SilverDragon
Fri Jun 23, 2017 5:02 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652796

Re: Mudlet features and API requests

createMapper createMapper(x, y, width, height) createMapper(100,50,355,300) -- ok createMapper(100,50,35%,40%) -- Should be added createMapper(100,-50,35%,40%) -- Should be added It's possible (and relatively simple) for you to get that functionality yourself with a little math -- grab screen dimen...
by SilverDragon
Fri Jun 23, 2017 4:49 pm
Forum: General Forum
Topic: Mudlet 3.2 is available!
Replies: 25
Views: 33085

Re: Mudlet 3.2 is available!

OS x64 Win10 pro version 1607. Running Mudlet 3.2.0 Mudlet stops working (see attached below) when I try to copy the map to another profile with the "copy map to another profile" feature under the mapper tab in mudlet settings. Tried using various version of the mapfile (18, 16), and to va...
by SilverDragon
Sat Mar 12, 2016 4:23 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652796

Re: Mudlet features and API requests

And another one for the record :D

A way to set the Geyser mapper container's background that is permanent. Not just a image label that only shows up when your at the coordinates you were when you set the image

Bump for people who don't want a black hole map box.
by SilverDragon
Tue Mar 08, 2016 1:20 am
Forum: Scripts & Packages
Topic: isn't there a send that doesn't echo?
Replies: 3
Views: 6516

Re: isn't there a send that doesn't echo?

There's also a checkbox labeled "show commands sent to the server" in the settings window that you can uncheck, and it does essentially the same thing. Helpful if you have a lot of scripts with a lot of sends and you don't want to have to painstakingly go back and find each one and add in ...
by SilverDragon
Fri Mar 04, 2016 5:24 pm
Forum: Help Forum
Topic: [Help] Bug? String.find does not match dashes
Replies: 2
Views: 5079

Re: [Help] Bug? String.find does not match dashes

that worked, but I also found (courtesy of: http://lua-users.org/wiki/StringLibraryTutorial) that doing for k,v in ipairs(testing) do if v:find(denizen, 1, true) then --- Changed to plain search echo("\n denizen found \n") break end -- if end -- for Works brilliantly too. :)
by SilverDragon
Sat Feb 27, 2016 4:28 pm
Forum: General Forum
Topic: Mudlet features and API requests
Replies: 535
Views: 652796

Re: Mudlet features and API requests

Not sure if someone's already requested these, but I wanna add my vote for: A way to reference and set via a function (aka getSysx(), setSysX(), where x is the name of what you want to get/set) main system fontsize, font style, and screen wrap a function to hide/show the scroll bar in the main windo...
by SilverDragon
Sat Jan 09, 2016 11:58 pm
Forum: Help Forum
Topic: [Help] Bug? String.find does not match dashes
Replies: 2
Views: 5079

[Help] Bug? String.find does not match dashes

Either it's a bug, or just a feature that's missing/was never implemented, but string.find will not (can't?) match on dashes. I've tested and it matches every other common special/grammatical character I could think of(quotes, commas, semi-colons, colons, apostrophes, periods, backslashes, forwardsl...