Download
(505Kb)
Download
Updated: 10-21-20 07:11 AM
Pictures
File Info
Updated:10-21-20 07:11 AM
Created:02-03-11 11:34 AM
Downloads:97,994
Favorites:279
MD5:
Categories:Unit Mods, Combat Mods

KuiNameplates  Popular! (More than 5000 hits)

Version: 2.26.3e
by: Kesava [More]

Prettier nameplates.
Configurable through interface options (/knp or /kuinameplates).
I have a problem/question!
The classic release, previous versions and change logs can be found on Curse: https://www.curseforge.com/wow/addons/kuinameplates/files

Also see the FAQ in the Curse description: https://www.curseforge.com/wow/addons/kuinameplates

Thanks!

** See releases on GitHub or Curse for detailed change notes. Thanks! **
Post A Reply Comment Options
Unread 01-04-14, 04:52 AM  
Mirrikh
A Flamescale Wyrmkin
 
Mirrikh's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 111
File comments: 74
Uploads: 3
Hi, i'm getting this error when trying to change the font.

Code:
1x Kui_Nameplates-221\core.lua:183: ERROR: <unnamed>:SetFont(): invalid fontHeight: 0, height must be > 0
<in C code>
Kui_Nameplates-221\core.lua:183: in function <Kui_Nameplates\core.lua:177>
Kui_Nameplates-221\core.lua:372: in function "?"
Kui_Nameplates-221\config.lua:23: in function "ConfigChanged"
Kui_Nameplates-221\config.lua:74: in function <Kui_Nameplates\config.lua:63>
(tail call): ?
<in C code>
<string>:"safecall Dispatcher[3]":9: in function <string>:"safecall Dispatcher[3]":5
(tail call): ?
AceConfigDialog-3.0\AceConfigDialog-3.0-58.lua:794: in function <AceConfigDialog-3.0\AceConfigDialog-3.0.lua:614>
(tail call): ?
<in C code>
<string>:"safecall Dispatcher[3]":9: in function <string>:"safecall Dispatcher[3]":5
(tail call): ?
Bartender4-4.5.13.2\libs\AceGUI-3.0\AceGUI-3.0-34.lua:314: in function "Fire"
Libs\6AceGUI-3.0-34-SharedMediaWidgets\FontWidget.lua:23: in function <Libs\AceGUI-3.0-SharedMediaWidgets\FontWidget.lua:21>

Locals:
nil
whats seems to be the problem?
Report comment to moderator  
Reply With Quote
Unread 01-04-14, 04:25 AM  
zbugrkx
A Fallenroot Satyr

Forum posts: 25
File comments: 9
Uploads: 0
Hi,

Would you consider adding a "Transition" state to the Threat plates ?

When tanking with these plates, knowing that you are "losing aggro" of a mob is quite useful, and is currently the only thing i can see missing in these quite awesome nameplates (coming from Tukui/elvui)

it would be something like :

Aggro = Green
normal = red
Losing threat/gaining threat = yellow

Cheeers

BuG
Report comment to moderator  
Reply With Quote
Unread 01-04-14, 03:59 AM  
Oak
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Re: Re: Auras?

Originally Posted by Kesava
The auras module is provided by a seperate addon (included in this download), "Kui Nameplates Auras". Make sure that it's enabled in your addon list as well as the core addon. Then if the module itself isn't already enabled, you can enable it by going to the Kui Nameplates options frame (/knp) > Auras and checking the "Show my auras" option.
Ah! That explain things.

Thanks for the help and keep up the good work!

Best regards,
Oak
Last edited by Oak : 01-04-14 at 04:00 AM.
Report comment to moderator  
Reply With Quote
Unread 01-03-14, 04:58 PM  
Kesava
A Murloc Raider
 
Kesava's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 141
Uploads: 1
Re: Auras?

The auras module is provided by a seperate addon (included in this download), "Kui Nameplates Auras". Make sure that it's enabled in your addon list as well as the core addon. Then if the module itself isn't already enabled, you can enable it by going to the Kui Nameplates options frame (/knp) > Auras and checking the "Show my auras" option.

Thanks!
Originally Posted by Oak
Hi there!

First of all, thanks for a very nice addon!

Secondly; I guess I must have missed something, but how in the world do you enable so that Auras? I guess it doesn't have anything to do with me playing a Warrior?

Best regards,
Oak
Report comment to moderator  
Reply With Quote
Unread 01-03-14, 02:01 PM  
Oak
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Auras?

Hi there!

First of all, thanks for a very nice addon!

Secondly; I guess I must have missed something, but how in the world do you enable so that Auras? I guess it doesn't have anything to do with me playing a Warrior?

Best regards,
Oak
Report comment to moderator  
Reply With Quote
Unread 12-19-13, 07:51 PM  
Soopie
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 1
File comments: 13
Uploads: 2
Originally Posted by Kesava
Originally Posted by Soopie
Is there any way within the lua to show enemy names in combat and hide friendly unless damaged? I love this addon, but as a tank it gets rather annoying to have everyone's HP showing.
You don't need to edit the lua to do that, you can change the "friendly health format" in /knp > health display to:
=:b;<:d;
If you meant names, adding the following to line 125 of layout.lua should achieve that:
Lua Code:
  1. if frame.friendly and cur == max then
  2. frame.name:Hide()
  3. else
  4. frame.name:Hide()
  5. end
