Page 1 of 2
Cleric 1.5 & Divine Arb AA macro
Posted: Mon Jan 31, 2005 4:35 am
by JC
I would like a macro where if the cleric 1.5 was ready it would click that first, and if it was not it would fire off the divine arbitration AA (and possibly celestial regen if that was ready).
I want the epic to take priorty. I could probably write the macro myself if divine arb were priorty, but I'm stumped on how to detect if the epic is "ready."
If detection is impossible, some sort of timer system counting down from the last time the epic was clicked would be fine, but the timer would have to be global as I tend to use several macros over a session. The 1.5 is a 6 minute recast. Any help would be appreciated, thanks!
RE: Shield timer
Posted: Sat Feb 12, 2005 10:36 am
by Anger.Cola
Code: Select all
|---------------------------------------
| Cleric 1.5 / Divine arbitration macro
| By Anger.Cola
|---------------------------------------
| Macro utilizes Spell_Routines.inc
|---------------------------------------
| Usage: /call DivineArb
| Will use the cleric epic 1.5 if
| available. If not available, it will
| use Divine Arbitration
Sub DivineArb
/declare shieldtimer timer outer 0s
/if (${shieldtimer}) {
/call cast "Divine Arbitration" alt
} else {
/call cast "Harmony of the Soul" item
/varset shieldtimer 360s
}
/return
So not entirely sure that this would work... only been messin around with MQ for a couple weeks now.
This is meant to be an inc file so you can use it with whatever macro you are running right now.
This does use Spell_Routines.inc, so be sure and get that included too...
Code: Select all
#include Spell_Routines.inc
#include DivineArb.inc
Toss that in your main macro file and you will be gtg.
Is self explanatory on usage... /call DivineArb uses harmony of the soul if available, if not will use divine arb.
Hope this works.... lemme know if it doesn't :) (haven't tested it at all... mainly cause I don't have a cleric with 1.5 =p )
Posted: Sat Feb 12, 2005 11:28 am
by blueninja
shieldTimer is not a string so you can't use .Equal on it. Change
to
Posted: Sat Feb 12, 2005 1:00 pm
by Anger.Cola
Fixed it. Thank you. Still just an amature programmer at heart :)
Posted: Sat Feb 12, 2005 6:18 pm
by OnyxSys
Code: Select all
|---------------------------------------
| Shaman 1.5 / Fateseer's Boon
| By Anger.Cola (Modified by OnyxSys)
|---------------------------------------
| Macro utilizes Spell_Routines.inc
|---------------------------------------
| Usage: /call fateseer
| Will use the shaman epic 1.5 if
| available. If not available, it will
| use Ancestral Aid
Sub fateseer
/declare epictimer timer outer 0s
/if (${epictimer}) {
/call cast "Ancestral Aid" alt
} else {
/call cast "Crafted Talisman of Fates" item
/varset shieldtimer 360s
}
/return
include..
Code: Select all
#include Spell_Routines.inc
#include sham15.inc
Updated for Shaman...
Posted: Sun Feb 13, 2005 2:57 am
by Anger.Cola
Change to
Thanks for porting to a shaman macro... very cool :)
Posted: Sun Feb 13, 2005 6:50 am
by aChallenged1
As these are snippets, might want to put them there, yanno?
Posted: Sun Feb 13, 2005 10:05 am
by Anger.Cola
Sorry, kinda new here... whatcha mean?
Posted: Sun Feb 13, 2005 10:40 am
by aChallenged1
Right below this forum is another called Snippets, it's for bits of code that are not macros, but can be place in macros, or made into inc files for macros. That is where people will look for such as this.
Posted: Sun Feb 13, 2005 4:56 pm
by Anger.Cola
Oh! gotcha... should I repost it there or what? just posted here cause he requested it... heh
Posted: Sun Feb 13, 2005 5:18 pm
by fearless
yes
Posted: Wed Feb 16, 2005 12:04 am
by JC
Thanks guys. I didnt see anything for like a week so I stopped checking so often. Works great!
Re: Cleric 1.5 & Divine Arb AA macro
Posted: Sun Jan 04, 2026 4:49 am
by xyilla
Re: Cleric 1.5 & Divine Arb AA macro
Posted: Sun Jan 04, 2026 4:50 am
by xyilla
Re: Cleric 1.5 & Divine Arb AA macro
Posted: Sun Jan 04, 2026 4:52 am
by xyilla