
Originally Posted by
Sechs
Where can I find more info on how to handle [augmented] gear?
addons\GearSwap\beta_examples_and_information\Adva nced set tables.txt
The simplest way to get the proper formatting is to just equip the items in question and do //gs export, and look at the export result (and tidy it up). Also, if you look at Mote-Globals you'll see I put a couple dark rings in the gear table.

Originally Posted by
Sechs
I have a single spell for which I want to use two different gearsets. I don't want to handle this through a trigger or a cycle (the way I handle TP sets, acc sets etc) but through two different macros.
Basically Macro1 ==> will use set1, Macro2 ==> will use set2.
How can I code this?
Aside from dls's answer, I'm sure you realize that you're not limited to just two values, and that there's no requirement that those value be bools. You can make the subtables "Rainy" and "Sunshine", or "Day" and "Night", or anything else.

Originally Posted by
pancakesandsex
Can you elaborate on the table syntax with an example? I'm not sure how to do that in the current context.
Code:
ElementalEnfeebles = S{'Burn', 'Frost', 'Choke', 'Rasp', 'Shock', 'Drown'}
LowTierNukes = S{'Stone', 'Water', 'Aero', 'Fire', 'Blizzard', 'Thunder',
'Stone II', 'Water II', 'Aero II', 'Fire II', 'Blizzard II', 'Thunder II',
'Stone III', 'Water III', 'Aero III', 'Fire III', 'Blizzard III', 'Thunder III',
'Stonega', 'Waterga', 'Aeroga', 'Firaga', 'Blizzaga', 'Thundaga',
'Stonega II', 'Waterga II', 'Aeroga II', 'Firaga II', 'Blizzaga II', 'Thundaga II',
'Stonera', 'Watera', 'Aera', 'Fira', 'Blizzara', 'Thundara'}
if spell.skill == 'Elemental Magic' and not ElementalEnfeebles:contains(spell.english) then
if LowTierNukes:contains(spell.english) then
equip(sets.midcast.LowTierNuke)
else
equip(sets.midcast.HighTierNuke)
end
end