Does anyone have or know of someone that has a template for a Dragoon.xml for Spellcast 3.0beta? Looked on 3 different sites, couldn't find one.
Page 1 of 1
Spellcast!!! Dragoon.xml
#2
Posted 08 March 2010 - 05:39 PM
#3
Posted 09 March 2010 - 12:01 AM
Kleiner, on 08 March 2010 - 05:39 PM, said:
Alright, so I picked one, put my gear in, and fixed anything that wasnt working with my current set up. Only problem I have is I can't get my TP gear to re-equip after Healing breath. It puts on my drachen helm, puts on my Saurian helm, but then stays there. I've tried a few things I know, but I can't seem to get it to work. Here's what it looks like:
<if CommandPrefix="/ma|/magic">
<action type="equip" when="PreCast" set="PreHealingBreath" />
<action type="equip" when="Aftercast" set="MidHealingBreath" />
</if>
If anyone knows what command line I need to enter to get it to equip my TP gear, it would be appreciated, thank you.
#4
Posted 19 April 2010 - 07:16 PM
Lilsoulreaver, on 09 March 2010 - 12:01 AM, said:
Alright, so I picked one, put my gear in, and fixed anything that wasnt working with my current set up. Only problem I have is I can't get my TP gear to re-equip after Healing breath. It puts on my drachen helm, puts on my Saurian helm, but then stays there. I've tried a few things I know, but I can't seem to get it to work. Here's what it looks like:
<if CommandPrefix="/ma|/magic">
<action type="equip" when="PreCast" set="PreHealingBreath" />
<action type="equip" when="Aftercast" set="MidHealingBreath" />
</if>
If anyone knows what command line I need to enter to get it to equip my TP gear, it would be appreciated, thank you.
<if CommandPrefix="/ma|/magic">
<action type="equip" when="PreCast" set="PreHealingBreath" />
<action type="equip" when="Aftercast" set="MidHealingBreath" />
</if>
If anyone knows what command line I need to enter to get it to equip my TP gear, it would be appreciated, thank you.
The issue is, you have an aftercast set in that rule that will equip MidHealingBreath after the spell is cast.
If you want it to go back to your TP gear, you should have a default aftercast action somewhere, like at the top of your rules, have
<action type="equip" when="AfterCast" set="TP" />
But if you do that, none of your ifs can have an aftercast set, so you'd have to do
<if CommandPrefix="/ma|/magic"> <action type="equip" when="PreCast" set="PreHealingBreath" /> <action type="equip" when="MidCast" set="MidHealingBreath" /> </if>
Alternatively you could do
<if CommandPrefix="/ma|/magic"> <action type="equip" when="PreCast" set="PreHealingBreath" /> <action type="equip" when="MidCast" set="MidHealingBreath" /> <action type="equip" when="AfterCast" set="TP" /> </if>
If this is the only time it doesn't switch to your TP gear when you're finished, so it doesn't mess
any of the other rules.
This post has been edited by Leijiru: 19 April 2010 - 07:17 PM
#5
Posted 20 April 2010 - 02:24 PM
Leijiru, on 19 April 2010 - 07:16 PM, said:
The issue is, you have an aftercast set in that rule that will equip MidHealingBreath after the spell is cast.
If you want it to go back to your TP gear, you should have a default aftercast action somewhere, like at the top of your rules, have
But if you do that, none of your ifs can have an aftercast set, so you'd have to do
Alternatively you could do
If this is the only time it doesn't switch to your TP gear when you're finished, so it doesn't mess
any of the other rules.
If you want it to go back to your TP gear, you should have a default aftercast action somewhere, like at the top of your rules, have
<action type="equip" when="AfterCast" set="TP" />
But if you do that, none of your ifs can have an aftercast set, so you'd have to do
<if CommandPrefix="/ma|/magic"> <action type="equip" when="PreCast" set="PreHealingBreath" /> <action type="equip" when="MidCast" set="MidHealingBreath" /> </if>
Alternatively you could do
<if CommandPrefix="/ma|/magic"> <action type="equip" when="PreCast" set="PreHealingBreath" /> <action type="equip" when="MidCast" set="MidHealingBreath" /> <action type="equip" when="AfterCast" set="TP" /> </if>
If this is the only time it doesn't switch to your TP gear when you're finished, so it doesn't mess
any of the other rules.
I had the same Issue. So what I did was I made a Script with my TP gear on it. "DRGTP.txt"
Then, when I make my macro, it looks like this:
/ma Cocoon
/wait 6
/console exec "drgtp.txt"
So It executes Cocoon in normal spellcast fashion, equiping my prehealingbreath, then my Mid Healingbreath.
Then after 6 seconds, kicks in the script and puts my TP gear back on.
the problem with dong an AfterCast is spellcast will requip your TP gear before the execution of healing breath and not allow you to get
the advantage of your Saruian/Wyrm Helm.
With the "/wait 6" before your script kicks in, you get bonus plus goes back to your TP gear.
Hope this helps.
Share this topic:
Page 1 of 1
Sign In »
Register Now!
Help




Back to top









