* Visual Studio 2010 Professional or Visual Studio 2019 with the 2010 toolchain configured
* [http://download.microsoft.com/download/D/B/C/DBC11267-9597-46FF-8377-E194A73970D6/vs_proweb.exe Visual Studio 2010 Professional] or Visual Studio 2019 with the 2010 toolchain configured
* SQL Server 2012 or later (Express is good enough for development)
* SQL Server 2012 or later (Express is good enough for development)
:* [https://www.microsoft.com/en-us/sql-server/sql-server-editions-express SQL Server 2017 Express Edition]
:* [https://www.microsoft.com/en-us/sql-server/sql-server-editions-express SQL Server 2017 Express Edition]
Open GitHub Desktop, Select File, and Clone a Repository.
Select the URL tab, enter "https://git.ourodev.com/CoX/Source.git" into the first blank and a path where to store the source locally such as "C:\GitHub\CoX\Source".
Now build AuthServer(C:\GitHub\CoX\Source\AuthServer\src\AuthServer\AuthServer.sln)
Setup Server Files
Create a directory in Source\bin called data.
Open ServerData.7z and extract all files into Source\bin\data (the newly created directory).
Open CoHDev_Source_Files_Current(Updated).zip.
Extract "i24 Server and Client Piggs (extracted with CoHTools)" into Source\bin\data.
Copy maps.db from "map.db (modified, working on current VS2010 build)" and place it in Source\bin\data\server\db, overwriting the old maps.db
Copy the piggs folder from your i24 client directory and place them in Source\bin\. You should end up with Source\bin\piggs\ populated.
Create a directory in your C: drive called "CoH_Data" and another directory inside that, called "attributes" (C:\CoH_Data\attributes).
Run Source/bin/mapserver.exe -productionmode -templates in a command prompt.
Copy all files from C:\CoH_Data\attributes and place them into Source\bin\data\server\db\templates.
Open Source\DBSchemas and execute all the .sql files in the directory. You may need to change the file path -- anywhere works. Drop old database references before if there are any.
Start DBServer.exe and then Launcher.exe. This can be done simply by double clicking on them.
Once these are both fully booted use your new shortcut to connect to the local server.
You could also use a .bat file to start everything up and in the correct order.
The below is an example bat file to launch the DBServer, Launcher, and finally the Client.
@echo off
echo Starting DB Server
START C:\GitHub\CoX\Source\bin\dbserver.exe
TIMEOUT 2
echo Starting Launcher Server
START C:\GitHub\CoX\Source\bin\launcher.exe
TIMEOUT 2
echo Starting Chat Server
START C:\GitHub\CoX\Source\bin\ChatServer.exe -noreserved
TIMEOUT 2
echo Waiting for user input to start City of Heroes. Hit SPACE to continue.
pauseecho Starting City of Heroes Client
START C:\GitHub\CoX\Source\bin\CityOfHeroes.exe -db 127.0.0.1 -console -project "Ouroboros"echo Everything should be launched! Go enjoy COH.
After the client starts up you'll be presented with a Login and Password screen. As auth is currently turned off you can enter anything you want in both.
There should only be one server listed. Go ahead and pick it then make a new character to test with!