Minor Spellcast Issue

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » Spellcast Scripting » Blue Mage » Minor Spellcast Issue
Minor Spellcast Issue
 Shiva.Shinneh
Offline
サーバ: Shiva
Game: FFXI
user: Shinneh
Posts: 164
By Shiva.Shinneh 2013-02-03 04:13:22  
Hello! Been having this annoying issue with my XML for quite a while now, and I have no idea what is causing it and how to fix it ;;. It's using Gimp's Blu XML v1.0 as a template btw.

Barbed Crescent used to be the toggle classtrigger for PDT, but I changed that to Poison V which now works correctly.
The problem is, whenever I want to cast Barbed Crescent it should be putting me into my STRDEX gear, like this:


But instead, it's putting me into this weird hybrid looking gearset, like this:

Which to me looks like a mix between MND/Fastcast/DEX >.>

This is the only spell that is acting weird in the entire XML and I have no clue why it's happening :( any ideas?

Barbed Crescent is only defined once on line 870, for STRDEX spells.
XML
 Ragnarok.Flippant
Offline
サーバ: Ragnarok
Game: FFXI
user: Enceladus
Posts: 658
By Ragnarok.Flippant 2013-02-03 18:20:06  
It's getting caught by line 1008, by the Bar*. Two ways to fix this:

1. Put your Bar* condition anywhere before your Blue Magic condition

2. Or, as I suggest, to wrap 1000-1010 in an elseif Type="*Magic". That way, only spells that aren't Blue Magic will reach anything inside.
[+]
 Shiva.Shinneh
Offline
サーバ: Shiva
Game: FFXI
user: Shinneh
Posts: 164
By Shiva.Shinneh 2013-02-03 18:30:22  
Ragnarok.Flippant said: »
It's getting caught by line 1008, by the Bar*. Two ways to fix this:

1. Put your Bar* condition anywhere before your Blue Magic condition

2. Or, as I suggest, to wrap 1000-1010 in an elseif Type="*Magic". That way, only spells that aren't Blue Magic will reach anything inside.

Oh wow, I honestly never noticed that part. Silly me! Thanks for the help Flippant that fixed it :D