Gandiva Aftermath Lua Help

Eorzea Time
 
 
 
Language: JP EN FR DE
users online
Forum » FFXI » Jobs » Ranger » Gandiva Aftermath Lua help
Gandiva Aftermath Lua help
Offline
Posts: 3
By Nama 2021-04-06 09:23:57
Link | Quote | Reply
 
Hi fellow RNG's, returned to the game and swapped to using Selindrile's lua after my last PC burned in a fire, so I lost all saved luas. Was wondering if anyone can assist me, I have been looking for a way to add a AM up set for when I use Gandiva. Thanks in advance for any tips.
 Asura.Bippin
Offline
Server: Asura
Game: FFXI
user: Gunit
Posts: 1076
By Asura.Bippin 2021-04-06 10:50:49
Link | Quote | Reply
 
Code
function job_buff_change(buff, gain)
    if player.equipment.Ranged and buff:contains('Aftermath') then
        classes.CustomRangedGroups:clear()
        if (player.equipment.Ranged == 'Gandiva' and buffactive['Aftermath: Lv.3']) then
            classes.CustomRangedGroups:append('AM')
        end
    end
    
end
[+]