|
 |
|
Gearing BST and figured I need to get Cloudsplitter, so I thought about making Farsha. Is it any good when fully upgraded? Or is it more of a toy? I already have Aymur, but don't plan on making Guttler, unless that happens to be a better choice to Farsha.
Edit: And yes, I know I can build the -1 for Cloudsplitter, but if Farsha can be used for anything decent it would be worth going down the Empy path.
I would say yes. I used both Farsha and R25 Ikenga's Axe as WAR during KI1 of Bumba v25 and in each scenario I was top parse and we got Bumba to 54-59% each time. (I'm sure that in a scenario were Beastmaster is preferred, this would also be a more than viable option).
|
|
 |
By Chanti on 2025-07-20 09:38:59
|
Anna, I would hug you but the interwebs are in the way. Consider yourself hugged.
Panta, I figured that out at 16. I was a precocious child.
Afania, You merit a topic ban.
|
|
 |
|
Old and a bit cloudy information is that Singing skill converts pretty close to 1:1 to macc.
Wind skill converts 3:1 to macc
String skill provides no macc at all, but additional range on (some) songs. Pretty useless on everything else.
Again, don't rely too much on what I said, it's just a very very generic baseline.
|
|
 |
By Dodik on 2025-07-20 08:16:31
|
There's no hard info on how much macc singing or wind/string skill are worth.
Generally with master levels pushing base skill up higher, macc adds more than either skill, IMO.
Exception is horde lullaby 2 and radius increase which is based on string skill tiers.
|
|
 |
By K123 on 2025-07-20 08:14:13
|
|
|
 |
By K123 on 2025-07-20 08:13:25
|
With 100% BiS elegy gear can anyone land Elegy reliably on V25 and pets -without- Troubadour?
|
|
 |
|
I have forgotten the lore on how much Macc skill is worth on bard. 0.3 for singing and 0.7 for instrument? 1 for instrument?
My proposal:
389 Macc
222 CHR
41 string
40 singing
57 wind
Empy+3 (add the Second best Macc earring you have):
310 Macc
220 CHR
22 string
74 singing
46 wind
I think some AF+3 is probably better than the full Empy+3 set, though.
|
|
 |
|
Probably 4/5 AF+4 (empty+3 hands?) with Regal Earring? How much is it actually over just 5/5 emp? I don't wanna spend 100k+ on 5-10Macc. 20 Macc more would justify it I guess.
You basically ask people to go to bgwiki, take a calculator and add macc on those pieces, subtract and give you an answer. Do it yourself lol. I can understand asking for custom sim info, you might not know how to edit code or something, but asking for something like that is kinda silly.
|
|
 |
By K123 on 2025-07-20 07:52:25
|
Probably 4/5 AF+4 (empty+3 hands?) with Regal Earring? How much is it actually over just 5/5 emp? I don't wanna spend 100k+ on 5-10Macc. 20 Macc more would justify it I guess.
|
|
 |
By K123 on 2025-07-20 07:38:28
|
What's the absolute highest Macc in armor slots for Elegy vs V25 & pets now? Is it 5/5 AF+4 or a mix of AF/Relic/Emp?
|
|
 |
By K123 on 2025-07-20 07:36:34
|
|
|
 |
|
Interesting progression of top 10 animes in My Anime List 2 decades.
YouTube Video Placeholder
|
|
 |
|
Dont try to derail serious topics.
If you have something to say, say it to the OP.
|
|
 |
By Rips on 2025-07-20 04:13:11
|
Besides the stroke part, something very similar happened to a friend who went from nights to days at Home Depot. He too, got screwed after something was promised.
I’m sorry. That sucks. I hope the best for you and your family. Have a plan on how to cope with mental health breakdowns. It helps.
|
|
 |
|
Don't forget to wake up early and do day zero objectives like good drones! Don’t forget to touch some grass from time to time
|
|
 |
|
All of us that I do runs with do 2-5 runs per week. We did Temenos again today with a 5th person who was able to get the ??? points. Other two players who could not get before still could not get it. Doing Apollyon runs we were all able to grab that one twice this week (different spots).
|
|
 |
|
|
|
 |
By on 2025-07-19 23:28:24
|
|
|
 |
|
Ur wrong. And you have a bad taste too. Why are you so into people with breasts and a penis? Nothing wrong with a little bit of Futa.
|
|
 |
By Keyser on 2025-07-19 20:32:46
|
Hmmmmmmmmmmm....
I just may. Thank you for that.
|
|
 |
