Compare commits

..

10 Commits

Author SHA1 Message Date
mollusk a583e961c2 update saves, juice nightmare 2021-06-20 20:50:25 -07:00
mollusk 9ff6bd291c Update saves 2021-04-24 21:03:46 -07:00
mollusk 5db0eb03d3 update: Juice: Act IV started 2021-02-07 21:51:05 -07:00
mollusk 43161a57c5 update: Juice: Act III - 20% complete 2021-02-05 10:54:48 -07:00
mollusk ff4769560e update: Juice: Act III 2021-02-04 09:33:01 -07:00
mollusk eb11ff337b update: juice 2021-02-02 01:00:05 -07:00
mollusk 50affb0bca Update: Juice 2021-01-31 11:46:59 -07:00
mollusk 31914d49b1 manage.sh: use correct wording 2021-01-31 11:09:44 -07:00
mollusk 323d7d801a manage.sh: Allow bidirational copying 2021-01-31 11:09:01 -07:00
mollusk 354ff4aa70 Update: Juice 2021-01-30 21:48:48 -07:00
42 changed files with 20 additions and 3 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+20 -3
View File
@@ -24,14 +24,31 @@ mv_d2(){
exit 1
fi
echo "Moving files from ${remoteDir} to $(pwd)/Diablo II"
cp "${remoteDir}"/* "$(pwd)"/"Diablo II"
case "${1}" in
--from-remote)
echo "Moving files from ${remoteDir} to $(pwd)/Diablo II"
cp "${remoteDir}"/* "$(pwd)"/"Diablo II"
;;
--to-remote)
echo "Moving files to ${remoteDir} from $(pwd)/Diablo II"
cp "$(pwd)"/"Diablo II"/* "${remoteDir}"
;;
*)
echo "--from-remote Copy files from real game folder to repo"
echo "--to-remote Copy files to real game folder from repo"
;;
esac
}
case "${1}" in
-d2)
mv_d2
mv_d2 "${2}"
;;
*)