View Single Post
09-11-08, 11:02 PM   #3
paladinpownage
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 9
Originally Posted by Mikord View Post
I haven't look through all of the code, but one thing that popped out at me is that you are depending on Ace2, but you load the libraries you depend on after the file that depends on them (AlbyRep.lua). Try loading the dependencies first.

Code:
Libs\AceAddon-2.0\AceAddon-2.0.lua
...
AlbyRep.lua
Also, if you are just trying to test print something in WotLK you can use print("whatever"). On Live you can use ChatFrame1:AddMessage("Whatever"), but self:Print provided by Ace2 does the same thing.
Okay, cool, I switched them around... That makes sense, yeah. I wish I could figure out what's stopping it from printing though because that didn't change a thing. At least it's more organized now!

Thanks
  Reply With Quote