Download
(15Kb)
Download
Updated: 02-24-15 07:16 PM
Pictures
File Info
Compatibility:
The Adventure Continues (6.1)
Updated:02-24-15 07:16 PM
Created:01-15-12 09:49 PM
Downloads:15,423
Favorites:34
MD5:

pNameplates  Popular! (More than 5000 hits)

Version: 3.2.1
by: Crushbeers [More]

Intro

The primary goal of this nameplate project is to maintain a lightweight footprint while providing as many "quality of life" features as possible. pNameplates is ideal for any player seeking a quality, lightweight nameplate replacement that is more than just the bare minimum.

For in-game configuration help, type: /pnp.

Primary Features

- Threat Alerts (Tank and DPS/Healer setups available)
- Font Type, Size, and Location settings
- Toggleable Percent and HP Value
- Raid Icon Coloring
- In-Game Configuration Interface
- Settings Profiles

02/24/2015 - v3.2.1
- 6.1.0 update

12/21/2014 - v3.2.0
- Your favorite nameplate addon returns!
- Fixed bug with hiding the default elite icon (gold dragon)
- misc 6.0.3 cleanup

03/05/2014 - v3.1.4
- Fixed bug when deleting active profile

03/05/2014 - v3.1.3
- Fixed bug related to transferring old profiles to new profile format

03/03/2014 - v3.1.2
- Release version of profiles
- Minor profile tweaks

02/26/2014 - v3.1.1
- Fixed/tweaked a few issues with profiles

02/25/2014 - v3.1.0
- Restructured profile formatting
- Added profile management interface

11/18/2013 - v3.0.4
- Fixed issue with healthbars not updating size properly
- Fixed issue with font styles not registering through config
- Other minor bugs fixed

11/15/2013 - v3.0.3
- Fixed issue with castbars being improperly sized

11/15/2013 - v3.0.2
- Added castbar and spell icon sizing options
- Added toggle for castbar text

11/14/2013 - v3.0.1
- Typo fixes

11/13/2013 - v3.0.0
- Comprehensive code and structure overhaul (my education is finally paying off!)
- Added In-Game Configuration Interface
- THIS UPDATE WILL RESET YOUR SETTINGS (however, they are much easier to manage now)
- SLASH INPUT and PROFILES are DISABLED TEMPORARILY

06/30/2013 - v2.2.6
- Fixed errors resulting from use of "SetScript()"

05/21/2013 - v2.2.5
- Im dumb.
- Goodbye duplicate castbars, Hello awesome!

05/21/2013 - v2.2.3
- Fixed issue with deleted profiles causing errors
- THIS UPDATE WILL RESET YOUR SETTINGS TO DEFAULT

05/21/2013 - v2.2.2
- Added additional slash openers (/pnameplates and /pnp) to remedy some issues with /pp

03/05/2013 - v2.2.0
- Added overflow name abbreviations (togglable)
- Added current target outline (togglable)
- Updated Command Reference

01/07/2013 - v2.1.1
- Added option to recolor the ugly purple tagged-mob color (changes purple-ish color to grey)
- Fixed bug with tagged mobs not registering threat
- Updated CommandReference.txt

11/27/2012 - v2.1.0
- 5.1 Updates to coincide with API changes

10/18/2012 - v2.0.5
- Fixed bug with profiles saving correctly
- Misc. pre-5.1 housecleaning/preparation
- Updated CommandReference.txt

09/15/2012 - v2.0.3
- Fixed a bug with Profiles for first-time users

09/14/2012 - v2.0.2
- Added: Raid Icon resizing and relocation options
- Added: Castbar font sizing
- Minor 5.0.5 changes

09/05/2012 - v2.0.0
- Minor 5.0.4 changes

08/04/2012 - v1.9.0
- Minor pre-5.0 changes
- Released separate MoP Beta project:
http://www.wowinterface.com/downloads/info21398-pNameplates-MoPBeta.html

04/14/2012 - v1.7.1
- Fixed an issue with Threat overriding Class Colors in PVP

04/12/2012 - v1.7.0
- Technical "housekeeping"
- Complete reorganization of Slash Commands

03/03/2012 - v1.6.0
- Added: Savable Setting Profiles

