Blu Spell Learning Party Notification

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
7921 users online
Forum » Windower » General » Blu spell learning party notification
Blu spell learning party notification
Offline
By Althor 2026-05-26 13:09:08
Link | Quote | Reply
 
Just in case something like this doesn't exist I'll share, for anyone who wants to see a party message when a character learns a blu spell so you don't have to keep tabbing around. Just change Character_Name as needed.
Code
_addon.name = 'BluLearn'
_addon.author = 'Althorr'
_addon.version = '1.0'
_addon.commands = {'blrn'}

local res = require('resources')
local notify_message = "I just learned {spell}!"

windower.register_event('incoming text', function(original, modified, mode, name)
    
    local spell_name = original:match("Character_Name learns (.+)")
    
    if spell_name then
        local msg = notify_message:gsub("{spell}", spell_name)
        windower.send_command('@input /p ' .. msg)
    end
end)
[+]
 Bahamut.Dannyl
Offline
Server: Bahamut
Game: FFXI
User: dannyl
Posts: 1636
By Bahamut.Dannyl 2026-05-26 15:00:07
Link | Quote | Reply
 
Pretty neat.
Personally, I preferred ChatMon to give me a sound when it got Learned
[+]
Offline
By Althor 2026-05-26 15:11:20
Link | Quote | Reply
 
works for any spell so you can see ws when they unlock too without checking menu for skill