ShinyReactor Addon V1.2 (Ashita)

Eorzea Time
 
 
 
Language: JP EN FR DE
users online
Forum » FFXI » General » ShinyReactor addon v1.2 (Ashita)
ShinyReactor addon v1.2 (Ashita)
Offline
Posts: 2222
By Felgarr 2025-10-27 15:57:14
Link | Quote | Reply
 
Addon name: ShinyReactor
Addon URL: https://github.com/Fel-FFXI/shinyreactor
Thanks to Thorny for the react baseline and Atomos for Ashita v4+chamcham.

Description: It's the React addon, for Ashita, but with the added feature of changing the colors of mobs.
Given: If you don't know what React is, you can specify a command reaction to any ability/TP move. With the help of the included turn addon, it will also turn towards/away from mobs when they perform a move. (Think Gaze attacks or turning from Dread Spikes).
Bonus: I added the ability to also change the color of mobs when they change TP moves. I'm sure there are folks out there who miss the lossy, chat log messages during congested Sortie events. Or maybe you just have reduced vision and can't see the effects of Gartell's hands?

Example: Turning Aita Blue after he used Flaming Kick, indicating you should nuke Water element.


Example: Turning Aita Green after he used Eroding Flesh, indicating that you should Nuke Aero element:


How to use it
1.) Copy the shinyreactor and turn to your addons folder.
2.) Copy config/addons/Shinyreactor/*.lua
3.) Load shinyreactor and turn.
Code
/addon load shinyreactor
/addon load turn
/sreact load $File

The $file you want to load can look like this and belongs in your config/addons/shinyreactor folder. You can name them whatever you want:
Code lua
c = require('colors')
return {
    {
        Abilities = { 'Flaming Kick', },
        Spells = { },
        Users = {'Degei', 'Aita'},
        Reaction = '/echo $action - Time to nuke Water',
	Color = c.blue,
        MustTargetSelf = false,
    },
    {
        Abilities = { 'Eroding Flesh', },
        Spells = { },
        Users = {'Degei', 'Aita'},
        Reaction = '/echo $action - Time to nuke Aero',
	Color = c.green,
        MustTargetSelf = false,
    },
};

TLDR: Addon make you good, even if you not good. Shiny colors.
[+]
Offline
Posts: 2222
By Felgarr 2025-10-27 16:12:07
Link | Quote | Reply
 
I recorded every ability that you have to turn away from:
Code
'Afflicting Gaze', 'Apocalyptic Ray', 'Awful Eye', 'Baleful Gaze', 'Beguiling Gaze', 'Belly Dance', 'Bill Toss', 'Blank Gaze', 'Blight Dance', 'Blink of Peril', 'Calcifying Deluge', 'Chaotic Eye', 'Chthonian Ray', 'Cold Stare', 'Crush Gaze', 'Dark Thorn', 'Deathly Glare', 'Eternal Damnation', 'Fatal Allure', 'Frigid Shuffle', 'Gerjis\' Grip', 'Hex Eye', 'Hypnic Lamp', 'Hypnosis', 'Hypnotic Sway', 'Jettatura', 'Light of Penance', 'Luxurious Dance', 'Minax Glare', 'Mind Break', 'Mortal Blast', 'Mortal Ray', 'Numbing Glare', 'Petro Eyes', 'Pain Sync', 'Petrifying Dance', 'Petro Gaze', 'Poisonous Dance', 'Predatory Glare', 'Primordial Surge', 'Raqs Baladi Dance', 'Sand Trap', 'Slyvan Slumber', 'Tormentful Glare', 'Torpefying Charge', 'Torpid Glare', 'Vacant Gaze', 'Vile Belch', 'Washtub', 'Yawn'


...and every Gaze attack (must face the mob):
Code
'Chastening Disregard', 'Expunge', 'Impaling Disregard', 'Impale', 'Waning Vigor'


...I don't think I missed any abilities, but it's possible. If you find one, let me know and I'll add it.