02/18/2012 - v1.5.2
- Added: Healthbar/Castbar Size config

02/03/2012 - v1.5.1
- Added: Simpler show/hide options for Enemy Nameplates

01/29/2012 - v1.5.0
- Added: Raid Mark Coloring on Healthbar

01/24/2012 - v1.4.0
- Added: HealthText-based Low HP Warning (increase size/recolor text)
- Added: Option to show current HP value alongside the Percent

01/20/2012 - v1.03b
- Fix: Damn you, typos.

01/20/2012 - v1.03a
- Fix: Saved Variables save correctly now.

01/18/2012 - v1.03
- Added: Name, Percent, and Level Indicator are now movable among 4 predefined locations.

01/16/2012 - v1.02
- Added: Name/Level font size configuration commands
- Added: 'Current Setting' notes to some slash commands
- Fix: Font Type/Size changes should update automatically
- Fix: Threat Feedback toggle should update correctly in combat

01/16/2012 - v1.01b
- Fixed a problem with the zip

01/16/2012 - v1.01a
- Fixed a file compression issue, no changes

01/16/2012 - v1.01
- Added Tank and DPS/Healer Threat Role Selection

01/15/2012 - v1.0 (Initial Release)
- No changes
Optional Files (0)


Post A Reply Comment Options
Unread 05-16-12, 08:46 AM  
BNS
A Kobold Labourer
 
BNS's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 111
Uploads: 1
When I have time to try again, thank you for your reply!
Report comment to moderator  
Reply With Quote
Unread 07-15-12, 01:50 AM  
Taet
A Deviate Faerie Dragon

Forum posts: 17
File comments: 81
Uploads: 0
Change color for castbar inerrupt/nointerrupt


Code:
local function UpdateCastInfo(Castbar)
	Castbar:ClearAllPoints()
    Castbar:SetPoint("TOPRIGHT", Castbar:GetParent().HB, "BOTTOMRIGHT", (cfg.cbw/2)-(cfg.hpw/2), -4)
    Castbar:SetPoint("BOTTOMLEFT", Castbar:GetParent().HB, "BOTTOMLEFT", (cfg.hpw/2)-(cfg.cbw/2), -5-cfg.cbh)

	local _, _, SpellName, _, _, _, _, _, isInterrupt = UnitCastingInfo("target")
	if (not SpellName) then _, _, SpellName, _, _, _, _, isInterrupt = UnitChannelInfo("target") end
	local _, max = Castbar:GetMinMaxValues()
	local current = Castbar:GetValue()
	local final = math.floor((max-current)*10)/10
	
	Castbar.Time:SetText(final)
	Castbar.Spell:SetText(SpellName)
	
	-- interrupt ?
	if isInterrupt then
		Castbar:SetStatusBarColor(1, 0, 0, 1)
	else
		Castbar:SetStatusBarColor(0, 1, 0, 1)
	end
	
	-- Fixes phantom castbar frames appearing
	if (not final or final <= 0) then Castbar:Hide()
	else Castbar:Show() end
end
Report comment to moderator  
Reply With Quote
Unread 09-07-12, 01:59 AM  
Gregory
A Kobold Labourer

Forum posts: 0
File comments: 76
Uploads: 0
More options

Hello! Thanks for very nice addon.

Could I ask please for few more options i'm misssing:

1. Raid mark position
2. Cast bar font size
3. Long names abbreviations f.e. Aaaaa Bbbbb Ccccc becoming shortened to A. B. Ccccc
Report comment to moderator  
Reply With Quote
Unread 09-08-12, 03:11 PM  
Crushbeers
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 14
Uploads: 2
Re: More options

Originally Posted by Gregory
Hello! Thanks for very nice addon.

Could I ask please for few more options i'm misssing:

1. Raid mark position
2. Cast bar font size
3. Long names abbreviations f.e. Aaaaa Bbbbb Ccccc becoming shortened to A. B. Ccccc
Good ideas. I'll see what I can do.
Report comment to moderator  
Reply With Quote
Unread 09-15-12, 01:55 AM  
Athi79
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Installed latest version this morning and logged in and received this error
Code:
1x pNameplates-2.0.2\core.lua:508: attempt to index global "prof" (a nil value)
pNameplates-2.0.2\core.lua:508: in function <pNameplates\core.lua:474>
pNameplates-2.0.2\core.lua:515: in function <pNameplates\core.lua:512>

