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
-
View User Profile
-
Send Message
Posted Jan 17, 2015Is this project abandoned?
-
View User Profile
-
Send Message
Posted Jan 17, 2015I'm working on updating it.
-
View User Profile
-
Send Message
Posted Mar 31, 2013I found a secret!
Version on Curse (downloaded via client) is 1.2 and version on the project site 1.9.4 Beta.
-
View User Profile
-
Send Message
Posted Dec 7, 2012This 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....
-
View User Profile
-
Send Message
Posted Nov 11, 2012Would 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.
-
View User Profile
-
Send Message
Posted Sep 2, 2012Awwww... 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...
-
View User Profile
-
Send Message
Posted Sep 8, 2012Are you getting any errors or specific problems? I'm currently updating it to the latest patch.
-
View User Profile
-
Send Message
Posted May 31, 2011local _,_,_, ilvl, reqlvl, itype, subtype, _,equippable,_, value = GetItemInfo(link)
tags.equippable = equippable ~= ""
tags.boe = tags.equippable and not tags.bop
-
View User Profile
-
Send Message
Posted Apr 28, 2011Is the AtlasWishlist code broken? It won't accept
AtlasLoot_WishListCheck(id, true)
as a rule.
-
View User Profile
-
Send Message
Posted Mar 3, 2011-
View User Profile
-
Send Message
Posted Mar 11, 2011-
View User Profile
-
Send Message
Posted Jan 7, 2011-
View User Profile
-
Send Message
Posted Jan 8, 2011Cheers!
-
View User Profile
-
Send Message
Posted Jan 9, 2011-
View User Profile
-
Send Message
Posted Oct 17, 2010Any chance of getting this to work with 4.01 patch?
-
View User Profile
-
Send Message
Posted Aug 30, 2010-
View User Profile
-
Send Message
Posted Sep 1, 2010-
View User Profile
-
Send Message
Posted Dec 2, 2010itype and subtype recomand each languge translation.
If not English client, You can verify this in auction category.
PS.Sorry for my bad english.
-
View User Profile
-
Send Message
Posted Aug 30, 2010Someone 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")
-
View User Profile
-
Send Message
Posted Aug 27, 2010you can add support roll by addon "Pawn"?
if can, thx to feature