Spellcast Q's: Using Mekira-oto On Correct Day

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » Jobs » Warrior » Spellcast Q's: using mekira-oto on correct day
Spellcast Q's: using mekira-oto on correct day
 Lakshmi.Niico
Offline
サーバ: Lakshmi
Game: FFXI
user: Kido
Posts: 31
By Lakshmi.Niico 2012-03-22 06:27:23  
I'm having a hard time figuring out how to write an advanced rule into my Ukko's Furry rules to equip Mekira-oto +1 on the bonus active days, and af3+2 on the rest when Aggressor is down. Help me out.

Here are my basic rules without the switch:
Code
		<if Spell="Ukko's Fury" buffactive="Aggressor">
				<action type="castdelay" delay=".2" />
				<action type="Equip" when="Precast" set="Ukko's Agg" />
		</if>
		
		<elseif Spell="Ukko's Fury" notbuffactive="Aggressor">
				<action type="castdelay" delay=".2" />
				<action type="Equip" when="Precast" set="Ukko's noAgg" />
		</elseif>


And here is what i've been playing around with, obviously no luck :(
Code
<if Spell="Ukko's Fury" buffactive="Aggressor">
				<action type="castdelay" delay=".2" />
				<action type="Equip" when="Precast" set="Ukko's Agg" />
		</if>
		
		<elseif Spell="Ukko's Fury" notbuffactive="Aggressor">
			<if advanced='"%DayElement"="Light|Wind|Thunder"'>
				<action type="castdelay" delay=".2" />
				<action type="Equip" when="Precast" set="Ukko's noAgg Day" />
			</if>
			<elseif advanced='"%DayElement"="Dark|Fire|Earth|Ice|Water"'>
				<action type="castdelay" delay=".2" />
				<action type="Equip" when="Precast" set="Ukko's noAgg" />
			</elseif>
		</elseif>
 Quetzalcoatl.Neisan
Offline
サーバ: Quetzalcoatl
Game: FFXI
user: Nanashi14
Posts: 387
By Quetzalcoatl.Neisan 2012-03-22 06:30:56  
I use
Code
<if advanced='"%DayElement" = "Light" OR "%DayElement" = "Thunder" OR "%DayElement" = "Wind"'>
                        <equip when="precast">
                        <head lock="yes">Mekira-oto +1</head>
                        </equip>
                        </if>
 Shiva.Ariaum
Offline
サーバ: Shiva
Game: FFXI
user: Ariaum
Posts: 196
By Shiva.Ariaum 2012-03-22 06:35:08  
Elemental weapon skill damage increases depending on day. Why would this effect non-elemental ws damage?
 Lakshmi.Niico
Offline
サーバ: Lakshmi
Game: FFXI
user: Kido
Posts: 31
By Lakshmi.Niico 2012-03-22 06:38:48  
@Neisan, where do I fit that into the overall?
 Cerberus.Kvazz
Offline
サーバ: Cerberus
Game: FFXI
user: kvazz
Posts: 5345
By Cerberus.Kvazz 2012-03-22 06:44:26  
Shiva.Ariaum said: »
Elemental weapon skill damage increases depending on day. Why would this effect non-elemental ws damage?

Just SE with messed up descriptions.
It's based on ws properties.
[+]
 Shiva.Ariaum
Offline
サーバ: Shiva
Game: FFXI
user: Ariaum
Posts: 196
By Shiva.Ariaum 2012-03-22 06:44:36  
I don't see why you are writing a rule for this there has been weapons that have been tested @75 with the same exact description shown to only effect ws like Jinpu Kiloki cyclone and the like...

EDIT

Cerberus.Kvazz said: »
Shiva.Ariaum said: »
Elemental weapon skill damage increases depending on day. Why would this effect non-elemental ws damage?

Just SE with messed up descriptions.
It's based on ws properties.


Not that it's hard to believe with how much they do mess up translations, I'd like to see proof of that though since it is verbatim of some thing that already exists, and what you are describing isn't and hasn't been used before. Nore have I experienced anything of the like while using it.
 Lakshmi.Niico
Offline
サーバ: Lakshmi
Game: FFXI
user: Kido
Posts: 31
By Lakshmi.Niico 2012-03-22 06:52:44  
Shiva.Ariaum said: »
what you are describing isn't and hasn't been used before.


It has already been tested, proven, established, and any other way you want to say it. Just accept it >.>
[+]
 Shiva.Ariaum