But I can't promise it won't break anything.

Line 125 should be directly under:
Code:
    frame.health:SetValue(curr)
Thanks.
Thanks a lot man.
Report comment to moderator  
Reply With Quote
Unread 12-19-13, 09:38 AM  
Kesava
A Murloc Raider
 
Kesava's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 141
Uploads: 1
Originally Posted by Soopie
Is there any way within the lua to show enemy names in combat and hide friendly unless damaged? I love this addon, but as a tank it gets rather annoying to have everyone's HP showing.
You don't need to edit the lua to do that, you can change the "friendly health format" in /knp > health display to:
=:b;<:d;
If you meant names, adding the following to line 125 of layout.lua should achieve that:
Lua Code:
  1. if frame.friendly and cur == max then
  2. frame.name:Hide()
  3. else
  4. frame.name:Hide()
  5. end
But I can't promise it won't break anything.

Line 125 should be directly under:
Code:
    frame.health:SetValue(curr)
Thanks.
Last edited by Kesava : 12-19-13 at 09:40 AM.
Report comment to moderator  
Reply With Quote
Unread 12-19-13, 02:37 AM  
Soopie
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 1
File comments: 13
Uploads: 2
Is there any way within the lua to show enemy names in combat and hide friendly unless damaged? I love this addon, but as a tank it gets rather annoying to have everyone's HP showing.
Report comment to moderator  
Reply With Quote
Unread 12-17-13, 10:36 PM  
Kesava
A Murloc Raider
 
Kesava's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 141
Uploads: 1
Originally Posted by pasak1987
Is there any way I can adjust the width of the nameplate?
You can change the width by editing line 23 and 25 of core.lua. However the size of the click-box won't change, and it may be buggy; I haven't actually tested changing the width. So where line 23 is this by default:
width = 110,
You could change 110 to, say, 55 to halve the width. Just remember to keep the comma at the end of the line.

Originally Posted by tempest420
Hiya, quick question. The nameplates appear to have some black fuzz/glow effect surrounding them (not the mouseover glow option). This is with the Fix Aliasing option enabled. Is there a way to get rid of this effect?
That's the shadow, or glow. Or something. It's supposed to be there and there's no option to disable it. I should probably add one, though.
For now you can get rid of it (when it's not being used for the threat glow) by changing line 100 of layout.lua from:
r, g, b = 0, 0, 0
to:
r,g,b,a=0,0,0,0
That -should- make it invisible.

Originally Posted by glonglon
[other auras]
I'll look into it when I can, probably would end up being a seperate module.


Thanks!
Report comment to moderator  
Reply With Quote
Unread 12-17-13, 01:22 PM  
pasak1987
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Is there any way I can adjust the width of the nameplate?

I find nameplates to be little too wide for me..

is there any option that I can change the width of the nameplate?




Here is an example.

I am used to using DocNameplate style nameplates, but after using 15 mb heavy weight nameplates for 2 years, I really want to use something light weight and has essential features.

But, I really want to use something that is not as 'wide' as most nameplates. (I tired other name plates that comes with adjustable width, but they were really clunky and not as good as yours =/...and I really don't wanna go back to NPA. )
Last edited by pasak1987 : 12-17-13 at 01:39 PM.
Report comment to moderator  
Reply With Quote
Unread 12-13-13, 04:29 PM  
glonglon
A Kobold Labourer

Forum posts: 0
File comments: 42
Uploads: 0
Hi Kesava,

I use kuinameplates since 1 year and It's the best nameplates addon by far ! Thanks !

A little suggestion about your new auras feature, it would be awesome for pvp purposes if we could add auras from other classes too using their spellID and if possible customize their sizes like an addon that is no longer maintained named platebuffs that looked like that :



For example on this screenshot, the warrior just used avatar & recklessness and the auras appear above his nameplate. If kuinameplates could do something like that it would be the best xmas I ever had !

Kind Regards.
Last edited by glonglon : 12-13-13 at 04:37 PM.
Report comment to moderator  
Reply With Quote
Unread 12-13-13, 12:06 PM  
zasy99
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
Thanks

Very nice, thanks !
Report comment to moderator  
Reply With Quote
Unread 12-13-13, 02:04 AM  
tempest420
A Kobold Labourer

Forum posts: 1
File comments: 33
Uploads: 0
Hiya, quick question. The nameplates appear to have some black fuzz/glow effect surrounding them (not the mouseover glow option). This is with the Fix Aliasing option enabled. Is there a way to get rid of this effect?
Report comment to moderator  
Reply With Quote
Unread 12-12-13, 09:48 PM  
Kesava
A Murloc Raider
 
Kesava's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 141
Uploads: 1
Re: class colouring

Late reply time! -I- haven't removed it, that option is provided in the default settings, even when you don't have any addons installed. It is possible that another addon could be fiddling with it, but it's definitely not mine and I'm... uh, almost certain it's still there by default. I haven't checked recently.

Originally Posted by kddude
Hey, have you removed the class colouring option? I can't find it in the described area. I hope I'm not just missing it in an obvious spot.

Thanks!
Report comment to moderator  
Reply With Quote
Unread 11-21-13, 08:37 PM  
kddude
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
class colouring

Hey, have you removed the class colouring option? I can't find it in the described area. I hope I'm not just missing it in an obvious spot.

Thanks!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: