msg_info "Initializing gaming services to claim games for"
CHOICES=$(whiptail --title "Select game services" --separate-output --checklist "Select services"20784"EPIC""Epic Games" OFF "GOG""Good Old Games" OFF 3>&1 1>&2 2>&3)
echo$CHOICES
if[ ! -z "$CHOICES"];then
for CHOICE in $CHOICES;do
case$CHOICE in
"EPIC")
$STD node epic-games
;;
"GOG")
$STD node gog
;;
*)
echo"Unsupported item $CHOICE!" >&2
exit1
;;
esac
done
fi
msg_ok "Services initialized: ${CHOICES}"
}
function update_script(){
function update_script(){
header_info
header_info
#if [[ ! -d /opt/overseerr ]]; then msg_error "No ${APP} Installation Found!"; exit; fi