Search found 414 matches

by Akaya
Fri Apr 10, 2015 5:05 pm
Forum: Scripts & Packages
Topic: Materia Magica GUI
Replies: 5
Views: 8956

Re: Materia Magica GUI

Put all of your files and images in a zip file. When a user installs the zip file via the Package Manager, all of the contents will be unzipped to getMudletHomeDir()
by Akaya
Wed Apr 08, 2015 1:09 am
Forum: Scripts & Packages
Topic: Materia Magica GUI
Replies: 5
Views: 8956

Re: Materia Magica GUI

I might just have to login and take a peek at this. Good work!
by Akaya
Tue Apr 07, 2015 9:32 am
Forum: Scripts & Packages
Topic: Materia Magica GUI
Replies: 5
Views: 8956

Re: Materia Magica GUI

Any chance you have a screenshot?
by Akaya
Sat Mar 28, 2015 3:18 pm
Forum: Scripts & Packages
Topic: Akayan Geyser Scripts
Replies: 9
Views: 12455

Re: Akayan Geyser Scripts

I have both affliction and defense tracker in this forum. If you use svo I would have no problem converting it to Geyser.

Glad you and many others enjoy the template! It really is a useful script.
by Akaya
Fri Mar 27, 2015 3:35 pm
Forum: Scripts & Packages
Topic: Akayan Geyser Scripts
Replies: 9
Views: 12455

Re: Akayan Geyser Scripts

I haven't been playing much as of late. Though I do hover over this forum and offer help where I can. Any requests? Nothing too specific.
by Akaya
Mon Mar 23, 2015 3:56 pm
Forum: Geyser Layout Manager
Topic: Labels and CSS
Replies: 2
Views: 27964

Re: Labels and CSS

I would check out Vadi's CSS Manager. You can find it here
by Akaya
Sat Mar 21, 2015 6:19 pm
Forum: Help Forum
Topic: setStyleSheet inquiry
Replies: 5
Views: 4761

Re: setStyleSheet inquiry

I use tags in my echo to set the font.
Code: [show] | [select all] lua
my_label:echo([[<span style="font-size: 12pt">Hello World<\span>]])
Written from my phone.
by Akaya
Wed Mar 11, 2015 7:08 am
Forum: Help Forum
Topic: Table? help. Not sure, really..
Replies: 3
Views: 2897

Re: Table? help. Not sure, really..

Add a table with the numbers and their words as the keys and values. local numbers = { ["1"] = "one", ["2"] = "two", ["3"] = "three", -- and so on } Then check your action list against this table to see if there's a match. local numbers = {...
by Akaya
Mon Mar 09, 2015 4:57 pm
Forum: Help Forum
Topic: Table? help. Not sure, really..
Replies: 3
Views: 2897

Re: Table? help. Not sure, really..

Create a new trigger. Insert this as the pattern: ^Great Job! Let's Advance\. \((.*)\)$ Select perl regex from the drop down menu. In the big white space insert: local actions = string.split( matches[2], " ") for _,v in pairs(actions) do send(v) end Click Save Item. This was written from m...
by Akaya
Sat Feb 28, 2015 6:59 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 185217

Re: Geyser UI Template

Here's the object oriented way Geyser provides. Try replacing your setGauge functions with setValue like so:
Code: [show] | [select all] lua
GUI.Health:setValue( tonumber(currentHealth), tonumber(maxHealth) )