Search found 414 matches

by Akaya
Tue Jun 30, 2020 12:44 am
Forum: Scripts & Packages
Topic: Akayan UI
Replies: 47
Views: 123585

Re: Akayan UI

R.I.P. tinypic.com You served me well. I'll update the images on this thread because it's so depressing to see. To answer your question!... Open Scripts > Akayan_UI_Knight > UI.Background Alter line 1 to fit your needs. Should look like this by default: Vyzor.Options.Borders = {Top = 0.5, Bottom = 0...
by Akaya
Mon Apr 20, 2020 4:16 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: How to: Using Qt Designer to make gradients
Replies: 3
Views: 11037

Re: How to: Using Qt Designer to make gradients

This is an amazing tool for applying gradients. I don't why its taken me 10 years to see it, but thank you none-the-less.
by Akaya
Sun Jan 22, 2017 4:24 pm
Forum: General Forum
Topic: Whats Your Gui Look like?
Replies: 114
Views: 404214

Re: Whats Your Gui Look like?

I applaud you Buck. I find the blue rings you use as cooldown timers very clever! How are you doing this through Geyser?
by Akaya
Wed Jun 22, 2016 9:53 pm
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 172827

Re: Geyser UI Template

The mapper doesn't seem to like when it is placed within a container, such as GUI.Box1. While it will still track and update your location, you will lose all mouse-based functionality. The only solution I've found is to give the exact x,y location of where you want the mapper placed and make sure it...
by Akaya
Fri Jun 26, 2015 5:48 pm
Forum: Mudlet Mapper
Topic: Room movement animation?
Replies: 4
Views: 6075

Re: Room movement animation?

Ah. I really need to study up on the Qt docs. Lots of cool stuff there that could possibly be the makings of a great UI :)
by Akaya
Thu Jun 25, 2015 10:24 pm
Forum: Mudlet Mapper
Topic: Room movement animation?
Replies: 4
Views: 6075

Re: Room movement animation?

IRE's HTML5 client has a map with animations for room movement. Very slick. I don't know how the Mudlet Mapper handles room movement, but I'm pretty sure the rooms are made with labels. Perhaps the centerview function could be expanded to implement this.
by Akaya
Tue Jun 23, 2015 4:50 pm
Forum: Help Forum
Topic: Can't I make a map by hand?
Replies: 2
Views: 4182

Re: Can't I make a map by hand?

All the functions you'll need can be found here: http://wiki.mudlet.org/w/Manual:Mapper_Functions

A very simple start can be found here: http://wiki.mudlet.org/w/Mapping_script ... ing_script
by Akaya
Sun Jun 21, 2015 4:02 am
Forum: Howtos, FAQs and Tips & Tricks
Topic: Alias with agument
Replies: 2
Views: 5133

Re: Alias with agument

Why yes it is!

Pattern: ^od (\w+)$

Script: send("open door "..matches[2])

The (\w+) is a wildcard that will catch any word after od

You can use (\d+) for numbers and (.*) will match anything.
by Akaya
Thu Jun 18, 2015 2:22 am
Forum: Help Forum
Topic: map table troubles
Replies: 5
Views: 4926

Re: map table troubles

That it does! I will definitely be using this again! Thank you!
by Akaya
Wed Jun 17, 2015 3:12 pm
Forum: Help Forum
Topic: map table troubles
Replies: 5
Views: 4926

Re: map table troubles

If you don't mind me asking, how does this line work:
Code: [show] | [select all] lua
 for str in v:gmatch "." do 


I'm not to familiar with gmatch "."