vgstation13

This commit is contained in:
D3athrow
2015-06-04 15:46:18 -05:00
parent 16dd60cd18
commit 44583610ea
6 changed files with 1742 additions and 1742 deletions

View File

@@ -28,11 +28,11 @@ Keep in mind that we have multiple branches for various purposes.
First-time installation should be fairly straightforward. First, you'll need BYOND installed. You can get it from [here](http://www.byond.com/).
This is a sourcecode-only release, so the next step is to compile the server files. Open baystation12.dme by double-clicking it, open the Build menu, and click compile. This'll take a little while, and if everything's done right you'll get a message like this:
This is a sourcecode-only release, so the next step is to compile the server files. Open vgstation13.dme by double-clicking it, open the Build menu, and click compile. This'll take a little while, and if everything's done right you'll get a message like this:
saving baystation12.dmb (DEBUG mode)
saving vgstation13.dmb (DEBUG mode)
baystation12.dmb - 0 errors, 0 warnings
vgstation13.dmb - 0 errors, 0 warnings
If you see any errors or warnings, something has gone wrong - possibly a corrupt download or the files extracted wrong, or a code issue on the main repo. Ask on IRC.
@@ -48,7 +48,7 @@ You'll also want to edit admins.txt to remove the default admins and add your ow
where the BYOND key must be in lowercase and the admin rank must be properly capitalised. There are a bunch more admin ranks, but these two should be enough for most servers, assuming you have trustworthy admins.
Finally, to start the server, run Dream Daemon and enter the path to your compiled baystation12.dmb file. Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Trusted'. Then press GO and the server should start up and be ready to join.
Finally, to start the server, run Dream Daemon and enter the path to your compiled vgstation13.dmb file. Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Trusted'. Then press GO and the server should start up and be ready to join.
---
@@ -77,7 +77,7 @@ For a basic setup, simply copy every file from config-example/ to config/.
### SQL Setup
The SQL backend for the library and stats tracking requires a MySQL server. (Linux servers will need to put libmysql.so into the same directory as baystation12.dme.) Your server details go in /config/dbconfig.txt.
The SQL backend for the library and stats tracking requires a MySQL server. (Linux servers will need to put libmysql.so into the same directory as vgstation13.dme.) Your server details go in /config/dbconfig.txt.
We've included a web control panel with some sample data readouts. It's recommended to install the database through sphinx, which is included and includes some updates.

View File

@@ -1,6 +1,6 @@
var/jsonpath = "/home/bay12/public_html"
var/dmepath = "/home/bay12/git/baystation12.dme"
var/dmepath = "/home/bay12/git/vgstation13.dme"
var/makejson = 1 //temp
proc/makejson()

View File

@@ -1,5 +1,5 @@
Calculated Max Tech Levels:
These tech levels have been determined by parsing ALL origin_tech variables in code included by C:\Users\Rob\Documents\Projects\vgstation13\baystation12.dme.
These tech levels have been determined by parsing ALL origin_tech variables in code included by C:\Users\Rob\Documents\Projects\vgstation13\vgstation13.dme.
biotech: 5
bluespace: 10
combat: 6

View File

@@ -85,6 +85,6 @@ def rewrite_sources(resources):
os.remove(path)
os.rename(path + ".tmp", path)
dirs = read_filedirs("baystation12.dme");
dirs = read_filedirs("vgstation13.dme");
resources = index_files(dirs)
rewrite_sources(resources)

View File

@@ -1,2 +1,2 @@
#!/bin/bash -ex
DreamMaker baystation12.dme
DreamMaker vgstation13.dme

View File

@@ -1,4 +1,4 @@
// DM Environment file for baystation12.dme.
// DM Environment file for vgstation13.dme.
// All manual changes should be made outside the BEGIN_ and END_ blocks.
// New source code should be placed in .dm files: choose File/New --> Code File.
// BEGIN_INTERNALS