For the complete documentation index, see llms.txt. This page is also available as Markdown.

On Raid

API -

function yourEvent(user)
    log('Thanks for raiding me @' .. user.displayName);
end

return function()
    addEvent('raid', 'yourEvent');
    keepAlive();
end

Events are asynchronous coroutines.

Last updated