Thread: Mail Automation
View Single Post
02-01-19, 06:45 PM   #3
JDoubleU00
A Firelord
 
JDoubleU00's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 463
Originally Posted by Rilgamon View Post
I've startet such an addon (zz_Altmail). But I dont have the time to work on it properly.
You would have to download it from my repo at https://wow.grml.de/
And configuration is done in core.lua

There is sendouttable which is a per realm and item category/subcategory list. ('order' and 'skip' are not yet implemented )

Lua Code:
  1. local sendouttable = {
  2.     ['Durotan'] = {
  3.         ['Trade Goods'] = {
  4.             ['Enchanting'] = {
  5.                 ['Rilgana-Tirion'] = {
  6.                     ['order'] = 1,
  7.                     ['skip'] = {},
  8.                 },
  9.             },
  10.             ['Metal & Stone'] = {
  11.                 ['Rilgany-Tirion'] = {
  12.                     ['order'] = 1,
  13.                     ['skip'] = {},
  14.                 },
  15.             },
  16.             ['Herb'] = {
  17.                 ['Rilgana-Tirion'] = {
  18.                     ['order'] = 1,
  19.                     ['skip'] = {},
  20.                 },
  21.             }
  22.         }
  23.     }
  24. }
Thanks! I'll look into it.
__________________
Author of JWExpBar and JWRepBar.
  Reply With Quote