Demesnes.

by Unknown

Back to Combat Guide.

Nienla2010-07-02 17:29:46
QUOTE (Razenth @ Jul 2 2010, 01:29 PM) <{POST_SNAPBACK}>
But I mean... 10!! Surely they SOME group instant kill? 5 man thornrend, 3 man telebomb, 3 man trample-sac... ? man spam succumb/amissio toadcurse....


You can't instakill when rad is throwing you off constantly.
Unknown2010-07-02 17:52:51
QUOTE (Zarquan @ Jul 2 2010, 02:19 PM) <{POST_SNAPBACK}>
If your Treant doesn't track wounds (or anything else), you've broken it. I only help bums who are least GR1 in the Serenguard. tongue.gif


They deleted Gwenyth, my Wiccan. >.> And Zayden, my Celestine. And, it wouldn't be surprised if I broke it, considering I had to transfer computers and initially it wouldn't work. But it never did track wounds... meh. I'm screwed.
Anisu2010-07-02 18:11:19
If you are going to use a doafter make sure you can interrupt the cycle in case you are attacked. For example you can use the doafter to call up an alias that does this

Forexample an alias demdefaid
CODE
if GetVariable("demesnefreeze")=="0" then
if GetVariable("demesnestage")=="1" then
   Send("aquacast stillwater demesne")
   SetVariable("demesnestage","2")
   DoAfterSpecial(10, 'Execute("demdefaid")', sendto.script)
elseif GetVariable("demesnestage")=="2" then
   Send("aquacast icefloe demesne")
   SetVariable("demesnestage","0")
end
elseif GetVariable("demesnestage")!="0"
Note("Automated demesne raising interrupted")
DoAfterSpecial(10, 'Execute("demdefaid")', sendto.script)
end


Then add an alias demhalt with this:
CODE
SetVariable("demesnefreeze","1")
Note("Demesne deffing temporarily interrupted")


alias demcontinue
CODE
SetVariable("demesnefreeze","0")
Note("resuming demesne deffing")


alias demabort
CODE
SetVariable("demesnefreeze","1")
SetVariable("demesnestage","0")
Note("demdeffing aborted")


and of course an alias to start it all: demdef

CODE
SetVariable("demesnefreeze","0")
SetVariable("demesnestage","1")
Execute("demdefaid")


Now you could probably use a permanent timer that keeps going, then you can use that timer to send attacks at the same time as your demesne hits.
Xavius2010-07-02 18:17:48
QUOTE (Razenth @ Jul 2 2010, 12:29 PM) <{POST_SNAPBACK}>
But I mean... 10!! Surely they had SOME group instant kill? 5 man thornrend, 3 man telebomb, 3 man trample-sac... ? man spam succumb/amissio toadcurse.... actually, can you stack succumb?

Briars > group coordination
Unknown2010-07-02 18:44:21
QUOTE (Anisu @ Jul 2 2010, 03:11 PM) <{POST_SNAPBACK}>
If you are going to use a doafter make sure you can interrupt the cycle in case you are attacked. For example you can use the doafter to call up an alias that does this

Forexample an alias demdefaid
CODE
if GetVariable("demesnefreeze")=="0" then
if GetVariable("demesnestage")=="1" then
   Send("aquacast stillwater demesne")
   SetVariable("demesnestage","2")
   DoAfterSpecial(10, 'Execute("demdefaid")', sendto.script)
elseif GetVariable("demesnestage")=="2" then
   Send("aquacast icefloe demesne")
   SetVariable("demesnestage","0")
end
elseif GetVariable("demesnestage")!="0"
Note("Automated demesne raising interrupted")
DoAfterSpecial(10, 'Execute("demdefaid")', sendto.script)
end


Then add an alias demhalt with this:
CODE
SetVariable("demesnefreeze","1")
Note("Demesne deffing temporarily interrupted")


alias demcontinue
CODE
SetVariable("demesnefreeze","0")
Note("resuming demesne deffing")


alias demabort
CODE
SetVariable("demesnefreeze","1")
SetVariable("demesnestage","0")
Note("demdeffing aborted")


and of course an alias to start it all: demdef

CODE
SetVariable("demesnefreeze","0")
SetVariable("demesnestage","1")
Execute("demdefaid")


Now you could probably use a permanent timer that keeps going, then you can use that timer to send attacks at the same time as your demesne hits.


Erm. Mind. Blown.

But okay.
Nienla2010-07-02 19:06:11
QUOTE (Xavius @ Jul 2 2010, 02:17 PM) <{POST_SNAPBACK}>
Briars > group coordination


Indeed. Briars are lovely.
Xenthos2010-07-02 23:48:30
QUOTE (Razenth @ Jul 2 2010, 01:29 PM) <{POST_SNAPBACK}>
But I mean... 10!! Surely they had SOME group instant kill? 5 man thornrend, 3 man telebomb, 3 man trample-sac... ? man spam succumb/amissio toadcurse.... actually, can you stack succumb?

You cannot stack succumb.
Kante2010-07-03 00:48:17
Good timing, Aeral. I was needing this info.

Here's to pulling off preserve regularly.
Unknown2010-07-03 03:27:48
QUOTE (Kante @ Jul 2 2010, 09:48 PM) <{POST_SNAPBACK}>
Good timing, Aeral. I was needing this info.

Here's to pulling off preserve regularly.


Figured it might help more than just me! biggrin.gif