Final Fantasy XIV (Guide in first post)

Malakriss

Golden Baronet of the Realm
12,341
11,732
Had a shower thought today. With being able to 2-step 100% old recipes i was looking back at SB ones and most are really awful with the mats, but then I thought about 6.0. Stuff like refined natron if it still gives even 50 scrips may be the cheapest most efficient turn-ins when you can pump them out that fast.
 

a_skeleton_02

<Banned>
8,130
14,248
Had a shower thought today. With being able to 2-step 100% old recipes i was looking back at SB ones and most are really awful with the mats, but then I thought about 6.0. Stuff like refined natron if it still gives even 50 scrips may be the cheapest most efficient turn-ins when you can pump them out that fast.

It is, FC mate ground like 6k yellow script today.

Also ran a map dungeon that had the press your luck for shell leather and we got 6 of them.

Turned them into two urban coats and sold them for 13 million each

6.5 Milly for 30 minutes for all four is us.
 

Pyros

<Silver Donator>
11,058
2,261
I need more CP. Tried to make a HQ Facet Hammer and only got NQ ;/
Use Teamcraft to figure that out before you craft, honestly I haven't attempted anything I can't HQ 100% in a long time. I just adjust food/syrup/HQ mats based on the best rotation I can figure with my current stats to get 100% and then just copy paste and hit the macro ingame.

