Endeavoring To Awaken --A Guide To Rune Fencer

言語: JP EN DE FR
2010-06-21
New Items
users online
フォーラム » FFXI » Jobs » Rune Fencer » Endeavoring to Awaken --A Guide to Rune Fencer
Endeavoring to Awaken --A Guide to Rune Fencer
First Page 2 3 ... 121 122 123 ... 188 189 190
 Siren.Kyte
Offline
サーバ: Siren
Game: FFXI
Posts: 3331
By Siren.Kyte 2017-11-21 14:18:48  
Last I checked, Knobkierrie spreadsheeted ahead of the other options at capped accuracy (and I think capped attack as well), which doesn't seem too outlandish so I don't have any real reason to question it. Obviously it should be the first accuracy swap, though.
[+]
 Fenrir.Snaps
Offline
サーバ: Fenrir
Game: FFXI
user: Mojopojo
Posts: 1139
By Fenrir.Snaps 2017-11-21 15:35:52  
That's interesting. I didn't use a spreadsheet when picking my BiS options so I wouldn't be surprised if some of them are wrong although I don't think picks like Adhemar Wristbands +1 for the stake of 7 STP on WS will be reflected accurately.
 Leviathan.Louisoix
Offline
サーバ: Leviathan
Game: FFXI
user: Louisoix
Posts: 91
By Leviathan.Louisoix 2017-11-24 18:44:24  
This is my Current Reso set for RUN/SAM. Its not perfect probably. So if there's any upgrades I could work on let me know. Feet are 4ta and some minor augs, back is 30 str 20att/acc 10da. thanks!

ItemSet 354666
 Sylph.Oraen
Offline
サーバ: Sylph
Game: FFXI
user: Gaztastic
Posts: 2087
By Sylph.Oraen 2017-11-24 19:29:47  
Sherida Earring instead of Brutal, Niqmaddu Ring instead of Ilabrat, Utu Grip.

The STR from Path D Lustratio Leggings +1 should outweigh Herc's multi-attack.
 Leviathan.Louisoix
Offline
サーバ: Leviathan
Game: FFXI
user: Louisoix
Posts: 91
By Leviathan.Louisoix 2017-11-27 08:51:02  
the str from path d outweighs samnuha? since when? doubt ill hq another pair just for run, but i might. And my work schedule doesnt really let me omen with any group on a steady basis.
 Fenrir.Snaps
Offline
サーバ: Fenrir
Game: FFXI
user: Mojopojo
Posts: 1139
By Fenrir.Snaps 2017-11-27 09:25:36  
Lustratio Leggings +1 are feet not legs.
[+]
 Lakshmi.Vadian
Offline
サーバ: Lakshmi
Game: FFXI
user: elii
Posts: 55
By Lakshmi.Vadian 2017-11-27 20:29:22  
Any idea how I can change this to allow gear changes when ws'ing and using things that use enmity+ gear?
Code
-- If DefenseMode is active, apply that gear over midcast
    -- choices.  Precast is allowed through for fast cast on
    -- spells, but we want to return to def gear before there's
    -- time for anything to hit us.
    -- Exclude Job Abilities from this restriction, as we probably want
    -- the enhanced effect of whatever item of gear applies to them,
    -- and only one item should be swapped out.
    if state.DefenseMode.value ~= 'None' and spell.type ~= 'JobAbility' then
        handle_equipping_gear(player.status)
        eventArgs.handled = true
Offline
Posts: 9772
By Zerowone 2017-11-27 21:13:13  
Lakshmi.Vadian said: »
Any idea how I can change this to allow gear changes when ws'ing and using things that use enmity+ gear?
Code
-- If DefenseMode is active, apply that gear over midcast
    -- choices.  Precast is allowed through for fast cast on
    -- spells, but we want to return to def gear before there's
    -- time for anything to hit us.
    -- Exclude Job Abilities from this restriction, as we probably want
    -- the enhanced effect of whatever item of gear applies to them,
    -- and only one item should be swapped out.
    if state.DefenseMode.value ~= 'None' and spell.type ~= 'JobAbility' then
        handle_equipping_gear(player.status)
        eventArgs.handled = true


You mean in terms of making notes in Lua or where you would find your defined WS sets?

There isn’t a Midcast for WS. Enmity + gear set should
already be a defined variable/state.
 Lakshmi.Vadian
Offline
サーバ: Lakshmi
Game: FFXI
user: elii
Posts: 55
By Lakshmi.Vadian 2017-11-27 22:17:23  
Zerowone said: »
Lakshmi.Vadian said: »
Any idea how I can change this to allow gear changes when ws'ing and using things that use enmity+ gear?
Code
-- If DefenseMode is active, apply that gear over midcast
    -- choices.  Precast is allowed through for fast cast on
    -- spells, but we want to return to def gear before there's
    -- time for anything to hit us.
    -- Exclude Job Abilities from this restriction, as we probably want
    -- the enhanced effect of whatever item of gear applies to them,
    -- and only one item should be swapped out.
    if state.DefenseMode.value ~= 'None' and spell.type ~= 'JobAbility' then
        handle_equipping_gear(player.status)
        eventArgs.handled = true


