Zodiac Ring For Day.

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » Spellcast Scripting » Corsair » Zodiac ring for day.
Zodiac ring for day.
 Phoenix.Hapa
Offline
サーバ: Phoenix
Game: FFXI
Posts: 92
By Phoenix.Hapa 2012-12-08 09:21:59  
Hello In my spell cast for magic use I have.



<variables>

<!--Corresponding Obi per element-->
<var Name="EarthObi">Dorin Obi</var>
<var Name="ThunderObi">Rairin Obi</var>
<var Name="WaterObi">Suirin Obi</var>
<var Name="FireObi">Karin Obi</var>
<var Name="IceObi">Hyorin Obi</var>
<var Name="WindObi">Furin Obi</var>
<var Name="LightObi">Korin Obi</var>
<var Name="DarkObi">Anrin Obi</var>


<var name="IceStaff">Chatoyant Staff</var>
<var name="DarkStaff">Chatoyant Staff</var>
<var name="ThunderStaff">Chatoyant Staff</var>
<var name="WindStaff">Chatoyant Staff</var>
<var name="FireStaff">Chatoyant Staff</var>
<var name="EarthStaff">Chatoyant Staff</var>
<var name="LightStaff">Chatoyant Staff</var>
<var name="WaterStaff">Chatoyant Staff</var>

</variables>


<if skill="*Magic">
<action type="equip" when="precast">
<main>$%SpellElementStaff</main>
</action>
</if>



<if Advanced='"%SpellElement" = "%WeatherElement"'>
<action Type="Equip" When="MidCast">
<waist Lock="Yes">$%SpellElementObi</waist>
<back Lock="yes">Twilight Cape</back>
</action>
</if>

<if Advanced='"%SpellElement" = "%DayElement"'>
<action Type="Equip" When="MidCast">
<waist Lock="Yes">$%SpellElementObi</waist>
<back Lock="yes">Twilight Cape</back>
</action>
</if>


Now, as corsair I would like to adjust so my quickdraws will equip Zodiac ring for the Quickdraw that corresponding with the elemental day.

iceday - iceshot so on so forth. anyone able to help me out how to make that rule since quick draw's arn't magic? Not sure how to go about that. or would I just have to make a rule for every quickdraw?
 Phoenix.Sehachan
Guide Maker
Offline
サーバ: Phoenix
Game: FFXI
user: Seha
Posts: 13352
By Phoenix.Sehachan 2012-12-08 09:29:07  
Didn't do this myself, but it's what I use
Code
<variables>
		<var name="QDRing">Arvina ringlet</var>
	</variables>



<if spell="Fire Shot|Ice Shot|Wind Shot|Earth Shot|Thunder Shot|Water Shot|Dark Shot|Light Shot">
			<if Advanced='"%SpellElement" = "%DayElement"'>
				<var cmd="set QDRing Zodiac Ring" />
			</if>
			<else>
				<var cmd="set QDRing Arvina ringlet" />
			</else>
etc with the rest of the qd rule.

Twilight cape doesn't work with it, in case you didn't know.
 Phoenix.Hapa
Offline
サーバ: Phoenix
Game: FFXI
Posts: 92
By Phoenix.Hapa 2012-12-08 09:35:01  
cor can't use twilight cape so no worries ^^. but ty i'll try this out. thanks.