Item Search
     
BG-Wiki Search
Page 236 of 328 FirstFirst ... 186 226 234 235 236 237 238 246 286 ... LastLast
Results 4701 to 4720 of 6548
  1. #4701
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    1
    BG Level
    0

    Had to use a friends account to post that link, since you can't post url's here unless you have 10 posts.

    Turning that off fixed both items, thanks a lot!

    I understand what happened, and fixed the refresh set body instead of just turning it off. You're right though I still don't understand the spectacles, but if it works it works!

  2. #4702
    Melee Summoner
    Join Date
    Mar 2011
    Posts
    28
    BG Level
    1
    FFXI Server
    Ragnarok

    Need to make some legion-specific rules. Would <if Area="*Legion"> work for legion zones? Don't want to test this in legion when I don't have time to figure it out.

  3. #4703
    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 grevenilvec75 View Post
    Too sleepy to figure it out myself:

    What's the autoexec code to load a lightluggage profile when I enter dynamis and unload it when i leave.
    AE site is down, but perhaps:

    <register silent="true" event="Area_*">ll profile NameOfProfile</register>
    <register silent="true" event="Area_Dynamis*">ll profile NameOfDynamisProfile</register>

    Quote Originally Posted by Ganukay View Post
    Need to make some legion-specific rules. Would <if Area="*Legion"> work for legion zones? Don't want to test this in legion when I don't have time to figure it out.
    That should work.

  4. #4704
    Melee Summoner
    Join Date
    Jun 2012
    Posts
    30
    BG Level
    1

    Could I please get some help w/ this xml, it wont equip idle set after casting Utsusemi, when idle. Thanks in advance!

    pastebin.com/NaBJjjx0

  5. #4705
    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 mode="OR" TimeGT="18.00" TimeLT="6.00">
                <equip set="IdleNight" when="Idle" />
            </elseif>
            <else>
                <equip set="IdleDay" when="Idle" />
            </else>
    Add aftercast this part.

    when="Idle|aftercast"

  6. #4706
    Melee Summoner
    Join Date
    Jun 2012
    Posts
    30
    BG Level
    1

    Thanks Yugl! I'll test it out later today, after work.

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

    Added Imoq's XMLs (Guildwork).

  8. #4708
    Melee Summoner
    Join Date
    Jun 2012
    Posts
    30
    BG Level
    1

    Quote Originally Posted by Yugl View Post
    Code:
            <elseif mode="OR" TimeGT="18.00" TimeLT="6.00">
                <equip set="IdleNight" when="Idle" />
            </elseif>
            <else>
                <equip set="IdleDay" when="Idle" />
            </else>
    Add aftercast this part.

    when="Idle|aftercast"
    I added "when="Idle|aftercast"" for both IdleDay and IdleNight. But, now while engaged, I switch to Idle sets after doing JA's/WS's and Utsusemi. Please help. It does switch initially to my TP set upon engaging. Thanks!

  9. #4709
    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:
    <if status="Idle">
            <elseif mode="OR" TimeGT="18.00" TimeLT="6.00">
                <equip set="IdleNight" when="Idle|aftercast" />
            </elseif>
            <else>
                <equip set="IdleDay" when="Idle|aftercast" />
            </else>
    </if>
    Try that.

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

    @Selassie:

    Code:
            <if Status="Engaged">
                <if EquipMain="Kamome|Kannagi|Crimson Blade|Twilight Knife">
                    <equip when="Engaged|Aftercast" set="TP"/>
                </if>
                <!-- Abyssea Weaponskill rules -->
                <if Area="Abyssea*">
                    <if Spell="Blade: Hi">
                        <equip when="Precast" set="InsideHi" />
                    </if>
                </if>
                <!-- Outside Abyssea Weaponskill rules -->
                <else>
                    <if Spell="Blade: Hi">
                        <equip when="Precast" set="OutsideHi" />
                    </if>
                    <if Spell="Blade: Jin">
                        <equip when="Precast" set="Jin" />
                    </if>
                </else>
            </if>
            
            ...
    
            <if EquipMain="Terra's Staff|Honebami|Pitchfork">
                <equip set="TP" when="Engaged|Aftercast" />
            </if>
            <elseif mode="OR" TimeGT="18.00" TimeLT="6.00">
                <equip set="IdleNight" when="Idle" />
            </elseif>
            <else>
                <equip set="IdleDay" when="Idle" />
            </else>

    Your Terra's Staff/Honebami/Pitchfork rule should just be part of the original Status="Engaged" check, along with the rest of the weapons; it does the same thing.

    The elseif/else trailing part of that set should be enclosed in an Else after the Status="Engaged" check, since those only matter when you're not engaged. Due to that change, you can safely add the |aftercast portion to the when attribute.

    Revised:

    Code:
            <if Status="Engaged">
                <if EquipMain="Kamome|Kannagi|Crimson Blade|Twilight Knife|Terra's Staff|Honebami|Pitchfork">
                    <equip when="Engaged|Aftercast" set="TP"/>
                </if>
                <!-- Abyssea Weaponskill rules -->
                <if Area="Abyssea*">
                    <if Spell="Blade: Hi">
                        <equip when="Precast" set="InsideHi" />
                    </if>
                </if>
                <!-- Outside Abyssea Weaponskill rules -->
                <else>
                    <if Spell="Blade: Hi">
                        <equip when="Precast" set="OutsideHi" />
                    </if>
                    <if Spell="Blade: Jin">
                        <equip when="Precast" set="Jin" />
                    </if>
                </else>
            </if>
            <else>
                <if mode="OR" TimeGT="18.00" TimeLT="6.00">
                    <equip set="IdleNight" when="Idle|Aftercast" />
                </if>
                <else>
                    <equip set="IdleDay" when="Idle|Aftercast" />
                </else>
            </else>

  11. #4711
    Melee Summoner
    Join Date
    Jun 2012
    Posts
    30
    BG Level
    1

    That fixed it! Thanks!

  12. #4712
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    3
    BG Level
    0

    Hello all,

    I am having a little trouble understanding how the Alias work. I am looking at Xilk's BST script and I have done what was said in the notes on his bst.xml. But when I say ofr example type //lulush in game it doesn't equip the Jug, but it comes up with an error where it has tried to callbeast.

    I don't understand what Im supost to be doing. I have tried looking up help on Alias ect but nothing that explains what I have to do.

    Please can someone help explain or point me in the right direction.

    Many Thanks
    Dueon

  13. #4713
    Banned.

    Join Date
    Aug 2010
    Posts
    1,775
    BG Level
    6

    http://pastebin.com/j0wTd8hu

    Healing breath isn't triggering at 50% HP.

    I thought I had everything in order months ago, but I decided to go /WHM for the first time in a while and headed to Dynamis. Surprise! My wyvern only wants to heal me at the normal 33% hp mark. What did I do wrong here?

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

    Quote Originally Posted by GoggleHead View Post
    http://pastebin.com/j0wTd8hu

    Healing breath isn't triggering at 50% HP.

    I thought I had everything in order months ago, but I decided to go /WHM for the first time in a while and headed to Dynamis. Surprise! My wyvern only wants to heal me at the normal 33% hp mark. What did I do wrong here?
    You aren't wearing your AF hat long enough. This will work no matter how long it takes to cast a spell (prebreath = AF hat, midbreath = relic hat/wyvern hp):

    Code:
    			<var cmd="set BreathDelay %Casttime" />
    			<var cmd="inc BreathDelay" />
    			
    			<equip when="Precast" set="FastCast|PreBreath" />
    			<equip when="Midcast" set="MidBreath" />
    			<midcastdelay delay="$BreathDelay" />
    			<aftercastdelay delay="3.5" />

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

    Quote Originally Posted by dueon View Post
    Hello all,

    I am having a little trouble understanding how the Alias work. I am looking at Xilk's BST script and I have done what was said in the notes on his bst.xml. But when I say ofr example type //lulush in game it doesn't equip the Jug, but it comes up with an error where it has tried to callbeast.

    I don't understand what Im supost to be doing. I have tried looking up help on Alias ect but nothing that explains what I have to do.

    Please can someone help explain or point me in the right direction.

    Many Thanks
    Dueon

    use alias 1.4 and spellcast 1.5

    otherwise you'll have to tweak the wait times on ja's

  16. #4716
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    3
    BG Level
    0

    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.

  17. #4717
    Smells like Onions
    Join Date
    Jul 2012
    Posts
    6
    BG Level
    0

    ok so i made this smn xml from scratch i like it but i'm having trouble getting it to recognize when i have an avatar out. what i want is after i cast cure instead of going back to my idle gear if i have an avatar out i want it to go back to my avatar perpetuation gear. it's not doing that it's going back to my idle gear if you can halp please it'll be greatly appreciated you'll have type beginning of the link manually cuz says i have to post 10 times before i can post a link...

    pastebin.com/Rw4gWR7E

  18. #4718
    spider123
    Guest

    Is there a handy tool to update any old spellcast xml? I've been using 2.24 (Don't judge me) since I didn't want to learn any of the new rules, but now I can't seem to find any older versions, and my now (outdated) xml don't function in 2.4.5! Halp! D:

    http://pastebin.com/b7DA87PW

  19. #4719
    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

    There used to be, but the windower webpage for doing so is down.

  20. #4720
    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 blasdoo View Post
    ok so i made this smn xml from scratch i like it but i'm having trouble getting it to recognize when i have an avatar out. what i want is after i cast cure instead of going back to my idle gear if i have an avatar out i want it to go back to my avatar perpetuation gear. it's not doing that it's going back to my idle gear if you can halp please it'll be greatly appreciated you'll have type beginning of the link manually cuz says i have to post 10 times before i can post a link...

    pastebin.com/Rw4gWR7E
    Code:
    		<elseif spell="Cure*|Curaga*">
    				<action type="equip" when="precast" set="CurePot" />
    				<action type="equip" When="midcast">
    					<main>Surya's Staff +2</main>
    				</action>
    			<if PetElement= "none"> 
    				<equip when="aftercast" set="Standard" />
    			</if>
    			<else>
                                     <equip when="aftercast" set="AvatarPerp" />
                             </else>
    		</elseif>
    Try that.

Page 236 of 328 FirstFirst ... 186 226 234 235 236 237 238 246 286 ... 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