Maeil UI 2

Re: Maeil UI 2

Post 18 Mar 2010 19:19

Avatar allegs
 
Posts: 2
Anyone know's where and how to add the font Maeli linked a couple posts back?

Re: Maeil UI 2

Post 18 Mar 2010 21:05

Avatar maeil
 
Posts: 109
Location: Finland
You'll need Sharedmedia addon. There is a readme in Sharedmedia addon folder for instructions how to add your own media.

Re: Maeil UI 2

Post 23 Mar 2010 09:06

Avatar Bedo
 
Posts: 1
would you mind possibly sharing what dogtag/code you use to display the health on your own player frame, and the same for your target frame.

Re: Maeil UI 2

Post 23 Mar 2010 11:34

Avatar maeil
 
Posts: 109
Location: Finland
I am using dogtags myself, .lua texts are little bit easier on CPU-usage but havent had any issues on my FPS yet so still using them.

Player frame
Code: Select all
[HP:Short]


Target frame
Code: Select all
[if IsPlayerOrPet(unit="target") then
    (Status or FractionalHP:Short)
else
    (PercentHP:Percent ' - ' HP:Short)
end]

Re: Maeil UI 2

Post 27 Mar 2010 06:36

Avatar Phrequency
 
Posts: 1
Two questions about your combat text:
How do you get your autoattacks to be in a different position then your skills?
How do you get a new picture-icon for blade flurry?

Re: Maeil UI 2

Post 27 Mar 2010 16:12

Avatar maeil
 
Posts: 109
Location: Finland
Phrequency wrote:Two questions about your combat text:
How do you get your autoattacks to be in a different position then your skills?
How do you get a new picture-icon for blade flurry?


Using MSBT as my combat text. I have just done two scrolling areas for my damage output and then enabled autoattack on second and rest of the skills on the other one. I also have blocked my poison damage to be shown from "skill suppression" menu in MSBT.

The new icon in the flurry is default on MSBT afaik.

Re: Maeil UI 2

Post 28 Mar 2010 15:54

Avatar Pinetree
 
Posts: 3
For those interested, the following is an LUA equivalent to the DogTag Maeil posted above:
Code: Select all
local s = Status(unit)
if s then
  return s
end
local cur, max = HP(unit), MaxHP(unit)
return "%s%%  -  %s",Percent(cur,max),Short(cur,true)

The player frame HP is just "return (HP(unit))".

Can you tell me what texture you use on your Pitbull?

Edit: Found it. It's the "oRA3" texture.

Re: Maeil UI 2

Post 30 Mar 2010 08:15

Avatar Berettaa
 
Posts: 2
I cant get mdbt to ignore the HWT and it keeps making an annoying sound when it procs. HELP ME!

Re: Maeil UI 2

Post 10 Apr 2010 14:31

Avatar tabusos
 
Posts: 14
how do you edit so that the name is above the percent and hp?
like this Image

Re: Maeil UI 2

Post 10 Apr 2010 17:31

Avatar tabusos
 
Posts: 14
tabusos wrote:how do you edit so that the name is above the percent and hp?
like this Image


nvm found out how to :p
cron