SCH Spellcast Rules

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » FFXI » Jobs » Scholar » SCH spellcast rules
SCH spellcast rules
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 14:55:40  
I'm trying to create a rule for my sch for when i have TP or have adloquium up and im in idle, making me equip my Chrysopoeia torque and equipping my twilight torque when i do not. has anyone else been successful with this?

edit: also i do not know the buff ID for adloquium as well.
[+]
 Leviathan.Haruhigumi
Offline
サーバ: Leviathan
Game: FFXI
user: kbeezie
Posts: 284
By Leviathan.Haruhigumi 2011-08-20 15:04:27  
Talking bout some kind of windower rule? Though for what you speak of I normally have Mistilteinn equipped with adloquium going for what I think you're talking bout (Except that does 3TP -> 1MP so not quite as effective as the Chrys. Torque).

Though personally I think there are more useful torques for scholars than the twilight torque.
 Cerberus.Wolfshadow
Offline
サーバ: Cerberus
Game: FFXI
Posts: 2269
By Cerberus.Wolfshadow 2011-08-20 15:10:03  
<if buffactive="adloquium">
<action type="equip" when="aftercast" set="idle">
<neck>blahblahblah torque</neck>
</action>
</if>
<else>
<action type="equip" when="aftercast" set="idle" />
</else>

should work
 Cerberus.Vaness
Offline
サーバ: Cerberus
Game: FFXI
Posts: 1515
By Cerberus.Vaness 2011-08-20 15:13:44  
Lakshmi.Sirafiinikkusu said: »
I'm trying to create a rule for my sch for when i have TP or have adloquium up and im in idle, making me equip my Chrysopoeia torque and equipping my twilight torque when i do not. has anyone else been successful with this?

edit: also i do not know the buff ID for adloquium as well.
It is possible to do it.
for adloquium
<if Buffactive="Adloquium">
<equip when="Aftercast|Idle" set="idle">
<neck lock="yes">Chrysopoeia Torque</neck>
</equip>
</if>

For TP (not 100% sure for this one)
<if TPGT10>
<equip when="Aftercast|Idle" set="idle">
<neck lock="yes">Chrysopoeia</neck>
</equip>
</if>
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 16:13:02  
i tried something similar to what wolf did, but it ignores to the twilight torque, i'll try yours vaness ^^;

haru: do you have any better suggestions to wear while idle?
 Cerberus.Wolfshadow
Offline
サーバ: Cerberus
Game: FFXI
Posts: 2269
By Cerberus.Wolfshadow 2011-08-20 16:27:48  
try doing
<elseif>
<action type="equip" when="aftercast" set="idle" />
</elseif>

instead of
<else>
<action type="equip" when="aftercast" set="idle" />
</else>

this is supposed to make it so in the case that you don't have adloquium on, it equips your regular idle set.
[+]
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 16:30:21  
i see why it wouldn't work before, adlo doesnt have it's own buff icon, it's just "regain"

<if Buffactive="Regain">
<equip when="Aftercast|Idle" set="standard">
<neck lock="yes">Chrysopoeia Torque</neck>
</equip>
</if>
<else>
<equip when="aftercast|Idle" set="standard">
<neck>twilight torque</neck>
</equip>
</else>
<if TPGT="10">
<equip when="Aftercast|Idle" set="standard">
<neck lock="yes">Chrysopoeia torque</neck>
</equip>
</if>
<else>
<equip when="aftercast|Idle" set="standard">
<neck>twilight torque</neck>
</equip>
</else>

works
 Cerberus.Wolfshadow
Offline
サーバ: Cerberus
Game: FFXI
Posts: 2269
By Cerberus.Wolfshadow 2011-08-20 16:31:44  
the plot thickens

excellent

glad I was able to help if any

I should probably get one of those torques for my sch, despite how little I use it ;/
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 16:34:23  
yeah it was a mix help between yours and vaness, i was treating it like my sublimation rule and apparently that style ruling only works for sublimation.
 Cerberus.Wolfshadow
Offline
サーバ: Cerberus
Game: FFXI
Posts: 2269
By Cerberus.Wolfshadow 2011-08-20 16:43:34  
you could also try to fashion something out of autoexec where it will automatically equip your twilight torque when your tp hits below 10 or whatever, or as soon as adloquium wears off before you even cast a spell to return to your normal idle. I have something like that made for sublimation in my autoexec, lemme see
 Cerberus.Wolfshadow
Offline
サーバ: Cerberus
Game: FFXI
Posts: 2269
By Cerberus.Wolfshadow 2011-08-20 16:47:21  
yeah, in my autoexec I have
<register event="gainbuff_Sublim*Activated" silent="true">sc set Sublim</register>
<register event="losebuff_Sublim*Activated" silent="true">sc set NoSublim</register>
to change my idle gear when sublimation finishes charging or gets dispelled or something

although it may interfere with your sublimation idle set, you could try doing
<register event="gainbuff_Regain" silent="true">sc set Adloqon</register>
<register event="losebuff_Regain" silent="true">sc set Idle</register>

and in your sets just have Adloqon as your idle set with the tp to mp torque on
and of course Idle is your natural Idle set with Twilight torque on
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 16:55:37  
hmmm i like that better, gonna give that a shot

edit: i dont see how it would really interfere with me keeping the original rules in i just posted
 Lakshmi.Sirafiinikkusu
Offline
サーバ: Lakshmi
Game: FFXI
Posts: 1060
By Lakshmi.Sirafiinikkusu 2011-08-20 17:04:05  
do you know of a setup for TPGT in autoexec?

edit: nvm i can see how this would be a problem for sublimation
necroskull Necro Bump Detected! [93 days between previous and next post]
 Bahamut.Zellc
Offline
サーバ: Bahamut
Game: FFXI
user: Zellc
Posts: 643
By Bahamut.Zellc 2011-11-21 18:36:13  
id like to setup precast grimoire reduced spell casting gear for when i have arts up <aka argute m.board and scholars loafers>. and for when i have weather corresponding with the spells i am casting for precast also <aka argute loafers>. curious to know if anyone can set that up or walk me through it.

here is the rules for magic that came with the sch spellcast i got from an old friend.
 Lakshmi.Greggles
Offline
サーバ: Lakshmi
Game: FFXI
user: Greggles
Posts: 728
By Lakshmi.Greggles 2011-11-21 18:40:50  
I have a rule that does that, excluding the feet because I feel like my inventory is cramped up enough without em...but here's the rule I use for fastcasting on SCH:
Code
		<if BuffActive="Light Arts|Addendum: White|Dark Arts|Addendum: Black">
            <equip when="precast" set="GrimioreFastCast" />
		</if>
        <else>
           <equip when="precast" set="FastCast" />
        </else>
 Lakshmi.Greggles
Offline
サーバ: Lakshmi
Game: FFXI
user: Greggles
Posts: 728
By Lakshmi.Greggles 2011-11-21 18:43:21  
For using the feet, you'd wanna do something like...
Code
        <if advanced='"$SpellElement"="$WeatherElement"' BuffActive="Celerity|Alacrity">
			<equip when="precast">
				<feet lock="true">Argute Loafers</feet>
			</equip>
		</if>
 Bahamut.Zellc
Offline
サーバ: Bahamut
Game: FFXI
user: Zellc
Posts: 643
By Bahamut.Zellc 2011-11-21 20:00:53  
thanks! though i had to change a few 'when=' to midcast. after i did so in the right places it worked out perfectly.