magicEffectsResolved⚓︎
This event triggers after all magic effect links have been resolved. This event is used to add new magic effects by using the tes3.addMagicEffect()
function. For examples of this event in practice see the tes3.addMagicEffect()
example.
--- @param e magicEffectsResolvedEventData
local function magicEffectsResolvedCallback(e)
end
event.register(tes3.event.magicEffectsResolved, magicEffectsResolvedCallback)
Tip
An event can be claimed by setting e.claim
to true
, or by returning false
from the callback. Claiming the event prevents any lower priority callbacks from being called.