MB Set Vs Ebullience MB Set In LUA

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » FFXI » Jobs » Scholar » MB set vs Ebullience MB Set in LUA
MB set vs Ebullience MB Set in LUA
Offline
Posts: 281
By Galkapryme 2023-07-30 07:41:37
Link | Quote | Reply
 
I decided to come back to toying with SCH after several years. Going through the community guide, I see that there is a separate MB set for when Ebullience is active. My question is, how do I reflect that in the LUA. That is, I want the set to remain on while Ebullience is active.
Offline
Posts: 399
By drakefs 2023-07-30 08:21:18
Link | Quote | Reply
 
This will need to go in your midcast function (or job_midcast for a motes based lua). For example:
Code
function midcast(spell)
    if buffactive['Ebullience'] and spell.skill == 'Elemental Magic' then
        equip(sets.midcast.Ebullience)
    end
end