changeset 40:abc824800387

Fixed some typos and cleaned up some files.
author Zerotorescue
date Sun, 12 Dec 2010 16:37:33 +0100
parents 7451a8b85e1d
children 013433f73ba3
files Core.lua Data/PremadeGroups.lua Data/Scrolls Retrieval.txt
diffstat 3 files changed, 39 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Core.lua	Sat Dec 11 13:53:37 2010 +0100
+++ b/Core.lua	Sun Dec 12 16:37:33 2010 +0100
@@ -21,7 +21,8 @@
 	
 	local defaults = {
 		global = {
-			groups = {},
+			groups = {
+			},
 			defaults = {
 				auctionPricingAddon = "Auctioneer",
 				itemCountAddon = "Altoholic",
@@ -34,7 +35,8 @@
 				bonusQueue = 0.1,
 				priceThreshold = 0,
 				summaryHidePriceThreshold = false,
-				trackAtCharacters = {},
+				trackAtCharacters = {
+				},
 				localItemData = {
 					["Bag"] = true,
 					["Auction House"] = true,
@@ -53,7 +55,8 @@
 			},
 		},
 		factionrealm = {
-			characters = {},
+			characters = {
+			},
 		},
 	};
 	
@@ -128,7 +131,7 @@
 	self:MakeItemLinkButtonWidget();
 	self:MakeConfigItemLinkButtonWidget();
 	
-	-- Remember this character is mine
+	-- Remember this character is on this account
 	local playerName = UnitName("player");
 	if not self.db.factionrealm.characters[playerName] then
 		self.db.factionrealm.characters[playerName] = true;
@@ -386,7 +389,7 @@
 end
 
 local slashArgs = {};
-local slashError = "Wrong arguement, the following arguements are available:";
+local slashError = "Wrong argument, the following arguements are available:";
 
 function addon:RegisterSlash(func, args, description)
 	for _, arg in pairs(args) do
--- a/Data/PremadeGroups.lua	Sat Dec 11 13:53:37 2010 +0100
+++ b/Data/PremadeGroups.lua	Sun Dec 12 16:37:33 2010 +0100
@@ -765,6 +765,7 @@
 			[38867] = 1, -- Enchant Chest - Major Mana
 		},
 	},
+	-- Source: http://www.wowhead.com/items=0.6?filter=na=enchant;cr=82;crs=1;crv=30300
 	["Enchants (Cataclysm)"] = {
 		version = 1,
 		items = {
--- a/Data/Scrolls Retrieval.txt	Sat Dec 11 13:53:37 2010 +0100
+++ b/Data/Scrolls Retrieval.txt	Sun Dec 12 16:37:33 2010 +0100
@@ -294,7 +294,36 @@
 
 Copy the alert contents (example):
 
-s
+enchants["enchant boots - earthen vitality"]=74189;
+enchants["enchant chest - mighty stats"]=74191;
+enchants["enchant gloves - mastery"]=74132;
+enchants["enchant cloak - greater spell piercing"]=74192;
+enchants["enchant boots - haste"]=74199;
+enchants["enchant gloves - haste"]=74198;
+enchants["enchant chest - stamina"]=74200;
+enchants["enchant cloak - intellect"]=74202;
+enchants["enchant gloves - exceptional strength"]=74212;
+enchants["enchant ring - agility"]=74216;
+enchants["enchant ring - greater stamina"]=74218;
+enchants["enchant ring - intellect"]=74217;
+enchants["enchant ring - strength"]=74215;
+enchants["enchant boots - major agility"]=74213;
+enchants["enchant chest - mighty resilience"]=74214;
+enchants["enchant gloves - greater expertise"]=74220;
+enchants["enchant cloak - critical strike"]=74230;
+enchants["enchant chest - exceptional spirit"]=74231;
+enchants["enchant cloak - protection"]=74234;
+enchants["enchant boots - precision"]=74236;
+enchants["enchant boots - mastery"]=74238;
+enchants["enchant cloak - greater intellect"]=74240;
+enchants["enchant boots - assassin's step"]=74252;
+enchants["enchant boots - lavawalker"]=74253;
+enchants["enchant chest - greater stamina"]=74251;
+enchants["enchant chest - peerless stats"]=74250;
+enchants["enchant cloak - greater critical strike"]=74247;
+enchants["enchant gloves - greater mastery"]=74255;
+enchants["enchant gloves - mighty strength"]=74254;
+
 
 Now go in-game and use the addon called WowLua to parse this. Use _Dev to dump the contents of the scrolls table, and Chatter to copy it.