
Originally Posted by
Zzsark
So Ive never really used spellcast before but I recently started looking into it to optimize sets/swaps on my pld (and other jobs just starting with pld). One question I have though is how do you handle swapping to mdt/pdt sets? Do you have to type in the command to make it switch or is there a way to make it swap for you when you're being cast on, or is there another program required to do that?
you can type the command/have it as a macro ie: "/sc set MDT" ('set' can be abbreviated to 's' if you are typing in the command line in a hurry). Another way that requires a bit more coding is a 'dummy' spell, for example say you want hastega (can be any spell/ja that your current job can't cast ie: benediction, meteor, rampart etc.) as your dummy spell to equip MDT you would have something like this
Code:
<if spell="Hastega">
<equip when="precast" set="MDT" />
<cancelspell />
<return />
</if>