Lua Addon Ideas

Langues: JP EN DE FR
Yellow Box
users online
Forum » Windower » General » Lua Addon Ideas
Lua Addon Ideas
First Page 2 3 ... 31 32
 Shiva.Thorny
Offline
Serveur: Shiva
Game: FFXI
User: Rairin
Posts: 3751
By Shiva.Thorny 2026-02-13 15:58:14
Link | Citer | R
 
Using AI to create an addon that injects packets is a great way to accidentally crash a zone and end up permabanned. It doesn't have the contextual knowledge to do what you're asking; at the very least you need a human to investigate the layout of the 0x34 and 0x5B parameters by either using the NPC manually or breaking down the event dat. Different warps treat the parameters differently.

With an understanding of how the fields are laid out and a mapping of any necessary parameters(hopefully just an index -> zone warp), AI *might* be able to do the rest without messing up. I still wouldn't trust using it on my own character if I didn't know how to evaluate what it wrote.
[+]
Offline
Posts: 247
By Ranoutofspace 2026-02-13 16:30:19
Link | Citer | R
 
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.
 Bahamut.Boposhopo
Offline
Serveur: Bahamut
Game: FFXI
User: Boposhopo
Posts: 153
By Bahamut.Boposhopo 2026-02-13 17:25:15
Link | Citer | R
 
Ranoutofspace said: »
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.

Pretty sure Closet Cleaner still works.
 Bahamut.Zedoma
Offline
Serveur: Bahamut
Game: FFXI
User: zedoma
Posts: 128
By Bahamut.Zedoma 2026-02-13 18:13:06
Link | Citer | R
 
I’ve been told in game weather effects for zones which have them can be manipulated client side. Having an addon to enable or disable the current weather effect visual would be amazing. Main use case for myself would be activating Auroras in Ru'Aun and Qufim and turning off the visibility reducing weather effects whenever they appear.
 Carbuncle.Nynja
Offline
Serveur: Carbuncle
Game: FFXI
User: NynJa
Posts: 7138
By Carbuncle.Nynja 2026-02-13 18:49:24
Link | Citer | R
 
Bahamut.Boposhopo said: »
Ranoutofspace said: »
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.

Pretty sure Closet Cleaner still works.
I'll be honest, I've tried multiple different occasions to get it to work. Despite reading the instructions and following them to a T, I couldnt get it to work.

But to be fair
YouTube Video Placeholder
[+]
Offline
Posts: 82
By AegParm 2026-02-13 18:58:33
Link | Citer | R
 
Ranoutofspace said: »
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.

https://www.reddit.com/r/ffxi/s/Nq6PQt53yj this?
Offline
By Dodik 2026-02-14 07:27:12
Link | Citer | R
 
Cerberus.Echohawk said: »
In a bit I'll post what I had

So you know, asking people to have a look at your AI generated code is like telling someone to come have a look at the big pile of excrement that you managed to squeeze out in the bathroom.

Maybe there's some kind of excrement aficionados out there that would be interested in that sort of thing but generally - keep your ***to yourself.
[+]
 Shiva.Thorny
Offline
Serveur: Shiva
Game: FFXI
User: Rairin
Posts: 3751
By Shiva.Thorny 2026-02-14 07:29:25
Link | Citer | R
 
Pretty much. Anyone who can offer any meaningful input could have asked AI to do it themselves. Anyone who can actually fix it would probably be able to write it from scratch faster. It's almost certainly less than an hour-long task for someone who already knows what they're doing.

...when you see those promoted posts everywhere about how AI is scary, or companies are replacing workers with AI, etc.. take them with a grain of salt. Many of them are a form of paid advertising where AI companies sponsor 'journalism' to build their own hype.

The kernel of truth is that AI does pretty well with standardized code in modern frameworks where there's a ton of training data. It can do a great job on explaining concepts and handle CRUD operations. However, because it's not deterministic, it will occasionally flub relatively simple problems. The more specific your problem, the less likely it's able to help you.. but it won't ever tell you it doesn't understand, it'll just continue to vomit out related data and convince you you're on the right path.
[+]
 Carbuncle.Nynja
Offline
Serveur: Carbuncle
Game: FFXI
User: NynJa
Posts: 7138
By Carbuncle.Nynja 2026-02-14 13:48:49
Link | Citer | R
 
