SC Problem Swapping Gears.

Language: JP EN DE FR
New Items
2023-11-19
users online
Forum » Windower » Spellcast Scripting » White Mage » SC problem swapping gears.
SC problem swapping gears.
 Bahamut.Tokidoki
Offline
Server: Bahamut
Game: FFXI
Posts: 155
By Bahamut.Tokidoki 2012-11-23 00:47:25
Link | Quote | Reply
 
I've been TPing using staff while soloing an Arka I and have been using Retribution as my primary DD weaponskill. I've got my .xml set up with a WS set but for some reason it will not equip. Below is my .xml

Apologies in advance for no indentions, another problem I'm facing as I copy/paste lol, I did bold the parts I believed to be important to try and make them easier to find. If someone could help it'd be greatly appreciated
Offline
Posts: 151
By Ashandarei 2012-11-23 00:50:37
Link | Quote | Reply
 
Bahamut.Tokidoki said: »
I've been TPing using staff while soloing an Arka I and have been using Retribution as my primary DD weaponskill. I've got my .xml set up with a WS set but for some reason it will not equip. Below is my .xml

Apologies in advance for no indentions, another problem I'm facing as I copy/paste lol, I did bold the parts I believed to be important to try and make them easier to find. If someone could help it'd be greatly appreciated
 Ragnarok.Sekundes
Offline
Server: Ragnarok
Game: FFXI
user: Sekundes
Posts: 4189
By Ragnarok.Sekundes 2012-11-23 01:26:15
Link | Quote | Reply
 
In the start of your ws rules for loweva, you have an elseif, with no prior if.

Just change:
Code
<elseif spell="Hexa*">
<equip when="precast" set="HexaLowEva" />
</elseif>


To:
Code
<if spell="Hexa*">
<equip when="precast" set="HexaLowEva" />
</if>


Same will need to be done for your high eva rules. Just remember, elseif only works if there is an IF line prior to it and it just skips elseif's if there isn't.
 Bahamut.Tokidoki
Offline
Server: Bahamut
Game: FFXI
Posts: 155
By Bahamut.Tokidoki 2012-11-23 01:29:16
Link | Quote | Reply
 
Works like a dream now. Thanks a million to Ashandarei and Sekundes.
Log in to post.