SCH .XML Help [Sublimation Edition!]

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » Everything Else » Tech Support » SCH .XML Help [Sublimation Edition!]
SCH .XML Help [Sublimation Edition!]
 Fairy.Tussilo
Offline
サーバ: Fairy
Game: FFXI
user: Tussilo
By Fairy.Tussilo 2010-02-26 13:46:16  
Hi again all!

I was wondering if anyone had a simple sublimation rule for equipping Scholar's Mortarboard(+1) and Argute Gown when sublimation is actively charging, and then equipping a refresh cloak (Ixion) when it's not.

I don't mind if the gear swaps out during spell casts, and I don't really want anything elaborate like resting rules. I'd basically just like what's equipped when idling handled.

Thanks in advance guys. Looking forward to seeing what everyone else uses!
 Remora.Ninian
Offline
サーバ: Remora
Game: FFXI
user: Ninian
Posts: 1667
By Remora.Ninian 2010-02-26 14:03:24  
I'm not really sure what SCHs do for this, but what I'd imagine is that you'd have an Idle Body/head variable in your idle set, and then have an item toggle by a spell to switch the variables manually whenever you're in sublimation or out. (Could probably even do like a /ja "Sublimation" /wait 1 /ma "whateverspellyouwannausetotoggle" <me>)
 Remora.Ninian
Offline
サーバ: Remora
Game: FFXI
user: Ninian
Posts: 1667
By Remora.Ninian 2010-02-26 14:06:23  
Toggle example would be (stole Thorn's idle code bwahaha. :<)


<if spell="Drain II">
<if advanced='"$Idle" = "PDT"'>
<var cmd="set Idle MDT" />
<addtochat color="57">Gear Toggle - Idle in MDT</addtochat>
</if>
<else>
<var cmd="set Idle PDT" />
<addtochat color="57">Gear Toggle - Idle in PDT</addtochat>
</else>
<if status="resting"><equip when="precast" set="Resting" /></if>
<else>
<if Advanced='"$Idle" = "PDT"'><equip when="precast" set="Stand-PDT" /></if>
<elseif Advanced='"$Idle" = "MDT"'><equip when="precast" set="Stand-MDT" /></elseif>
</else>
<cancelspell />
<return />
</if>
 Midgardsormr.Mikania
Offline
サーバ: Midgardsormr
Game: FFXI
user: Mikania
Posts: 40
By Midgardsormr.Mikania 2010-02-26 14:08:56  
Too lazy to retype the whole post (or even attempt to copy/paste)

http://www.ffxiah.com/forum/?topic_id=7395#376757
 Fenrir.Shambo
Offline
サーバ: Fenrir
Game: FFXI
user: Shambo
Posts: 486
By Fenrir.Shambo 2010-02-26 14:21:58  
what
 Fairy.Tussilo
Offline
サーバ: Fairy
Game: FFXI
user: Tussilo
By Fairy.Tussilo 2010-02-26 14:30:34  
Thanks Mikania. If you notice I was the one that originally started that post, so I thank you for both instances.

I'm going to try out your rule and see how I like it. I think I'll edit out the resting rules for now, because I rest with full yigit, and losing pieces sort of defeats the purpose.

We'll see how it goes!
 Midgardsormr.Mikania
Offline
サーバ: Midgardsormr
Game: FFXI
user: Mikania
Posts: 40
By Midgardsormr.Mikania 2010-02-26 15:39:44  
If you want, send me a PM and I can send my entire xml file to you. My coding skills is pretty 'yuck,' but I like my SCH's SC.
 Kujata.Akeda
Offline
サーバ: Kujata
Game: FFXI
user: Akeda
Posts: 1698
By Kujata.Akeda 2010-02-26 19:40:57  
I don't use windower but I just do the normal
/equip head Mboard
/equip body gown
/ja Sublimation

but I'm guessing you're looking for something a bit more lazy/automatic.
 Remora.Eriuddo
Offline
サーバ: Remora
Game: FFXI
user: Eriuddo
Posts: 98
By Remora.Eriuddo 2010-02-27 03:50:41  
Code
<if BuffActive="Sublimation: Activated">
<var cmd="set SCHRestHead Sch. M.board +1" />
<var cmd="set SCHIdleHead Sch. M.board +1" />
<var cmd="set SCHIdleBody Argute Gown" />
</if>
<elseif notBuffActive="Sublimation: Complete" spell="Sublimation">
<var cmd="set SCHRestHead Sch. M.board +1" />
<var cmd="set SCHIdleHead Sch. M.board +1" />
<var cmd="set SCHIdleBody Argute Gown" />
</elseif>
<else>
<var cmd="set SCHRestHead Goliard Chapeau" />
<var cmd="set SCHIdleHead Remove" />
<var cmd="set SCHIdleBody Vermillion Cloak" />
</else>

put $SCHIdleHead $SCHIdleBody $SCHRestHead in your gear spots in your sets, and change it to set what you want to use etc.. no autoexec required and it won't swap you midcast
 Seraph.Dricent
Offline
サーバ: Seraph
Game: FFXI
user: Dricent
Posts: 74
By Seraph.Dricent 2010-02-27 05:02:22  
Wow talk about lazy -_-; a real sch wouldn't use all that lazy preset code crap.
 Midgardsormr.Mikania
Offline
サーバ: Midgardsormr
Game: FFXI
user: Mikania
Posts: 40
By Midgardsormr.Mikania 2010-02-27 13:54:08  
Yea, that code isn't too bad and it won't swap in midcast. But you need to press something to have it swap from active -> complete if you are just standing there.

I dun't like pressing extra buttons.
 Midgardsormr.Mikania
Offline
サーバ: Midgardsormr
Game: FFXI
user: Mikania
Posts: 40
By Midgardsormr.Mikania 2010-02-27 13:56:53  
Seraph.Dricent said:
Wow talk about lazy -_-; a real sch wouldn't use all that lazy preset code crap.

I agree. I need to change about 6-8 pieces of equip (sometimes twice-if -%spellcastime/fastcast applies) for one spell. The HORROR!

(or I can not swap any equip... (hmmm.))
Log in to post.