You mean in terms of making notes in Lua or where you would find your defined WS sets?

There isn’t a Midcast for WS. Enmity + gear set should
already be a defined variable/state.

So, because of this(at least I think it's because of this), when I ws my gear doesn't change and when i use flash or other enmity based things, my gear doesn't change. And I can't find anywhere else that prevents this from happening. It only happens when i'm in PDT or MDT mode.
 Lakshmi.Vadian
Offline
サーバ: Lakshmi
Game: FFXI
user: elii
Posts: 55
By Lakshmi.Vadian 2017-11-27 22:22:59  
Lakshmi.Vadian said: »
Zerowone said: »
Lakshmi.Vadian said: »
Any idea how I can change this to allow gear changes when ws'ing and using things that use enmity+ gear?
Code
-- If DefenseMode is active, apply that gear over midcast
    -- choices.  Precast is allowed through for fast cast on
    -- spells, but we want to return to def gear before there's
    -- time for anything to hit us.
    -- Exclude Job Abilities from this restriction, as we probably want
    -- the enhanced effect of whatever item of gear applies to them,
    -- and only one item should be swapped out.
    if state.DefenseMode.value ~= 'None' and spell.type ~= 'JobAbility' then
        handle_equipping_gear(player.status)
        eventArgs.handled = true


You mean in terms of making notes in Lua or where you would find your defined WS sets?

There isn’t a Midcast for WS. Enmity + gear set should
already be a defined variable/state.

So, because of this(at least I think it's because of this), when I ws my gear doesn't change and when i use flash or other enmity based things, my gear doesn't change. And I can't find anywhere else that prevents this from happening. It only happens when i'm in PDT or MDT mode.

If it helps, here's the entire LUA. Your text to link here...
Offline
Posts: 9772
By Zerowone 2017-11-27 23:36:43  
Oh it’s one of Motes.

The code you pulled specifically is where you would want to include your status change. I did mine differently when I dabbled in GS. I can’t really say these will help you. However you can take a look here to see examples:

https://pastebin.com/u/ErC8D


If you look in the Run lua its at line 429~446.

I haven’t touched them in a long time and I assume much has changed. But it might give you an idea as to what you want within the paradigm of mote’s rulesets.
[+]
 Leviathan.Louisoix
Offline
サーバ: Leviathan
Game: FFXI
user: Louisoix
Posts: 91
By Leviathan.Louisoix 2017-11-28 08:37:44  
yeah i realized that about the leggings after i posted :D
 Ramuh.Austar
Offline
サーバ: Ramuh
Game: FFXI
user: Austar
Posts: 10457
By Ramuh.Austar 2017-11-28 08:40:23  
louis i’ll do some omen with you starting in a couple of weeks
 Lakshmi.Vadian
Offline
サーバ: Lakshmi
Game: FFXI
user: elii
Posts: 55
By Lakshmi.Vadian 2017-11-28 16:23:15  
Zerowone said: »
Oh it’s one of Motes.

The code you pulled specifically is where you would want to include your status change. I did mine differently when I dabbled in GS. I can’t really say these will help you. However you can take a look here to see examples:

https://pastebin.com/u/ErC8D


If you look in the Run lua its at line 429~446.

I haven’t touched them in a long time and I assume much has changed. But it might give you an idea as to what you want within the paradigm of mote’s rulesets.

So I ended up changing this line(took me a bit to figure out the exact syntax's) and it appears to be working. I'll probably take out the enhancing magic piece though. Don't want to get caught in the middle of that cast.
Code
if state.DefenseMode.value ~= 'None' and spell.type ~= 'JobAbility' and spell.type ~= 'WeaponSkill' and spell.skill ~= 'Enhancing Magic' and spell.skill ~= 'Divine Magic' then
 Leviathan.Louisoix
Offline
サーバ: Leviathan
Game: FFXI
user: Louisoix
Posts: 91
By Leviathan.Louisoix 2017-11-29 21:00:06  
unless youre transfering to levi, auster. i dont plan on moving anywhere lol.
 Ramuh.Austar
Offline
サーバ: Ramuh
Game: FFXI
user: Austar
Posts: 10457
By Ramuh.Austar 2017-11-29 21:00:55  
we're in the same ls :(
 Leviathan.Kaparu
Offline
サーバ: Leviathan
Game: FFXI
user: Tsuko
Posts: 949
By Leviathan.Kaparu 2017-11-29 21:01:27  
Awkward
[+]
 Leviathan.Louisoix
Offline
サーバ: Leviathan
Game: FFXI
user: Louisoix
Posts: 91
By Leviathan.Louisoix 2017-11-30 21:49:00  
idk which toon you are :(
Offline
Posts: 7999
By Afania 2017-12-01 10:52:05  
Asura.Zanosan said: »
ItemSet 354495

Something like this
Asura.Zanosan said: »
ItemSet 354495

Something like this


Kinda late but I just plugged in the number on spreadsheet, even adhemar nq beats Raetic bangle HQ. HQ adhemar is even better.

So mah to Raetic for resolution.
Offline
Posts: 28
By Celther 2017-12-01 14:32:13  
Would anybody have an up-to-date spreadsheet for RUN? I can't seem to find one anywhere.
 Phoenix.Capuchin
Offline
サーバ: Phoenix
Game: FFXI
user: Anza
Posts: 3477
By Phoenix.Capuchin 2017-12-01 18:48:27  
Afania said: »
Kinda late but I just plugged in the number on spreadsheet, even adhemar nq beats Raetic bangle HQ. HQ adhemar is even better.

So mah to Raetic for resolution.

While I haven't spreadsheeted it, I wouldn't be too surprised to see Meghanada+2 bet Raetic too in any uncapped attack situation. 10 less STR, but has the advantages of Atk+43 (on an attack penalty WS), WSD+5% (yes, I'm aware that's only on first hit but it's still something), and considerably more acc from Acc+2/DEX+17 edge.

I've actually been using NQ Adhemar for Reso, but curious how those stack up with Meg+2s as well. Just glancing at the stats, maybe the TA wins? But I'm not quite sure.
 Bismarck.Cloudxi
Offline
サーバ: Bismarck
Game: FFXI
Posts: 60
By Bismarck.Cloudxi 2017-12-03 22:11:41  
if you didn't use the +1 lustratio, and just the nq, is it still the ideal piece for reso?
 Asura.Warusha
Offline
サーバ: Asura
Game: FFXI
user: Serithus
Posts: 159
By Asura.Warusha 2017-12-03 22:42:26  
Bismarck.Cloudxi said: »
if you didn't use the +1 lustratio, and just the nq, is it still the ideal piece for reso?

I'm sorry what are you asking? It sounds like you're asking if a nq piece is ideal.
[+]
 Asura.Evildemon
Offline
サーバ: Asura
Game: FFXI
Posts: 134
By Asura.Evildemon 2017-12-03 23:28:48  
Asura.Warusha said: »
Bismarck.Cloudxi said: »
if you didn't use the +1 lustratio, and just the nq, is it still the ideal piece for reso?

I'm sorry what are you asking? It sounds like you're asking if a nq piece is ideal.

He just wants to know if it’s 2nd best or what is
 Bismarck.Cloudxi
Offline
サーバ: Bismarck
Game: FFXI
Posts: 60
By Bismarck.Cloudxi 2017-12-03 23:45:08  
Asura.Evildemon said: »
Asura.Warusha said: »
Bismarck.Cloudxi said: »
if you didn't use the +1 lustratio, and just the nq, is it still the ideal piece for reso?

I'm sorry what are you asking? It sounds like you're asking if a nq piece is ideal.

He just wants to know if it’s 2nd best or what is
yeah, just is the nq the 2nd best option
 Asura.Warusha
Offline
サーバ: Asura
Game: FFXI
user: Serithus
Posts: 159
By Asura.Warusha 2017-12-04 06:18:44  
Second best option for resolution is likely adhemar bonnet +1 and for feet I'd use triple 4, str Aug, attack/acc aug Herculean Boots.
 Asura.Evildemon
Offline
サーバ: Asura
Game: FFXI
Posts: 134
By Asura.Evildemon 2017-12-04 22:12:52  
Asura.Warusha said: »
Second best option for resolution is likely adhemar bonnet +1 and for feet I'd use triple 4, str Aug, attack/acc aug Herculean Boots.

Still pretty sure they are looking for the non super expensive option as adhemar Bonnet +1 is out of some people’s pay grade
[+]
 Asura.Sechs
Offline
サーバ: Asura
Game: FFXI
user: Akumasama
Posts: 9876
By Asura.Sechs 2017-12-05 01:16:32  
Two decent options that are free for the head and hands slot are perf Lilitu headpiece and Meghanada +2 gloves, especially for att uncapped situations.
 Asura.Azagarth
Offline
サーバ: Asura
Game: FFXI
user: Azagarth
Posts: 1325
By Asura.Azagarth 2017-12-05 10:24:45  
Asura.Evildemon said: »
Asura.Warusha said: »
Second best option for resolution is likely adhemar bonnet +1 and for feet I'd use triple 4, str Aug, attack/acc aug Herculean Boots.

Still pretty sure they are looking for the non super expensive option as adhemar Bonnet +1 is out of some people’s pay grade

its 30m now, will prob be 20 soon. This is out of no ones reach as you would naturally get about 30m in a month of just playing the game.
[+]
Offline
By clearlyamule 2017-12-05 10:42:13  
Asura.Azagarth said: »
Asura.Evildemon said: »
Asura.Warusha said: »
Second best option for resolution is likely adhemar bonnet +1 and for feet I'd use triple 4, str Aug, attack/acc aug Herculean Boots.

Still pretty sure they are looking for the non super expensive option as adhemar Bonnet +1 is out of some people’s pay grade

its 30m now, will prob be 20 soon. This is out of no ones reach as you would naturally get about 30m in a month of just playing the game.
Not everyone is on a server with estrucheon pricing lol.
[+]
First Page 2 3 ... 121 122 123 ... 188 189 190
Log in to post.