From 6051baadab0ca1edfa498a7b56caf1f5ed2dfa6d Mon Sep 17 00:00:00 2001 From: Sorvani Date: Sat, 11 Jan 2014 13:44:17 -0800 Subject: [PATCH] Updated Public EQEmulator Server Setup Guide (Windows 32 bit, No Webserver) (markdown) --- ...tup-Guide-(Windows-32-bit,-No-Webserver).md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md b/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md index 2603431..7096bb0 100644 --- a/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md +++ b/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md @@ -90,21 +90,11 @@ These next steps will walk you through downloading the C++ source code and then 1. Open the `C:\EQ` folder and then right click on the folder called Source. 1. From the menu that pops up, select 'GIT Bash'. 1. A command window should pop up (similar but not the same as the standard Windows command prompt). -1. Type: `git clone git://github.com/EQEmu/Server.git .`
Note the . at the end of the command, i.e. there is a space after Server.git and then a period/full-stop. This is important. It tells GIT to clone the source code into the current folder , i.e. C:\EQ\Source If you omitted the . it would create a new folder called C:\EQ\Source\Server and download the source into that.
The output of the git clone command should look similar to this:
`Cloning into '.'...
-remote: Counting objects: 1288, done.
-remote: Compressing objects: 100% (1070/1070), done.
-remote: Total 1288 (delta 225), reused 1262 (delta 199)
-Receiving objects: 100% (1288/1288), 3.17 MiB | 856 KiB/s, done.
-Resolving deltas: 100% (225/225), done.
-Checking out files: 100% (1181/1181), done.`
-1. Go to C:\EQ\Source in Windows Explorer, you should see a bunch of files and sub-folders have appeared, namely `CMakeLists.txt LICENSE.md cmake eqlaunch ucs zone shared_memory README.md common loginserver utils GPL.txt changelog.txt dependencies queryserv world`
Note that if you want to update your source code in the future to the latest version, follow the process above, but instead of typing `git clone ...` you would just type: `git pull` +1. Type: `git clone git://github.com/EQEmu/Server.git .`
Note the . at the end of the command, i.e. there is a space after Server.git and then a period/full-stop. This is important. It tells GIT to clone the source code into the current folder , i.e. C:\EQ\Source If you omitted the . it would create a new folder called C:\EQ\Source\Server and download the source into that.
The output of the git clone command should look similar to this:
+`Cloning into '.'... >a few lines of stuff of stuff< ... Checking out files: 100% (1181/1181), done.`
+1. Go to C:\EQ\Source in Windows Explorer, you should see a bunch of files and sub-folders have appeared, namely `CMakeLists.txt LICENSE.md cmake eqlaunch ucs zone shared_memory README.md common loginserver utils GPL.txt changelog.txt dependencies queryserv world`
Note that if you want to update your source code in the future to the latest version, follow the process above, but instead of typing `git clone ...` you would just type: `git pull` and that would check for updates to the source code and download the latest version if there have been any changes since you last did a git clone or git pull. - -and that would check for updates to the source code and download the latest version if there have been any changes since you last did a git clone or git pull. - -*NOTE - After you're done compiling the source, there will be lots of files to copy over to your server folder from your source folder. But first - - -Install some other required files +**Install some other required files** Download the ""MySQL"" and zlib headers/librariesāˆž and unzip them into C:\EQ\Source\dependencies If you do it correctly, you should have two folders underneath C:\EQ\Source\dependencies, one called mysql_x86 and one called zlib_x86.