Item Search
     
BG-Wiki Search
Page 210 of 328 FirstFirst ... 160 200 208 209 210 211 212 220 260 ... LastLast
Results 4181 to 4200 of 6548
  1. #4181
    New Spam Forum
    Join Date
    Jul 2010
    Posts
    186
    BG Level
    3
    FFXI Server
    Bahamut

    Quote Originally Posted by Haborym View Post
    I still get the error.
    I don't recall making a macro for herb pastoral

    Is that a magic spell or a song?

    maybe it should be /so

    my macros use banishga V and other magic spells or WS's

    it took a big of fiddling, I had to remove the target portion to get it to work right.

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

    Command for reverting a single variable back the original value?

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

    I'd use /ma Reset <varname>, then in the Reset trap, have something like

    Code:
    <elseif advanced='"$%SpellTargetRaw" != ""'> [can't remember what it returns when the variable doesn't exist; use that as the check]
      <var cmd="set %SpellTargetRaw $Default%SpellTargetRaw" />
    </elseif>

  4. #4184
    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

    Any way to do that without having to type out the full name? Btw, I changed my <equip> model back to...

    Code:
    <equip set="$Weapon:$Mode(%Status)|$Armor(%Status)|$Movement(%Status)|$Override(%Status)">
    I might change $Weapon back to $Style. Atm, I'm unsure whether I want to use that or an overlay set [EX: Pet(Active):$Mode(Pet)] for BST/SMN.

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

    Quote Originally Posted by Yugl View Post
    Any way to do that without having to type out the full name? Btw, I changed my <equip> model back to...

    Code:
    <equip set="$Weapon:$Mode(%Status)|$Armor(%Status)|$Movement(%Status)|$Override(%Status)">
    I might change $Weapon back to $Style. Atm, I'm unsure whether I want to use that or an overlay set [EX: Pet(Active):$Mode(Pet)] for BST/SMN.
    For bst, it seems it would be style: Pet priority; master priority, or hybrid; BST doesn't really change style w/ stances like mnk, sam, dnc, nin do or differences between h2h, dual wield, single wield, and 2-handed styles from weapons.

    I think the override set is either for Twilight or Killer instinct.

    I think pup would work the same for pet vs master style toggling; although there might be times to use dagger on pup for Amber AoE.. dagger style might be different.. I've not played pup enough yet to offer a better opinion.

  6. #4186
    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

    Override is going to be a complete VAR set for mega-advanced users that like to mix in alias.

    <var name="TP-Body">Blah</var>
    <var name="TP-Hands">Blah</var>
    etc

    For specific stuff like Twilight or Killer instinct, I'll be doing . . .

    A variable for JA/Spell buffs per class + $BuffName(Active)

    With this method, I can have a single variable for asking whether a buff is active and discriminate precast/duration sets using $BuffName(Precast):Mode(%Status) and $BuffName(Active):Mode(%Status). This also lets you handle buff overlay sets on a TP Mode by TP Mode basis.

    As for style, the term merely refers to how you're taking offensive action. Typically, this means a weapon, but stuff like Footwork/Pets distort that. Stances like Hasso/Saber Dance can work through the overlay system.

    According to you, setting $Weapon to Pet/Weapon works. For hyrbid, I'm sure there is room using the TP Mode method rather than weapon.

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

    Well, you could always add in the variable specifically to your reset block, then allow for a shorthand glob check. EG:

    Code:
    <var name="BerserkMode">Off</var>
    
    <if Spell="Reset">
        <if SpellTargetRaw="bers*">
            <var cmd="set BerserkMode Off" />
        </if>
    </if>
    Though that might be somewhat limiting, depending on your purpose. I don't think there's any way to grep for an arbitrary variable name.

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

    I'll just limit the reset button to Armor/Movement/Override or multiples of these then I guess.

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

    question:

    Does this work for or in the advanced?

    Code:
    <if advanced='"%petname"="PrestoJulio|DiscreetLouise|FlowerpotMerle"'>
    					<var cmd="set Kookie Red Hot cracker" />
    </if>
    Or do I need to need to separate each possibility?

    Code:
    <if advanced='"%petname"="PrestoJulio" or "%petname"="DiscreetLouise"'>
    	<var cmd="set Kookie Red Hot cracker" />
    </if>

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

    Have to use the second one.

  11. #4191
    ccl
    ccl is offline
    Old Merits
    Join Date
    Sep 2008
    Posts
    1,016
    BG Level
    6
    FFXI Server
    Asura

    Any way to make different tp set depending on tp return fast enough to have it check before a hit ? I want to try to make different tp set depending on conserve tp proc but idk if that is possible.

  12. #4192
    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

    Depends on how fast the game loads TP and how fast AutoExec can read TP. If AE is fast, you can have AE read when you get TP and if TP=#, then input a variable to change your TP set. This will all depend on how your current XML is structured though.

  13. #4193
    ccl
    ccl is offline
    Old Merits
    Join Date
    Sep 2008
    Posts
    1,016
    BG Level
    6
    FFXI Server
    Asura

    Ok, should finish my spellcast (w/o) that rule tonight then I'll pastbin it and see if it can be done better; ty.

  14. #4194
    Yoshi P
    Join Date
    Dec 2006
    Posts
    5,360
    BG Level
    8
    WoW Realm
    Arthas

    Trying to use new gear crashes my windower. Tried the new resources on the windower forums, as well as the radsources one, and same story. What am I missing?

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

    Were you logged when you deleted the resources? Try logging off > Replace > Relog in.

  16. #4196
    xXNyteFyreXx420Sharingan
    Join Date
    May 2009
    Posts
    3,709
    BG Level
    7
    FFXI Server
    Fenrir

    Shouldn't need to relog, pretty sure /sc reload is sufficient. In a pinch, you can add the item yourself. The item id is the number in the ffxiah link, then just edit whatever language fields are relevant + jpl (level) and item name.

  17. #4197
    Special at 11:30 or w/e
    Sweaty Dick Punching Enthusiast

    Join Date
    Feb 2012
    Posts
    10,263
    BG Level
    9
    FFXIV Character
    Kalmado Espiritu
    FFXIV Server
    Gilgamesh
    FFXI Server
    Sylph
    Blog Entries
    4

    In the Spellcast folder, how do you set up xml's for two different characters, but for the same job?

  18. #4198
    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

    Name_Class.xml

  19. #4199
    Special at 11:30 or w/e
    Sweaty Dick Punching Enthusiast

    Join Date
    Feb 2012
    Posts
    10,263
    BG Level
    9
    FFXIV Character
    Kalmado Espiritu
    FFXIV Server
    Gilgamesh
    FFXI Server
    Sylph
    Blog Entries
    4

    Quote Originally Posted by Yugl View Post
    Name_Class.xml
    tyvm sir

  20. #4200
    Yoshi P
    Join Date
    Dec 2006
    Posts
    5,360
    BG Level
    8
    WoW Realm
    Arthas

    Quote Originally Posted by Yugl View Post
    Were you logged when you deleted the resources? Try logging off > Replace > Relog in.
    Yeah, what I had done was replace the files while game was running, than shut down and restart. Replacing while it wasn't running fixed it, with the radsources xml anyway.

    Quote Originally Posted by Nightfyre View Post
    Shouldn't need to relog, pretty sure /sc reload is sufficient.
    That was the first thing I tried and it crashed me.

Page 210 of 328 FirstFirst ... 160 200 208 209 210 211 212 220 260 ... 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