AutoRoller
/action logic
Action can be none, need, greed, or disenchant
Logic can be any lua statement that evaluates to true or false
Add --
at the beginning of the line to disable:
--/need purple
Constants
poor | 0 |
common | 1 |
uncommon | 2 |
rare | 3 |
epic | 4 |
legendary | 5 |
artifact | 6 |
heirloom | 7 |
silver | 100 |
gold | 10000 |
Variables
raid | boolean | true if you are in a raid |
party | boolean | false if you are in a raid |
combat | boolean | true if you are in combat |
quality | number | 0 to 7, use constants above |
itype | string | Armor, Weapon, etc |
subtype | string | see http://www.wowwiki.com/ItemType |
ilvl | number | item level |
reqlvl | number | required level to equip |
name | string | name of item, case sensitive |
id | number | itemID |
boe | boolean | true if item is bind on equip |
bop | boolean | true if item is bind on pickup |
zone | string | current zone from GetZoneText() |
subzone | string | current sub zone from GetSubZoneText() |
value | number | vender cost of an item in copper |
green | boolean | true if uncommon |
blue | boolean | true if rare |
purple | boolean | true if epic |
need | boolean | true if you can roll need |
greed | boolean | true if you can roll greed |
disenchant | boolean | true if you can roll disenchant |
betterilvl | boolean | true if the item's ilvl is higher than equipped |
GearScore or GearScoreLite required
gearscore | number | gearscore of the item |
bettergs | boolean | true if item's gearscore is higher than equipped |
The following is the filter set I use on one of my alts.
/none (subtype == "Pet") or (subtype == 'Mount') /need (name == "Battered Hilt") /disenchant green /greed (name == 'Frozen Orb') or not (need or disenchant) /disenchant party and blue and (value < (7 * gold)) and not betterilvl /greed party and blue and not betterilvl
Is this project abandoned?
I'm working on updating it.
I found a secret!
Version on Curse (downloaded via client) is 1.2 and version on the project site 1.9.4 Beta.
This addon appears to do nothing at the moment... 5.1.0
I set rules to greed on EVERYTHING, EVERYWAY I could see possible, and it acts as if it doesn't see the lootrolls?
Is this being updated for 5.1.0? I don't see an alternative to this mod....
Would someone be so kind as to post the EXACT line that I'd need to type in, to need on enchanting formulas? I just can't get it to work from the built-in instructions, I'm sure it's a space or some little thing I'm not putting in. Thanks so much.
Awwww... Im used this addon and Im still love this addon, but it isnt work for me from 5.0.4... Somebody do something to revive it, pleaaaaase...
Are you getting any errors or specific problems? I'm currently updating it to the latest patch.
local _,_,_, ilvl, reqlvl, itype, subtype, _,equippable,_, value = GetItemInfo(link)
tags.equippable = equippable ~= ""
tags.boe = tags.equippable and not tags.bop
Is the AtlasWishlist code broken? It won't accept
AtlasLoot_WishListCheck(id, true)
as a rule.
Cheers!
Any chance of getting this to work with 4.01 patch?
Someone plz check this code. If it's possible.
I want to disenchant Armor except Cloth type.
--------------------------------------------------------------------------------------
party and bop and (quality == epic) and (itype == "Armor") and not (subtype == "Cloth")
itype and subtype recomand each languge translation.
If not English client, You can verify this in auction category.
PS.Sorry for my bad english.
you can add support roll by addon "Pawn"?
if can, thx to feature