I want to make a custom quit message for my bot.
In that message it will transmit uptime duration and the amount of requests processed, stuff like that.

What event should I use?
I dont want to halt the quit messages from other users, I only want to customise the bots own quit message via a script and halting its default message obviously...

Code:
on me:*:QUIT:{
  msg $chan Some uptime and statistics here.
  haltdef
}


Something like that?
Thanks in advance!