Files
stormbot/triggers/bye/bye.sh
2025-10-24 17:14:52 -04:00

17 lines
329 B
Bash
Executable File

#!/usr/bin/env bash
[ -f functions.sh ] && source functions.sh
# All names to match are completely lowercase.
exitName="${1%% *}"
case "${1,,}" in
storm_dragon)
msg "${2%% :*}" "NOOOOOOOOOO!!! $1: come back!!!"
;;
*)
bye=(
"Bye $1."
"Alas $1, you will be missed."
)
msg "${2%% :*}" "${bye[$(($RANDOM % ${#bye[@]}))]}"
esac