You can still manual craft and get better results but you have to calculate a lot of stuff when you randomly change a step into something else(like you get a good proc between ingenuity and innovation, is it worth using tricks or using Intensive and how much will the loss of ingenuity affect your progress on that delicate that's coming and so on). Shit's a fucking headache, only manual thing I'd consider is fishing for good/excellent with the specialist skills but generally I'll just add a HQ material to fix it instead because it's not RNG reliant. Most of the time, it just means adding 10-20k to the cost of the craft, which is negligible with the amount of money I have anyway.
 

Merrith

Golden Baronet of the Realm
18,107
6,922
It is, FC mate ground like 6k yellow script today.

Also ran a map dungeon that had the press your luck for shell leather and we got 6 of them.

Turned them into two urban coats and sold them for 13 million each

6.5 Milly for 30 minutes for all four is us.

6k yellow? When you have a starred syrup that's less than 19 combines. Anytime I have a good yellow/white star I'm trying to grind out 200 combines minimum. Watch a stream, hit a macro every minute or so.
 

Flight

Molten Core Raider
1,229
281
hit a macro every minute or so.

You know about Autohotkey (AHK) ?

Press F7 come back 2 hours later (obv in example spoilered below put your in game macros on - and = ) :

; TWO BUTTON 38 20 35dur hard 2 star


F8::Reload


F7::
WinGet, FF14WinID, List, FINAL FANTASY XIV

Loop
{
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,-, ahk_id %FF14WinID1%
sleep 38000
ControlSend,,=, ahk_id %FF14WinID1%
sleep 20000

}

Return




edit : eli5 for anyone who hasn't used it :

Download AHK. Run it.

Right click AHK prog icon in windows bar -> edit this script

Once you have typed in/pasted your script and saved it right click AHK icon in windows bar again and select Reload this script (you also need to do this if you run AHK before you load FFXIV).



Text syntax :

Anything between a /* and a */ is ignored. So I keep a list of all sorts of short progs for FFXIV and swap out the one I want to use to the bottom outside those commands.

; at the front of a line is a comment that will be ignored.


In the prog I pasted above F7 runs the macro - it has Return at end so it will keep going back to the beginning until you press F8 which Reloads (stops) macro running.

To set which window to run AHK in first line is the WinGet command. Window FFXIV runs in is called FINAL FANTASY XIV hence first line is :

WinGet, FF14WinID, List, FINAL FANTASY XIV

FF14WinID is a variable whose name you can change - just make sure it matches the text inbetween the % % in the control send commands.


The control send command executes a keyboard or mouse action in the window you've set.

Num pad 0 is 'enter' in FFXIV so 'ControlSend,,{Numpad0}, ahk_id %FF14WinID1%' will enter'num pad 0' 3 times in the window you have set with the WINGET command. The sleep command is 'pause' in thousandths of a second so 'Sleep 1500' is a 1.5 second pause between each of these actions. Three enters with your item to craft selected in game starts the crafting.

- and = then cause the in game macros you have on - and = in game to run with a 38 second pause and a 20 second pause.


TLDR - macro in example above presses enter 3 times with pauses of 1.5 sec then macros on - and = in game with pauses of 38 sec and 20 sec and repeats until you press F8


IT ALSO FREES UP YOUR PC AND WILL KEEP RUNNING IN THE FFXIV WINDOW SO YOU CAN DO OTHER STUFF ON THE SAME PC WHILE THE CRAFTING IS RUNNING.



Example macros :

Collectibles crafting :


; COLLECTIBLE


F8::Reload


F7::
WinGet, FF14WinID, List, FINAL FANTASY XIV

Loop
{
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,-, ahk_id %FF14WinID1%
sleep 42000
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 2000



}


Return

It just adds a few extra num pad 0s to finish the craft when the collectible confirmation box pops up at the end of the craft.


Fishing :


; FISHING
WinGet, FF14WinID, List, FINAL FANTASY XIV



F1::
ControlSend,,{1}, ahk_id %FF14WinId1%
return

F2::
ControlSend,,{2}, ahk_id %FF14WinId1%
return

F3::
ControlSend,,{3}, ahk_id %FF14WinId1%
return

F4::
ControlSend,,{4}, ahk_id %FF14WinId1%
return

F6::
ControlSend,,{6}, ahk_id %FF14WinId1%
return

This allows you to activate keys (eg 1, 2, 3, 4, 6) in the game window while you are doing other stuff on the same PC out of the game by pressing Function keys. This just allows you to press those keys so you can fish without the FFXIV window selected.


House buying :


; FFXIV HOUSE BUYING


F8::Reload


F7::
WinGet, FF14WinID, List, FINAL FANTASY XIV

Loop
{
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 370
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 270
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 300
ControlSend,,{Numpad2}, ahk_id %FF14WinID1%
sleep 270
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 270
ControlSend,,{Numpad4}, ahk_id %FF14WinID1%
sleep 270
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 300


}


With a free house with the timer counting down until available to buy this will automatically keep trying to buy it every couple of seconds. Depending on your ping you might need to make some of those pauses a little longer. It's probably set to buy for an FC so you might need to change one of those numpad commands if you want to buy it for personal.


Finally an example of it in another game (Borderlands TPS) where it keeps pressing the F key to target and do a left mouse click to fire so you could target and autofire constantly at Marcus target dummy and auto level AFK :


; BORDERLANDS fire left click repeatedly

F8::Reload


F7::
WinGet, FF14WinID, List, Borderlands: The Pre-Sequel

Loop
{
ControlSend,,F, ahk_id %FF14WinID1%
sleep 200
ControlSend,,{LButton}, ahk_id %FF14WinID1%
sleep 200


}

Return
 
Last edited:

Merrith

Golden Baronet of the Realm
18,107
6,922
That may be something I use more once I get my new macros optimized for new stats with the better gear. For white scrips at least my old macro (since I was trying to keep it to just a single button) I would sometimes have to manually hit another careful synth b/c if Reuse would proc it would leave the final progress hit outside of an Ingenuity stack and would require an extra step to finish.
 

Flight

Molten Core Raider
1,229
281
That would be straightforward for AHK to deal with. Just tack on a step after the macro to use key 1 and put Careful Synthesis in slot 1. If it needs it it will use it if it doesn't it just adds a couple of seconds to the rotation - can obv add additional steps at the end for further use of Synthesis :

; macro with extra step


F8::Reload


F7::
WinGet, FF14WinID, List, FINAL FANTASY XIV

Loop
{
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,{Numpad0}, ahk_id %FF14WinID1%
sleep 1500
ControlSend,,-, ahk_id %FF14WinID1%
sleep 42000
ControlSend,,1, ahk_id %FF14WinID1%
sleep 2800


}


Return
 
Last edited:
  • 1Like
Reactions: 1 user

Merrith

Golden Baronet of the Realm
18,107
6,922
Well the good news is I shouldn't have to have that addition for any of the scrip macros now with new stats. Everything should be able to be done in a single macro and have it all fall under Ingenuity with proper ordering.
 

Malakriss

Golden Baronet of the Realm
12,341
11,732
Story is great, crafting is a bit.. skewed atm and they made first savage tier easier than other expansions. Alliance raid is solid with visual cues not just telegraphs, trusts let you skip the awful dps queues, people actually doing pvp for new glamour.

Still have zero idea what ishgard restoration will entail, or relics.
 

Pyros

<Silver Donator>
11,058
2,261
How has the new xpack shaped up? Better than Stormblood?
It's the best expansion by a fair margin imo, the story is just really great, music and locations are awesome, fights are awesome. When I cleared it I said it was probably one of the better Final Fantasy they've made in the past decade. Which doesn't say much since they haven't done very good FFs lately but I really liked it, although being a mmo pacing is different than if it was purely a single player game and it could have been better designed like that.

In terms of current endgame content, I like the first raid tier, it has some interesting ideas and the fights are pretty fun, trials are ok so far(since it's x.1 there's only the 2 starting ones which are very easy but have cool design and the MSQ trial as extreme which is a pretty fun fight). Nier raid is great and unless they fuck it up entirely will probably be the best 24man too. Dungeons are so so, a couple of the leveling ones are nice though(75 and 80 notably).

They haven't added too many new things yet otherwise, Trusts(which are mostly evolved squadrons) are nice but situational and fairly casual, New Game + is even more situational.

Class reworks there's some hit and misses but I wanna say mostly hits, a lot of classes feel pretty nice to play(MCH for example is really cool now imo), although balance right now is a bit fucked due to them tweaking shit too hard(not like completely fucked, but SMN is top DPS again when it really shouldn't for example).

