Final Fantasy XIV Database - Ffxivpro.com

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Search Term:
In:
Sort By:
Date:
Showing 931-960 of 10000
By spicychai on 2025-05-24 13:05:38
Thanks all, the harp is sounding pretty good right now. If the NM 50/75/75 items aren't too bad then I'll definitely jump into getting the empy too. This would give me a nice job to have for support finally.

Otherwise, it probably comes down to Katana or Chango.

If Chango is pretty fun then might start building WAR since the idea of spamming fell cleaves and SCing with all those attack buffs sounds very nice, and as a solo enjoyer, probably would be a fun zerging setup too.

The Heishi is still under consideration, I love NIN so if the damage is actually similar to my RDM with temper 2 and crocea or naegling/thibron SB then I might consider it as another solo option.
By . on 2025-05-24 13:02:09
Uh… I had a colleague who had one of his arm with some sort of illness. It was malformed, and it seems like he hadnt couldnt feel anything in that arm.

He told a story he was cooking something, then his wife came in and told him to move his arm because it was being burned by some pan.

I felt weird hearing this story, how vulnerable he was without his touch. He could literally burn his arm to the ashes before noticing it. Frightinig.

That said, despite the risk, no physical pain is preferable than constantly suffering. Constant pain will eventually reach your psyche, and your mind also will go down.

SO

Playing a game in your gaming chair

OR

Playing a game in your confy sofa?

(Wondering if I will place my consoles in the living room or my office room in my new home. Living room requires sofa. I would like to play at living room, but then I would need to use the sofa)
By Garuda.Chanti on 2025-05-24 12:51:02
Dodik said: »
I wouldn't eat USA beef if you paid me though.
You don't even want to be in the same supermarket as our chickens.
By Dodik on 2025-05-24 12:46:57
Zilart had the best story by far, before it all went a bit Pete Tong.
By Godfry on 2025-05-24 12:21:00
Cor-Bard for your alts and WAR-BLU for your main and problem solved.

Full Sakpaka - Naegling war is the cheapest-strongest option. BLU for AoE related stuff.
By Dodik on 2025-05-24 12:11:58
Make an outer loop for going through inventory 0-12 Nynja, saves you copy pasting like it's an excel sheet.
By Corfios on 2025-05-24 11:55:05
Very basic example of some vr stuff in ffxi on this project.

YouTube Video Placeholder
By . on 2025-05-24 11:50:10
Brazilian beef is pretty popular in Europe. As is Argentinian.

I make no comment on which is better.

I wouldn't eat USA beef if you paid me though.
By Dathus on 2025-05-24 11:37:03
Dodik said: »
Hotshot can hit like a truck without magic buffs, but need threnody yes.

Assuming that higher damage only really comes with augmented Nyame? haven't really been doing Bumba fights yet. Need to get some Ody farming regularly going.


Additionally, is Ephra's better than Cornelia's? I got it originally because when the rings were released it was shown as BiS for Leaden, and also been using it for WAR and DRG.
By K123 on 2025-05-24 10:57:54
Kaffy said: »
the whole premise was best 3 job combo to start brand new and do as much as possible without needing to change jobs. obviously there will be strengths and weaknesses in any composition but I don't think anyone would vote for THF as one of those jobs just because of Aeolian Edge, but maybe I'm wrong.
You don't need to full gear thf to AE old dynamis or einherjar or nyzul though
By detlef on 2025-05-24 10:49:44
If you ever plan to play BRD at all you should do Marsyas. And if you pair Marsyas and get a Miracle Cheer for your Bonanza kupon, you're almost all the way there. I would definitely prioritize Daurdabla after that though. It's a lot easier than it used to be since Ochain, Kannagi, and Almace have lost a lot of popularity over the years.
By blucorp on 2025-05-24 10:39:35
Thank you.
By AJGiger777 on 2025-05-24 10:35:49
Picked the staff so I could slot some defensive gear into precast just in case heh.. Suppose RR5 is a nice freebie for a daily run.
By NynJa on 2025-05-24 10:34:27
I found that function in porter after when I was trying to find a way to modify the export text to show which slips I own and dont.
By K123 on 2025-05-24 10:30:07
I love Doji so much. You need it to solo Kei and it is useful for other things.
By LightningHelix on 2025-05-24 10:26:11
Carbuncle.Nynja said: »
I also found out that porter has a function that does what I wanted, but it reports ingame, not to a file.
Can you just use that + have logger running and that'll output it to the file where it logs your chat log?
By NynJa on 2025-05-24 10:24:43
Yeah, I figured that part out, and made some of the ugliest code possible:
Code
 local str = 'return {\n'
        for _, item in ipairs(windower.ffxi.get_items(0)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" main,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(1)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" safe,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(2)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" storage,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(3)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" 3,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(4)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" locker,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(5)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" satchel,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(6)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" sack,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(7)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" case,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(8)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" wardrobe,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(9)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" safe2,\n':format(res.items[item.id].name)
            end
        end
        for _, item in ipairs(windower.ffxi.get_items(10)) do
            if slips.get_slip_id_by_item_id(item.id) and res.items[item.id] then
				local slip_id = slips.get_slip_id_by_item_id(item.id)
                str = str .. ' slip ' .. tostring(slips.get_slip_number_by_id(slip_id)):lpad('0', 2) .. '    "%s" wardrobe2,\n':format(res.items[item.id].name)
            end
        end



All I know is that its doing mostly what I want it to do.

I also found out that porter has a function that does what I wanted, but it reports ingame, not to a file.
By LightningHelix on 2025-05-24 10:23:15
spicychai said: »
Fomalhaut: I'm not a COR but I enjoy the job. A person advised that having this jumps a COR quite a bit, and though Death Penalty is nice, you can still COR without it? Keen to know how it changes the job though. My current naegling COR with malignance does low damage, I assume last stand is what you'll spam with Foma, just how well does it boost your damage? And is it mostly a damage increase over providing more utility?
The thing with COR is that Death Penalty is going to make Leaden Salute your best magical ranged WS option for anything that doesn't resist Darkness element. Fomalhaut makes Last Stand your best physical ranged WS option. Naegling makes Savage Blade... your best WS option, really.

Fomalhaut is good and useful, but you're making it for the situations where 1) you can't Savage Blade and 2) you can't Leaden Salute effectively. Which is kinda rare - I would say if you did want to COR I'd just start the mythic grind to make DP first because that's the hard one and pick up Fomalhaut at some later date if you are still interested.
By LightningHelix on 2025-05-24 10:16:18
Carbuncle.Nynja said: »
Is there an addon that does porterpacker's export functionality but for all bags, not just main inventory? Alternatively, what should I change from the export code to turn it from main inventory to all bags?

