Addon Information
Works with 3.3
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
recluse's Portal Bug Reports Feature Requests
Author:
Version:
r473
Date:
11-25-2009 09:10 AM
Size:
2.00 Kb
Downloads:
79
Favorites:
6
MD5:
Pictures
Click to enlarge
No visible in-game components.
GetReagents-Lite
Click here to lend your support!
GetReagents-Lite is an automatic reagent restocking utility. It can refill any item sold by vendors to a stock level that you define.

"Lite" version
  • You must edit the Lua source to use this addon. There are no in-game options or slash commands.
  • There is no purchase confirmation. Reagents are silently bought based on your configuration.
  • Reagents will not be overstocked, but will be filled as close as possible to your set limits.
  • Configuration is done on a per-character basis.

Overview of setting a reagent to auto-purchase
Adding a reagent to the list is a simple task. Simply open the enclosed GetReagents-Lite.lua file in your favorite text editor, and modify the following, which is located at the top of the file.
Code:
local reagents = {
	["Realm Name"] = {
		["Character"] = { [itemid] = quantity, [itemid] = quantity },
	},
	["Another Realm"] = {
		["Character"] = {},
	},
}
Using one of my characters as an example: Let's say you had a mage named "Suzi" on the realm "Moon Guard", and you wanted to stock 20 [Rune of Portals] each time you visited the reagent vendor. To do so, you would enter the following:
Code:
local reagents = {
	["Moon Guard"] = {
		["Suzi"]	= { [17032] = 20 },
	},
}
If you then wanted to add 20 [Rune of Teleportation] to your list as well, you would add it after the previous reagent using commas to separate each one:
Code:
["Suzi"]	= { [17032] = 20, [17031] = 20 },
Adding additional characters only requires adding a new line for that character:
Code:
local reagents = {
	["Moon Guard"] = {
		["Suzi"]	= { [17032] = 20 },
		["AnotherName"]	= { [itemid] = quantity },
	},
}
Additional realms are just as easy to add:
Code:
local reagents = {
	["Moon Guard"] = {
		["Suzi"]	= { [17032] = 20 },
		["AnotherName"]	= { [itemid] = quantity },
	},
	["Realm"] = {
		["Character"]	= { [itemid] = quantity },
	},
}
  Comments - GetReagents-Lite
There have been no comments posted to this file.
Be the first to add one.



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.