Alexcennah Default replied
578 weeks ago
SeekerStar Admin replied
578 weeks ago
Alexcennah Default replied
578 weeks ago
function precast(spell) if spell.type == 'WeaponSkill' then if sets.WS[spell.name] then equip(sets.WS[spell.name]) else equip(sets.WS.Standard) end elseif sets.JA[spell.name] then equip(sets.JA[spell.name]) end end
Alexcennah Default replied
578 weeks ago
function aftercast(spell) if player.status == 'Engaged' then equip(sets.TP[sets.TP.index[TP_ind]]) else equip(sets.Idle) end end
SeekerStar Admin replied
578 weeks ago
Alexcennah Default replied
578 weeks ago
function midcast(spell)
if spell.skill == 'Healing Magic' then
if spell.name:contains("Cure") then
equip(sets.magic["Healing Magic"].Cure)
elseif spell.name:contains("Cura") then
equip(sets.magic["Healing Magic"].Curaga)
elseif spell.name == "Cursna" then
equip(sets.magic["Healing Magic"].Cursna)
end
elseif sets.magic[spell.skill] then
equip(sets.magic[spell.skill])
end
endAlexcennah Default replied
578 weeks ago
SeekerStar Admin replied
578 weeks ago
Alexcennah Default replied
578 weeks ago
SeekerStar Admin replied
578 weeks ago