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.

14 lines
223 B

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