You could set the _output record separator_ to a space (or tab). If you want the output to be printed with a terminating newline, you can change it back before the final print
awk 'BEGIN{ORS=" "} NR==411{print$5,$6}''NR==412{print$5,$6}''NR==430{ORS="\
"; print$7,$8}'