Download
(275Kb)
Download
Updated: 09-26-09 08:37 AM
Patch for:
Tidy Plates.
Pictures
File Info
Updated:09-26-09 08:37 AM
Created:07-06-09 08:43 PM
Downloads:13,149
Favorites:50
MD5:

Tidy Plates: Knurl Theme (With PVP Class Icons)  Popular! (More than 5000 hits)

Version: 5.2
by: danltiger [More]

This theme is meant for some old version of Tidy Plates. (5-ish?) I'll be keeping it available for the time-being, but I have no plans to update it for the current version of Tidy Plates.

Release 3: Cast Icon should show properly, now.
Post A Reply Comment Options
Unread 03-20-10, 08:31 PM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
Re: I love this theme!

Migrating Grey's panel to other themes is something that I want to do... just need to find a few more hours in the day. ;-)

Originally posted by Somaru
I really love these theme. It actually looks kind of like my custom pit bull raid frames, especially with the tooltip border.

I just wish it had all the options of the grey theme!
__________________
Author Portal
Tidy Plates, Tidy Threat, and Tidy Bar
Report comment to moderator  
Reply With Quote
Unread 03-20-10, 07:59 PM  
Somaru
A Defias Bandit

Forum posts: 3
File comments: 4
Uploads: 0
Talking I love this theme!

I really love these theme. It actually looks kind of like my custom pit bull raid frames, especially with the tooltip border.

I just wish it had all the options of the grey theme!
Report comment to moderator  
Reply With Quote
Unread 03-19-10, 03:48 PM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
That's a good idea; I'll put it on the list.

Originally posted by autobot
Is there anyway you could add the "tug of war" option that you just added to default tidy plate? I been using this theme for awhile and just really used to it but i also like the new tug of war you made.
__________________
Author Portal
Tidy Plates, Tidy Threat, and Tidy Bar
Report comment to moderator  
Reply With Quote
Unread 03-19-10, 11:08 AM  
autobot
A Defias Bandit

Forum posts: 2
File comments: 34
Uploads: 0
Is there anyway you could add the "tug of war" option that you just added to default tidy plate? I been using this theme for awhile and just really used to it but i also like the new tug of war you made.
Report comment to moderator  
Reply With Quote
Unread 10-26-09, 04:03 PM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
lol - Hey, I make no guarantees!

The class icons are activated when 1) a player is able to attack you, and 2) you've enabled "class-colored nameplates" under the Interface panel.

This means that the icon will show up during duels, battlegrounds, world pvp, and NPC mind control.

Originally posted by Obviousdwarf
under what conditions are the pvp icons guaranteed to work? never seen them so far

great theme though
if not the best *hides*
Report comment to moderator  
Reply With Quote
Unread 10-26-09, 02:26 PM  
Obviousdwarf
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 13
Uploads: 1
under what conditions are the pvp icons guaranteed to work? never seen them so far

great theme though
if not the best *hides*
Report comment to moderator  
Reply With Quote
Unread 09-13-09, 10:00 AM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
Glad you like it! :-)

If you open up "Theme.lua" (in the TidyPlatesKnurl folder), and take a peek at the code, you'll find a section that looks like this:

Code:
function config.SetSpecialText(unit)
	return unit.health.." / "..unit.healthmax
end
The function simply returns a string of text. The variable 'unit' is a table, which is loaded with information about that particular unit. So, 'unit.health' becomes that specific unit's health. The '..' appends pieces of text, so we can add the slash '/' between the two numbers.

To return the percentage, we include a little bit of math in our statement:

Code:
function config.SetSpecialText(unit)
	local healthPercent = ceil( ( unit.health / unit.healthmax ) * 100 )
	return healthPercent.."%"
end
The function 'ceil()' rounds the number up to the next whole number.

Hope that helps!

Originally posted by Ganglia
I love this addon.

Can anybody help to add an "%"-show for Life ?
I´m not realy good in lua programing

