Here's My Cozy HD/UI And Ingame Setup :)

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » FFXI » Dat Modding » Here's my cozy HD/UI and ingame setup :)
Here's my cozy HD/UI and ingame setup :)
Offline
Posts: 68
By Sylvebits 2024-09-17 17:59:19  
Deleted and moved my original post here as I think it's more subject appropriate

Thanks everyone who helped me whenever I had questions trying to make this. The goa was to make a cozy yet functional way to play XI as both a single and dual boxer. Please let me know what you all think!

Thank you to RadialArcana, Nextlore, Amelia, and Ashenbub for making this game beautiful in 2024 :), as well as all the people who worked on performance optimization

Thank you Aliekbar for XIVCROSSBAR, Shadida for her edit to XIVCROSSBAR to allow this, and everyone involved in that thread

Thank you to the devs of XIVBAR/PARTY, Pointwatch, and enemybar2 for helping bring QoL to the game :)


YouTube Video Placeholder
[+]
Offline
Posts: 68
By Sylvebits 2024-09-19 13:06:46  
Because I'm still waiting for YT verification, here all the links to what I mentioned. I've included a read me document on how i did some of this stuff with XIVCrossbar, but I will most likely just make a how-to video for it.

ADDONS:

XIVCROSSBAR

https://github.com/AliekberFFXI/xivcrossbar
https://www.ffxiah.com/forum/topic/55374/xivcrossbar-a-gamepad-macro-addon - Page 6 for Shadida's edit

XIVBAR
https://docs.windower.net/addons/xivbar/

XIVPARTY
https://github.com/Tylas11/XivParty

BALLOON
https://www.ffxiah.com/forum/topic/56227/balloon-story-addon/

ENEMYBAR2
https://github.com/AkadenTK/enemybar2

POINTWATCH
https://docs.windower.net/addons/pointwatch/

SEND
https://docs.windower.net/addons/send/

SENDALLTARGET
https://github.com/bamboooya/SendAllTarget

SUBTARGET
https://docs.windower.net/addons/subtarget/

My google drive:
https://drive.google.com/drive/folders/1gXfWpPNeAnfJz13wgte3uPL8qoCa97ZR?usp=drive_link

RadialArcana
https://www.ffxiah.com/forum/topic/57037/hd-ui-and-skillspell-mods-xivew-variant

Nextlore
https://www.youtube.com/watch?v=xD4aCHdYcSk&t=25s&ab_channel=NextGames
https://www.nexusmods.com/finalfantasy11/mods/12

Amelia
https://www.youtube.com/channel/UCKJ4a33wIHWadqXW7SP87aQ

Ashenbubs
https://www.nexusmods.com/finalfantasy11/mods/1
[+]
Offline
Posts: 14
By Smurf0365 2024-10-05 08:30:15  
how do u set up xiv bar?
Offline
Posts: 14
By Smurf0365 2024-10-05 08:30:15  
how do u set up xiv bar?
necroskull Necro Bump Detected! [55 days between previous and next post]
Offline
Posts: 68
By Sylvebits 2024-11-29 11:43:56  
UPDATE FOR THE DUALBOX PORTION: I figured it out a little while after making the video, but I've removed the pause delay needed to select a target before cast a cast occurs. You can now open the selected menu, select your target, then select the spell to be cast. The spell cast is as fast as hitting a macro or selecting the spell from the ingame menu.

As such, the cure menu script is now:

xb bar Cures;
pause .05;
target <stal>;

That opens the cure menu you've made, allowing you to select a target. Once you have your target hovered over, you can select the spell to be cast:

//Cure IV
setkey enter down;
wait 0.1;
setkey enter up ;
xb bar Main;
sta go characternamehere Cure IV;

You can do this with all your friendly spells.

I haven't worked on this too much, but I'm tackling doing the same for enfeebling spells.
Offline
Posts: 68
By Sylvebits 2024-12-19 18:45:28  
Update! It took some braining, but after much trial and error I have managed to get it where I can debuff subtargets without needing to be engaged or using <bt>.

This functions similar to how I got cures to work without any delay.

The script for the debuff page is now:

xb bar Enfeebles;
pause .05;
target <stnpc>;

This opens up the debuff menu, in my case: Enfeebles. You are are now free to pan through targets at this point.

The second script is for the spell:

xb bar Main;
sast youcommand yourcharacternamehere Silence;
wait 0.2;
setkey escape down;
wait 0.1;
setkey escape up;

This will have your alt cast a spell on your subtarget. After which, you are return to your locked target state.