XIVCrossbar - A Gamepad Macro Addon

Langues: JP EN DE FR
users online
Forum » Windower » General » XIVCrossbar - A Gamepad Macro Addon
XIVCrossbar - A Gamepad Macro Addon
First Page 2 3 ... 11 12
 Fenrir.Jinxs
Offline
Serveur: Fenrir
Game: FFXI
user: Jinxs
Posts: 552
By Fenrir.Jinxs 2024-10-29 12:04:27
Link | Citer | R
 
Bahamut.Janae said: »
Hey, thanks for the quick response! Correct, a Dualshock 4!

After reading back my initial message, I didn't mention that as a result of the d-pad not being recognized by the addon, I can't bind skills on the d-pad or interact with the addon using the d-pad whatsoever. So this leaves me only with the abxy to assign skills/macros to, and adding skills to the bars requires an invisible mouse cursor (lol) which is no good.

The addon only picks up the face buttons. Apologies for the lack of clarity there.

If it would help, I could record a quick video showing what I'm talking about

Personally, I got frustrated with direct input devices.

What I recommend you try next is getting a simple ahk script with relation to direct input to see if the dpad inputs are being registered.

It does not specify if this will work for direct input
https://documentation.help/AutoHotKey-Functions/JoystickTest.htm

But if I had to guess your problem could be related to ds4 and ahk
Controller=> ds4=> ahk => game

It's possible it's seeing the dpad but not something it understands.

Try searching this thread for ds4 or direct input
 Bahamut.Janae
Offline
Serveur: Bahamut
Game: FFXI
user: Janae
Posts: 2
By Bahamut.Janae 2024-11-20 09:00:25
Link | Citer | R
 
Hi folks, just to follow up in case anyone reads this in the future, I got frustrated with trying to get the PS4 controller's d-pad recognized and ended up buying an 8BitDo Pro 2, which worked out of the box like a charm.
necroskull Necro Bump Detected! [43 days between previous and next post]
Offline
Posts: 136
By Sylvebits 2025-01-02 13:06:28
Link | Citer | R
 
Has anyone noticed crashing with XIVCrossbar sometimes? Specifically when hitting X to open the chat log and trying to view through it
 Fenrir.Jinxs
Offline
Serveur: Fenrir
Game: FFXI
user: Jinxs
Posts: 552
By Fenrir.Jinxs 2025-01-25 22:51:01
Link | Citer | R
 
Does anyone know how to bypass the server check?
I spun up a private server to mess around with some friends and I am unsure how to bypass this.

xivcrossbar.lua 149
local server = resources.servers[windower.ffxi.get_info().server].en
Storage.lua 42
self.directory = player.server .. '/' .. player.name

EDIT:
fixed it by
local server = Nameless
self.directory = "Nameless \\ Jin"
Offline
Posts: 5
By FrostTrunks 2025-02-05 06:42:46
Link | Citer | R
 
Is it possible to map a command like ctrl+e or ctrl+i to open the equipment/items menus? I tried putting it in a script, but I don't think my syntax is correct.
 Bismarck.Voight
Offline
Serveur: Bismarck
Game: FFXI
Posts: 19
By Bismarck.Voight 2025-02-15 03:15:37
Link | Citer | R
 
Finally playing on a screen large enough to use some UI elements, and after trying out this gem, I'm hooked
Offline
Posts: 5
By FrostTrunks 2025-03-13 06:28:39
Link | Citer | R
 
Is it possible to display the cooldown for an ability that is tied to an ex command script?
For example: I have a script that changes my equipment to thf af boots for increased flee, then flee, then wait 46 seconds, then equip trotter boots. It works great, but then I lose my cooldown timer on the icon. Any way to tie this to the flee cooldown?
Offline
Posts: 136
By Sylvebits 2025-03-13 09:16:08
Link | Citer | R
 
FrostTrunks said: »
Is it possible to display the cooldown for an ability that is tied to an ex command script?
For example: I have a script that changes my equipment to thf af boots for increased flee, then flee, then wait 46 seconds, then equip trotter boots. It works great, but then I lose my cooldown timer on the icon. Any way to tie this to the flee cooldown?

I've been trying to figure out how to do that myself. It might be something that has to be manually added through the config and settings files. Alternatively, or at least in the meantime, Ive been using a /echo notification. Ive also heard there's an addon that allows for like.. a sound prompt so you could tie the script to that to indicate that the ability is ready.

Bismarck.Voight said: »
Finally playing on a screen large enough to use some UI elements, and after trying out this gem, I'm hooked

Welcome :3.

Sylvebits said: »
Has anyone noticed crashing with XIVCrossbar sometimes? Specifically when hitting X to open the chat log and trying to view through it

Responding to myself for future people. Sandbox plugin fixes this.
Offline
Posts: 5
By FrostTrunks 2025-03-14 12:34:20
Link | Citer | R
 
Sylvebits said: »
I've been trying to figure out how to do that myself. It might be something that has to be manually added through the config and settings files. Alternatively, or at least in the meantime, Ive been using a /echo notification. Ive also heard there's an addon that allows for like.. a sound prompt so you could tie the script to that to indicate that the ability is ready.

Not a bad idea. I recall seeing that addon for sound notifications too. I might have to look into that. Not useful if I have my sound off tho lol. I haven't toyed around with trying to get it to work in the xml yet.
Offline
Posts: 5
By FrostTrunks 2025-03-20 17:06:38
Link | Citer | R
 
I fixed dancer. I noticed it didn't work properly. I found at least one person's attempt to get it to work, but it broke other things. My version doesn't break anything. lol

New Menus

I am looking into adding the custom cooldown but it's not a high priority. I just added the actual Flee ability to another xbar location above the script so I can see it :)
Offline
Posts: 136
By Sylvebits 2025-03-25 11:26:08
Link | Citer | R
 
Just wanted to add that if you're hardcore using XIVCrossbar like myself, you may run into the issue of getting a lua error when pressing start if your menu has more then 28 listings, disabling your ability to view the menus you've created or make more. The XML and addon will still work otherwise.

You can get around this by going into then environment.chooser.lua withing XIVCrossbars folder, and changing line 115 to 120 to this:

for i=1,50,1 do
self.environments = {}
self.environments.name_text = texts.new(text_setup)
setup_text(self.environments.name_text, theme_options)
self.environments.name_text:hide()
end


Basically, you just change whatever the original number was to 50, 100.. whatever you like. This solves the error and lets you view your all your menus created.

On a separate note for the dev: is there a way to incorperate magic burst hightlighting similar to how weapon skills turn skill chains?
Offline
Posts: 5
By FrostTrunks 2025-03-25 12:22:10
Link | Citer | R
 
This is my fork, if anyone is interested.
I fixed dancer, run, and mounting. Binding individual mounts was broken. It works now, and will dismount if you select it again.
Repo for fixes
First Page 2 3 ... 11 12
Log in to post.