MB Set Vs Ebullience MB Set In LUA

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » 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  
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.
Online
Posts: 408
By drakefs 2023-07-30 08:21:18  
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