#author("2025-06-03T08:29:06+00:00","default:yoya","yoya")
#author("2025-06-21T08:06:17+00:00","default:yoya","yoya")
[[Windower/Lua]]

* Id [#u15ade00]

- https://github.com/Windower/Lua/wiki/Game-ID-Reference#buff-ids (空っぽ)
- https://github.com/Windower/Resources/blob/master/resources_data/buffs.lua

    [69] = {id=69,en="Invisible",ja="インビジ",enl="Invisible",jal="インビジ"},
    [70] = {id=70,en="Deodorize",ja="デオード",enl="Deodorize",jal="デオード"},
    [71] = {id=71,en="Sneak",ja="スニーク",enl="Sneak",jal="スニーク"},


* cancel [#nad39bc9]

- https://github.com/Windower/Lua/wiki/FFXI-Functions#windowerffxicancel_buffid
>
windower.ffxi.cancel_buff(id)

*. [#na72f867]

- https://github.com/banggugyangu/LuaCast/blob/master/ffxi/buff.lua
>
	local self = get_player()
	for k,v in pairs( self.Buffs ) do

- https://fr.ffxiah.com/forum/topic/56399/handling-buffs-and-debuffs/
>
 function undoom()
     local player = windower.ffxi.get_player()
     if S(player.buffs):contains(15) then
         send_command('@input /item "Holy Water" <me>')
     end
 end

* Timer [#iac661fe]

- バフ/デバフの効果時間について
--  https://yyoshisaur.hatenablog.com/entry/2020/02/26/210000
>
プレイヤーのバフ/デバフの効果時間は、incomingの0x063(Order=0x09)パケットで取得できます。