stormbot/triggers/bye/bye.sh

16 lines
309 B
Bash
Raw Normal View History

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