Offline
サーバ: Shiva
Game: FFXI
user: Ariaum
Posts: 196
By Shiva.Ariaum 2012-03-22 06:55:24  
Where? lol. Let me guess you heard it from a guy that's grandma says...right?
 Quetzalcoatl.Mitosis
Offline
サーバ: Quetzalcoatl
Game: FFXI
user: xMitosisx
Posts: 317
By Quetzalcoatl.Mitosis 2012-03-22 07:14:44  
Shiva.Ariaum said: »
Where? lol. Let me guess you heard it from a guy that's grandma says...right?

Regarding "...what you are describing isn't and hasn't been used before..."

Athos's gloves.
http://wiki.bluegartr.com/bg/Athos%27s_Gloves

Check the link at the bottom, or just follow this link.


Regarding Mekira-oto +1
http://wiki.bluegartr.com/bg/Mekira-oto_%2B1

Again, link at bottom redirects to here.
[+]
 Ragnarok.Marquiss
Offline
サーバ: Ragnarok
Game: FFXI
user: Marquiss
By Ragnarok.Marquiss 2012-03-22 07:17:47  
Shiva.Ariaum said: »
Where? lol. Let me guess you heard it from a guy that's grandma says...right?

Stop trying to protect your pride, its been established so stop trying to fight it.

You'll only make people think less of you if you drag this meaningless argument on.
[+]
 Lakshmi.Niico
Offline
サーバ: Lakshmi
Game: FFXI
user: Kido
Posts: 31
By Lakshmi.Niico 2012-03-22 07:18:27  
This:

http://wiki.bluegartr.com/bg/Mekira-oto_%2B1

Based on This:

Elemental Weapon Skill Damage testing (Dasva, BG)


Also, thanx Neisan, I figured it out.

EDIT: damnit! beat me to it.
 Shiva.Ariaum
Offline
サーバ: Shiva
Game: FFXI
user: Ariaum
Posts: 196
By Shiva.Ariaum 2012-03-22 07:25:40  
Ragnarok.Marquiss said: »
Shiva.Ariaum said: »
Where? lol. Let me guess you heard it from a guy that's grandma says...right?

Stop trying to protect your pride, its been established so stop trying to fight it.

You'll only make people think less of you if you drag this meaningless argument on.


kay...rofl.

Found the BG link, still seems suspect, none the less carry on lol.
 Ragnarok.Daffel
Offline
サーバ: Ragnarok
Game: FFXI
user: daffel
Posts: 476
By Ragnarok.Daffel 2012-03-22 07:34:02  
Shiva.Ariaum said: »
Ragnarok.Marquiss said: »
Shiva.Ariaum said: »
Where? lol. Let me guess you heard it from a guy that's grandma says...right?

Stop trying to protect your pride, its been established so stop trying to fight it.

You'll only make people think less of you if you drag this meaningless argument on.


kay...rofl.

Found the BG link, still seems suspect, none the less carry on lol.

I'm sorry what continues to be suspect? It effects all WSs
 Quetzalcoatl.Neisan
Offline
サーバ: Quetzalcoatl
Game: FFXI
user: Nanashi14
Posts: 387
By Quetzalcoatl.Neisan 2012-03-22 08:19:13  
What the hell am I reading while I went afk? 'So someone tested it but I don't believe their testing because it goes against my opinion'? Seriously?


@Nicco sorry was in a hurry, that's in my zerk down macro atm. I havent' finished the new spellcast I was working on yet so my current one is a little messy.
 Bismarck.Sylow
Offline
サーバ: Bismarck
Game: FFXI
Posts: 3111
By Bismarck.Sylow 2012-03-22 15:53:38  
Shiva.Ariaum said: »
Ragnarok.Marquiss said: »
Shiva.Ariaum said: »
Where? lol. Let me guess you heard it from a guy that's grandma says...right?

Stop trying to protect your pride, its been established so stop trying to fight it.

You'll only make people think less of you if you drag this meaningless argument on.


kay...rofl.

Found the BG link, still seems suspect, none the less carry on lol.


This more or less officially confirms it.

Dev. Bro. Susuthamnes said:
Hi Asymptotic,

Thanks so much for your feedback.
We agree that this wording is somewhat misleading the way it is currently written (as is the Japanese, actually, which also suggests an "elemental weapon skill").

We'll check with the devs to see if they want to change the wording, and (whether or not the JP gets revised) look into ways to reword the English as well. Certainly, what you suggest would be an improvement.

At any rate, we'll get back to you once an official decision is reached.
Thanks again for bringing this matter to our attention!

Shut the *** up.
[+]
Log in to post.