By Genoxd on 2025-07-19 19:33:26
|
I wrote something similar but I also added compass directions and distance to target. Feel free to add it if you want
Code
function printLocation(target_mob)
if target_mob == nil then
return
end
local player = windower.ffxi.get_player()
local player_mob = windower.ffxi.get_mob_by_index(player.index)
local degrees = math.deg(getAngle(player_mob, target_mob))
local compass = degreesToCompass(degrees)
local distance = math.sqrt(target_mob.distance)
if addtochat then
windower.add_to_chat(128, '<'..tostring(target_mob['name'])..'>! '..tostring(compass)..' '..tostring(distance)..' yalms.')
end
end
function getAngle(me,point)
local dir = V{point.x, point.y} - V{me.x, me.y}
local heading = V{}.from_radian(1.57075)
local angle = V{}.angle(dir, heading) * (dir[1]*heading[2]-dir[2]*heading[1] < 0 and -1 or 1)
return angle
end
function degreesToCompass(degrees)
local direction = 'inv'
if degrees > -22.5 and degrees <= 22.5 then
direction = 'S'
elseif degrees > 22.5 and degrees <= 67.5 then
direction = 'SW'
elseif degrees > 67.5 and degrees <= 112.5 then
direction = 'W'
elseif degrees > 112.5 and degrees <= 157.5 then
direction = 'NW'
elseif (degrees > 157.5 and degrees <= 180) or (degrees < -157.5 and degrees > -180) then
direction = 'N'
elseif degrees >= -157.5 and degrees < -112.5 then
direction = 'NE'
elseif degrees >= -112.5 and degrees < -67.5 then
direction = 'E'
elseif degrees >= -67.5 and degrees <= -22.5 then
direction = 'SE'
end
return direction
end
|
|
 |
|
I always think amazing when old dudes sneak in kids shows a lot of deep complex themes
YouTube Video Placeholder
|
|
 |
By K123 on 2025-07-19 18:57:29
|
Server: Asura
Floor: SW floor 3
Approximate Location: At the start, go slightly to your left, behind a column near the edge of the floor.
Time (include time zone): Right now Still there.
|
|
 |
By Carbuncle. Nynja on 2025-07-19 17:52:45
|
Git gud scrub
|
|
 |
|
Hey everyone, just wanted to pop back in and say thank you for all the interest, attention and support the server has receive. It means a lot to see the positive responses.
We have added half a dozen people to the team since the thread started. Which has given development a boost and things are moving steadily. I'm excited to see what we create with the help of everyone involved.
Updates will be shared here and on the subreddit as development progresses. So that those interested can follow along and stay informed as things take shape.
|
|
 |
By . on 2025-07-19 17:23:25
|
The only good side of this is that somehow Im becoming extremelly desensitized to frustrations.
Maybe before I would explode in anger by having everything almost perfect to die and lose everything at the very last blow in the run.
Now I just shake my head and try again.
Yeah, this is a good thing I think. Its a lot of time wasted, but my head is pretty stable this entire time.
Mostly at least.
|
|
 |
|
Still on the lookout for a 6th person to join our group. Jobs can be RUN/SCH/GEO/COR. We do Hard Mode Aminon typically yearly, in that we farm 8 Mesos and then go back to Magic Strat.
Mon-Thurs 8:30PM EST
Friday 8PM EST.
Please let me know if you're interested.
|
|
 |
By . on 2025-07-19 17:07:32
|
Jesus christ, Im already over 10h trying to get a good record of a single 30 minutes run in Palworld, and IDK, either RNG is ruining stuffs, or small mistakes simply ruin the entire record.
It is insane how long Im stucked in a short 30 minutes run, with 4 small RNG events, 2 mid RNG events, one major RNG event and fighting 4 monsters with the handicap of only 2-hits KO on my char...
Well, looking now, expecting the moon aligns 7 times in a row plus playing with such small margin of mistakes kinda explain why Im 10h+ trying this. It just sucks I could have this done like 15h ago if I hadnt made a small mistake evading a killing blow.
Dang, today was horrible...
|
|
 |
By Keyser on 2025-07-19 16:57:56
|
1 and 2 should be relatively easy to add in, I can do that sure.
3 is a little trickier because of the way I have it setup. I do some weird things to make the shadow text lineup correctly with the text it is the shadow of (see below). Plus changing the color of specific text inline will actually override the alpha setting, setting it to max. So I could probably finagle in options for the shadow colors, but the alpha is effectively stuck at the full 255. The only way the Fade animation works is by first stripping out all the formatting of the text before lowering the alpha, which is why everything turns white right before the fade.
Here is the longer explanation of how I have the colors setup: Adding the code to change colors (\\cs(123,456,789)text here\\cr) introduces a very small change in horizontal spacing of the text it colors. Even the number of digits used within the RGB numbers seems to make a difference, I have a function that literally just adds leading zeros to any RGB color numbers to help it line up. The shadow text is a literal duplicate of the normal text, but all black, no color changes, so no spacing change. Add in a couple color changes in the normal text and it starts getting out of alignment with the shadow text for it. My solution was to add in a fake all black color change to the shadow text at every point that the normal text changes color, keeping them aligned. Those color changes are made to the text before they get added into the table that holds all of the current actions of everything around you, then the different target bars then just call up and display whatever is in there, colors and all. All this means is I'd have to go through the giant action section and convert all the fake all black color changes over to a variable that holds the desired colors. Entirely doable though.
|
|
 |
|
Since we already hit the bonus to get increased Ambuscade Points next month, do we know what next month's Ambu is going to be?
They have said they are keeping the same 24 V1 in a cycle and looking back through the forums I can't quite tell which one came after Yagudo last time. Looks like August 2023??
|