Item Search
     
BG-Wiki Search
Page 104 of 328 FirstFirst ... 54 94 102 103 104 105 106 114 154 ... LastLast
Results 2061 to 2080 of 6548
  1. #2061
    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 Fereydoon View Post
    Any idea why my Ugly Pendant won't swap in? Artemis does, No idea if Goetia does, don't have it yet.

    Try this:

    Code:
    <!-- Changes Artemis' Medal/U Pendant/Feud Pendant based on Moon Phase/MP -->
    <if mode="and" skill="ElementalMagic" notspell="Burn*|Drown*|Choke*|Rasp*|Shock*|Frost*">
        <if MPPAfterCastLT="50" Advanced='"$UggPendant"=="1"'>
            <addtochat color="121">Uggalepih Pendant Latent: Active</addtochat>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <if advanced='"$ArtMedal"=="1" AND "%MOONPCT &gt; 80"'>
                <equip when="precast|midcast">
                    <neck lock="yes">Artemis' Medal</neck>
                    <addtochat color="121">Artemis' Medal grants MORE Magic Attack Bonus, U Pendant inactive</addtochat>
                </equip>
            </if>
            <else>
                <equip when="precast|midcast">
                    <neck lock="yes">Uggalepih Pendant</neck>
                </equip>
                <addtochat color="121">Uggalepih Pendant active</addtochat>
            </else>
        </if>
        <elseif advanced='"$ArtMedal"=="1" AND "%MOONPCT &gt; 30"'>
            <equip when="precast|midcast">
                <neck lock="yes">Artemis' Medal</neck>
            </equip>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <addtochat color="121">Artemis' Medal: Active</addtochat>
        </elseif>
        <elseif advanced='"%MOONPCT &lt; 31"'>
            <equip when="precast|midcast">
                <neck>Geotia Chain</neck>
            </equip>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <addtochat color="121">Artemis' Medal: Inactive - Goetia Chain Equipped</addtochat>
        </elseif>
    </if>
    Quote Originally Posted by Vathris View Post
    Anybody have a good ninja spellcast? Cant seem to find the user updated xmls in windower.net
    I made this one temporarily a while back. Someone will probably come by with a better one though: http://pastebin.com/G8PM0rNG

  2. #2062
    Cerberus
    Join Date
    Feb 2010
    Posts
    410
    BG Level
    4
    FFXI Server
    Odin

    Thanks alot again, Yugl ! One question though, if i have any corresponding elemental stave in my inventory while casting an elemental ninja spell, does it automatically swap it on?

    EDIT: Also, on this part:

    <group name="Nonin-Katana" default="no">
    <set name="TP">
    <head>Iga Zukin +2</head>
    <hands>Ocelot Gloves</hands>
    <lring />
    <rring />
    <rear />
    <lear />
    <legs />
    <feet />
    <waist />
    <back />
    <body />
    <neck />
    <ammo />

    Do i have to type in </lring> or the corresponding ending?

  3. #2063
    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 type in the corresponding ending for all of them?

    <lring>gear here</lring>

    For staffs, it automatically equips them IF your main has "Staff" in the name (Unless it's Ram staff). So if you have Vulcan's Staff on or some other elemental staff, it will start changing them for nukes.

  4. #2064
    Cerberus
    Join Date
    Feb 2010
    Posts
    410
    BG Level
    4
    FFXI Server
    Odin

    Oh i get it, thanks!

  5. #2065
    Radsourceful

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

    The elseif for Ugga is matched with the advanced="$ArtMedal==1" - this is true, so it never uses the elseif.

    If you want to keep a toggle for artmedal, add it to the same time as the moon check. Also, missing several " and '

    Code:
    <elseif advanced="$ArtMedal==1">
                <if advanced="%MOONPCT > 30">
    becomes

    Code:
    <elseif advanced='"$ArtMedal"=="1" AND "%MOONPCT"&gt;"30"'>
    Edit: derp derp there was another page

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

    Set up my variable to equip Ultion during perfect counter and it swaps in fine but, when PC wears, Atheling will not swap back in even when i press my macro to equip TP gear (/sc set tp). Atheling does swap in after I perform an action (such as Focus) but is it possible for the correct item to be swapped in when i enter the command '/sc set tp'.

    Relevant code:
    Code:
    <variables>
    <var name="Cape">Atheling Mantle</var>
    </variables>
    
    <rules>
           <if mode="or" spell="Perfect Counter" BuffActive="Perfect Counter">
                <action type="Var" cmd="set Cape Ultion Mantle" />
           </if>
           <else>
                <action type="Var" cmd="set Cape Atheling Mantle" />
           </else>	
    </rules>
    I'd need TP set linked to a dummy spell perhaps? Or Autoexec? (no experience with this).

  7. #2067
    Insert witty title here
    Join Date
    Jun 2007
    Posts
    1,191
    BG Level
    6
    FFXI Server
    Phoenix

    Autoexec would be easiest for this.

  8. #2068
    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 need Autoexec if you're not using a substitute spell/JA since it only reacts when you perform an action.

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

    Ok I've never used autoexec before and have couple of questions:

    Because I play 2 accounts i will need to make 2 xmls ie: autoexec_char1/2.xml?

    All I need in the autoexec file (for now at least) would be:

    Code:
    <autoexec>
    <register id="x" silent="true" event="losebuff_Perfect Counter">sc set TP</register>
    </autoexec>
    x being anything between 10000 and 65000.

    Correct? Thanks for the help.

  10. #2070
    The Spooniest of Bards
    Join Date
    Nov 2009
    Posts
    1,676
    BG Level
    6
    FFXIV Character
    Lucian Esperance
    FFXIV Server
    Sargatanas
    FFXI Server
    Shiva

    Quote Originally Posted by Yugl View Post
    Try this:

    Code:
    <!-- Changes Artemis' Medal/U Pendant/Feud Pendant based on Moon Phase/MP -->
    <if mode="and" skill="ElementalMagic" notspell="Burn*|Drown*|Choke*|Rasp*|Shock*|Frost*">
        <if MPPAfterCastLT="50" Advanced='"$UggPendant"=="1"'>
            <addtochat color="121">Uggalepih Pendant Latent: Active</addtochat>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <if advanced='"$ArtMedal"=="1" AND "%MOONPCT &gt; 80"'>
                <equip when="precast|midcast">
                    <neck lock="yes">Artemis' Medal</neck>
                    <addtochat color="121">Artemis' Medal grants MORE Magic Attack Bonus, U Pendant inactive</addtochat>
                </equip>
            </if>
            <else>
                <equip when="precast|midcast">
                    <neck lock="yes">Uggalepih Pendant</neck>
                </equip>
                <addtochat color="121">Uggalepih Pendant active</addtochat>
            </else>
        </if>
        <elseif advanced='"$ArtMedal"=="1" AND "%MOONPCT &gt; 30"'>
            <equip when="precast|midcast">
                <neck lock="yes">Artemis' Medal</neck>
            </equip>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <addtochat color="121">Artemis' Medal: Active</addtochat>
        </elseif>
        <elseif advanced='"%MOONPCT &lt; 31"'>
            <equip when="precast|midcast">
                <neck>Geotia Chain</neck>
            </equip>
            <addtochat color="121">Moon Phase: %Moon (%MOONPCT%)</addtochat>
            <addtochat color="121">Artemis' Medal: Inactive - Goetia Chain Equipped</addtochat>
        </elseif>
    </if>

    Tried that and got: "Error in Expression: Invalid right operand 1:64 for &&. Both operands must be of type bool. Spellcast: "1" == "1" and "90 > 30""

  11. #2071
    Radsourceful

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

    Change
    "%MOONPCT &gt; 30"
    to
    "%MOONPCT" &gt; "30"
    Same thing for 80 and 31, add the extra "

    Edit: also, change Geotia to Goetia

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

    To answer my own question, what I wrote did not work. I tried changing it to:

    Code:
    <register id="44441" silent="true" event="losebuff_Perfect Counter">sc var s Cape Atheling Mantle</register>
    and
    Code:
    <register id="44441" silent="true" event="losebuff_Perfect Counter">sc var s Cape Atheling Mantle; sc set TP</register>
    neither seems to work but when i manually enter the var command in the windower console and then '/sc set TP', the capes do swap.

    Wut am I doing wrong? I picked up the gist of the syntax from the windower.net page and this post

  13. #2073
    Radsourceful

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

    sc v s cape "Atheling Mantle"

    Right now it's swapping to just "Atheling"

  14. #2074
    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

    Spoiler: show
    <register silent="true" event="chat_emote_*_*">wait 1; input /emote luls</register>


    Any ideas on why it won't work? It works when I change emote to tell.

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

    Code:
    <elseif advanced='"$ArtMedal"=="1" AND "%MOONPCT &gt; 30"'>
    You have too many quotes. Should be this:

    Code:
    <elseif advanced='"$ArtMedal"=="1" AND %MOONPCT &gt; 30'>
    Quote Originally Posted by Radec View Post
    Change
    "%MOONPCT &gt; 30"
    to
    "%MOONPCT" &gt; "30"
    Same thing for 80 and 31, add the extra "
    Wrong. If you quote numbers, you will run into situations where "100" is less than "30" because it is being compared alphabetically since it is a string, instead of numerically.

  16. #2076
    Relic Shield
    Join Date
    Oct 2006
    Posts
    1,599
    BG Level
    6
    FFXI Server
    Odin

    Quote Originally Posted by Yugl View Post
    Spoiler: show
    <register silent="true" event="chat_emote_*_*">wait 1; input /emote luls</register>


    Any ideas on why it won't work? It works when I change emote to tell.
    try changing emote to * and see if it detects emotes. if it doesnt the emote scanning is broken

  17. #2077
    Radsourceful

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

    Quote Originally Posted by Cymmina View Post
    Wrong. If you quote numbers, you will run into situations where "100" is less than "30" because it is being compared alphabetically since it is a string, instead of numerically.
    mm, my mistake. Was copied from comparing set variable flags (0/1/2), ty.

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

    Quote Originally Posted by Radec View Post
    sc v s cape "Atheling Mantle"

    Right now it's swapping to just "Atheling"
    This isn't correct as I was able to enter the command successfully in to the windower console without quotes around atheling but it did get me on the right track.

    The problem was 'losebuff_Perfect Counter', spaces need to be replaced with underscores.

    Code:
    <register id="44440" silent="true" event="losebuff_Perfect_Counter">sc v s Cape Atheling Mantle; sc set TP</register>
    Is working correctly, swapping ultion out for atheling when perfect counter works.

  19. #2079
    Yarglebargle
    Join Date
    Feb 2010
    Posts
    3,304
    BG Level
    7
    FFXI Server
    Valefor

    Good spellcast for Masamune SAM with rules for Zerk up and Zerk down ws sets and pdt/mdt/idle sets? Same question for Kannagi NIN, with ninjutsu skill sets as well.

  20. #2080
    Hydra
    Join Date
    Oct 2006
    Posts
    133
    BG Level
    3

    Most of the time spellcast works fine, but randomly I'll get this error:
    "SpellCast: Error in Expression: Syntax error at position (a random number) near (random amount of garbage text)"

    It can go on for lines sometimes, sometimes reloading spellcast will fix the problem, but other times if ignore it, Windower will crash. It usually shows up if I happen to change through a ton of jobs without logging out.

    http://img684.imageshack.us/img684/1825/errorxl.png

Page 104 of 328 FirstFirst ... 54 94 102 103 104 105 106 114 154 ... 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