...

It doesnt look like its running any other function within the if statement, so the entire process is there. I know ipairs(windower.ffxi.get_items(0)) tells it to look in main inventory. Unless theres another function that does a full parse through all bags/inventory, the solution is to put the current for statement starting on line 3 in another for statement that tells it to cycle through all the bags?
This is not nearly a full answer for you, but your intuition is correct here. iterating that numeric parameter in get_items() from 0 to 12 should do every inventory.
By LightningHelix on 2025-05-24 10:13:37
Lakshmi.Byrth said: »
7. They take the one loser piece per set (Maxixi Tights and Horos Bangles) and make them not suck with something unique.


got it
By Lunafreya on 2025-05-24 09:56:15
I wouldn’t do horn unless you are 100% positive you will get the empy harp. An honor march brd without 4 songs isn’t gonna get used all that much in endgame unfortunately. Carn is less “required” but really helps you get the maximum duration out of soul voice songs but you could technically get away with not having it I suppose.

Brd will open up the most doors for you content wise. If you are just going for fun, I’d go Heishi as that makes ninja hybrid WS very effective and a solid solid physical dmg weapon as well.
By Taint on 2025-05-24 09:45:04
I've actually Toyed with the idea of making Nyame A hands and feet. Hands and feet are in a weird spot for SAM when it comes to TP and DT sets.

Hoping AF/Relic+4 fixes that.
By Chanti on 2025-05-24 09:39:23
Fenrir.Niflheim said: »
Cab, service or value?
Airline, service or value?
Coffee Shop, service or value?
Grocery Store, service or value?
Walmart, service or value?
Dell, service or value?
Nvidia, service or value?
Intel, service or value?
Microsoft, service or value?
I would like to remind you that bulls "service" cows.

With that definition in mind ...

Airline, service
Walmart, service
Dell, service
Nvidia, service
Intel, service
Microsoft, service until the cows come home.
By Kaffy on 2025-05-24 09:33:27
the whole premise was best 3 job combo to start brand new and do as much as possible without needing to change jobs. obviously there will be strengths and weaknesses in any composition but I don't think anyone would vote for THF as one of those jobs just because of Aeolian Edge, but maybe I'm wrong.
By Garuda.Chanti on 2025-05-24 09:26:46
Dodik said: »
Also, Chanti you should know better than to tell a Brazilian they should buy Argentinian beef.
As I said I have no idea about Brazilian beef. I do know that there are Argentinian steak houses throughout Europe. Complete with phony gauchos as waiters. And with what we do to beef cattle here in the USA I cannot blame Europe for ignoring our beef.
By otomisnahua on 2025-05-24 09:14:24
Asura - 10am EST - 4300 online
By Michelob on 2025-05-24 09:02:37
Was 910 last night on Phoenix at around midnight EST.
By Godfry on 2025-05-24 09:00:56
What's the point of asking people for the their opinion on how you are gonna run your multi-box if you are just going to try to counter their suggestions?
By K123 on 2025-05-24 08:59:11
Oh I thought it actually scanned people's bazaars? This is how I find items sometimes.
By SimonSes on 2025-05-24 08:40:02
Kaffy said: »
I'm a huge THF fanboy and love any excuse to use gandring, but that's not within the scope of this scenario.

Yeah, but SU4 could be.
Top
First Page 2 3 ... 31 32 33 ... 332 333 334