Item Search
     
BG-Wiki Search
Page 74 of 328 FirstFirst ... 24 64 72 73 74 75 76 84 124 ... LastLast
Results 1461 to 1480 of 6548
  1. #1461
    mcb
    mcb is offline
    New Merits
    Join Date
    May 2009
    Posts
    210
    BG Level
    4
    FFXI Server
    Quetzalcoatl

    Quote Originally Posted by Radec View Post
    Code:
    		<if status="Engaged">
    			<equip when="aftercast" set="engaged"/>
    		</if>
    		<else>
    			<equip when="aftercast" set="standard"/>
    		</else>
    put that right before </spellcast> and it should work for all spells/sets

    @Nerji: <action .../> is SC2.2* formatting, SC2.3+ don't need it for equip and several other types of command.
    before </rules> works. thanks

  2. #1462
    Salvage Bans
    Join Date
    Jun 2007
    Posts
    883
    BG Level
    5

    Anyone have an updated BRD.xml they don't mind sharing?

  3. #1463
    Cerberus
    Join Date
    Feb 2006
    Posts
    456
    BG Level
    4

    Quote Originally Posted by Magos View Post
    Thanks a ton!

    A quick question: is there a way to force the correct spirit to match the day without selecting it via the magic menu? I.E. If I macro Air Spirit, is there a way to have spellcast switch to dark spirit if it's dark day? Just want to see if I can make a single Siphon macro.
    Check the comments at the top of the file; ddaydj has accounted for all scenarios and the xml will set the best element for day/weather (conflicting day & weather included), just need to set elemental siphon variable (detailed in the comments at the top)

  4. #1464
    Cerberus
    Join Date
    Feb 2006
    Posts
    456
    BG Level
    4

    Quote Originally Posted by Radec View Post
    Code:
    <if spell="*Spirit">
    	<action type="Changespell" spell="%DayElement Spirit"/>
    </if>
    Not a summoner myself, maybe need to do:

    Code:
    <if spell="*Spirit">
    <if notspellelement="%dayelement">
    	<action type="Changespell" spell="%DayElement Spirit"/>
    </if>
    </if>
    to prevent it looping.
    The issue with this is that you can't cast spirits for anything but elemental siphon (I know, who uses spirits for anything BUT elemental siphon).

  5. #1465
    Old Merits
    Join Date
    Jan 2007
    Posts
    1,102
    BG Level
    6
    FFXI Server
    Phoenix

    For proper day spirit I would overwrite something like.. Cure (if cast on self). At these levels I cannot think of any reason you would need to cure 1 yourself. that way you still have functionality of casting whatever spirit you want for a situation.

    or could make a chain so that if you use Elemental Siphon ability it will cast the proper day elemental wait a few seconds then use the ability. I know you would have to use raw commands to do this but it should be doable. Might even be able to check if an elemental is up beforehand and thus eliminate the need to summon one.
    Someone that knows more about pet usage in spellcast might have to chime up there.

  6. #1466
    Cerberus
    Join Date
    Feb 2006
    Posts
    456
    BG Level
    4

    Can't siphon without the elemental out.

    Like I said, it's covered in the script I posted, need 1 raw command to set the variable.

  7. #1467
    RIDE ARMOR
    Join Date
    Sep 2007
    Posts
    20
    BG Level
    1

    I was wondering if anyone has a good XML for RDM, my gear is +2 empyrean, morrigan's, Almace (would like a script for when i am one handing and dual wielding) and pretty much all the nice little pretties for rdm.

    Also wondering if something can be added to equip empyrean set while composure is up.

    Thanks alot

  8. #1468
    New Spam Forum
    Join Date
    Jul 2008
    Posts
    173
    BG Level
    3
    FFXI Server
    Leviathan

    Quote Originally Posted by LiquidFriend View Post
    Anyone have an updated BRD.xml they don't mind sharing?
    http://pastebin.com/UbqnnhPY

    Rules for PDT set, town, Minstrel's earring and such. It's not perfect but it works well for me. (Minstrel's Ring and -hp +mp aside). Everything else should work ok. If you find any faults, please let me know.

  9. #1469
    My #1
    Join Date
    Nov 2009
    Posts
    95
    BG Level
    2
    FFXI Server
    Quetzalcoatl

    Need halp adding an Impetus rule to use Tantra cyclas +2 in all my VS sets whenever the JA is up;

    xml http://pastebin.com/CbXp7Fp4

  10. #1470
    Salvage Bans
    Join Date
    Oct 2007
    Posts
    771
    BG Level
    5

    Quote Originally Posted by Shalafi View Post
    The issue with this is that you can't cast spirits for anything but elemental siphon (I know, who uses spirits for anything BUT elemental siphon).
    Oh the fun of having a spirit proc gyellow or curagaIV your party and when ur getting ur ass kicked by a aggroed mob without a avatar out pop a spirit and you may live lol.

  11. #1471
    Radsourceful

    Join Date
    Jul 2007
    Posts
    1,964
    BG Level
    6
    FFXI Server
    Bismarck

    Quote Originally Posted by Elysian View Post
    Need halp adding an Impetus rule to use Tantra cyclas +2 in all my VS sets whenever the JA is up;

    xml http://pastebin.com/CbXp7Fp4
    Code:
    <if Spell="Victory Smite">  
    	<action type="castdelay" delay=".2" />  
    	<if notArea="Abyssea-*">  
    		<if buffactive="Berserk|Minuet*|Chaos Roll">
    			<action type="equip" when="Precast" set="VS2" />  
    		</if> 
    		<else> 
    			<action type="equip" when="Precast" set="VS1" />  
    		</else> 
    	</if>
    	<if Area="Abyssea*">
    		<if buffactive="Berserk|Minuet*|Chaos Roll">
    			<action type="equip" when="Precast" set="VS3" />  
    		</if> 
    		<else> 
    			<action type="equip" when="Precast" set="VS4" />  
    		</else>
    	</if>
    	<if Buffactive="Impetus">
    		<equip when="precast"><body lock="true">Tantra Cyclas +2</body></equip>
    	</if>
    </if>

  12. #1472
    Salvage Bans
    Join Date
    Jun 2007
    Posts
    883
    BG Level
    5

    Quote Originally Posted by Natsuchii View Post
    http://pastebin.com/UbqnnhPY

    Rules for PDT set, town, Minstrel's earring and such. It's not perfect but it works well for me. (Minstrel's Ring and -hp +mp aside). Everything else should work ok. If you find any faults, please let me know.
    Thanks for posting.

    When I get a few to implant my gear sets into it and give a whirl, I'll let you know how it does.

  13. #1473
    Groinlonger
    Join Date
    Oct 2006
    Posts
    2,963
    BG Level
    7
    FFXI Server
    Fenrir

    I seem to have a problem getting Ambusher's Hose working with my spellcast. I'm not doing anything remotely tricky at all, it just doesn't work. I know it's not the spelling because it works the first time after I zone, but doesn't work anymore after. Wat.

  14. #1474
    Salvage Bans
    Join Date
    Dec 2007
    Posts
    868
    BG Level
    5
    FFXIV Character
    Seamus Sunder
    FFXIV Server
    Balmung
    FFXI Server
    Phoenix

    Whenever I try to load a xml, I receive the error "XML Parsing Error: Line 0 - Error document empty". My spellcast is up to date, so it might be my xmls but I'm unsure. http://pastebin.com/8fRsCkju is the original xml I based my WAR's off of and I never encountered an error in prior use.

  15. #1475
    Banned.

    Join Date
    Aug 2007
    Posts
    2,751
    BG Level
    7
    FFXI Server
    Carbuncle
    WoW Realm
    Trollbane

    Does anybody know what my xml would look like if I was trying for a good QD setup? http://pastebin.com/BnjpXFUL I found this code in an uploaded xml and was wondering if this would do the trick.

  16. #1476
    Radsourceful

    Join Date
    Jul 2007
    Posts
    1,964
    BG Level
    6
    FFXI Server
    Bismarck

    Quote Originally Posted by Isawa View Post
    Whenever I try to load a xml, I receive the error "XML Parsing Error: Line 0 - Error document empty". My spellcast is up to date, so it might be my xmls but I'm unsure. http://pastebin.com/8fRsCkju is the original xml I based my WAR's off of and I never encountered an error in prior use.
    Post the xml files that are giving you the errors, as well as the included files.

    Mojo: No idea, post and can look but I can't think of anything that'd cause that.

  17. #1477
    Old Merits
    Join Date
    Aug 2007
    Posts
    1,088
    BG Level
    6
    FFXI Server
    Ragnarok

    Need some help on designing this. Since Torcleaver is a WS that has weird modifier, so depends on mob, either attack or VIT or a mix should be used. I plan to have 3 sets of gears for it in one group, let's say to name them TorcleaverVIT, TorcleaverATT, TorcleaverMix. How should I set it so that in game I can just press a macro to say ok, from this point on, all torcleaver will use torcleaverVIT until I press another macro that says to use another one. I believe I can set a variable say X = VIT, ATT, and Mix, and in the setname, I can do torcleaverX. I forgot the specific language that connects variable to set name. Any help would be greatly appreciated, thank you.

  18. #1478
    Old Merits
    Join Date
    Aug 2007
    Posts
    1,088
    BG Level
    6
    FFXI Server
    Ragnarok

    ok, let me just set it up and you guys can tell me if it will work.

    <var name="X">MIX</var> (mix is the default)

    blah blah...

    <set name="TorcleaverMIX"/>
    <set name="TorcleaverVIT"/>
    <set name="TorcleaverATT"/>

    blah blah...

    <if spell="Torcleaver">
    <equip when="precast" set="Torcleaver$X"/>
    </if>

    And in game I will make macro for //sc var set X VIT and //sc var set X ATT //sc var set X MIX to adjust accordingly

    Will that work?

    Thank you.

  19. #1479
    Radsourceful

    Join Date
    Jul 2007
    Posts
    1,964
    BG Level
    6
    FFXI Server
    Bismarck

    Yes.

    Not there yet but keep an eye on http://forums.windower.net/forum-25/...vel-variables/ if you want to make more complicated sets in a similar fashion.

  20. #1480
    Old Merits
    Join Date
    Aug 2007
    Posts
    1,088
    BG Level
    6
    FFXI Server
    Ragnarok

    Ah, interesting, thank you.

Page 74 of 328 FirstFirst ... 24 64 72 73 74 75 76 84 124 ... LastLast

Similar Threads

  1. Spellcast Shop Thread
    By Yugl in forum FFXI: Everything
    Replies: 232
    Last Post: 2014-03-18, 04:47
  2. time spent on ls events, helping friends and your own time
    By freewind in forum FFXI: Everything
    Replies: 6
    Last Post: 2005-09-06, 16:42