Item Search
     
BG-Wiki Search
Page 127 of 150 FirstFirst ... 77 117 125 126 127 128 129 137 ... LastLast
Results 2521 to 2540 of 2983
  1. #2521
    Old Merits
    Join Date
    Sep 2010
    Posts
    1,094
    BG Level
    6
    FFXI Server
    Ragnarok

    How the hell do you enter the Taurassic Park BC? Trading a Zelos Orb to the Wind Pillar in Bearclaw pinnacle does nothing...

  2. #2522
    Campaign
    Join Date
    Sep 2007
    Posts
    6,631
    BG Level
    8
    FFXIV Character
    Sean Kipling
    FFXIV Server
    Midgardsormr

    Quote Originally Posted by Uryuu View Post
    Anyone have a good autoexec thing for THF? I thought I remember it being just a .txt file you dropped in the folder, can't seem to find anything. Just trying to make it do basic stuff like keep my SA/TA on until it is used and etc. Or is it something I add into spellcast?
    Bump ><

  3. #2523
    Flowery Twats
    Join Date
    Jul 2008
    Posts
    3,583
    BG Level
    7

    If you stop using aftercasts in your Thf XML and have a idle/tp gear trigger spell macro, then you dont need to over-complicate things with auto-exec.
    Hit SA/TA/Both, wait for strike, hit idle macro to swap back to TP gear.
    For initial engaging you could do: If Status=Engaged > If BuffActive=Sneak Attack Equip=SA Set, Elseif BuffActive=Trick Attack Equip=TA Set, Else Equip=TP Set.
    Though I don't do this, my If Status=Engaged just swaps in Af2 hands and AF3 feet so no matter how I engage. Is annoying to engage, have your first strike level up to TH4 before you swap in your other TH gear, "wasting" the proc as it were.

    My rules:
    Code:
    	<rules>
    		<if status="engaged">
    			<equip when="engaged" set="TH" />
    		</if>
    		<if status="idle">
    			<equip when="idle" set="Idle" />
    		</if>
    		<if spell="Azure Lore">
    			<cancelspell />
    			<if status="engaged">
    				<equip set="TP" />
    			</if>
    			<elseif status="Idle">
    				<equip set="Idle" />
    			</elseif>
    		</if>
    		
    		<if spell="Trick Attack">
    			<if BuffActive="Sneak Attack">
    				<equip when="precast" set="SATA" />
    			</if>
    			<else>
    				<equip when="precast" set="TA" />
    			</else>
    		</if>
    		<if spell="Sneak Attack">
    			<if BuffActive="Trick Attack">
    				<equip when="precast" set="SATA" />
    			</if>
    			<else>
    				<equip when="precast" set="SA" />
    			</else>
    		</if>
    
    		
    		<if spell="Dancing Edge">
    			<if BuffActive="Sneak Attack">
    				<if BuffActive="Trick Attack">
    					<equip when="precast" set="SADancing" />
    				</if>
    				<elseif NotBuffActive="Trick Attack">
    					<equip when="precast" set="SADancing" />
    				</elseif>
    			</if>
    			<elseif BuffActive="Trick Attack">
    				<if BuffActive="Sneak Attack">
    					<equip when="precast" set="SADancing" />
    				</if>
    				<elseif NotBuffActive="Sneak Attack">
    					<equip when="precast" set="TADancing" />
    				</elseif>
    			</elseif>
    			<else>
    				<equip when="precast" set="Dancing" />
    			</else>
    		</if>
    		<if spell="Evisceration">
    			<if BuffActive="Sneak Attack">
    				<if BuffActive="Trick Attack">
    					<equip when="precast" set="Evis" />
    				</if>
    				<elseif NotBuffActive="Trick Attack">
    					<equip when="precast" set="Evis" />
    				</elseif>
    			</if>
    			<elseif BuffActive="Trick Attack">
    				<if BuffActive="Sneak Attack">
    					<equip when="precast" set="Evis" />
    				</if>
    				<elseif NotBuffActive="Sneak Attack">
    					<equip when="precast" set="TAEvis" />
    				</elseif>
    			</elseif>
    			<else>
    				<equip when="precast" set="Evis" />
    			</else>
    		</if>
    		<if spell="Exenterator">
    			<if BuffActive="Sneak Attack">
    				<if BuffActive="Trick Attack">
    					<equip when="precast" set="TAExen" />
    				</if>
    				<elseif NotBuffActive="Trick Attack">
    					<equip when="precast" set="SAExen" />
    				</elseif>
    			</if>
    			<elseif BuffActive="Trick Attack">
    				<if BuffActive="Sneak Attack">
    					<equip when="precast" set="TA" />
    				</if>
    				<elseif NotBuffActive="Sneak Attack">
    					<equip when="precast" set="TA" />
    				</elseif>
    			</elseif>
    			<else>
    				<equip when="precast" set="Exen" />
    			</else>
    		</if>
    		<if spell="Shark Bite|Mandalic Stab">
    			<if BuffActive="Sneak Attack">
    				<if BuffActive="Trick Attack">
    					<equip when="precast" set="SATAWS" />
    				</if>
    				<elseif NotBuffActive="Trick Attack">
    					<equip when="precast" set="SAWS" />
    				</elseif>
    			</if>
    			<elseif BuffActive="Trick Attack">
    				<if BuffActive="Sneak Attack">
    					<equip when="precast" set="SATAWS" />
    				</if>
    				<elseif NotBuffActive="Sneak Attack">
    					<equip when="precast" set="TAWS" />
    				</elseif>
    			</elseif>
    			<else>
    				<equip when="precast" set="SAWS" />
    			</else>
    		</if>
    		<if spell="Aeolian Edge">
    			<equip when="precast" set="AE" />
    		</if>
    		<if spell="Flee">
    			<equip when="precast">
    				<feet>Rogue's Poulaines</feet>
    			</equip>
    			<equip when="aftercast">
    				<feet>Skadi's Jambeaux</feet>
    			</equip>
    		</if>
    		<if spell="ranged">
    			<equip when="precast" set="Racc" />
    		</if>
    		<if skill="Ninjutsu">
    			<equip when="precast" set="Utsusemi" />
    		</if>
    	</rules>
    As you can see, it's all really basic. Don't find a need for lots of advanced rules and variables. Evasion, Hybrid and MDT sets are just equipped with simple /console sc set Gearset macros.

  4. #2524
    Hydra
    Join Date
    Jun 2010
    Posts
    114
    BG Level
    3

    climb to the top of uleguerand for the correct bearclaw entrance, instead of falling down the hole.

  5. #2525
    CoP Dynamis
    Join Date
    Mar 2010
    Posts
    252
    BG Level
    4

    which of the new merits ws is better for rng? the archery or gun ws?

  6. #2526
    Old Merits
    Join Date
    Sep 2010
    Posts
    1,094
    BG Level
    6
    FFXI Server
    Ragnarok

    Quote Originally Posted by kittycatrag View Post
    climb to the top of uleguerand for the correct bearclaw entrance, instead of falling down the hole.
    The correct entrance being the one behind the icewall on the frozen lake? If that's the case, I did so.

  7. #2527
    Sea Torques
    Join Date
    Sep 2009
    Posts
    534
    BG Level
    5

    Quote Originally Posted by Martel View Post
    The correct entrance being the one behind the icewall on the frozen lake? If that's the case, I did so.
    No, that's the ENM entrance. The correct entrance is almost at the start of the zone, iirc in the underground area of the first area with Tauri(confusing but I don't know how to describe it better).

  8. #2528
    Sea Torques
    Join Date
    Dec 2009
    Posts
    547
    BG Level
    5

    How much Fast Cast is on Athos's Chapeau?

  9. #2529
    Banned.

    Join Date
    Aug 2007
    Posts
    2,751
    BG Level
    7
    FFXI Server
    Carbuncle
    WoW Realm
    Trollbane

    I think somebody said it was 2%?

  10. #2530
    Old Merits
    Join Date
    Sep 2010
    Posts
    1,094
    BG Level
    6
    FFXI Server
    Ragnarok

    Quote Originally Posted by Kalasin View Post
    No, that's the ENM entrance. The correct entrance is almost at the start of the zone, iirc in the underground area of the first area with Tauri(confusing but I don't know how to describe it better).
    Alright. I'll give that a try. thanks.

  11. #2531
    D. Ring
    Join Date
    Feb 2007
    Posts
    4,736
    BG Level
    7
    FFXI Server
    Quetzalcoatl

    Is it possible to have both koki and ei available on war at the same time? From what I see it's no because of lolbushi but there could be an item or two I didn't notice. Searches already don't show at least one of the skill+ items I know about

  12. #2532
    Radsourceful

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

    Quote Originally Posted by Khajit View Post
    Is it possible to have both koki and ei available on war at the same time? From what I see it's no because of lolbushi but there could be an item or two I didn't notice. Searches already don't show at least one of the skill+ items I know about
    WAR/NIN is 136 Gkat, 147 Katana
    +16 to each in merits,
    152/175, 163/175
    +7skill neck, +5skill head for Katana, +7Skill Neck, +6 Skill head (Faz. Helm +1), +5 Skill ring (Moepapa Annulet), +5skill Ear (Bushi)
    175/175GKat, 175/175 Katana

    You need a Bushi, but it's possible.

  13. #2533
    Puppetmaster
    Join Date
    Oct 2009
    Posts
    62
    BG Level
    2
    FFXI Server
    Quetzalcoatl

    Apollyon zone with the best drop% on ebony lacquer(ninja item)?

  14. #2534
    New Merits
    Join Date
    Jan 2009
    Posts
    204
    BG Level
    4
    FFXI Server
    Ragnarok

    I have done no voidwatch, is it possible to do lower tiers, with a low man group (5-6 people) at 99?

  15. #2535
    Cerberus
    Join Date
    Nov 2006
    Posts
    443
    BG Level
    4
    FFXI Server
    Titan

    Quote Originally Posted by Taim Meich View Post
    Voidwrought's and Kaggen's, that is, Discipline and Coercion.
    you can leave discipline at 10 you get the +20 save tp

  16. #2536
    First invited, last in the zone.
    Join Date
    Sep 2008
    Posts
    1,448
    BG Level
    6
    FFXI Server
    Lakshmi

    Quote Originally Posted by Kayu View Post
    you can leave discipline at 10 you get the +20 save tp
    Bumping it to 11 does get you +1 to all stats though (on top of the +1% HP and MDef that every rank gives)

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

    Quote Originally Posted by Haxx View Post
    Apollyon zone with the best drop% on ebony lacquer(ninja item)?
    SW 3f is very generous with lacquers and you can easily solo to that point on NIN if you don't have a better soloing option.

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

    Quote Originally Posted by Colenzo View Post
    I think somebody said it was 2%?
    Can anyone confirm this? Debating whether or not I should use my mini-expansion hat for FC.

  19. #2539
    Aja
    Aja is offline
    Relic Weapons
    Join Date
    Jul 2008
    Posts
    384
    BG Level
    4
    FFXI Server
    Asura

    Belt/Gorget for Last Stand? If yes, which ones work?

  20. #2540
    Ridill
    Join Date
    Apr 2011
    Posts
    23,594
    BG Level
    10
    FFXI Server
    Bahamut

    Quote Originally Posted by Aja View Post
    Belt/Gorget for Last Stand? If yes, which ones work?
    I assume you are asking if you should use the elemental ones and the answer is yes. https://www.bg-wiki.com/bg/Last_Stand for which ones

Page 127 of 150 FirstFirst ... 77 117 125 126 127 128 129 137 ... LastLast

Similar Threads

  1. Random Question Thread XXVI: The Rise and Fall of the RQT
    By isladar in forum FFXI: Everything
    Replies: 2978
    Last Post: 2012-07-04, 09:56
  2. Random Question Thread XXII: You Know the Deal
    By isladar in forum FFXI: Everything
    Replies: 2948
    Last Post: 2011-08-23, 22:31
  3. Replies: 3028
    Last Post: 2011-05-24, 18:51
  4. Replies: 1487
    Last Post: 2010-11-10, 22:05
  5. Randomer Question Thread
    By aurik in forum FFXI: Everything
    Replies: 8518
    Last Post: 2009-07-06, 14:22
  6. Random Question Thread
    By Rocl in forum FFXI: Everything
    Replies: 2934
    Last Post: 2008-01-17, 13:43
  7. [WoTG] Random question thread
    By Koyangi in forum FFXI: Everything
    Replies: 165
    Last Post: 2008-01-02, 21:30