Updated 2017-12-16
[< Setup][0]
For ease of navigation, the installation is broken up into sections and can be jumped to by clicking any of the links below.
- Required Software
- Installing OAA
- Manual installation of OAA (For CLI users or people who cannot get d2am working correctly)
1. Steam
- From within steam, right click on
Dota 2
and selectProperties
at the bottom - Go to the DLC tab of the window that pops up
- Check the
INSTALL
box next toDota 2 Workshop Tools DLC
- It will download once you close that window (This can take a bit)
4. NodeJS
5. Sublime Text 3 (Or any other text editor that supports .editorconfig
)
- The plugin for sublime can be found here.
The DOTA 2 beta (Normal and Test/Tools clients) are found in the same menu as mentioned in the required software section for the DOTA 2 Tools client Linked here for your convenience. Instead of going to DLC
, however, head over to Local Files
and click on BROWSE LOCAL FILES...
.
COPY THIS PATH! You MUST know where your DOTA 2 installation is in order to clone the repository locally later and to run the initial setup commands. DO NOT ASSUME THE SHOWN PATH IN THE IMAGE IS CORRECT!
- Launch your GitHub Client (And log into it)
- Click
Clone a repository
- Select your Open Angel Arena fork and be sure to set the
Local Path
to where your DOTA 2 beta folder is (And in the addons directory) - Click
Clone
and let the process complete
-
NOTE: If your DOTA 2 client is NOT installed on your default drive (Usually
C:\
), then start by running the following commandcd G:\
WhereG
is replaced by the drive letter you need to change to. -
Run the following in your command prompt (Or PowerShell).
cd "SOME_PATH"
WhereSOME_PATH
is replaced by the location where Open Angel Arena was cloned to
-
Once in the correct directory, run the following commands IN ORDER
npm install -g dota2-addon-manager
cd ../../
(This gets you into the basedota 2 beta
directory)d2am link
(This will write to the console some, that is normal. The screenshot shows nothing due to circumstances outside of the normal installation)d2am list
cd "SOME_PATH"
WhereSOME_PATH
is replaced by the location where Open Angel Arena was cloned tonpm install
(This command can take a bit to run, please be patient)
-
Go into
community
->library
->games
->DOTA 2
(This is the same menu you have used for getting to the properties to install the tools client) -
In that right click menu NEAR THE TOP, is
Launch DOTA 2 - Tools
. Click this option -
If all of the above installation has worked, you should see the Open Angel Arena directory name without a lock next to it in the custom games selection
This portion of the documentation assumes that you already know where to put the repository and that you know enough to set up git CLI. As a result, the specifics on how to use the credential management system within Git or access tokens are NOT going to be covered. There is also no accommodation to installing Git CLI for global use on your system, as that is also expected to have already been done for this process.
The following steps are assumed to be run IN ORDER!
- Inside of where your DOTA 2 installation is, go into
addons
and create a folder (This will be where your repository will be, for the sake of this documentation, we will assume the folder name isoaa
) - Open up a command prompt (Administrative privileges are generally not needed, but be aware of how to handle this is your system configuration demands elevation)
- Run
cd "SOME_PATH"
WhereSOME_PATH
is replaced by the location of your DOTA 2 installation - Run
cd ./addons/oaa/
- Run
git init
- Run
git clone {Your Fork URI}
(This can take a bit, please be patient) npm install -g dota2-addon-manager
cd ../../
(This gets you into the basedota 2 beta
directory)d2am link
(This will write to the console some, that is normal. The screenshot shows nothing due to circumstances outside of the normal installation)d2am list
cd ./addons/oaa/
npm install
(This command can take a bit to run, please be patient)
This part assumes you ALREADY have the command prompt to your DOTA 2 addons directory. This also assumes you know where your repository was cloned to and can open up the file explorer there. Creating the hard links USUALLY requires administrative privileges, so please be aware of how to launch a command prompt as an administrator.
DO NOT DO THIS UNLESS YOU HAVE ISSUES WITH D2AM LINK AND PLEASE CONTACT THE DEVS ON DISCORD BEFORE TRYING THIS. There are many issues that can be resolved with simple fixes if D2AM is failing before trying to make these hardlinks manually.
- Open up your file explorer and delete the following folders from your repo if they exist:
content
andgame
. These folders will be replaced by hard links. - Go over to your command prompt and do the following IN ORDER.
cd C:\Windows\System32
(Yes, I know this isn't where OAA is, but you cannot normally make links from anywhere else)mklink /J "{PATH_TO_OAA_REPO}/content" "{PATH_TO_DOTA_ADDONS}/oaa/content"
WherePATH_TO_OAA_REPO
the the full SYSTEM path to the OAA repository directory. WherePATH_TO_DOTA_ADDONS
is thecontent/dota_addons
directory in your DOTA 2 installation foldermklink /J "{PATH_TO_OAA_REPO}/game" "{PATH_TO_DOTA_ADDONS}/oaa/game"
(See above for references)