Mercurial > wow > ouroloot
comparison verbage.lua @ 70:cdee65c1bd8c
Implement a list of items to be automatically marked as sent to the guild vault. List controlled on the Options tab like the existing filter. Default list is Cataclysm crafting material drops.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Fri, 11 May 2012 03:56:21 +0000 |
parents | 8442272a8418 |
children | 32eb24fb2ebf |
comparison
equal
deleted
inserted
replaced
69:8442272a8418 | 70:cdee65c1bd8c |
---|---|
1 | 1 |
2 local todo = [[ | 2 local todo = [[ |
3 - broadcasted entries triggering auto-shard don't have "shard" text | |
4 | |
5 - [DONE,TEST,comm] releasing before DBM signals wipe results in outdoor location | 3 - [DONE,TEST,comm] releasing before DBM signals wipe results in outdoor location |
6 | 4 |
7 - implement ack, then fallback to recording if not ack'd | 5 - implement ack, then fallback to recording if not ack'd |
8 | 6 |
9 - special treatment for recipes / BoE items? default to guild vault? | 7 - special treatment for recipes / BoE items? default to guild vault? |
551 [43228] = true, -- Stone Keeper's Shard | 549 [43228] = true, -- Stone Keeper's Shard |
552 [47241] = true, -- Emblem of Triumph | 550 [47241] = true, -- Emblem of Triumph |
553 [49426] = true, -- Emblem of Frost | 551 [49426] = true, -- Emblem of Frost |
554 } | 552 } |
555 | 553 |
554 -- Mark these as straight to guild vault: | |
555 addon.default_itemvault = { | |
556 [52078] = true, -- Chaos Orb | |
557 [69237] = true, -- Living Ember | |
558 [71998] = true, -- Essence of Destruction | |
559 } | |
560 | |
556 -- vim:noet | 561 -- vim:noet |