|
The Odyssey - || Strategy and Discussion ||
Server: Asura
Game: FFXI
Posts: 1421
By Asura.Toralin 2022-01-20 11:34:07
That convinces me that NIN will work on Arebati.
Ullr and switch between Yonin and Innin when crits needed. I don't know how you want to beat Arebati, ranged damage is already lower DPS than a melee, you're using NIN's lower Archery skills to do dmg and higher than RNG or COR?
Have you tried V20 Arebati yet? I've done 8 or so fights and everytime there's not enough DPS or the add destroys everyone. The raaz has some sort of triple dmg or something and double attacks alot. I don't know how that other group without Idris GEO managed to beat it and not maxed out COR either.
Also using SCH means no dia2, so only def down is RUN's GA armor break.
We had the same problem with Arebati, and the issue ended up being that my noob *** didn't fully understand Hover Shot, and I was resetting my level to 0 because I was WSing without moving. Once I got the hovershot addon to track my level and got to level 25 I was totally crushing it. 30-50k Last Stands. before was doing 10-25k. I was doing 13-25k crits in Empy AM set.
We failed about 4x and just could not generate the DPS, but once got the hovershot figured out we had time so spare even with me disengaging 3x to shadowbind the add to let the SCH get things back under control
Lakshmi.Buukki
Server: Lakshmi
Game: FFXI
By Lakshmi.Buukki 2022-01-20 12:32:59
Asura.Bippin
Server: Asura
Game: FFXI
Posts: 1091
By Asura.Bippin 2022-01-20 12:42:23
[+]
Lakshmi.Buukki
Server: Lakshmi
Game: FFXI
By Lakshmi.Buukki 2022-01-20 13:01:33
Blessings family
Server: Asura
Game: FFXI
Posts: 1421
By Asura.Toralin 2022-01-20 13:25:16
hovershot.lua Code _addon.name = 'hovershot'
_addon.author = 'Rubenator'
_addon.version = '0.2'
_addon.language = 'english'
_addon.commands = {'hovershot'}
require('chat')
require('functions')
config = require('config')
local texts = require('texts')
local packets = require('packets')
local sets = require('sets')
local res = require('resources')
local hovershotJAID = res.job_abilities:with('en','Hover Shot').id
local hovershotBuffID = res.buffs:with('en','Hover Shot').id
local rangedWeaponskills = res.weapon_skills:filter(function(ws) return S{25, 26}:contains(ws.skill) end)
local defaults = {}
defaults = {}
defaults.draggable = true
defaults.pos = {}
defaults.pos.x = 0
defaults.pos.y = 0
defaults.text = {}
defaults.text.size = 10
defaults.text.stroke = {}
defaults.text.stroke.aplha = 200
defaults.text.stroke.red = 20
defaults.text.stroke.green = 20
defaults.text.stroke.blue = 20
defaults.text.stroke.width = 2
defaults.text.color = {}
defaults.text.color.alpha = 200
defaults.text.color.red = 200
defaults.text.color.green = 200
defaults.text.color.blue = 200
defaults.bg = {}
defaults.bg.alpha = 0
defaults.bg.red = 30
defaults.bg.green = 30
defaults.bg.blue = 30
defaults.visible = true
local settings = config.load(defaults)
local text = texts.new('${stacks}: ${distance} ${ok}', settings)
text:hide()
local hovershotBuff = false
local stacks = 0
local lastReportedPosition = nil
local lastEndShotPosition = nil
local tempEndShotPosition = nil
local scheduledTimeout = nil
local particle = false
local lastMobIDShot = -1
--[[config.register(settings, function()
if text then
text:destroy()
end
text = texts.new('${stacks}: ${distance} ${ok}', settings)
end) --TODO]]
text:register_event("drag",function()
settings.pos.x = text:pos_x()
settings.pos.y = text:pos_y()
config.save(settings)
end)
function update_pos(pos)
pos = pos or lastReportedPosition
if not pos then return end
local distance = calcDistance(pos)
if distance and distance >= 9.9 then
distance = 9.9
end
if distance then
text.distance = distance and "%.1f'":format(distance) or ""
local sameAsLast = lastReportedPosition and pos.x == lastReportedPosition.x and pos.y == lastReportedPosition.y and pos.z == lastReportedPosition.z
local lastDistance = calcDistance(lastReportedPosition)
local lastOkay = lastDistance and lastDistance > 1
if distance >= 1 then
if sameAsLast or lastOkay then
text.ok = "OK":text_color(0,200,0)
else
text.ok = "OK"
end
elseif lastOkay then
text.ok = "OK":text_color(200,200,0)
else
text.ok = ""
end
end
end
function calcDistance(finish, start)
start = start or lastEndShotPosition
finish = finish or lastReportedPosition
return start and finish and math.sqrt(math.pow(finish.x-start.x,2) + math.pow(finish.y-start.y,2))
end
function handleShot(hoverSuccess, targetChanged)
if not hovershotBuff then return end
if hoverSuccess ~= nil then
coroutine.close(scheduledTimeout)
scheduledTimeout = nil
end
particle = false
local pos = tempEndShotPosition or lastReportedPosition
local distance = calcDistance(pos)
if hoverSuccess then
stacks = stacks >= 25 and 25 or stacks + 1
--print("particle found", stacks)
elseif distance and distance >= 1 then
stacks = stacks >= 25 and 25 or stacks + 1
--print("distance verified at timeout", stacks)
else
stacks = 1
--print("improper distance at timeout", stacks)
end
text.stacks = stacks
text:show()
lastEndShotPosition = pos
end
function initialize()
if not windower.ffxi.get_info().logged_in then
return
end
hovershotBuff = S(windower.ffxi.get_player().buffs):contains(hovershotBuffID)
end
windower.register_event('login', initialize)
windower.register_event('logout', function()
hovershotBuff = false
lastReportedPosition = nil
stacks = 0
text:hide()
end)
windower.register_event('gain buff', function(buff_id)
if buff_id == hovershotBuffID then
hovershotBuff = true
lastReportedPosition = nil
stacks = 0
text:hide()
end
end)
windower.register_event('lose buff', function(buff_id)
if buff_id == hovershotBuffID then
hovershotBuff = false
lastReportedPosition = nil
stacks = 0
text:hide()
end
end)
windower.register_event('zone change', function(buff_id) -- TODO
hovershotBuff = false
lastReportedPosition = nil
stacks = 0
text:hide()
end)
windower.register_event('action', function(act)
if not hovershotBuff then return end
if (act.category == 2 or (act.category == 3 and rangedWeaponskills[act.param])) and act.actor_id == windower.ffxi.get_mob_by_target("me").id then -- end shot or wsfinish(archery or marksmanship)
if not particle then
tempEndShotPosition = lastReportedPosition
scheduledTimeout = coroutine.schedule(handleShot, 0.5)
end
if act.targets[1].id ~= lastMobIDShot then
lastMobIDShot = act.targets[1].id
stacks = 0
end
elseif act.category == 12 and act.actor_id == windower.ffxi.get_mob_by_target("me").id then -- start shot
if scheduledTimeout then
coroutine.close(scheduledTimeout)
scheduledTimeout = nil
end
particle = false
tempEndShotPosition = nil
elseif act.category == 6 and act.param == hovershotJAID then -- hovershot resets stacks, even while effect already active
lastReportedPosition = nil
stacks = 0
text:hide()
end
end)
windower.register_event('outgoing chunk', function(id,original,modified,injected,blocked)
if hovershotBuff and id == 0x015 and not blocked then
local packet = packets.parse('outgoing', modified)
lastReportedPosition = {x=packet.X, y=packet.Y, z=packet.Z}
update_pos()
end
end)
windower.register_event('incoming chunk', function(id,original,modified,injected,blocked)
if hovershotBuff and id == 0x038 and not injected then
local packet = packets.parse('incoming', original)
if packet.Type == "hov1" then
particle = true
handleShot(true)
end
elseif id == 0x00E then
local packet = packets.parse('incoming', original)
if packet['Status'] == 3 then
if lastMobIDShot == packet['NPC'] then
lastMobIDShot = -1
stacks = 0
text:hide()
end
end
end
end)
windower.register_event('prerender', function()
if not hovershotBuff then return end
update_pos(windower.ffxi.get_mob_by_target('me'))
end)
initialize()
Sylph.Reain
Server: Sylph
Game: FFXI
Posts: 408
By Sylph.Reain 2022-01-20 13:49:19
That pig sends your SCH its regards.
You may see it again on Bumba.
Bahamut.Belkin
Server: Bahamut
Game: FFXI
Posts: 474
By Bahamut.Belkin 2022-01-20 14:50:27
How does this work? Didn't seem to do anything for me.
EDIT: Nevermind, its the tiniest little counter in the top left hand corner.
By SimonSes 2022-01-21 08:37:23
Sooo, anyone know what happens when you use Caper Emissarius on tank at lets say 76% and let tank push NM to 75% without anyone else doing anything? If none beside tank has hate, then what will add do?
By Weeew 2022-01-21 08:47:26
Sooo, anyone know what happens when you use Caper Emissarius on tank at lets say 76% and let tank push NM to 75% without anyone else doing anything? If none beside tank has hate, then what will add do?
We tried that yesterday and the add starts attacking the NM. Makes V20 easier than V15.
Server: Odin
Game: FFXI
Posts: 17
By Odin.Wangwang 2022-01-21 09:23:30
Sooo, anyone know what happens when you use Caper Emissarius on tank at lets say 76% and let tank push NM to 75% without anyone else doing anything? If none beside tank has hate, then what will add do?
We tried that yesterday and the add starts attacking the NM. Makes V20 easier than V15.
How exactly does that work?
Lakshmi.Buukki
Server: Lakshmi
Game: FFXI
By Lakshmi.Buukki 2022-01-21 09:44:15
Sooo, anyone know what happens when you use Caper Emissarius on tank at lets say 76% and let tank push NM to 75% without anyone else doing anything? If none beside tank has hate, then what will add do?
We tried that yesterday and the add starts attacking the NM. Makes V20 easier than V15.
Come again?
Server: Valefor
Game: FFXI
Posts: 19647
By Valefor.Prothescar 2022-01-21 10:10:07
[+]
Asura.Chiaia
VIP
Server: Asura
Game: FFXI
Posts: 1656
By Asura.Chiaia 2022-01-21 10:10:16
Sooo, anyone know what happens when you use Caper Emissarius on tank at lets say 76% and let tank push NM to 75% without anyone else doing anything? If none beside tank has hate, then what will add do?
We tried that yesterday and the add starts attacking the NM. Makes V20 easier than V15.
Come again? Remember this is the person that bought you this quality post...
Hi guys. Is there any way I can switch off mastery level stars from config without losing the original 3 stars?
Server: Asura
Game: FFXI
Posts: 3
By Asura.Mapoosi 2022-01-21 10:58:55
Anyone having problems going into Sheol Goal? If i join a friends party with mooglephone IIx3... it wont let us join up saying not everyone meets prereqs.. but if i try solo/him trying without me in the party its like everythings fine.. No job duplicates or w/e.. shits confusing
Lakshmi.Elidyr
Server: Lakshmi
Game: FFXI
Posts: 912
By Lakshmi.Elidyr 2022-01-21 11:04:08
Anyone having problems going into Sheol Goal? If i join a friends party with mooglephone IIx3... it wont let us join up saying not everyone meets prereqs.. but if i try solo/him trying without me in the party its like everythings fine.. No job duplicates or w/e.. shits confusing
To further expand and the issue. All members 3+ 99, 3+KI, no jobs of same type, even subs. We can all enter separately, but as soon as the GEO and PLD in a party together, we can't apply? o.O
By SimonSes 2022-01-21 11:17:14
Human error is usually the most common. Check again if everyone have 3+ different 99 jobs than other.
Lakshmi.Elidyr
Server: Lakshmi
Game: FFXI
Posts: 912
By Lakshmi.Elidyr 2022-01-21 11:21:31
Human error is usually the most common. Check again if everyone have 3+ different 99 jobs than other.
We have tried so many different ways lol. Everyone has at least 4+ 99. The weird part is dropping 1 person of any job lets anyone enter. If I drop, everyone else can enter. If PLD drops I can enter. If GEO drops then we can enter.
Also note: We all have Boss wins already lol.
Shiva.Thorny
Server: Shiva
Game: FFXI
Posts: 2911
By Shiva.Thorny 2022-01-21 11:23:09
they probably have a less than perfect matching logic and it may depend on party order, member id order, etc. i've had times where i definitely had 3 unique jobs per member and wasn't allowed in, but capping all jobs on all chars made it go away forever
path of least resistance might be to just burn up a few unused 99s, doubt SE plans to refactor it anytime soon and most older players have a ton of jobs anyway
edit(theory, not proven):
it likely takes the first 3 99 jobs from player 1, locks them. takes the first 3 99 jobs from player 2 that are not yet locked, locks them. takes the first 3 99 jobs from player 3 that are not yet locked, locks them. and so on, so that even if you do have 3 unique jobs per player it's possible jobs are locked in an order that they don't all count. once it hits a player that doesn't have 3 remaining unique jobs, it fails.
Lakshmi.Elidyr
Server: Lakshmi
Game: FFXI
Posts: 912
By Lakshmi.Elidyr 2022-01-21 11:26:27
they probably have a less than perfect matching logic and it may depend on party order, member id order, etc. i've had times where i definitely had 3 unique jobs per member and wasn't allowed in, but capping all jobs on all chars made it go away forever
path of least resistance might be to just burn up a few unused 99s, doubt SE plans to refactor it anytime soon and most older players have a ton of jobs anyway
Yeah I give up. It just wont let us enter with more than 5 members at all now lol. Doesn't matter who or what jobs. I can enter with any combination of 5, but 6 makes it throw unable to enter.
Server: Fenrir
Game: FFXI
Posts: 1410
By Fenrir.Melphina 2022-01-21 11:26:36
Edit: Never mind, you guys are right. You do need unique jobs to queue into the lobby. Been a busy day here. My brain is kind of fried from a really long week. Sorry about that.
Shiva.Thorny
Server: Shiva
Game: FFXI
Posts: 2911
By Shiva.Thorny 2022-01-21 11:27:57
You don't even need to have separate jobs to queue up into sheol Gaol. You just need three different jobs to enter the NM fights. But entering the lobby has no such requirements.
This is absolutely not true, and honestly it takes some balls to say that so firmly in a thread where multiple people are trying to figure out why they can't enter the lobby.
[+]
Phoenix.Serveroz
Server: Phoenix
Game: FFXI
Posts: 25
By Phoenix.Serveroz 2022-01-21 11:27:58
Either the geo or the pld are duplicating a job.
If you are entering odyssey with 6 people. You must have 18 different jobs. Each member adding 3 to the total amount of jobs.
Example:
P1 WHM BLM RDM
P2 WAR MNK THF
P3 DRG DRK BST
P4 SAM NIN BLU
P5 COR BRD GEO
P6 PUP PLD RUN
Lakshmi.Elidyr
Server: Lakshmi
Game: FFXI
Posts: 912
By Lakshmi.Elidyr 2022-01-21 11:28:56
You don't even need to have separate jobs to queue up into sheol Gaol. You just need three different jobs to enter the NM fights. But entering the lobby has no such requirements. Thats the thing, can't even get to the lobby. All members have boss KI, 4+ Jobs, 3KI. It just wont allow 6 members to enter. :shrug:
I'm waiting on a GM, but pretty much looking like a bust on doing any runs for myself today.
Tried rezoning, rebuilding party, inviting others, nothing works with 6 members.
Shiva.Thorny
Server: Shiva
Game: FFXI
Posts: 2911
By Shiva.Thorny 2022-01-21 11:30:44
When unlocking on mules, it was very clear that they could not enter the lobby because they all shared the same 99 jobs. Adding more unique 99 jobs let them enter the lobby, but I still had some fails while all had 3 unique jobs. So, while the designed requirement is probably what Serveroz said, I don't think it's perfectly implemented. Some sort of flaw can cause it to fail to count jobs in the optimal manner, which makes sense given SE's incompetence and the levels of sorting required to check all combinations.
By SimonSes 2022-01-21 11:32:17
When unlocking on mules, it was very clear that they could not enter the lobby because they all shared the same 99 jobs. Adding more unique 99 jobs let them enter the lobby, but I still had some fails while all had 3 unique jobs. So, while the designed requirement is probably what Serveroz said, I don't think it's perfectly implemented. Some sort of flaw can cause it to fail to count jobs in the optimal manner, which makes sense given SE's incompetence and the levels of sorting required to check all combinations.
Maybe, but I still think Elidyr's group doesn't even have 18 unique jobs and he thinks its not the requirement.
Lakshmi.Elidyr
Server: Lakshmi
Game: FFXI
Posts: 912
By Lakshmi.Elidyr 2022-01-21 11:33:42
That may so be the case. It says 3+ 99. I didn't think about needing 18+ Unique. Guess I need more then, never ran in to a problem until today. Done all my clears and such with out a problem before.
Got to love an event you can enter AFTER you already beat it lol.
Jobs are as though:
WAR WHM MNK BLM SMN RDM SCH
WAR MNK THF RNG SAM SMN BLM COR
WAR BLM SMN GEO
BRD WAR SMN
RDM SMN DRG COR
ALL 99
Phoenix.Serveroz
Server: Phoenix
Game: FFXI
Posts: 25
By Phoenix.Serveroz 2022-01-21 11:34:38
I'm about 99% sure the way i discribed it is how it works. If you could send me all the jobs all your members have. I could try to point out which member is missing a job.
Shiva.Thorny
Server: Shiva
Game: FFXI
Posts: 2911
By Shiva.Thorny 2022-01-21 11:34:46
Not maybe, I've firmly verified that having 3 unique jobs per character does not guarantee ability to enter, just not the exact mechanic by which it is triggered. I'm guessing that they reserve jobs one member at a time, so that for example:
Let's say you have these jobs:
P1 WHM BLM RDM RUN
P2 WAR MNK THF
P3 DRG DRK BST
P4 SAM NIN BLU
P5 COR BRD GEO
P6 WHM PUP PLD
At face value, this is 18 unique jobs(P1 counts RUN BLM RDM). In reality, since WHM BLM RDM are the lowest job IDs, the server might count them as P1's jobs. When it reaches P6, even though P1 also has RUN, it's counted WHM as taken and P6 is not eligible so the entry fails. Again, speculation.
[+]
By SimonSes 2022-01-21 11:35:18
That may so be the case. It says 3+ 99. I didn't think about needing 18+ Unique. Guess I need more then, never ran in to a problem until today. Done all my clears and such with out a problem before.
Got to love an event you can enter AFTER you already beat it lol.
Most people usually have lots of 99, even when they are naked and not used, so usually it's not a problem.
[+]
Server: Fenrir
Game: FFXI
Posts: 1410
By Fenrir.Melphina 2022-01-21 11:36:29
Quote: This is absolutely not true, and honestly it takes some balls to say that so firmly in a thread where multiple people are trying to figure out why they can't enter the lobby.
You're right. It's been a really long week for me here and I forgot that. We've had multiple people on the same jobs INSIDE the lobby before though with job changing. I was remembering a couple times when I queued us up to enter a NM fight and it wouldn't let me because two people had swapped to the same job, or the times we had two white mages in there for raising people. People do job swaps pretty frequently in the lobby and it slipped my mind that you weren't allowed to queue up with two of the same from rabao. So I apologize for that.
[+]
Hmmm...
Initial Speculations:
Looks like they took components of Walk of Echoes (setting), and Elemental Circles and brought it together.
They must of learned new ideas through the Lilith HTBF and how they can play with those elemental fetters to create unique battlefield environment and apply further stress with them..
Instead of Abyssea, this may be a Walk of Echoes 3.0? Anything iLvl 140+ .. We are ready!
Keep this thread clean, hoping to post critical details and discuss strategies.. Eventually I will create a Node on this with full details.. We can then update BG-Wiki with information that we gather..
Those of you who play on Nasomi.. Please don't post on here, you have a Fafnir to camp.. so get back to work.. This is isn't Bubbly Bernie version 3.0. He will be OG 1.0 forever on Nasomi.. ^_^
Sorry about the delay on updating this as I have been slammed with a lot of work since COVID-19 defense ramp up procedures at my hospital facility.
I have barely had time to update and barely any time to explore this content myself. I appreciate everyone's work so far. I will update this OP Thread with some resources and information that people have found across all servers including videos and screenshots..
Keeping this as a basic vital post highlight source so as new posts with vital information emerges I will just pin it here so it is all in one space and no need to jump around different pages..
To Begin.. The Basic Release Info from SE:
Some First Initial Basic Discoveries:
looks like you enter through Rabao
And you have 30 min to kill a bunch of trash mobs. Probably a boss at the end too.
More Initial Entry Discoveries Pinned:
About to enter Odyssey for the first time.
I'll report back. Setup is PUP, COR, BLU x2, SMN, RDM
Ok, it's looking like they made this content specifically to prevent BLUs from cleaving through this content.
Only main target took full damage. Surrounding targets took 90% reduced damage (main targeet 15k, all others 500 or less)
All mobs can be fully enfeebled (Sleep, Silence, Slow, Para) but standard rules apply for mob types (we saw Skeletons, couldn't Blind them)
I can very easily see a RUN or PLD tank running in and aggroing the group of mobs, with a BRD sleeping them all. 2 DDs kill one by one with proper support. SMN Bloodpacts were doing full damage on single mobs (same rules for BLU applied for SMN when we tried Thunderspark for lulz)
At the end, we found a group of mobs (bats) with a Fetter and a group of untargetable Yagudo. We cleared the bats, then killed the Fetter. Once the Fetter is killed, the Yagudo become targetable. For killing all of the Yagudo, you get 10 Izzat.
In total, we farmed 20 Izzat. We'll try using them tomorrow on boxes, maybe even spawn an NM. After we killed the fetter, a conflux spawned that gave us the opportunity to spawn a monster for 10 Izzat. We were low on time, so we just chose to exit.
Player with Trusts.. First Experience Testimonies:
Went in with trusts. Was able to 1 shot most things with leaden.
Yield: 31 scales and 3 scale boxes (from the chest).
Edit: Chests gave 11, 13 and 16.
More Vital Data Testimonies Discovered:
Random info:
-Killing trash gave izzat and lustreless scales
-Using 10 izzat to pop chest gave 2 scales and a box
-Killing fetter made untargetable yagudo killable, giving 10 izzat killing them all
-Popping NM with 10 izzat from ethereal junction spawned a red morbol that did blood weapon and dropped 2 boxes of scales
-Not sure what items you need to trade to junction to spawn monsters
-Was unable to use the thing at the start after killing fetter/yagudos/morbol, may have to kill all trash? I looked around and missed a pack, timed out before I could kill them all
-Moogle keeps track of trash killed, physis, and chests, and the power of your alter egos while in odyssey (Moogle Mastery)
More Testimonials and Discoveries..
Does anyone know what is needed to clear the RoE for Sheol A?
You need to run (can do on sneak/invi, only trasnparent mobs are true sight/sound) to last floor (A7) using confluxes. On last floor there is Otherworldly Vortex mentioned in RoE quest. You need to touch it (it lets you leave Odyssey too) to complete the quest. Credit for that info goes to Mischief from Bahamut.
Here is a video of my first experience with Odyssey:
YouTube Video Placeholder
Tried exploring, found more information
- I didn't realize there was a conflux on each floor to move up
- Each floor increases in mob level, capping at 131, and general nastiness of monster family (manticores, giants I remember on last floor)
- Translocators bring you down to previous levels, so the first floor one doesn't work until you find the higher level ones
- One character got stuck on a floor and couldn't move up, nor did they get the RoE objective upon someone else reaching the top
So for soloers, seems like it's best to stick to lower level floor to farm scales, more experienced parties can move up to desired difficulty for more scales. First time in would be best just getting the RoE objective and unlocking translocators.
Initial Video Detailing Climb to 7th floor for easy RoE Completion for Augment Unlock on Gear:
YouTube Video Placeholder
More Info about Moglophone KI's:
Anyways did a solo run this morning and got about 100 scales from just killing trash in first floor. Wondering what others are getting from parting up vs solo.
edit: Also can you hold one Moglophone KI on you, and then have the moogle hold one?
I was wondering this too. I picked up my KI last night and am holding it until later today and going to see if I can run two times in a row.
You can. I used my ki after few hours yesterday and when I checked moogle timer was at 15h, so it was going down while I had KI on me.
More Testimonial Higlights:
Bahamut.Lexouritis said: »Maybe Mischief will post about it, he figured it out on his mule. I'll try and post what i know, but it seems like we skip everything and just kill the fetters, mobs around the fetters, and sometimes the UNM near the fetters.
Bahamut.Lexouritis said: »and if u get to the final thing upstairs, personal chest for everyone.
Not sure if someone said it already, but you CAN store a KI. So only need to farm every 2 days!
I am confused on how people move up using sneak and invisible, in this run I explored everything, vortexes just said "you can't use this yet", or let me summon an NM but never move somewhere else, even after i killed the fetter, all the guards, the NM, opened one chest, and killed about 90% of all the mobs. If anybody can spot where in this video I should have been able to "move up" it would really help: https://www.youtube.com/watch?v=5i9GhE5nO3I
thanks At the mandies in your run. Just hug left wall and you'll find it. It took me a while to find the first flux as well, but the rest were less "hidden". A video was posted a couple pages ago showing the route.
YouTube Video Placeholder
Bahamut.Lexouritis said: »vortexes just said "you can't use this yet" Need to click Shimmering lights for access to some portals or not have aggro iirc. I may be wrong though
Bahamut.Lexouritis said: » It rewarded me again with a box + 50k gil.
did u kill a fetter? Seems like 50k per Fetter and 1 box per fetter (per character). The big Box from RoE seems to be just 1 time thing. The smaller boxes seem to be fetter based?
Killing all 4 fetters netted us about ~70 scales per run per person after touching otherworldy vortex.
Edit: With RoE quest being completed in a run, was more like 110-130.
So how many scales is it per upgrade? Didn’t see on Bg-wiki and don’t feel like shifting through posts on here. Should be just under 12 stacks to max. Based on scales only being worth 5rp instead of 10 :/
Clip to the top and nab the box, in and out, 5 minute adventure.
For realsies? SE let content like that out after the mass-ban clipping/duping-alex adventures get onto the live server? Thought they learned their lesson since the AMAN trove boxes can't be scouted via Hex IDs. The box he means is the one from completing the RoE once. You can walk to it in 6-7 mins without speed hacks anyway. The big deal about completing the RoE is you can start augmenting your gear at that point.
Well if dude already finished a piece few days after update, there isnt much time gate here it seems.
Probably just the appetitizer was released (im on a work trip, cant "enjoy" the new content till weekend...)
He finished because he bought scales or have legion of mules. Regular player with 1 account will need realistically around 10-14 days for one piece farming daily.
Traded 5 Emperor arthro shells to vortex (dunno how many it took from inventory, might have only taken 1 of the 5). Summoned Brachys, a crab that had a high ass counter rate and instantly killed me on my thf in one attack round. 500+ damage counters with no DT set. Likely not advisable to spawn mobs solo with trusts.
Bahamut.Lexouritis said: »Personal box at the end when touching Otherworldy Vortex for each FETTER you kill, for all party members. If u kill all 4 fetters AND EVERYTHING around them it seems you will get 4 boxes.
~edited phrasing
So looks like if you solo, go for trash and farm with th4+ and for group you kill featers and go touch otherwordly.
Unless maybe kill 2 featers solo and go to the top? You could open 2 chests that way and get 2 boxes. So in theory maybe even get 4 chests and some scales from farming.
Bahamut.Lexouritis said: »
Personal box at the end when touching Otherworldy Vortex for each FETTER you kill, for all party members. If u kill all 4 fetters AND EVERYTHING around them it seems you will get 4 boxes.
~edited phrasing
So looks like if you solo, go for trash and farm with th4+ and for group you kill fetters and go touch otherwordly.
Unless maybe kill 2 fetters solo and go to the top? You could open 2 chests that way and get 2 boxes. So in theory maybe even get 4 chests and some scales from farming.
I'm not sure if you need to just kill the fetters or the fetters + all the semi-invisible beastmen around the fetters.
It's possible to kill a fetter without aggro from the semi invisible beastmen that are sight aggro like Yagudo and Orcs. I'm assuming Quadav will sound aggro which makes them easier to gather in a group.
On the first day, when I duo'd with my cousin on RUN and me on COR with a THF4 set, we killed 1 fetter but stopped killing the semi-invisible beastmen because they were not dropping anything. Not all of the beastmen aggro'd. Only the Yagudo beastmen that were in sight of us or each other aggro'd us. Care needs to be taken by support in this case as support will get aggro'd if they rush in too early before the tank has claim on everything. These mobs hit very hard.
Definitely go in with at least th4 if solo farming just trash mobs.
Go in with a full, balanced party to maximize drops from fetters. The fetters are easy to kill. The beastmen hit hard and have a little more hp than common trash mobs. Helps to sleep them too as they can easily overwhelm even the toughest of tanks.
Me and a group of peeps went in yesterday, to do some testing.
Killing a fetter + beastman group rewards 10 izzat, no special drops were seen, we did not have a thief, just a range using bounty shot.
Gonna test farm some nms tonight. i tried to spawn 1 today with my alt using unity items, turns out 1 is not enough.
My second run of this is probably the best I can do.
Went in, killed all normal monsters, Feters and Beastmen, killed all of the Yaguado. I had 20 Izzat, spawn a Unity NM Which was a Sporebat type mob that died in a 4 step SC. This NM used Blood WEapon, the NM I tried yesterday used 100 fists and rek'd me.
I got 90 Izzat from Monsters and 22 from the 2 boxes that I got from NM and a chest I used them on. The only thing I didn't do on Floor 1 was spawn the Junction that said "Item can be used to pop something here" I had 3 Sarama Hides, 2 Thuban Things and neither worked, nor did a combination of them work.
All of my drops were done with TH2 from Gear.
Few unanswered questions:
How is the augmentation to Trust power in Odyssey earned? I believe the requirement must be more than simply killing sets of trash mobs and making it to the otherworldly at the end.
Rewards upon reaching end were:
360k gil from a group that killed everything on first floor, 2 NM's popped.
100k gil for solo killing 2 groups (4 izzat) worth of scrubs and reaching end.
On another run I also got 100k gil for solo killing more scrubs (4 sets I think.
Seems like the NMs from either spawn point will be one of the 119/122 unity NMs with similar mechanics, but not exactly the same as my morbol didn't go through 3 stages and only did blood weapon. May be a good ideal to either focus on repeatedly killing one to raise its kill count for the moogle or killing all of them at least once. Can't wait for Pandemonium Warden v3 in the future lol Yep. Surprised the hell out of us.
But as I said I was getting 100k for just clearing a couple of easy rooms and heading for the exit solo for the RoE.
Thinking about it, we did a bit more than the first floor full clear on that run, did a second fetter and agon mobs and popped another NM at least. spawn a Unity NM Which was a Sporebat type mob
What method did you use to spawn this nm?
So there seems to be 2 spawn methods, Unity Item (I think 5 minimum) or Izzat once you have killed a fetter.
In terms of the invisible mobs I don't know if its a coincidence or not but every time they have aggro'd they go after my GEO and no other character. Dunno if the bubble is causing something funky to happen.
It should be possible, to kill fetters on all floors + escape as low as 3 man, I cleared everything in my run and had about 3 minutes to spare but a lot of it was goofing about looking at chests etc. I'd say 4 man would be the most optimal though as you can't really AOE.
Only flaw would be is that the fetters on floors seem to be placed randomly so you could get screwed over on travel times but imagine if you wanted to eat some taco's and take that risk you could and do it no probs.
My second run experience soloing on COR with trusts:
Leaden Salute all the things
Tact/Sam with august, ygnas, monb, star sybill, koru
Killed everything on floor 1 and 4 groups on floor 2
30 izzat but could only find 2 chests to open
both chests only dropped 1 box each so was a little unlucky
TH4
Ended up with 135 scales. Could have been alot higher if I found a third chest and if the chests dropped more than 1 box each.
(I also got a message saying 'moogle magic II' when I killed a regular enemy. Must be to do with the total amount of things killed.)
Leviathan.Kingkitt said: »My findings thus far:
As stated multiples times already here, you can sneak/invisible to maneuver around the mobs here. However..
The invisible mobs appear true sight and/or sound, so you have to be cautious of them.
Appears that killing fetters gives personal loot. We all got a box.
You can solo for the RoE if you want following the guidlines above.
Competing RoE gives you 1 large box.
Clear is NOT party wide and each person must touch it individually for credit. (Also recieved 60k gil, we cleared 1 fetter/quadavs, and the mob family near it)
Didn't notice until after fetter and invisible mobs were dead, but one or the other gave 10 izzat.
Have tried a few different unity mats for unm 119/122 and traded 5 to pop a NM. NM that spawned was of the same mob family as items traded.
Tonight ill be going in with my COR GEO duo. How do you do the fetters? Kill the surrounding mobs then attack the fetter while trusts keep you alive with invisible beastmen smacking you? Then the beastmen?
Pull and kill regular mobs, until you see opportunity where nothing is close to fetter (there is always a moment when there is max 1 mob close to it at some point). Kill fetter fast (It's easy to kill. One good 2 step SC will kill it), then kill remaining mobs. I wouldn't try to aggro more than few mobs in general when solo or duoboxing, especially if you dont have Malignance set on COR.
Something of note to add was that our rng and cor were doing 0 dmg to the fetter from distance and had to move much closer to do any damage. This may relate to how aoe does much reduced damage. Max gil reward is higher than we thought, just got 495k from today's run.
Btw force popping nm's uses a single UNM mat, not 5. And they cannot be reused within the same run. Spawning NM appears to be unrelated to what you use to pop.
So far NM's we faced: Tipuli(fly),Aegupius,harpe(weapon),leucippe and physis (morbol).
Moogle mastery ranks up as you kill stuff, @287 kills, 8x NM and 2 chests we at Mastery III.
Max gil reward is higher than we thought, just got 495k from today's run.
Btw force popping nm's uses a single UNM mat, not 5. And they cannot be reused within the same run. Spawning NM appears to be unrelated to what you use to pop.
So far NM's we faced: Tipuli(fly),Aegupius,harpe(weapon),leucippe and physis (morbol).
Moogle mastery ranks up as you kill stuff, @287 kills, 8x NM and 2 chests we at Mastery III.
Do you need to touch the flux on the top floor to get the gil? Or when does the gil actually get distributed to you? Yes, you have to leave personally to get it, and as always if other party members are fighting its locked out.
My second run experience soloing on COR with trusts:
Leaden Salute all the things
Tact/Sam with august, ygnas, monb, star sybill, koru
Killed everything on floor 1 and 4 groups on floor 2
30 izzat but could only find 2 chests to open
both chests only dropped 1 box each so was a little unlucky
TH4
Ended up with 135 scales. Could have been alot higher if I found a third chest and if the chests dropped more than 1 box each.
(I also got a message saying 'moogle magic II' when I killed a regular enemy. Must be to do with the total amount of things killed.)
Tonight ill be going in with my COR GEO duo. How do you do the fetters? Kill the surrounding mobs then attack the fetter while trusts keep you alive with invisible beastmen smacking you? Then the beastmen?
Pull/kill regular mobs with ranged attack. Run in to fetter with max 1 or 2 shadows aggro. Kill fetter > kill the rest.
Just look out what you aggro. Aggroing BLM mob that stand close to middle will probably result in mass link eventually. Regular mobs dont link at all, but transparent mobs (before and after killing fetter) do.
Each flux takes you to a higher floor. There are 7 floors with the 7th floors flux being the exit and the RoE objective.
Each flux takes you to a higher floor. There are 7 floors with the 7th floors flux being the exit and the RoE objective. Not sure if it was mentioned, but looks like you can't pop the same NM twice from UNM mats in the same run. Popped once on first floor, and later on the 4th floor it gave a message saying we couldn't pop the same NM again.
Sharing Shamgi's notes posted in the BST forum for relevant details:
Ok, just went into an Odyssey and discovered some things:
1. You can charm things in there. Things seemed to be fairly simple to charm, and Charm+ gear meant that my dhalmel stayed charmed 15+ minutes.
2.Charmed pets seem to be quite strong. Beyond the normal HP, they seemed to have fairly high damage, hitting other mobs in their own pack for 4-600 a swing, with crits as high as 900. My Dhalmel once used Berserk and those numbers got pretty big, same with their Sound Wave move. My record was a crit for 1500 or so. This is with NQ food and no other pet related buffs. I had one crawler end up at 74% when it killed another crawler in the pack, likely benefiting from all the DA and Haste.
3. Pets seem quite effective at killing the Halos. They hit hard already, but notably, they aggro nothing, not even the Beastmen around the Halos when doing so. The Halo produces a damaging AOE every couple of seconds that was hitting for 200 or so, but the pet, with it's 40k+ HP, doesn't care at all. Indeed, I left the pet to it's own devices and killed other packs with trusts while it worked the halo down itself, which actually seemed quite nice. When it died, the Orcs around it didn't aggro, so it was easy to pull them one by one, as they don't link either.
4. Mob spawns are random, which can hurt this strat, but from two runs a majority of the packs seem charmable, and many of them are often pretty powerful. Given the strat above, I feel like a monk style pet would be best here.
Overall, I'm super interested in trying this with a full group where you can use the pet to deal with adds while you work on a pack yourself and to safely kill Halos while you clear other things.
One issue was Sic, the recast was way worse than I remembered, and my lua isn't set up at all to deal with it. My best guess is to just set up my gearswap to always produce a physical damage set for Sic and then just use pets who focus physical damage with their TP moves. If it's a buff move, then no big deal, if it's physical then it's the right set.
They do link, my experience has been all sight linking though (fought orcs and yags so far). Do not link with the Fetter though, found this out by trying to range attack the fetter down, only to realize the fetter is immune to auto-range attacks.
They do link, my experience has been all sight linking though (fought orcs and yags so far).
Well its kinda expected. Orc, Yagudo and Goblins are all sight aggro/link. Quadavs are sound aggro/link and it's how they are in Odyssey too.
They arent immune to ranged attacks you just need to be stood in the fetter to do damage.
So not immune to ranged attacks, but immune to any attacks from a range. XD
As with all farming things it's more efficient to solo, if the kill speed is high, like 119 content. 6 solos have 6x more chances for boxes.
Luck's definitely a factor; and yeah I think solo probably is best.
I think a lot of it has to do with people finding each other, people needing to sneak/invis themselves, and having to stagger the flux (so it doesn't glitch out). Was a lot of wasted time there.
Was just curious if other groups were experiencing it as well.
Went in as Pup/Whm. Killed 3 Fetters, champion NM on floor 7 after fetter, and a few other random mobs using automaton only.
Literally no drops + exit only gave me 5k gil.
I wonder if you need to take an action on the fetters or something yourself before you can get drops or credit for killing them.
Went in as Pup/Whm. Killed 3 Fetters, champion NM on floor 7 after fetter, and a few other random mobs using automaton only.
Literally no drops + exit only gave me 5k gil.
I wonder if you need to take an action on the fetters or something yourself before you can get drops or credit for killing them. As group you are suppose to kill Fetter at floor 1,3,5 and 7 and run to otherworldy vortex at the end. You should get 4 PERSONAL box from otherworldy that way and I think one more personal box from killing beastman kings at floor 7 (they are around Fetter there).
So thats 5 personal chests
At least 40 Izzat to open chests
Probably at least 40 single scales from killing trash around fetters if you take at least TH4 with you.
Small boxes are on avg around 13 scales?
So probably around 70-80 scales at least per person, maybe more if you have time to farm more.
Very good geared solo player on specific job like COR, can get more with luck, but it might be other bonuses from killing fetters and NMs that we might dont know about.
Went in as Pup/Whm. Killed 3 Fetters, champion NM on floor 7 after fetter, and a few other random mobs using automaton only.
Literally no drops + exit only gave me 5k gil.
I wonder if you need to take an action on the fetters or something yourself before you can get drops or credit for killing them.
No, you need to kill Fetter AND beastman mobs around it to get credit for personal box at the end and 10 Izzat. I assume you killed only Fetters.
Bahamut.Lexouritis said: »THF can pick the locks/chests in odyssey, in case no one mentioned, or knows about it yet. However some times mimic will pop out. Unsure how hard they are, as it opens with deathtrap, and his mule has sparks gear (and it got one shot). Credit goes to mischief
"Either gave a 'however it has no effect' message and consumed the tool, opened the chest, or a mimic popped out"
Awesome Map created by Pantafernando:
I made a quick map of Odyssey to make ease to hit the fluxes.
Etheral Junctions, Fetters and camps change apparently random.
EDIT: all maps have North heading the upper border.
Aegypius NM:
Bird
Popped using 5 Abyssdiver feathers
Uses Broadside Barrage and Damnation Dive
Uses Perfect Dodge at low HP and gains an Encumbrance aura that stays for the rest of the fight
Carbuncle.Papesse said: »Beware of the Treant NM Ptelea and its dangerous Leafstorm AoE. Leafstorm is hybrid wind based. It can crit, miss, be absorbed by shadows and Elemental Sforzo. One For All, Gelus Valiance and Baraero substantially reduce damage.
As far as getting these telepoints, mentioned on BGwiki's Odyssey page that you're supposed to be able to travel between to get to further levels of Odyssey, does anyone have any info on the requirements to gain access to these? Do you have to kill all of the fetters to go up a floor? Also, has anyone tried going in with a group of six and then disbanding and everyone using their own trusts to expediate the process of both killing enemies on every floor, taking care of all the fetters on a floor and then popping the nm's so that you might progress to these tele-points if those happened to be the requirements? I know some players might have found that they can farm higher amounts of the Lustreless Scales solo rather than teaming up but if you go in with 6 and then make you're own parties with trusts.. and there are multiple telepoints with up to say 15 sets of mobs and fetters then the possibility of having a high return still might be worth it.
Another thing i noticed maybe means nothing but i saw some pixels floating out of nowhere that seemed like a mobs name. Maybe a glitch? Or the others maps? Or a random mob?
I'm sure people regularly killing fluxes/beastmen already knew this, but AoEs that would have hit the untargettable/invisible beastmen will still generate enmity on them, so people should watch for that if they're sleepgaing or horde lullabying fodder.
We spawned an NM in today's run.
Brachys: Crab NM (PLD/MNK)
Had a pretty decent (25-30%) Counter rate. Bubble Curtain's Shell effect reduced enspell (RDM with Crocea Mors) dmg to 0 unless it was dispelled. Used Invincible at 25%. Easily landed enfeebles (Slow, Para, Blind, Frazzle, Distract) Pretty easy fight overall.
It was spawned using 10 Izzat after we killed Fetter + Beastmen mobs surrounding it.
Asura.Ladyofhonor said: »I have Moogle Mastery III, not sure what's doing it. Status report has:
Nostos killed: 306
Damysus: 2
Salmandra: 2
Cynara: 1
Chests: 3
Seems I ranked up when I killed an Agon Bruiser.
The augment system is “tiered”. I’m working on my alts Emeici +1.
Ranks 1-5 give +2 damage. Ranks 6-10 give +2 damage, +3 acc/macc. I assume ranks 11-15 give +2 damage, +3 acc/macc, +2 crit rate.
That’s a neat way to do it, it incentivizes the more expensive ranks.
Just had a bad solo experience... turns our not all popped NM's are soloable. Do not recommend popping the nm's for 10 izzat.
Got a cactus who would constantly triple attack and did 600 normal / 1200 crit per attack round. August got insta-KO then healer then myself within 7 seconds.
Recent Video by Brother Ejinn and Martel:
YouTube Video Placeholder
|
|