Sithel

FFXI Treasury Addon (Profiles Kinda) [1-31-15]

Jul 6th, 2014
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.34 KB | None | 0 0
  1. -- Similar to the Plugin Light Luggage, a way to add profiles at line #136
  2. --Example to load one for Dynamis ADL farming to lot all Odious items: //tr lot add odious After you exit //tr lot remove odious
  3. --If you want to remove 1 item from that odious lot pool: //tr lot remove Odious Pen You will no longer lot the Odious Pen
  4. -- You can add multiple lot aliases
  5. --Example for Dynamis Xarcabard ADL farming
  6. --//tr lot add odious
  7. --//tr lot add tomes
  8. --//tr pass add currency
  9. --//tr pass add adl
  10. --This will lot all odious and tomes items and pass all currency and junk items (relic,xp scrolls, relic weapon pop items,shadow mantle ect)
  11.  
  12. --To add another alias (profile) copy the format of another, name it what you want, and where you see "return S{1126, 1127, 2955, 2956, 2957}"
  13. --Those are the item ID's remove those and add your own, referring to ffxiah.com
  14. --Example for Wind Bead is http://www.ffxiah.com/item/1301/wind-bead  so the ID is 1301, add that # to the return S list
  15.  
  16. -- Copy and paste the lines below and add them in the Treasury.lua addon under the last entry around line 143
  17. -- Add below this entry:
  18. --[[
  19. elseif name == 'crystals' then
  20.         return S{4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103}
  21. --]]
  22. elseif name == 'dynamiscurrency' then
  23.         return S{
  24.         1455, -- Byne
  25.         1456, -- 100 byne
  26.         1449, -- T white
  27.         1450, -- J shell
  28.         1452, -- O bronze
  29.         1453  -- M silver
  30.         }
  31.  
  32. elseif name == 'adl' then --passes/lots everything in dynamis xarcabard except NM pops, ADL pops, and Sagasinger
  33.         return S{  
  34.         3502, -- Marrow
  35.         3494, -- Forgotten Hope
  36.         15087, -- WAR
  37.         15073, -- MNK
  38.         15104, -- WHM
  39.         15075, -- BLM
  40.         15076, -- RDM
  41.         15107, -- THF
  42.         15093, -- PLD
  43.         15079, -- DRK
  44.         15110, -- BST
  45.         15126, -- BRD
  46.         15097, -- RNG
  47.         15083, -- SAM
  48.         15114, -- NIN
  49.         15085, -- DRG
  50.         15086, -- SMN
  51.         11465, -- BLU
  52.         11471, -- PUP
  53.         11468, -- COR
  54.         11305, -- DNC
  55.         11480, -- SCH
  56.         3364, -- Mystic Goad
  57.         3365, -- Ornate Goad
  58.         3366, -- Holy Goad
  59.         3367, -- Intricate Goad
  60.         3368, -- Runaeic Goad
  61.         3369, -- Seraphic Goad
  62.         3370, -- Tenebrous Goad
  63.         3371, -- Stellar Goad
  64.         3372, -- Demoniac Goad
  65.         3373, -- Divine Goad
  66.         3374, -- Heavenly Goad
  67.         3375, -- Celestial Goad
  68.         3376, -- Snarled Goad
  69.         3377, -- Ethereal Goad
  70.         3378, -- Mysterial Goad
  71.         3379, -- Supernal Goad
  72.         1571, -- Mystic Fragment
  73.         1572, -- Ornate Fragment
  74.         1573, -- Holy Fragment
  75.         1574, -- Intricate Fragment
  76.         1575, -- Runaeic Fragment
  77.         1576, -- Seraphic Fragment
  78.         1577, -- Tenebrous Fragment
  79.         1578, -- Stellar Fragment
  80.         1579, -- Demoniac Fragment
  81.         1580, -- Divine Fragment
  82.         1581, -- Heavenly Fragment
  83.         1582, -- Celestial Fragment
  84.         1583, -- Snarled Fragment
  85.         1584, -- Ethereal Fragment
  86.         1585, -- Mysterial Fragment
  87.         1822, -- Supernal Fragment
  88.         1589, -- Necropsyche
  89.         4248, -- Ginuva's Theory
  90.         4249, -- S. Stratagems
  91.         10975, -- Archon Cape
  92.         11674, -- Archon Ring
  93.         18903, -- Talekeeper
  94.         13658, -- Shadow Mantle
  95.         14646, -- Shadow Ring
  96.         11673, -- Demonry Ring
  97.         11777, -- Demonry Sash
  98.         19764, -- Demonry Core
  99.         19765  -- Demonry Stone
  100.         }      
  101.    
  102.     elseif name == 'odious' then --passes/lots Odious Items,Shrouded Bijou in Dynamis Xaracabard
  103.         return S{
  104.         3358, -- Shrouded Bijou (26)
  105.         3400, -- Odious Skull (27)
  106.         3401, -- Odious Horn (28)
  107.         3402, -- Odious Blood (29)
  108.         3403  -- Odious Pen (30)
  109.         }
  110.    
  111.     elseif name == 'skullhorn' then --passes/lots Odious Skull/Horn in Dynamis Xaracabard
  112.         return S{      
  113.         3400, -- Odious Skull (27)
  114.         3401  -- Odious Horn (28)  
  115.         }
  116.        
  117.     elseif name == 'bloodpen' then --passes/lots Odious Blood/Pen in Dynamis Xaracabard
  118.         return S{      
  119.         3402, -- Odious Blood (29)
  120.         3403  -- Odious Pen (30)   
  121.         }  
  122.    
  123.     elseif name == 'tomes' then --passes/lots Fiendish Tomes in Dynamis Xaracabard
  124.         return S{
  125.         3429, -- Fiendish Tome (26)
  126.         3430, -- Fiendish Tome (27)
  127.         3431, -- Fiendish Tome (28)
  128.         3432, -- Fiendish Tome (29)
  129.         3433  -- Fiendish Tome (30)
  130.         }
  131.        
  132.     elseif name == 'plans' then --passes/lots Salvage Plans.
  133.         return S{
  134.         3880, -- Bloodshed Plans
  135.         3881, -- Umbrage Plans
  136.         3882, -- Ritualistic Plans
  137.         3883, -- Tutelary Plans
  138.         3884  -- Primacy Plans
  139.         }
  140.    
  141.     elseif name == 'alex' then --passes/lots Salvage Alex,Purses and Pouches
  142.         return S{
  143.         2488, -- Alexandrite
  144.         5735, -- Ctn. Purse (Alx.)
  145.         5736  -- Lin. Purse (Alx.)
  146.         }
Advertisement
Add Comment
Please, Sign In to add comment