XML Help Please

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » FFXI » Jobs » Monk » XML help please
XML help please
 Leviathan.Dwb
Offline
Server: Leviathan
Game: FFXI
Posts: 144
By Leviathan.Dwb 2013-01-22 04:08:58
Link | Quote | Reply
 
Hey guys,

I am VERY new to XML, I kinda of copy/pasted what I wanted from diffrent XLM sripts and edited as i needed.

At first it was working, but I wanted the XML to ONLY put on AF3+2 body for the WS, then put Thumas back on when Impt is up.

So I got that to work, but then it wouldnt get my TP set to work. So I found the missing tag. But now im getting a error on the last line. About to pull out my hair. Can someone try debugging this for me?

Thanks in advance!
Offline
Posts: 151
By Ashandarei 2013-01-22 04:16:32
Link | Quote | Reply
 
Leviathan.Dwb said: »
Hey guys,

I am VERY new to XML, I kinda of copy/pasted what I wanted from diffrent XLM sripts and edited as i needed.

At first it was working, but I wanted the XML to ONLY put on AF3+2 body for the WS, then put Thumas back on when Impt is up.

So I got that to work, but then it wouldnt get my TP set to work. So I found the missing tag. But now im getting a error on the last line. About to pull out my hair. Can someone try debugging this for me?

Thanks in advance!

Just so I can read it without gouging out my eyeballs.

What's the error?
 Leviathan.Dwb
Offline
Server: Leviathan
Game: FFXI
Posts: 144
By Leviathan.Dwb 2013-01-22 04:24:33
Link | Quote | Reply
 
Parsing Error: Line 86 Error reading end tag
 Cerberus.Natsuhiko
Offline
Server: Cerberus
Game: FFXI
user: Natsuhiko
Posts: 189
By Cerberus.Natsuhiko 2013-01-22 04:26:33
Link | Quote | Reply
 
Sets should go before group, and group needs a </group>.
Code
<sets>
     <group>
          <set>
          </set>
     </group>
</sets>
 Leviathan.Dwb
Offline
Server: Leviathan
Game: FFXI
Posts: 144
By Leviathan.Dwb 2013-01-22 04:33:04
Link | Quote | Reply
 
After playing a bit more, i think i got it working, hard to tell because of fast gearchange. But does this look right?
 Cerberus.Natsuhiko
Offline
Server: Cerberus
Game: FFXI
user: Natsuhiko
Posts: 189
By Cerberus.Natsuhiko 2013-01-22 04:36:19
Link | Quote | Reply
 
Yes that looks right, and throwing it into an online XML validator gave no errors.
 Leviathan.Dwb
Offline
Server: Leviathan
Game: FFXI
Posts: 144
By Leviathan.Dwb 2013-01-22 04:41:03
Link | Quote | Reply
 
Killer! Thanks a bunch
necroskull Necro Bump Detected! [31 days between previous and next post]
 Seraph.Jacaut
Offline
Server: Seraph
Game: FFXI
user: Jacaut
Posts: 383
By Seraph.Jacaut 2013-02-22 14:16:31
Link | Quote | Reply
 
figured id post here instead of starting a whole new thread~
I was wanting to lock certain pieces when impetus is up . . im not good with xml i use ones i find online and such.
The one im using now for monk does this
But its not keeping body on, is there something else to do?
 Sylph.Hitetsu
Offline
Server: Sylph
Game: FFXI
user: Hitetsu
Posts: 2617
By Sylph.Hitetsu 2013-02-22 14:19:31
Link | Quote | Reply
 
Try changing that section to:
Code xml
<elseif mode="or" spell="Impetus" buffactive="Impetus">
	<equip when="midcast|aftercast">
		<body lock="yes">Tantra Cyclas +2</body>
	</equip>
</elseif>
 Ragnarok.Ashman
Offline
Server: Ragnarok
Game: FFXI
user: Ashman
Posts: 4251
By Ragnarok.Ashman 2013-02-22 14:30:08
Link | Quote | Reply
 
That's only going to equip it when you're using impetus.

You'd want it to read:

<elseif mode="OR" spell="Impetus" Buffactive="Impetus">

if i recall

edit: beaten :<
 Seraph.Jacaut
Offline
Server: Seraph
Game: FFXI
user: Jacaut
Posts: 383
By Seraph.Jacaut 2013-02-22 17:05:25
Link | Quote | Reply
 
thanks a lot ^^ i saw that in another xml and thought that might be right but figured id ask first.
 Siren.Scottyb
Offline
Server: Siren
Game: FFXI
user: scottyb
Posts: 170
By Siren.Scottyb 2013-03-08 08:56:06
Link | Quote | Reply
 
Im using a mnk XML for that I'm happy with, pretty basic for my casual monk usage, but I want to know how to add a gear change for hundred fists eg using the Melee Hose +2, I think I could figure it out by mimicking another ability line but I cant really test without wasting my 1 hour lol, so if anyone could tell me exactly what to put in I'd be grateful
 Siren.Scottyb
Offline
Server: Siren
Game: FFXI
user: scottyb
Posts: 170
By Siren.Scottyb 2013-03-13 19:42:24
Link | Quote | Reply
 
Found another problem with my XML, it equips my AF gear for JAs e.g. boost and dodge but doesnt return me to my tp set afterwards, any idea why this might happen?
 Ragnarok.Lowen
Offline
Server: Ragnarok
Game: FFXI
user: Rorrick
Posts: 316
By Ragnarok.Lowen 2013-03-14 07:42:58
Link | Quote | Reply
 
You aren't doing anything after the JA goes off. For any action, you need to <equip when="aftercast" set="whatever" />. Normally, Spellcast will only check your status when an action occurs.
 Siren.Scottyb
Offline
Server: Siren
Game: FFXI
user: scottyb
Posts: 170
By Siren.Scottyb 2013-03-15 09:10:44
Link | Quote | Reply
 
thanks, I realised that it doesnt actually equip the gear for my JAs besides chakra, I just had the gear in my macro from when I played on xbox.

So that being said Chakra works fine but the rest it doesnt utilise my AF gear.