Thanks works perfect.
Thanks works perfect.
ok stupid question time but i forgot, how do you manually change your sets while spellcast is active, like changing to dmg down set by command?
/sc set NAMEHERE
damnit all to hell! lol i thought it as close but i was putting //sc set "name"
yeah works now as yug can tell ya from my xml's i seem to love " " and $
I'm usingto prevent switching to staves when I have tp. How can I make it so this lock doesn't apply when certain weapons are equipped (IE: said staves)?<if TPGT="10">
<action type="equip" when="PreCast|MidCast|AfterCast|Resting">
<main lock="t" />
<sub lock="t" />
<range lock="t" />
</action>
</if>
You can't do it for an entire category (Staffs or Axes or w/e), but you can specify particular equipment by name.
<if notEquipMain="*Staff"> will prevent the rule from running when you have equipment with the name "Staff" in it like "Thunder Staff."
Anyone have a good DNC XML they're willing to share?
*Edit*
Also a SAM? My usual source for XMLs did not have like I thought he would.
@TacoTaru:
Here's my (minimalist - not properly geared yet) DNC XML. Just stick in your own gear where you want.
It's not done me wrong yet - the only quirky bits are:
- when you use a Step, if Presto's timer is up it pops Presto first
- if you're casting Utsu: Ichi after casting Utsu: Ni it auto-cancels your :Ni shadows just before :Ichi casts (standard fare, I know - just change the timings to suit your Haste gear)
- cancels Sneak status when using Spectral Jig
- make a macro for '/ma "Cure V" <me>' - this switches between evasion and haste sets if you want to TP in evasion gear
The "Pretty" gear set is what I equip before enabling BlinkMeNot (can give you the script for this if you want, but it's straightforward and just an indulgence on my part =P)
Spoiler: show
Dnc/presto.txt reads:
Spoiler: show
I haven't played SAM since 75 cap was lifted, but here's my old XML - basics should still work.
Its only quirks:
- Casting Cure V returns what weapon is equipped and what SpellCast group you're using (probably obsolete since no-one uses Polearms any more)
- If casting Third Eye with Seigan not up, forces Seigan cast before Third Eye (use '/raw /ja "Third Eye" <me>' to circumvent this
Spoiler: show
Hope these help!
Not too long ago, someone asked for a fully functional Scholar XML, but their request hasn't been filled yet. I'm here to beg for such as well, as the XML on the Windower site appears to be total garbage.
My SCH is level 56, soon to be 90, and I already have AF, Relic, and Empyrean armor waiting for me, along with everything I use on my BLM that's transferable. I hope I can acquire an XML that will swap everything appropriately and under the right conditions (e.g., Savant's Bonnet +1 is equipped when an appropriate Stratagem is active and an associated spell is being cast). I've found bits and pieces of SCH XMLs throughout the SpellCast thread's history, but nothing that appears to be complete and/or so comprehensive.
Thanks in advance, whoever can help.
I've noticed that for some quick casting spells (barelement/flash/holy) that spellcast doesn't switch into the appropriate midcast gearset (doesn't happen all the time) quickly enough to gain the full benefit of the intended gearswap.
I've 'fixed' it by precast|midcasting in the set, however I've had to remove precasting in fastcast.
I'm assuming my problem is lag-orientated, but I've started wondering if there was something I could do with castdelay to ensure that I precast in fastcast, and midcast in the appropriate set.
Wow, upon reading that, even I'm slightly confused.... maybe an example.
Spoiler: show
I don't even bother swapping into fastcast gear for barspells and other really fast stuff. It's a .5 second casting time spell. Yugl had this rule in his rdm xml, and I use it now so I don't cast barspells in fastcast gear instead of potency gear, etc. You don't need to shave off 15) casting time on a .5sec casting time spell, really.
DNC xml. Automatically uses a lower tier waltz if you don't have enough TP for a high-tier one, won't use steps if you don't have tp, auto uses presto if it's available. include.xml is below the dnc.xmlCode:<if CastTimeGT="2" notBuffActive="Chainspell" notSpell="Impact"> <equip when="precast" set="Fast Cast" /> </if>
I have set Meteor as a dummy spell to cycle through tp/hybrid/evasion sets. Hitting a meteor macro, it'll change the $engaged variable, and if you're engaged, it'll put you in whatever set you just changed to. It also changes spell cancels for utsu to precast when in abyssea due to AoA.
Spoiler: show
Anyone have a good THF spellcast, the ones I found on pastbin/windower forums are all pretty terrible.
@ Fast cast debate:
Strom asked me to check whether my Fast Cast was working and I found I too was lagging a bit. In addition to the 2s rule I put up, I added a 0.02 cast delay to give the game enough time to equip the fast cast set (Without this delay, I don't get the fast cast to proc). Updated fast cast rule for those who have a minor lag:
SCH XML: http://pastebin.com/tyLMmGd2Code:<if CastTimeGT="2" MLvlGT="59" notBuffActive="Chainspell" notSpell="Impact"> <castdelay delay="0.02" /> <equip when="precast" set="Fast Cast" /> </if>
Include XML: http://pastebin.com/MGdn6SAz
You NEED both for the SCH XML to work. I brushed up the rules (Found I needed to order them better to avoid contradicting actions) and changed the huge list of SCH JAs to type="Scholar" (I just learned about that while reviewing the rules).
Edit: FIXEDv2!
bump again for a working drk xml that can support apoc and caladbolg. the one i'm using is for version 2.22, i would kill for one that can be used with the latest version (been using it for years and whenever I try to use the updater it just won't work period after I update it).
Give me the code and let me see what's up.