From 4bed3f1968b0815794bc913e72c1f349d74982e0 Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Tue, 20 May 2025 18:19:14 +0000 Subject: [PATCH 1/7] Update check_install.sh Only a few small grammar edits. --- check_install.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/check_install.sh b/check_install.sh index 19f22ed429..e413d8a93f 100755 --- a/check_install.sh +++ b/check_install.sh @@ -1,7 +1,7 @@ #!/bin/sh -# Checks certain parts of an AssaultCube installation +# Checks certain parts of the AssaultCube installation # -# Try this, if your game does not start. +# Try this if your game doesn't start. # CUBE_DIR=$(dirname "$(readlink -f "${0}")") @@ -35,7 +35,7 @@ else fi echo "" -# check all files that belong to the installation +# check all files belonging to the installation # (use source/dev_tools/generate_md5_checksums.sh to generate a checksum file) CHKSUMFILE="packages/misc/checksums_md5.txt" @@ -65,7 +65,7 @@ else fi echo "" -# find out, which binaries would be used to start the game +# find out which binaries will be used to start the game echo "checking game executables:" SERVERBIN=`./server.sh --outputbinarypath` @@ -74,17 +74,17 @@ CLIENTBIN=`./assaultcube.sh --outputbinarypath` if [ -x "$SERVERBIN" ]; then echo " the server will use the binary $SERVERBIN" elif [ -e "$SERVERBIN" ]; then - echo " the server would use the binary $SERVERBIN, if the permissions would allow it" + echo " the server would use the binary $SERVERBIN, if the permissions allowed it" else - echo " the server would use the binary $SERVERBIN, but the file does not exist" + echo " the server would use the binary $SERVERBIN, but the file doesn't exist" fi if [ -x "$CLIENTBIN" ]; then echo " the game client will use the binary $CLIENTBIN" elif [ -e "$CLIENTBIN" ]; then - echo " the server would use the binary $CLIENTBIN, if the permissions would allow it" + echo " the server would use the binary $CLIENTBIN, if the permissions allowed it" else - echo " the server would use the binary $CLIENTBIN, but the file does not exist" + echo " the server would use the binary $CLIENTBIN, but the file doesn't exist" fi exit 0 From c23936503399e1ae72efc29ddff21d8154dcce86 Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Tue, 20 May 2025 18:22:16 +0000 Subject: [PATCH 2/7] Update check_install.sh --- check_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_install.sh b/check_install.sh index e413d8a93f..ad2eb6e8b6 100755 --- a/check_install.sh +++ b/check_install.sh @@ -42,7 +42,7 @@ CHKSUMFILE="packages/misc/checksums_md5.txt" if [ -e $CHKSUMFILE ]; then echo "checking installed game files:" if md5sum -c $CHKSUMFILE --status; then - echo " all files of the AC package are checked and OK" + echo " All AC package files are verified" else echo " some files of your AC installation appear to be missing or damaged" read -p " press enter, to see the list of files..." -r dummy From 789f1e17d88595e98d9542819cbb932f754fd162 Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Tue, 20 May 2025 18:27:22 +0000 Subject: [PATCH 3/7] Update server.sh --- server.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server.sh b/server.sh index 65f80ef5ff..42f7e0f076 100755 --- a/server.sh +++ b/server.sh @@ -1,6 +1,6 @@ #!/bin/sh -# CUBE_DIR should refer to the directory in which AssaultCube is placed. +# CUBE_DIR refers to the AssaultCube directory path. #CUBE_DIR=~/assaultcube #CUBE_DIR=/usr/local/assaultcube CUBE_DIR=. @@ -12,11 +12,11 @@ CUBE_OPTIONS="" # If enabled, any options under CUBE_OPTIONS are superseded by options in servercmdline.txt CUBE_OPTIONFILE=-Cconfig/servercmdline.txt -# SYSTEM_NAME should be set to the name of your operating system. +# SYSTEM_NAME should be set to the name of your OS. #SYSTEM_NAME=Linux SYSTEM_NAME=`uname -s` -# MACHINE_NAME should be set to the architecture of your processor. +# MACHINE_NAME should be your processor architecture. #MACHINE_NAME=i686 MACHINE_NAME=`uname -m` From 2a9bd242313f5c16a0855e8040f29be012a2673b Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Tue, 20 May 2025 18:36:39 +0000 Subject: [PATCH 4/7] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 11deb75d2f..1b80ca4974 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## What is AssaultCube? AssaultCube is a **FREE**, multiplayer, first-person shooter game, based on the -[CUBE engine](http://cubeengine.com/cube.php). +[CUBE engine](http://cubeengine.com/cube.php) and Counter-Strike 1.6. Taking place in realistic environments, with fast, arcade gameplay, it's addictive and fun! @@ -32,6 +32,7 @@ On the correct settings, it can even run on old hardware (Pentium III and above) Capture the Flag, Hunt the Flag, Keep the Flag, Pistol Frenzy, Last Swiss Standing & One-Shot One-Kill (plus team versions of these modes). * Comes pre-packaged with several dozen different maps! + * Several weapon classes for unique gameplay or hardcore strategy! ## More info: @@ -42,6 +43,7 @@ you need in relation to AssaultCube. ## Contributing: Learn [how to become a contributor and submit your own code](CONTRIBUTING.md) +Submit any issues, suggestions, bugs or vulnerabilities you might have! ## Redistribution: From d9d2cfaba5d7171f272d433ddf09139f739799c2 Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Tue, 20 May 2025 18:37:37 +0000 Subject: [PATCH 5/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b80ca4974..0641268f18 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ you need in relation to AssaultCube. ## Contributing: Learn [how to become a contributor and submit your own code](CONTRIBUTING.md) -Submit any issues, suggestions, bugs or vulnerabilities you might have! + * Submit any issues, suggestions, bugs or vulnerabilities you might have! ## Redistribution: From 895333fabf9bb818238f9b4b5adbcf9a7268f5ef Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Wed, 21 May 2025 14:26:32 +0000 Subject: [PATCH 6/7] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0641268f18..6154e0d117 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,22 @@ ## What is AssaultCube? AssaultCube is a **FREE**, multiplayer, first-person shooter game, based on the -[CUBE engine](http://cubeengine.com/cube.php) and Counter-Strike 1.6. +[CUBE engine](http://cubeengine.com/cube.php). -Taking place in realistic environments, with fast, arcade gameplay, +Taking place in realistic environments, with fast and intense gameplay, it's addictive and fun! With efficient bandwidth usage, it's low-latency and can even run over a 56 Kbps connection. It's tiny too, weighing in at a lightweight about 50 MB package available for [Windows, Linux, Mac](https://assault.cubers.net/download.html). On the correct settings, it can even run on old hardware (Pentium III and above). +Recommended to run the insane graphics settings for modern machines. ![screenshot](https://user-images.githubusercontent.com/7680684/69888836-9a931d80-12b3-11ea-8123-bbf06908a96f.jpg) ## Features in a nutshell: * It's **FREE**. + * Basically CS 1.6 but open-source and moderately updated * Source code is available under a zlib-like open source license. * Low latency, it can even run across a 56 Kbps connection! * Lightweight size, only about 50 MB to download, plus additional maps From 024daa08911a940507c2bcf17fe81e3c6574f22e Mon Sep 17 00:00:00 2001 From: Aachen Grails Summer <98760370+HAK3R4LIFE@users.noreply.github.com> Date: Wed, 21 May 2025 14:29:37 +0000 Subject: [PATCH 7/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6154e0d117..e8fda4980d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Recommended to run the insane graphics settings for modern machines. * Comes pre-packaged with several dozen different maps! * Several weapon classes for unique gameplay or hardcore strategy! -## More info: +## Documentation: Most of this README was directly copied from the [AssaultCube Homepage](https://assault.cubers.net), which should have everything