A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
272 B

  1. #!/bin/sh
  2. count=$1
  3. if [[ $count ]]; then
  4. shift # Only do this if arg exists (fixes error)
  5. else
  6. count=2 # Default 2
  7. fi
  8. godot -server "$@" &
  9. for i in `seq 3 $count` # 3, for 1 + the server + the starter
  10. do
  11. godot -client "$@" &
  12. done
  13. sleep 1
  14. godot -start-game "$@" &