Thnx much
Report comment to moderator  
Reply With Quote
Unread 09-12-09, 05:43 AM  
Ganglia
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I love this addon.

Can anybody help to add an "%"-show for Life ?
I´m not realy good in lua programing

Thnx much
Report comment to moderator  
Reply With Quote
Unread 07-23-09, 10:09 AM  
Akael
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Excellent, this is now the perfect nameplate addon.
Report comment to moderator  
Reply With Quote
Unread 07-23-09, 06:34 AM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
Re: Spell Icon

Ah ha! I'd made some changes to how things were layered (in Tidy Plates), and I thought I'd kept everything backwards compatible. Ooops. I'll post up a fix to Knurl in a few minutes.

Originally posted by Akael
Hi, this is pretty much the perfect nameplate skin, great work. The only problem is that the spell icon isn't showing up next to the casting bar - just a black box on the right hand side. I don't know anything at all about modding but I looked at the lua file of this skin and the 'simple' skin (the spell icon works in that, and other, skins btw) and did some trial and error editing with sizes etc.

The only thing that made a difference was when I took out the anchor = "CENTER" line and I could see some of the icon poking out from under the black box. It seems that black box is positioned to cover the spell icon. I think it may have something to do with Empty.tga in Tidyplates style folder but I can't get my head around it. Is there any way I can correct this?

Thanks!
Report comment to moderator  
Reply With Quote
Unread 07-23-09, 03:57 AM  
Akael
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Spell Icon

Hi, this is pretty much the perfect nameplate skin, great work. The only problem is that the spell icon isn't showing up next to the casting bar - just a black box on the right hand side. I don't know anything at all about modding but I looked at the lua file of this skin and the 'simple' skin (the spell icon works in that, and other, skins btw) and did some trial and error editing with sizes etc.

The only thing that made a difference was when I took out the anchor = "CENTER" line and I could see some of the icon poking out from under the black box. It seems that black box is positioned to cover the spell icon. I think it may have something to do with Empty.tga in Tidyplates style folder but I can't get my head around it. Is there any way I can correct this?

Thanks!
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 06:14 AM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
Pop open the skin.lua file for the Wide theme..

Somewhere in that file, paste the following:

Code:
function NAMEPLATE_SPECIALTEXT_DELEGATE(unit)
	return unit.health.." / "..unit.healthmax
end
Then, paste the following lines amongst the other categories:

Code:
config.specialText = {
	typeface =					path.."\\Calibri.ttf",
	size = 9,
	width = 62,
	height = 9,
	x = 0,
	y = 1,
	align = "BOTTOM",
	anchor = "LEFT",
	vertical = "TOP",
	shadow = true,
}
And, last, scroll down to "config.options = {" and place this line with the rest of the items:

Code:
showSpecialText = true,
That'll put it up on the nameplate, but you'll have to tweak its size and location. ;-)

Originally posted by duhwhat
I'd like to lift the numeric health display from knurl and put it into tidy plates wide. How should I go about doing this?
Report comment to moderator  
Reply With Quote
Unread 07-13-09, 01:34 PM  
duhwhat
A Wyrmkin Dreamwalker

Forum posts: 51
File comments: 236
Uploads: 0
I'd like to lift the numeric health display from knurl and put it into tidy plates wide. How should I go about doing this?
Report comment to moderator  
Reply With Quote
Unread 07-11-09, 07:10 AM  
danltiger
A Murloc Raider
 
danltiger's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 1522
Uploads: 13
The client fades the non-targets to 50%ish, keeping the current target's nameplate at 100% opacity. But you mean something more, right? Like an arrow or something?

Originally posted by borgi
As a Tank, TidyPlates looks very promising and this skin is in my opinion the best.
But what I miss is an indicator for the current target. Besides that it is great! Good job!
Report comment to moderator  
Reply With Quote
Unread 07-11-09, 12:59 AM  
borgi
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 0
As a Tank, TidyPlates looks very promising and this skin is in my opinion the best.
But what I miss is an indicator for the current target. Besides that it is great! Good job!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: