Public Macros Simple lvl 10 druid macro- autoheal, med, follow, and attack
Reply
Simple lvl 10 druid macro- autoheal, med, follow, and attack
Macro
More +
#turbo
#event attack "#1# tells you, 'attack'"
#event follow "#1# tells you, 'Follow'"
#event stay "#1# tells you, 'Stay'"
Sub main
/say Auto Mode Activated
:startloop
/if (${Group.Member[1].PctHPs}<70&&${Group.Member[1].Distance}<=100) {
        /target ${Group.Member[1]
        /casting "Light Healing" 1
}
/if (${Group.Member[1].PctHPs}<70&&${Group.Member[1].Distance}>100&&!${Me.Sitting}) {
        /sit
}

/if (${Group.Member[0].PctHPs}<70) {
        /target ${Group.Member[0]}
        /casting "Light Healing" 1
}
/if (${Group.Member[2].PctHPs}<70) {
        /target ${Group.Member[2]}
        /casting "Light Healing" 1
}
/if (${Group.Member[2].PctHPs}<70&&${Group.Member[2].Distance}>100&&!${Me.Sitting}) {
        /sit
}
/if (!${Me.Sitting}&&!${Me.Moving}&&${Me.PctMana}<100&&!${Defined[fol]}) {
      /sit on
    }
/doevents
/goto :startloop
/return

Sub event_Attack
/target ${MacroQuest.LastTell}
/assist
/tell ${MacroQuest.LastTell} Attacking
/delay 30
/if (${Target.PctHPs}>80&&${Me.PctMana}>69&&${Group.Member[0].PctHPs}>75&&${Group.Member[1].PctHPs}>75&&${Group.Member[2].PctHPs}>75) {
        /casting "Stinging Swarm" 5
}
:loopt
/if (${Target.PctHPs}>40&&${Me.PctMana}>50&&${Group.Member[0].PctHPs}>70&&${Group.Member[1].PctHPs}>70&&${Group.Member[2].PctHPs}>70) {
        /casting "Ignite" 6
/goto :loopt
}
/if (!${Me.Sitting}&&!${Me.Moving}&&${Me.PctMana}<100) {
      /sit on
}
/return

Sub event_follow
/target ${MacroQuest.LastTell}
/tell ${MacroQuest.LastTell} Following you
/declare fol int outer 2
/stick
/return

Sub event_stay
/stick off
/tell ${MacroQuest.LastTell} Staying here
/delay 1
/if (!${Me.Sitting}&&!${Me.Moving}&&${Me.PctMana}<100&&${Defined[fol]}) {
      /sit on
    }
/return
Tue Feb 07, 2012 4:54 pm
name it druidten.mac or whatever and make a hotbutton for /macro druidten in eq on your druid. Use this button to sit when the autosit isnt sitting. also make another hotkey to load a blank macro or whatever other macro just to break the macro for full manual control again. make hotkeys on other group member to send tells for attack, follow, stay, etc.

im new to mq2 but i thought i would at least share something that someone may find useful
Tue Feb 07, 2012 5:02 pm
also make sure you have light healing, stinging swarm, and ignite memorized or you may have issues
Tue Feb 07, 2012 5:03 pm
Public Macros Simple lvl 10 druid macro- autoheal, med, follow, and attack
Reply