Crafting rework is nice enough imo, it doesn't change that much compared to before but I don't need 3.5bars of abilities anymore so that's great and there's a ton of QoL(quicksynth is actually good and quick now, desynth is a lot more useable, can 100% HQ previous expansion gear instantly), gathering saw similar QoL with autocollect, higher base gathering rate(so no more struggling at 75% when lvling in garbage gear), perma stealth/unspoiled detection and no more remembering the slots for speical nodes, and both are a lot faster to level too for new players and such.

Overall it's great but as usual if you're not in a hurry you can always wait for free sub/sub later and see even more content at once. There's not THAT much to do atm since it's still the first tier, assuming you don't want to level a ton of jobs and don't necessarily do all side activities, but there's a fair amount, but imo and I said that at release too, the game is worth full price just for the 70-80 MSQ alone.
 
  • 4Like
Reactions: 3 users

Pasteton

Blackwing Lair Raider
2,602
1,714
The expansion was so good that, it feels weird after you’re done with it and your just in ‘standard ffxiv theme park mmo’ endgame again lol which isn’t bad but very predictable at this point. I know it’s unfair of expect to have the quality of their story continue into some kind of persistent mmo world but because it was so good this time, the difference is jarring
 

Malkav

French Madman
2,686
1,583
Doesn't help that the .1 MSQ is usually "eh...", but they adhere to a pretty standard formula at this point :
- .1 patch is about the aftermath of expansion MSQ and starts the path on resolving a few plot points
- .2 ramps up
- .3 is the real end of the expansion storyline.
- .4 and .5 start up the next expansion storyline.
 

Merrith

Golden Baronet of the Realm
18,107
6,922
While it was good to get the resolution to the "meanwhile" part (although predictable in nothing actually happening), agree that the .1 part is so short compared to doing the full expansion msq it barely scratches the itch.
 

Cybsled

Avatar of War Slayer
16,445
12,091
Story could go any way, but I predict the biggest threads will be the Garlemond civil war and whatever eldibus is doing.
 

Daidraco

Golden Baronet of the Realm
9,204
9,306
Story could go any way, but I predict the biggest threads will be the Garlemond civil war and whatever eldibus is doing.

Which they've done a great job with leaving those things wide open, cause I'll definitely come back and resub for each MSQ update. It's just something about FFXIV that I havent found myself wanting to grind away at anything in it. Props to those that do enjoy the game enough to do that, but similar to what Pasteton Pasteton was saying.. Having everything just come to what seems like a stop seems alienating.