Item Search
     
BG-Wiki Search
Page 245 of 328 FirstFirst ... 195 235 243 244 245 246 247 255 295 ... LastLast
Results 4881 to 4900 of 6548
  1. #4881
    Aja
    Aja is offline
    Relic Weapons
    Join Date
    Jul 2008
    Posts
    384
    BG Level
    4
    FFXI Server
    Asura

    Looking for a rule to equip one set of gear on idle when I have an avatar out and to equip different set when no avatar. Thanks!

  2. #4882
    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

    Change equip line to0
    <if Status="Idle">
    <equip when="Idle|Aftercast" set="%PetName-Idle" />
    </if>

    Change your set name from idle to Fenrir-Idle, Carbuncle-Idle, etc.

  3. #4883
    Aja
    Aja is offline
    Relic Weapons
    Join Date
    Jul 2008
    Posts
    384
    BG Level
    4
    FFXI Server
    Asura

    Thanks! Works perfect.

  4. #4884
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Found a mistake in an XML I've reworked a bit in the rules section.
    So appearently you can't put 3 conditions into an <if> tag?
    Like <if condition1 condition2 condition3>?
    Because if I take one off (only 2 conditions) it works fine, if I put 3 it gives me the following error:

    "SpellCast: XML Parsing Error: line 0 - Error reading Element value.
    SpellCast: Your document fialed to load. Please view the error above, and onc eit is corrected type /sc reload"

  5. #4885
    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

    You can use over three conditions. Tell us which conditions you used.

  6. #4886
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Code:
    			<if skill="enhancingmagic" notspell="embrava" notspell="stoneskin">
    				<equip set="enhancing" />
    			</if>

    If I take out the last stoneskin condition it works.
    It just came to my mind as I'm writing this that maybe I should have used a single condition like

    ==> notspell="embrava|stoneskin"

    right?

  7. #4887
    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

    You can't use the same condition twice.

    NotSpell="Stoneskin|Embrava"

  8. #4888
    Campaign
    Join Date
    Jul 2007
    Posts
    6,633
    BG Level
    8

    Heh, thought about that a bit too late.
    Thanks a lot Yugl

  9. #4889
    Sea Torques
    Join Date
    Nov 2007
    Posts
    548
    BG Level
    5
    FFXI Server
    Cerberus

    Can someone post up a rng xml that utilizes snapshot gear appropriately?

  10. #4890
    E. Body
    Join Date
    Nov 2008
    Posts
    2,048
    BG Level
    7
    FFXI Server
    Bismarck

    Quote Originally Posted by Snprphnx View Post
    nope didnt work. i'll look a few pages back, to see if i can find the script you were referring to. and yea, haven't updated spellcast in a while. i dont use autoexec or includes, just spellcast by itself. thanks for trying. heading on a week vacation, so i'll PM you when i get back if i have any more questions

    thanks again
    Yugl, as an update, I got my enhancing magic script to work right before heading out on vacation, using suggestions both you and Motenten gave. here is the final product, which was close to earlier suggestions:
    Code:
    <!--- Enhancing Magic Skill-Up Segment --->
                        <elseif spell="Barfire" >
                                <!--- Check if /Heal Break is active --->
                                <if advanced='"$SkillUp" == "1"'>
                                        <!--- Fix the SkillCycle varaible in case the SMN SKILL Segment boinked it --->
                                        <if advanced='"$SkillCycle" == "6|7|8|9"'>
                                                <action type="var" cmd="set SkillCycle 1" />
                                                <action type="command" when="aftercast">wait 4;input /ma "Barfire"</action>
                                                <action type="cancelspell"/>
                                        </if>
                                        <!--- Check if your MP is low --->
                                        <if Mode="OR" NOTMPGT="100" MP="100">
                                                <if notspell="blink">
                                                        <action type="command" when="precast">input /heal on;wait $RestTime4Protect;input /heal off;wait 2;input /ma "Barfire"</action>
                                                        <action type="cancelspell"/>
                                                </if>
                                                <else>
                                                        <action type="command" when="aftercast">input /heal on;wait $RestTime4Protect;input /heal off;wait 2;input /ma "Barfire"</action>
                                                </else>
    									</if>
    									<if NotBuffActive="Food">
    										<cancelspell />
    										<command>input /item "Seafood Pitaru" &lt;me&gt;;wait 5;input /ma "Barfire"</command>
    										<return />
    									</if>
    									<if NotBuffActive="Refresh">
    										<changespell Spell="Refresh" />
    										<changetarget target="&lt;me&gt;" />
    										<command when="Aftercast">wait 6;input /ma "Barfire"</command>
    										<return />
    										</if>
    								 
                                        <!--- Enhancing Skill Cycling --->
    this does the following:
    1. uses whatever food you want to use (i have Seafood Pitaru listed)
    2. Casts refresh
    3. Cycles through the barspells
    4. reapplies food and refresh whenever they wear off.

    this should work for any other magic type, like Healing or Elemental, just need to copy/paste it into the individual sections. I haven't tested this yet though.

  11. #4891
    Aja
    Aja is offline
    Relic Weapons
    Join Date
    Jul 2008
    Posts
    384
    BG Level
    4
    FFXI Server
    Asura

    <if buffactive="Migawari">
    <equip when="all" lock="true">
    <body>Iga Ningi +2</body>
    </equip>
    </if>

    This does not work to lock body when Migawari is up. Any ideas?

  12. #4892
    Radsourceful

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

    <equip when="all"><body lock="true">Iga Ningi +2</body></equip>

    Lock was in the wrong spot is all.

  13. #4893
    Aja
    Aja is offline
    Relic Weapons
    Join Date
    Jul 2008
    Posts
    384
    BG Level
    4
    FFXI Server
    Asura

    Thanks!

  14. #4894
    New Spam Forum
    Join Date
    Jul 2010
    Posts
    186
    BG Level
    3
    FFXI Server
    Bahamut

    Quote Originally Posted by dueon View Post
    I am using 1.4 alias with your new 1.5 script. But the thing is im doing the //petnamehere and nothing is happening. I dont know if im suppost to have somthing else set up to use these or not. Like to i need anything extra done to even use Alias?

    I havnt touched anything in the coding, just done the steps you have in the notes.
    I updated the aliases file to have some instructions.
    I save it in the scripts file right next init.txt

    put this line in your init.txt: exec pet-alias.txt
    or run this from the command line: //exec pet-alias.txt

  15. #4895
    Hydra
    Join Date
    Jun 2007
    Posts
    129
    BG Level
    3

    First time Spellcast user, using THF Basic xml from http://pastebin.com/uQ1M0FdY, I've edited all my gear into the spots, and the swaps work, but for some reason it only equips my TP set when I first engage, if I use an ability or ws it'll swap gear but then never swaps back to my TP set after, can anyone tell me what i need to add and where?

    Edit: Figured it out, disregard

  16. #4896
    New Spam Forum
    Join Date
    Sep 2007
    Posts
    149
    BG Level
    3

    I can't use Shiva's Sleepga while spellcast is loaded. Checked my file, couldn't find anything. Downloaded an xml from this site and it still didn't work. Works fine when I unload spellcast.
    Does anyone have an idea what might be the problem?
    All that happens is "...A command error occurred."

  17. #4897
    Requiescat in pace.
    Join Date
    Dec 2008
    Posts
    1,341
    BG Level
    6
    FFXI Server
    Lakshmi

    Quote Originally Posted by Ceal View Post
    I can't use Shiva's Sleepga while spellcast is loaded. Checked my file, couldn't find anything. Downloaded an xml from this site and it still didn't work. Works fine when I unload spellcast.
    Does anyone have an idea what might be the problem?
    All that happens is "...A command error occurred."

    http://www.bluegartr.com/threads/749...et#post5326605

  18. #4898
    New Spam Forum
    Join Date
    Sep 2007
    Posts
    149
    BG Level
    3

    Ah, thank you! :D

  19. #4899
    Sea Torques
    Join Date
    May 2010
    Posts
    718
    BG Level
    5
    FFXI Server
    Ragnarok

    <if notArea="Provenance">
    <if Area="Legion">
    <var cmd="set TPFeet Usukance Sune-ate"/>
    <var cmd="set TPRing Mars's ring"/>
    <var cmd="set TPNeck Houyi's gorget"/>
    <var cmd="set WSBelt Shadow Belt"/>
    </if>

    <if notArea="Legion">
    <var cmd="set TPFeet Ace's leggings"/>
    <var cmd="set TPRing Tyrant's Ring"/>
    <var cmd="set TPNeck Ganesha's Mala"/>
    <var cmd="set WSBelt Windbuffet belt"/>
    </if>

    Not working for in legion is legion not the zone name or something?

  20. #4900
    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

    The zone name is blahblah-Legion, so you need to use Area="*Legion"

Page 245 of 328 FirstFirst ... 195 235 243 244 245 246 247 255 295 ... 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