function updateAliases() end function healGearAdjust() equipSet( heal ); end function idleGearAdjust() equipSet( idle ); end function statusGearAdjust() end
– only use returns in the below Adjusts –-
function tpGearAdjust() –leave return true; end function jaGearAdjust(jaName) –leave return true; end function wsGearAdjust(wsName) –leave return true; end function maGearAdjust( spellName ) –(precast) after testing, doesnt work. local spell = AshitaCore:GetResources():GetSpellByName( spellName ) if (magicSkillType(spell.Skill) == 'Enhancing') then equipSet( enhancing ); end if (magicSkillType(spell.Skill) == 'Healing') then equipSet( healing ); end if (magicSkillType(spell.Skill) == 'Enfeebling') then equipSet( enfeeb ); end if (magicSkillType(spell.Skill) == 'Elemental') then equipPostSet( 4, nuke); equipPostSet( 7, idle); – needed to adjust delays cause progress bar is retarded on our server end return true; end function midMaGearAdjust( spellName ) –(midcast) end function raGearAdjust() –leave return true; end function midRaGearAdjust() – leave return true; end
Kocopuffs Admin replied
627 weeks ago