View Single Post
09-16-09, 12:07 PM   #1184
Icerat
A Fallenroot Satyr
Join Date: Sep 2006
Posts: 28
After alot of messing about i finally figured out through trial and error lol that if i use:

Code:
--	RESTING ICON	
	if(unit == "player") then
		if UnitLevel("player") ~= MAX_PLAYER_LEVEL then
			self.Resting = self.Health:CreateTexture(nil, "OVERLAY")
			self.Resting:SetHeight(6)
			self.Resting:SetWidth(6)
			self.Resting:SetPoint("BOTTOMLEFT", 10, -15)
			self.Resting:SetTexture(0, 1, 0)
		end	
	end
It gives me what i want, a small green square the same size as my pvp one (http://www.wowinterface.com/forums/s...ad.php?t=27256) and beside it.

I'm now trying to figure out how do i go about putting a very think black boarder around my small green square?

I very much a nub but its fun learning, looking forward to the reply's

Last edited by Icerat : 09-16-09 at 12:11 PM.