Search found 414 matches

by Akaya
Sat Feb 28, 2015 1:03 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173720

Re: Geyser UI Template

Is your script named getVitals ? The script name and function name must match for the event to work properly.
by Akaya
Wed Feb 25, 2015 11:57 pm
Forum: Help Forum
Topic: downloadFile error
Replies: 7
Views: 6072

Re: downloadFile error

Ah. Great find. Thanks!

If you're not downloading from a secure https it seems to work fine. But I believe a 3.0 update was supposed to resolve that issue. Seems to be broke again. Ill give those .dll files a whirl when I get home.
by Akaya
Tue Feb 24, 2015 8:03 pm
Forum: Help Forum
Topic: downloadFile error
Replies: 7
Views: 6072

downloadFile error

Tried downloading a file from dropbox using downloadFile and sysDownloadError returned this: Unable to init SSL Context

What does that mean?
by Akaya
Tue Feb 24, 2015 7:52 pm
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173720

Re: Geyser UI Template

In that case you'll want a miniconsole instead of a label. This will create a miniconsole that covers GUI.Box1 my_miniconsole = Geyser.MiniConsole:new({ name = "my_miniconsole", x = 0, y = 0, width = "100%", height = "100%", }, GUI.Box1 ) And this is how you send text t...
by Akaya
Sun Feb 22, 2015 1:09 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173720

Re: Geyser UI Template

Each echo to a label will overwrite the previous. So try sending everything at once. You can separate with a <br>... GUI.Box1:echo("Hello World <br> Hello World again!") a bit more advanced way... local stuff_to_say = { "Hello World.", "Hey there bud.", "Get off my...
by Akaya
Thu Jan 15, 2015 12:48 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173720

Re: Geyser UI Template

It is public domain as well. Feel free to redistribute and give credit where credit is due.
by Akaya
Wed Jan 07, 2015 2:53 am
Forum: Help Forum
Topic: Stringlist help
Replies: 3
Views: 3638

Re: Stringlist help

Code: [show] | [select all] lua
table.concat(combat, "")
by Akaya
Mon Dec 08, 2014 7:22 pm
Forum: Mudlet Mapper
Topic: Thoughts: Extending the mapper
Replies: 3
Views: 4922

Re: Thoughts: Extending the mapper

You can use 3D mode to view the z axis. There is a toggle for it on the mapper UI.
by Akaya
Wed Nov 26, 2014 6:30 am
Forum: Help Forum
Topic: Geyser/Window Layout Question
Replies: 10
Views: 8394

Re: Geyser/Window Layout Question

Yes.
by Akaya
Tue Nov 25, 2014 12:39 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173720

Re: Geyser UI Template

Mudlet does not support .jpg images. Try .png instead. background-image or border-image will work. The difference between the two is that a border-image will stretch to fit the label and the background-image will be a set size (the size of the image) that will cut-off/tile depending on the label size.