View Single Post
12-27-13, 01:09 AM   #36
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2011
Posts: 583
Originally Posted by Phanx View Post
(1) Go install BugSack. Do it right now. Do it for this kitten. You can't say no to this kitten:
http://tinyurl.com/mht7hz6

(2) You have a scoping problem:
Code:
Rune:SetPoint('TOPLEFT', Power, 'BOTTOMLEFT', index * 120 / 6 - 20, 0)
In the context of that line, inside your UnitSpecific.player function, there is no Power variable defined. Either change it to self.Power and change any other element references similarly, or just move all that into your spawn function, and wrap it in a good old-fashioned if unit == "player" then ... end statement.
the scoping problem fixed it actually. I shoulda noticed that >.>

Also already got BugSack

so now that I got runes, eclipse and totems working, guess it's time for chi, holy power, and lock stuff.
__________________
Tweets YouTube Website

Last edited by 10leej : 12-27-13 at 01:19 AM.
  Reply With Quote