aboutsummaryrefslogtreecommitdiff
path: root/tutorials/tut000_setup.md
diff options
context:
space:
mode:
Diffstat (limited to 'tutorials/tut000_setup.md')
-rw-r--r--tutorials/tut000_setup.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/tutorials/tut000_setup.md b/tutorials/tut000_setup.md
index 7fbe479..77e2700 100644
--- a/tutorials/tut000_setup.md
+++ b/tutorials/tut000_setup.md
@@ -4,14 +4,14 @@
This tutorial covers how to set up Artery so you can begin developing.
-First, you'll need to download the Artery gamemode base. This can be done for updates with [git](https://git-scm.com)(reccomended) or just downloaded as a zip and extracted
+First, you'll need to download the Artery gamemode base. This can be done for updates with [git](https://git-scm.com)(recommended) or just downloaded as a zip and extracted
## Git setup
1. Download [git](https://git-scm.com)
2. Follow the setup instructions
3. Open command prompt and type in `git --version`, verify that version information is printed.
-4. Use the `cd` command to go into your Garry's Mod directory. This is usuallly `C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod` (i.e. the command would be `cd "C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod"`). You can alternatively go to this location in your file browser, then click the file path at the top, and copy+paste it into your command prompt.
+4. Use the `cd` command to go into your Garry's Mod directory. This is usually `C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod` (i.e. the command would be `cd "C:\Program Files (x86)\Steam\steamapps\common\GarrysMod\garrysmod"`). You can alternatively go to this location in your file browser, then click the file path at the top, and copy+paste it into your command prompt.
5. Use `cd` again to go into your `gamemodes` directory (i.e `cd gamemodes`)
6. Clone the repository `git clone http://cogarr.net/source/cgit.cgi/artery`
7. Go back one level, then into your addons directory and clone the artery_editor addon (`cd ../addons` then `git clone http://cogarr.net/source/cgit.cgi/artery_editor`)
@@ -19,17 +19,17 @@ First, you'll need to download the Artery gamemode base. This can be done for up
9. Another one `git clone https://github.com/CapsAdmin/pac3.git`
10. Download and install [mysqloo](https://gmod.facepunch.com/f/gmodaddon/jjdq/gmsv-mysqloo-v9-Rewritten-MySQL-Module-prepared-statements-transactions/1/)
11. Finally, be sure clients are subscribed to PAC3 on the steam workshop
-12. Boot up gmod, select the artery addon, and load into gm_flatgrass to make sure it works! You can skip the next section, and go on to the next tutorial.
+12. Boot up Garrysmod, select the artery addon, and load into gm_flatgrass to make sure it works! You can skip the next section, and go on to the next tutorial.
## Non-git setup
You'll be doing almost the same thing, only downloading zips instead of using the `git clone` command
1. Go to [cogarr.net/source/cgit.cgi/artery](cogarr.net/source/cgit.cgi/artery) and click the latest version of the zip
-2. Find your garrysmod folder, it'll useually be in `C:/Program Files (x86)/Steam/steamapps/common/GarrysMod/garrysmod`
+2. Find your Garrysmod folder, it'll usually be in `C:/Program Files (x86)/Steam/steamapps/common/GarrysMod/garrysmod`
3. Extract the folder into `garrysmod/gamemodes/` and rename the folder to `artery` so that `garrysmod/gamemodes/artery/README.md` is a valid file.
-3. Downlaod the latest versions of [cogarr.net/source/cgit.cgi/artery_editor](cogarr.net/source/cgit.cgi/artery_editor) and [cogarr.net/source/cgit.cgi/zones](cogarr.net/source/cgit.cgi/zones), and extract them both into the `garrysmod/addons` folder so that `garrysmod/addons/artery_editor/README.txt` and `garrysmod/addons/zones/README.md` are both valid files.
-4. Launch garry's mod (Re-launch if you had it up before) and select the "artery" gamemode, start a server ***with 2 players*** and open console to look for errors.
+3. Download the latest versions of [cogarr.net/source/cgit.cgi/artery_editor](cogarr.net/source/cgit.cgi/artery_editor) and [cogarr.net/source/cgit.cgi/zones](cogarr.net/source/cgit.cgi/zones), and extract them both into the `garrysmod/addons` folder so that `garrysmod/addons/artery_editor/README.txt` and `garrysmod/addons/zones/README.md` are both valid files.
+4. Launch Garry's mod (Re-launch if you had it up before) and select the "artery" gamemode, start a server ***with 2 players*** and open console to look for errors.
Next tutorial: @{tut010_first_addon.md}