Item Search
     
BG-Wiki Search
Page 204 of 328 FirstFirst ... 154 194 202 203 204 205 206 214 254 ... LastLast
Results 4061 to 4080 of 6548
  1. #4061
    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

    Well that code works then.

  2. #4062
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    A little confused oh how to work certain days into a rule. Specifically I want Mekira-oto +1 to only be equipped with zerk up, and on the days its active.

  3. #4063
    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

    Since there's no natural way to grab WS SC property, you'll need to make a variable yourself.

    <var name="Ukko's Fury-SC">Elementday|Elementday2|Elementday3</var>

    And replace Element with Fire/Light or w/e.

    <if Day="$Ukko's Fury-SC">
    blah blah

  4. #4064
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    This should work then?
    Code:
    <var name="Ukko's Fury-SC">Light|Thunder|Wind|Fire</var>
    
    <if notbuffactive="Berserk" Day="$Ukko's Fury-SC">
    	<var cmd="set WSHead Mekira-oto +1" />
    </if>
    <else>
    	<var cmd="set WSHead Ravager's Mask +2" />
    </esle>
    Edit: No that doesn't quit do it; I still want meki when zerk is up.
    Edit 2: I'm tired and dumb, that would work because I have separate zerk sets.

  5. #4065
    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 forgot 'day' after each. Lightday, Lightningday, Windsday, Fireday. Perhaps use $Ukkos_Fury instead as well.

    <if mode="OR" buffactive="berserk" Day="$Ukkos_Fury-SC">
    <equip stuff>

  6. #4066
    Radsourceful

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

    Quote Originally Posted by Haborym View Post
    This should work then?
    Code:
    <var name="Ukko's Fury-SC">Light|Thunder|Wind|Fire</var>
    
    <if notbuffactive="Berserk" Day="$Ukko's Fury-SC">
    	<var cmd="set WSHead Mekira-oto +1" />
    </if>
    <else>
    	<var cmd="set WSHead Ravager's Mask +2" />
    </esle>
    Edit: No that doesn't quit do it; I still want meki when zerk is up.
    The default mode for if statements is AND - if no berserk AND the right day, use mekira. Change it to <if mode="OR" ....

  7. #4067
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    I want it to be AND, I only want meki be equipped if the day matches and zerk is down.

  8. #4068
    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

    <if buffactive="berserk" Day="$Ukkos_Fury-SC"> and change the variable name then.

  9. #4069
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    I have;
    Code:
    <var name="Ukko's_Fury-SC">Lightday|Thunderday|Windday|Fireday</var>
    
    <if notbuffactive="Berserk" Day="$Ukko's_Fury-SC">
    	<var cmd="set WSHead Mekira-oto +1" />
    </if>
    <else>
    	<var cmd="set WSHead Ravager's Mask +2" />
    </esle>
    Which should use Ravager's when berserk is down and Meki isn't active.

  10. #4070
    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

    Ya, that's what I meant. Your listing for the variable is still wrong though.

    http://wiki.windower.net/plugins/spellcast/rules

    Check 'Day' and you should see the correct label for each. For example, it's Lightnings not Thunder.

  11. #4071
    Salvage Bans
    Join Date
    Mar 2010
    Posts
    769
    BG Level
    5
    FFXI Server
    Leviathan

    Yeah sorry, I fixed that. I also had the armor backwards -- Like I said, I'm tired lol.

    Thanks for the help.

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

    Why can't you just do:

    <if spell="Ukko's Fury">
    <if mode="AND" notBuffActive="Berserk" Day="Lightday|Lightningday|Windsday|Fireday">
    <equip>
    </if>
    </if>

    Why do you need a var?

  13. #4073
    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 do that. VAR opens up options for other WS though. If you wanted to use that same line with other WS, for example, you would just need to make the var and change to rule to

    <if notBuffactive="Berserk" Day="$%Spell-SC">

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

    Quote Originally Posted by Yugl View Post
    You can do that. VAR opens up options for other WS though. If you wanted to use that same line with other WS, for example, you would just need to make the var and change to rule to

    <if notBuffactive="Berserk" Day="$%Spell-SC">
    Then you'd have to make a custom var for each WS. Still seems worse than just hard coding all of your WSes.

    More of a preference thing really I guess.

  15. #4075
    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

    Could also do a reverse code and have a VAR for each Element and just add the WS to that.

    <var name="Thunder-SC">Ukko's Fury|WS2|WS3</var>

    <if notBuffactive="Berserk" Spell="$%DayElement-SC">

    If you put the variables within your include, you can use that for multiple classes/WS.

  16. #4076
    Fishing Guru
    Join Date
    Jan 2007
    Posts
    4,722
    BG Level
    7

    Any simple way to equip Hvergelmir>engage enemy>use dusty wing>use Myrkr in VW? I tried doing it with a simple in-game macro but apparently based on this rule: <equip when="Idle|aftercast" set="Idle" /> SC keeps re-equipping my idle set after I use the Dusty Wing.

  17. #4077
    Chram
    Join Date
    Sep 2007
    Posts
    2,526
    BG Level
    7
    FFXI Server
    Fenrir

    Put a weapon lock rule in that prevents changing main/sub if your weapon is the Hver staff. Example (put at top of Rules section):

    Code:
        <if EquipMain="Hvergelmir">
            <lock slot="main|sub|range" when="All" lock="yes" />
        </if>
    Game macro should work fine, then.

  18. #4078
    Fishing Guru
    Join Date
    Jan 2007
    Posts
    4,722
    BG Level
    7

    Quote Originally Posted by Motenten View Post
    Put a weapon lock rule in that prevents changing main/sub if your weapon is the Hver staff. Example (put at top of Rules section):

    Code:
        <if EquipMain="Hvergelmir">
            <lock slot="main|sub|range" when="All" lock="yes" />
        </if>
    Game macro should work fine, then.
    Stupid question probably, but will I have to do something to unlock that slot before proceeding to nuke more?

  19. #4079
    Chram
    Join Date
    Sep 2007
    Posts
    2,526
    BG Level
    7
    FFXI Server
    Fenrir

    Only if you nuke with the Hvel. Otherwise just swap the weapon to something else after using Myrkr and everything will work normally.

  20. #4080
    Fishing Guru
    Join Date
    Jan 2007
    Posts
    4,722
    BG Level
    7

    Quote Originally Posted by Motenten View Post
    Only if you nuke with the Hvel. Otherwise just swap the weapon to something else after using Myrkr and everything will work normally.
    If only...ty for help

Page 204 of 328 FirstFirst ... 154 194 202 203 204 205 206 214 254 ... 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