Locals:
g = <unnamed> {
 0 = <userdata>
}
event = "PLAYER_LOGIN"
ForceUpdate = true
CheckDefaults = <func> @pNameplates\core.lua:474
GetObjects = <func> @pNameplates\core.lua:454
InCombat = false
Report comment to moderator  
Reply With Quote
Unread 09-15-12, 08:58 AM  
Crushbeers
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 14
Uploads: 2
Re: Installed latest version this morning

Originally Posted by Athi79
Installed latest version this morning and logged in and received this error
Uploading a fix shortly.
Last edited by Crushbeers : 09-15-12 at 08:59 AM.
Report comment to moderator  
Reply With Quote
Unread 12-08-12, 06:37 AM  
Bizerk
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 81
Uploads: 1
Possible to make castbars that work on all nameplates and not just your target?
Report comment to moderator  
Reply With Quote
Unread 01-02-13, 12:35 AM  
Songes
A Kobold Labourer
 
Songes's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 1
Uploads: 8
Thanks for the awesome job !
I really love the minimalistic aspect and config, and I hope you will continue to keep the project up to date.
Report comment to moderator  
Reply With Quote
Unread 01-19-13, 02:07 PM  
Tarkumi
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 13
Uploads: 6
Great addon!

I would like to ask for 3 features is possible:
1. Option to recolor only the healthbar edge in threat mode.
2. Change the alpha of the non-targeted units' nameplates.
3. Change the name text width or make it equal to the healthbar's width.
Last edited by Tarkumi : 01-26-13 at 12:35 AM.
Report comment to moderator  
Reply With Quote
Unread 06-21-13, 09:08 PM  
Silveirinha
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Any buff plate for this addon?
Report comment to moderator  
Reply With Quote
Unread 11-14-13, 04:38 AM  
XXXmahakalaXXX
A Murloc Raider

Forum posts: 6
File comments: 7
Uploads: 0
don't work anymore after last update

2x pNameplates\pNameplates-3.0.0.lua:339: Usage: <unnamed>:SetFont("font", fontHeight [, flags])
<in C code>
pNameplates\pNameplates-3.0.0.lua:339: in function <pNameplates\pNameplates.lua:289>
pNameplates\pNameplates-3.0.0.lua:555: in function "pNameplates_OnUpdate"
<string>:"*:OnUpdate":1: in function <string>:"*:OnUpdate":1

Locals:
P = NamePlate1 {
0 = <userdata>
}
SpawnBorder = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:275
SetHBData = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:169
SetCBData = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:194
Update_Main = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:252
Update_Data = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:106
Update_Size = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:125
Update_Font = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:135
Update_Text = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:144
GetCheckSum = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:92
SetRaidIconStatus = <function> defined @Interface\AddOns\pNameplates\pNameplates.lua:204
Report comment to moderator  
Reply With Quote
Unread 11-14-13, 06:00 AM  
Crushbeers
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 14
Uploads: 2
Originally Posted by XXXmahakalaXXX
don't work anymore after last update

[snip]
Should be fixed now.
Report comment to moderator  
Reply With Quote
Unread 11-14-13, 06:20 AM  
XXXmahakalaXXX
A Murloc Raider

Forum posts: 6
File comments: 7
Uploads: 0
Originally Posted by Crushbeers
Originally Posted by XXXmahakalaXXX
don't work anymore after last update

[snip]
Should be fixed now.
thanks, that was fast

by the way: best nameplate addon
Report comment to moderator  
Reply With Quote
Unread 11-14-13, 03:24 PM  
kawe
A Cyclonian
 
kawe's Avatar

Forum posts: 40
File comments: 95
Uploads: 1
there is no option to adjust castbar (h/w) and pls set minimum height lower or maybe a scale option?
Report comment to moderator  
Reply With Quote
Unread 11-15-13, 12:44 AM  
Crushbeers
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 14
Uploads: 2
Originally Posted by kawe
there is no option to adjust castbar (h/w) and pls set minimum height lower or maybe a scale option?
Added these options back into the fold. Plus a couple of extras! (check changelog for details)
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: