onPresenceUpdate
1client.presenceUpdateCommand({2    name: "Presence Update",3    channel: "$channelId",4    code: `5        $log[$authorId just updated their presence to $newPresence[status]]6    `7});1module.exports = {2    name: "Presence Update",3    channel: "$channelId",4    type: "presenceUpdate",5    code: `6        $log[$authorId just updated their presence to $newPresence[status]]7    `8};