Ive used it to mod a couple things that im not 100% confident in my skillset to accomplish, its surprisingly decent at it (ie: when I threw in the HQ1/2/3 code into crafts output)

I also tried to make it build an addon that would crack open all my rema stone cases/boxes then trade everything to my holder char with one command. That was an absolute *** tirefire and it kept breaking its own code when i told it what didnt work and what needed fixing. I got so fed up scrapped the one touch feature and left the opening and trading as separate commands, i dont even want to go back and look at the code.

The most annoying part was all the times i asked “im getting an error here, is this a command the program understands” just to get “youre absolutely right, it wont understand that”, then give me some other broken code that gives an error.

I would not trust it to do any kind of packet injection if you have no idea what youre doing.
 Fenrir.Jinxs
Offline
Serveur: Fenrir
Game: FFXI
User: Jinxs
Posts: 1194
By Fenrir.Jinxs 2026-02-14 16:30:15
Link | Citer | R
 
I had AI build me a working login points addon but I gave it a few examples and conversed with it on the best ways to go about inputs ended up mapping out timed key presses
which is amateur hour at best

It also helped me read through the widower documentation for useful things like login logout event triggers so I wasn't just guessing on when to start the logout process or when to start moving the cursor.

I ended up walking it through most of it but it helped me with things I don't really like which is for loop iterations
It helped keep the code really condensed around the addition of down+ to help navigate to the next character on the login screen

All in all I ended up with a lua script that would start on the first character while logged in, logout via count down or instant accounted for via mog house and roll through all 16 and back to start.

but I would never trust myself with sending packets, unless I had an expert also helping me.
[+]
Offline
Posts: 118
By Tathamet 2026-02-14 18:07:55
Link | Citer | R
 
Cerberus.Echohawk said: »
campaign stuff

FYI for you and anyone else, superwarp has campaign support as of a week-ish ago.
[+]
Offline
Posts: 1313
By DaneBlood 2026-02-14 22:24:33
Link | Citer | R
 
Drayco said: »
Carbuncle.Nynja said: »
Drayco said: »
It would be amazing to just //roe ambuscade to turn on all vol 1 and 2 kills as well as weekly seal objectives.
Is this a joke?
Nope. Legit did not know this existed lol.

Bravo for developing that so quickly. Gonna load it up tonight!

The REO's still has to be micro managed which is annoying for something that should have been an automatic/hiddend system in the game IMHO

I made an addon that builts on the ROE addon and sets AMAN trove, Ambuscade and vagary rewards ROE automatically when i enter those zones.
but it really hacky and not really in a release shape.

The roe system seems utterly Stupid for most of the stuff to me
Offline
Posts: 1313
By DaneBlood 2026-02-16 14:55:34
Link | Citer | R
 
Suggestion:

I would love something along lottery but that you could make list of people for, that when they lot you automatically pass the item (unless the item is Ex.)
[+]
 Fenrir.Brimstonefox
Offline
Serveur: Fenrir
Game: FFXI
User: Brimstone
Posts: 446
By Fenrir.Brimstonefox 2026-02-17 07:22:31
Link | Citer | R
 
Bahamut.Boposhopo said: »
Ranoutofspace said: »
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.

Pretty sure Closet Cleaner still works.

And if it doesn't I can fix it (if I can replicate the error).
 Fenrir.Brimstonefox
Offline
Serveur: Fenrir
Game: FFXI
User: Brimstone
Posts: 446
By Fenrir.Brimstonefox 2026-02-17 07:28:35
Link | Citer | R
 
Carbuncle.Nynja said: »
Bahamut.Boposhopo said: »
Ranoutofspace said: »
Any functional, one-command add-on that can scan all my luas and inventory and see what's not used anywhere? Looks like theres a couple of (complicated) options.

Pretty sure Closet Cleaner still works.
I'll be honest, I've tried multiple different occasions to get it to work. Despite reading the instructions and following them to a T, I couldnt get it to work.

If you can post your luas I can try myself (put them on github or pastebin or w/e and send me a pm). Its possible there's code in there it doesn't like. Also possible that one of them is bad since its just running the lua under the covers if one has a missing , or brace or something it will fail. Editing the ccjobs list and just doing 1 job at time should work to find this
First Page 2 3 ... 31 32
Log in to post.