Item Search
     
BG-Wiki Search
Page 291 of 328 FirstFirst ... 241 281 289 290 291 292 293 301 ... LastLast
Results 5801 to 5820 of 6548
  1. #5801
    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 Vyvian View Post
    I was helping a friend write a warrior xml to his specifications, and its kind of a WIP still, but he ran into a problem I can't figure out. When he uses Restraint, it recognizes restraint enough to process a precast to equip his AF3+2 gloves, but in the same <if> block, I flag a variable for restraint so that I can keep those gloves equipped later, this variable is not getting set.

    I even as a test had him use restraint alone from the menu to see if it was a "buttons too fast" issue, and the variable stays at BlankSet.

    I've uploaded a copy to pastebin:
    http://pastebin.com/uqp24wQM
    Did he unload > delete > update SC?

  2. #5802
    Relic Weapons
    Join Date
    Sep 2007
    Posts
    377
    BG Level
    4
    FFXIV Character
    Caprese Dionir
    FFXIV Server
    Hyperion
    FFXI Server
    Sylph

    Yeah, I had accidentally sent him the last update with ShowGearSwaps on, and he had to re-DL from me to fix that. He said an older revision worked before this one, but the only change was the "wait 1;Trigger1" on the last revision.

  3. #5803
    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 Lamo View Post
    Restraint wont equip and it changes hands when I use bregressor
    The onry issue I can see atm is if you didn't delete/update SC tbh.

  4. #5804
    RIDE ARMOR
    Join Date
    Sep 2009
    Posts
    22
    BG Level
    1
    FFXI Server
    Asura

    Just did it again(deleted SC) to be safe and its a no go I give up. Thanks for helping though

  5. #5805
    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 Vyvian View Post
    Yeah, I had accidentally sent him the last update with ShowGearSwaps on, and he had to re-DL from me to fix that. He said an older revision worked before this one, but the only change was the "wait 1;Trigger1" on the last revision.
    When I tested the SC, RestraintUP appears if an action happens after restraint. However, spell="Restraint" isn't reacting.

    Code:
    		<if mode="OR" spell="Restraint" BuffActive="Restraint">
    			<equip when="precast|midcast|aftercast">
    				<hands>Ravager's Mufflers +2</hands>
    			</equip>
    			<var cmd="set Restraint RestraintUp" />
    		</if>
    		<else>
    			<var cmd="set Restraint BlankSet" />
    		</else>
    Not sure why that isn't occurring, but if he adds a trigger spell post-status buff, that may work.

  6. #5806
    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 Lamo View Post
    Just did it again(deleted SC) to be safe and its a no go I give up. Thanks for helping though
    I just checked and your variable is fine when using Berserk/Aggressor.


  7. #5807
    RIDE ARMOR
    Join Date
    Sep 2009
    Posts
    22
    BG Level
    1
    FFXI Server
    Asura

    Well what the deuce lol

  8. #5808
    Relic Weapons
    Join Date
    Sep 2007
    Posts
    377
    BG Level
    4
    FFXIV Character
    Caprese Dionir
    FFXIV Server
    Hyperion
    FFXI Server
    Sylph

    Quote Originally Posted by Yugl View Post
    When I tested the SC, RestraintUP appears if an action happens after restraint. However, spell="Restraint" isn't reacting.

    Not sure why that isn't occurring, but if he adds a trigger spell post-status buff, that may work.
    Odd, that's basically exactly backwards of his problem. For him, the Spell="Restraint" triggers, but it doesn't want to recognize the buffactive (which means its probably loading the "else" and undoing the variable back to BlankSet). I realize your original question was probably regarding his actual spellcast dll, which I'm not sure, I'll have him do it again to be sure he has the newest.

  9. #5809
    Puppetmaster
    Join Date
    Dec 2011
    Posts
    57
    BG Level
    2

    Quote Originally Posted by Vyvian View Post
    Odd, that's basically exactly backwards of his problem. For him, the Spell="Restraint" triggers, but it doesn't want to recognize the buffactive (which means its probably loading the "else" and undoing the variable back to BlankSet). I realize your original question was probably regarding his actual spellcast dll, which I'm not sure, I'll have him do it again to be sure he has the newest.
    Ok i am having the same problem with restraint. I have updated everything and all of a sudden its not working. I have been using it for quite a while with no problems.

    Anyways, i also tried adding new rules for different sets using the "Poison V" trigger, and i can't get it to work, any suggestions to fix would be much appreciated.

    http://pastebin.com/Ty7H90AA

    Also with regard to restraint, i went back and used my old xml (Before i added the Poison V sets) and still did not work.

  10. #5810
    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 don't see a rule to set the variable to Restraint when used. If using AE to do that, I've noticed people have issues with AE. What is the issue with Poison V trigger spells?

  11. #5811
    Relic Weapons
    Join Date
    Sep 2007
    Posts
    377
    BG Level
    4
    FFXIV Character
    Caprese Dionir
    FFXIV Server
    Hyperion
    FFXI Server
    Sylph

    Quote Originally Posted by Vyvian View Post
    Odd, that's basically exactly backwards of his problem. For him, the Spell="Restraint" triggers, but it doesn't want to recognize the buffactive (which means its probably loading the "else" and undoing the variable back to BlankSet). I realize your original question was probably regarding his actual spellcast dll, which I'm not sure, I'll have him do it again to be sure he has the newest.
    I asked him to delete his SC dll, redownload the newest version from Windower and try again and he said he is working now.

  12. #5812
    Puppetmaster
    Join Date
    Dec 2011
    Posts
    57
    BG Level
    2

    Quote Originally Posted by Yugl View Post
    I don't see a rule to set the variable to Restraint when used. If using AE to do that, I've noticed people have issues with AE. What is the issue with Poison V trigger spells?
    Sorry posted right as I was getting ready to hit the sack and I realize I was not very clear. Ok the poison v rule is not changing gear, I do see the spellcast comment in chat that its is picking the different sets.

    With regard to AE http://pastebin.com/CibLFyQS contains my AE rules, which is where the restraint rules are. At this point I am happy to move those rules to spellcast and just hit 2 macros if needed. Same thing with the aftermath sets, I am fine with just hitting two macros.(aftermath also only works once in a while which again is probably AE being glitchy)

    I am thinking of just not using AE. To be honest while my spellcast skills have improved tremendously since I started reading this thread but some of the more advanced language still eludes me.

  13. #5813
    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 you add the buff rule before your dancing chains rule, you shouldn't need to hit 2 macros. When your DancingChains hits, SC should read the "Buffactive=Restraint" piece and use that when updating the gear.

  14. #5814
    Salvage Bans
    Join Date
    Aug 2006
    Posts
    932
    BG Level
    5
    FFXIV Character
    Mist Monster
    FFXIV Server
    Leviathan
    FFXI Server
    Fenrir

    Hopefully easy (and probably really dumb) question. I was trying to use Motenten's SCH r3 spellcast (since I love his blm one) but I get "SpellCast: Did not find Set: NoneSet in Group: Outside-Group"

    I tried checking between the BLM and the SCH ones and I can't tell what the difference is. Tried searching.. is there something I'm suppose to set on SCH that I'm missing?

    Thanks in advance

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

    Quote Originally Posted by mistmonster View Post
    Hopefully easy (and probably really dumb) question. I was trying to use Motenten's SCH r3 spellcast (since I love his blm one) but I get "SpellCast: Did not find Set: NoneSet in Group: Outside-Group"

    I tried checking between the BLM and the SCH ones and I can't tell what the difference is. Tried searching.. is there something I'm suppose to set on SCH that I'm missing?

    Thanks in advance
    Don't know, but do you have the correct includes?

  16. #5816
    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

    He probably has <equip set="$VariableSet" /> with $Variable's value as "None." You need to find which equip that is.

  17. #5817
    CoP Dynamis
    Join Date
    Jul 2007
    Posts
    270
    BG Level
    4
    FFXI Server
    Asura

    Hi, i'm looking for a way to make my chant du cygne macro automatically use another weaponskill instead, say vorpal blade, only when almace is not equipped. Obviously just because i'm out of macro space on PLD and running out of extra keys to bind. I can't really pastebin it yet because im still making it still, but the weaponskill section looks like this currently:

    Code:
    <elseif type="WeaponSkill">
                <castdelay delay="$Delay-JA" />
                <if spell="Chant du Cygne|Vorpal Blade">
                    <equip when="precast|midcast" set="%Spell-$VAR-WS" />
                </if>
                <elseif spell="Atonement|Requiescat|Aeolian Edge|Sanguine Blade">
                    <equip when="precast|midcast" set="%Spell" />
                </elseif>
                <else>
                    <equip when="precast|midcast" set="WS Base" />
                </else>
            </elseif>
    My hopes as i said, would be for a way to use /ws "Chant du cygne" and if almace isn't on, it uses vorpal blade instead, while leaving the rest of the weaponskill rules unaffected. If this is possible, i would appreciate the help setting it up.

    Thanks in advance for any input.

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

    Code:
    <elseif type="WeaponSkill">
                <castdelay delay="$Delay-JA" />
                <if spell="Chant du Cygne|Vorpal Blade">
    <if notEquipMain="Almace">
    <changespell spell="Vorpal Blade" />
    </if>
                    <equip when="precast|midcast" set="%Spell-$VAR-WS" />
                </if>
                <elseif spell="Atonement|Requiescat|Aeolian Edge|Sanguine Blade">
                    <equip when="precast|midcast" set="%Spell" />
                </elseif>
                <else>
                    <equip when="precast|midcast" set="WS Base" />
                </else>
            </elseif>
    ???

  19. #5819
    CoP Dynamis
    Join Date
    Jul 2007
    Posts
    270
    BG Level
    4
    FFXI Server
    Asura

    Ah ya, that makes sense, i was just having a brain fart and couldn't think of the way to do it, thanks for the quick reply.

  20. #5820
    Salvage Bans
    Join Date
    Aug 2006
    Posts
    932
    BG Level
    5
    FFXIV Character
    Mist Monster
    FFXIV Server
    Leviathan
    FFXI Server
    Fenrir

    Quote Originally Posted by grevenilvec75 View Post
    Don't know, but do you have the correct includes?
    I'm pretty sure I do because the BLM one works great

    Quote Originally Posted by Yugl View Post
    He probably has <equip set="$VariableSet" /> with $Variable's value as "None." You need to find which equip that is.
    I assume this is directed at me, but I don't see anything like this. Right now I have the sch.xlm exactly as Motenten and it still gives me that error. I know its got to be something I just didn't set of fill out right ><

Page 291 of 328 FirstFirst ... 241 281 289 290 291 292 293 301 ... 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