WHM Spellcasts

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » Jobs » White Mage » WHM spellcasts
WHM spellcasts
 Odin.Ciaren
Offline
サーバ: Odin
Game: FFXI
user: r19ecua
Posts: 5
By Odin.Ciaren 2012-10-29 18:37:01  
So after using someone else's COR spellcast as a template, I've decided to take a stab at making my own curing spellcast. I was hoping if somebody would tell me what's wrong with the code? Whenever I cast Cure 1 ~ 5, the cape change doesn't happen. However if I type //sc s Cure, the swap happens. Color me confused.
Code
<spellcast>
            <config
                    Debug="false"
                    ShowGearSwaps="False"
                    />
           
            <sets>
                    <group name="WHM" default="yes">
							<set name="Cure">
							<back>Aslan Cape</back>
					</set>
                            <set name="LDcure" BaseSet="Cure">
                            <back>Twilight Cape</back>
					</set>	 
					</group>
					</sets>
            <rules>
                   
                    <if spell="Cure|CureII|CureIII|CureIV|CureV">
                            <castdelay delay="0.5" />
                            <if Mode="OR" Day="Lightsday" WeatherElement="Light">
                                    <equip when=precast set="LDcure" />
                            </if>
						<else>
                                    <equip when=precast set="Cure" />
                        </else>
                    </if>
            </rules>
    </spellcast>
 Asura.Toxleh
Offline
サーバ: Asura
Game: FFXI
user: Toxeus
Posts: 550
By Asura.Toxleh 2012-10-29 19:03:11  
here is my mule's it's a little longer, but take some of the basic elements and incorporate them into yours, mine works just fine.
 Odin.Ciaren
Offline
サーバ: Odin
Game: FFXI
user: r19ecua
Posts: 5
By Odin.Ciaren 2012-10-29 19:10:23  
Thanks! I wasn't looking for an entire WHM spellcast, was just trying to understand day / weather effects code. But thank you!
 Asura.Toxleh
Offline
サーバ: Asura
Game: FFXI
user: Toxeus
Posts: 550
By Asura.Toxleh 2012-10-29 19:11:28  
lol i told you, just take elements from mine, it was just lazier to post my entire spellcast vs just posting small parts.

np i hope it helped
 Sylph.Binckry
Offline
サーバ: Sylph
Game: FFXI
user: Binckly
Posts: 529
By Sylph.Binckry 2012-10-30 08:16:09  
If you haven't figured it out yet, try this. I don't really understand spellcast all that much, but I'm pretty sure it works in my set <.<
Code
<if Advanced='"%DayElement" = "%SpellElement" OR "%WeatherElement" = "%SpellElement"'> 
					<if Element="Light">
						<equip when="midcast">
							<waist lock="yes">Korin Obi</waist>
							<back lock="yes">Twilight Cape</back>
						</equip>
					</if>
				</if>

I'm pretty sure it should work. '-'
 Valefor.Lisamarie
Offline
サーバ: Valefor
Game: FFXI
user: Kej
Posts: 211
By Valefor.Lisamarie 2012-10-30 19:05:43  
Toxleh; in your healing fastcast build your spellcast probably isnt equipping your cure potency gear in time for cures 1-3, and possibly 6. I had to make either 3 or 4 different fastcast builds to maximize cure speed for my different cures.
 Sylph.Binckry
Offline
サーバ: Sylph
Game: FFXI
user: Binckly
Posts: 529
By Sylph.Binckry 2012-10-30 20:27:20  
Valefor.Lisamarie said: »
Toxleh; in your healing fastcast build your spellcast probably isnt equipping your cure potency gear in time for cures 1-3, and possibly 6. I had to make either 3 or 4 different fastcast builds to maximize cure speed for my different cures.
^. I took a quick glance at it. Take off Witful and Impatiens, the instacasts just give you gross Cures. And 75% is the maximum spellcast/FC ( (1-FC)(1-spellcastreduction) since not additive). So I think you can take off some things there.
 Quetzalcoatl.Crystalchan
Leonardo da Clippi
Offline
サーバ: Quetzalcoatl
Game: FFXI
Posts: 1184
By Quetzalcoatl.Crystalchan 2012-11-05 16:44:30  
Nevermind, it was a really stupid mistake! lol, forgot to change that Protect* ;o; sorry!
Log in to post.