On JumpCatch Star

API -

function yourEvent(user)
    log(user.displayName .. ' caught a star!');
end

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

Events are asynchronous coroutines.

Last updated