Item Search
     
BG-Wiki Search
Page 122 of 328 FirstFirst ... 72 112 120 121 122 123 124 132 172 ... LastLast
Results 2421 to 2440 of 6548
  1. #2421
    Melee Summoner
    Join Date
    Jun 2007
    Posts
    36
    BG Level
    1
    FFXI Server
    Cerberus

    Looking for a good Pup xml halp prz ::

  2. #2422
    Salvage Bans
    Join Date
    Sep 2008
    Posts
    972
    BG Level
    5
    FFXI Server
    Quetzalcoatl

    Quote Originally Posted by Pendulum View Post
    For the monk XML I keep getting spammed with:
    "Poor practice on XML some <rule> or <if> or <elseif> defined without any criteria"

  3. #2423
    Old Merits
    Join Date
    Mar 2008
    Posts
    1,003
    BG Level
    6
    FFXI Server
    Ragnarok

    Updated the link; the mnk was adapted from my nin script and I'd been chopping some stuff from the nin but I just put it back in since it works and doesnt really affect playing mnk at all.

  4. #2424
    Relic Weapons
    Join Date
    Jun 2008
    Posts
    314
    BG Level
    4

    I have some questions about spellcast, I can't seem to get some things to work right.

    I have night time items, such as koga tekko/kyahan +1 and vampire earring. I don't understand how to make this autoexec line put on my night time stuff on, I believe the group names might be different?

    Also, a way to get my danzo feet/ninja feet to go on idle set depending on times.

    here is xml first, then autoexec line.

    http://pastebin.com/dYza1wx6

    http://pastebin.com/krCH5JmB

    Any help is greatly appreciated!

  5. #2425
    Relic Horn
    Join Date
    Sep 2008
    Posts
    3,311
    BG Level
    7
    FFXIV Character
    Nmtd Natlhom
    FFXIV Server
    Coeurl

    Quote Originally Posted by xIndustrialxAngelx View Post
    I have some questions about spellcast, I can't seem to get some things to work right.

    I have night time items, such as koga tekko/kyahan +1 and vampire earring. I don't understand how to make this autoexec line put on my night time stuff on, I believe the group names might be different?

    Also, a way to get my danzo feet/ninja feet to go on idle set depending on times.

    here is xml first, then autoexec line.

    http://pastebin.com/dYza1wx6

    http://pastebin.com/krCH5JmB

    Any help is greatly appreciated!
    The rule I use is

    Code:
    <if mode="OR" timeLT="6.00" timeGT="22.00">
    		<var cmd="set TPhands Koga Tekko" />
    		<var cmd="set Idleboots Ninja Kyahan" />
    	</if>
    	
    	<if mode="AND" timeGT="6.00" timeLT="22.00">
    		<var cmd="set TPhands Dusk Gloves" />
    		<var cmd="set Idleboots Danzo Sune-ate" />
    	</if>
    Then, just put <feet>$Idleboots</feet> in your idle set and <hands>$TPhands</hands> in your. Second rule is overkill, you could delete it and use <else> instead, but I like it for the safety net. If you have a lot of pieces that you swap based on time, it may be more efficient to make a catch-all variable (let's say $time), switch all your sets in rules from idle to idle-$time, make seperate idle-day and idle-night sets, etc.

  6. #2426
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,197
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Fix for the BLU XML.

    Code:
    <rules>
        <xi:include href="include.xml" xpointer="//include[@name='SpellCancel']/*" />
    	<if notSpell="Comet|*V|Reprisal|Cure VI|Retrace">
    		<xi:include href="include.xml" xpointer="//include[@name='ReturnRules']/*" />
    	</if>
    	<xi:include href="include.xml" xpointer="//include[@name='ElementalObiRule']/*" />
    	<xi:include href="include.xml" xpointer="//include[@name='SetDistanceVariable']/*" />
    The <if> statement around the returnrules is what's new. This is to ensure gear changes even when silenced.

  7. #2427
    RIDE ARMOR
    Join Date
    Aug 2010
    Posts
    20
    BG Level
    1
    FFXI Server
    Leviathan

    Looking for a easy to use Blu.xml new to spellcast other than blm type files, any help would be greatly appreciated. Ty for any help you can provide.

  8. #2428
    Hydra
    Join Date
    Mar 2010
    Posts
    108
    BG Level
    3
    FFXI Server
    Cerberus

    Managed to lose all my old xmls during my break from the game and was wondering if anyone could post or PM me links to DNC/RDM/SAM/WAR and I suppose BRD/SMN files. Also thanks to Yugl for that well timed BLU xml post.

  9. #2429
    RIDE ARMOR
    Join Date
    Jul 2010
    Posts
    19
    BG Level
    1
    FFXI Server
    Bismarck

    Looking for a up to date PLD Xml if anyone could help me out?

    Thanks in advance.

  10. #2430
    Cerberus
    Join Date
    Nov 2005
    Posts
    419
    BG Level
    4
    FFXIV Character
    Sirenia Severus
    FFXIV Server
    Hyperion
    FFXI Server
    Siren
    WoW Realm
    Velen

    I am new to spellcast and I have a couple of questions, would it be best just to download someone's template and edit it? Also do I need an XML file for each job? And if I have multiple xml files I would need one xml file to declare the others?

    I found a tutorial but it is really lengthly and more for if you are going to write everything yourself. Any help would be appreciated. I would mainly need XML files for WHM, RDM, BRD, SMN, DNC, and BLM.

  11. #2431
    Sea Torques
    Join Date
    Jul 2009
    Posts
    679
    BG Level
    5
    FFXI Server
    Leviathan

    Quote Originally Posted by Sirenia View Post
    I am new to spellcast and I have a couple of questions, would it be best just to download someone's template and edit it? Also do I need an XML file for each job? And if I have multiple xml files I would need one xml file to declare the others?

    I found a tutorial but it is really lengthly and more for if you are going to write everything yourself. Any help would be appreciated. I would mainly need XML files for WHM, RDM, BRD, SMN, DNC, and BLM.
    You can do a single file for all your jobs, but not only is it not recommended because your file will get large and unmaintainable, SC looks for and automatically loads the appropriate file for your job every time you jobchange (WHM/??? looks for whm.xml). You can try downloading existing files, but I would be surprised if anything posted on the Windower website functions.

    BLM or BRD would probably be the easiest jobs you've listed if you're writing from scratch.

  12. #2432
    Melee Summoner
    Join Date
    Jun 2007
    Posts
    36
    BG Level
    1
    FFXI Server
    Cerberus

    Dnc and pup xmls available?

  13. #2433

    Sweaty Dick Punching Enthusiast

    Join Date
    Apr 2010
    Posts
    922
    BG Level
    5
    FFXI Server
    Fenrir

    Looking for a rdm xml. The more complex the better. Trying to learn all the cool tricks. Thanks

  14. #2434
    Sea Torques
    Join Date
    Dec 2009
    Posts
    547
    BG Level
    5

    Anyone know how to specify which item of the same name I want SC to macro in? Like I got 4 Dark Rings and I'm trying to get the -pdt ones to come out, but I keep getting some other ones.

  15. #2435
    Salvage Bans
    Join Date
    Jul 2009
    Posts
    964
    BG Level
    5
    FFXI Server
    Leviathan

    You can't.

  16. #2436
    Salvage Bans
    Join Date
    Jun 2007
    Posts
    883
    BG Level
    5

    Anyone have a current WAR.xml they don't mind sharing?

  17. #2437
    Fake Numbers
    Join Date
    Apr 2010
    Posts
    87
    BG Level
    2
    FFXI Server
    Asura

    Anyone got a complex NIN.xml? Looking for Inside/Outside sets mainly. Thanks in advance

  18. #2438
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,197
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Quote Originally Posted by Zzsark View Post
    Looking for a rdm xml. The more complex the better. Trying to learn all the cool tricks. Thanks
    RDM: http://pastebin.com/DDS1qtCq

    Include XML: http://pastebin.com/ZqG2Fgvp

  19. #2439

    Sweaty Dick Punching Enthusiast

    Join Date
    Apr 2010
    Posts
    922
    BG Level
    5
    FFXI Server
    Fenrir

    Thanks for those. New with this stuff but I assuming you just have to put the include.xml in the same folder as the rdm.xml?

  20. #2440
    An exploitable mess of a card game
    Join Date
    Sep 2008
    Posts
    13,197
    BG Level
    9
    FFXIV Character
    Gouka Mekkyaku
    FFXIV Server
    Gilgamesh
    FFXI Server
    Diabolos

    Yeah, put the include in the same folder as the other XMLs.

Page 122 of 328 FirstFirst ... 72 112 120 121 122 123 124 132 172 ... 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