Moderator: MacroQuest Developers
Code: Select all
|- Summon drogmore
/if (!${Me.Mount.ID} && ${OutDoors}) /call cast ${Mount} item 4sCode: Select all
/declare Mount outer "Small Red Drum"Code: Select all
/if (${Me.CurrentMana} < ${Math.Calc[${Me.MaxMana}-5]} && ${Me.SpellReady[${SpellCanni}]}) /call cast ${SpellCanni} gem1 6s
Code: Select all
/if (${Me.CurrentMana} < ${Math.Calc[${Me.MaxMana}-100]}Code: Select all
/if (${Me.PctMana} < 80]}Code: Select all
/call cast ${SpellSlow} gem2 6sCode: Select all
/call cast "Time's Antithesis" item 
Code: Select all
|- Sow Buff
/if (!${Me.Buff[Spirit of Eagle].ID} || !${Me.Buff[Flight of Eagles].ID})
/if (!${Me.Buff[Spirit of Bih`Li].ID} && ${DoSow} && ${OutDoors}) {
/target pc ${M_Assist}
/call cast "Spirit of Bih`Li" gem5 17s
}Code: Select all
|- Sow Buff
/if (!${Me.Buff[Spirit of Eagle].ID} && !${Me.Buff[Flight of Eagles].ID})
/if (!${Me.Buff[Spirit of Bih`Li].ID} && ${DoSow} && ${OutDoors}) {
/target pc ${M_Assist}
/call cast "Spirit of Bih`Li" gem5 17s
}Code: Select all
/declare SummonPet outer FALSECode: Select all
/declare SummonPet outer TRUECode: Select all
/declare SpellGrpBuff2[1] string outer
/declare SpellGrpItem[1] string outer
/varset SpellGrpBuff2[1] "Group Primal Essence"
/varset SpellGrpItem[1] "Primal Cudgel"
Code: Select all
/for i 1 to ${SpellGrpBuff2.Size}
/doevents
/if ( !${Me.Buff[${SpellGrpBuff2[${i}]}].ID} ) {
/echo *** Hang on ! Rebuffing ${SpellGrpBuff2[${i}]}
/call cast ${SpellGrpItem[${i}]} item
}
/next i
Code: Select all
Sub SpellInformation(string SpellName)
/varset SpDurBonus ${Math.Calc[${SpellDurationBonus}/100+1]}
/varset SpDuration ${Math.Calc[${Spell[${SpellName}].Duration}/10*60*${SpDurBonus}]}
/varset SpCastTime ${Math.Calc[${Spell[${SpellName}].CastTime}*10].Int}
/return Code: Select all
/varset SpDuration ${Math.Calc[${Spell[${SpellName}].Duration}*60*${SpDurBonus}]}Code: Select all
| ############ Group buffs...
/declare SpellGrpBuff[4] string outer
/varset SpellGrpBuff[1] "Blessing of Replenishment"
/varset SpellGrpBuff[2] "Focus of the Seventh"
/varset SpellGrpBuff[3] "Talisman of the Wrulan"
/varset SpellGrpBuff[4] "Talisman of the Boar"