View Single Post
11-17-10, 02:59 PM   #14
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Also, you don't need this:
Code:
function InitRrr() 

	DEFAULT_CHAT_FRAME:AddMessage("|c00FF0000Rrr |cFF00FF01loaded.\nTalk like a |c00FF0000rovare!"); 
	
	rrr_toggle = true;
	
	SLASH_RRRTOGGLE = "/rrr";
	SlashCmdList["RRRTOGGLE"] = rrrToggle;
	
end
It's never called from anywhere, for one, and even if you did call it, the "/rrr" command still wouldn't do anything because no function "rrrToggle" is defined. Plus, nobody likes addons that spam "hey, this addon you just installed and enabled is loaded!" at login.
  Reply With Quote