summaryrefslogtreecommitdiff
path: root/ws2a
diff options
context:
space:
mode:
Diffstat (limited to 'ws2a')
-rw-r--r--ws2a/help.html83
-rw-r--r--ws2a/index.html73
-rw-r--r--ws2a/jumbotron-narrow.css79
-rw-r--r--ws2a/style.css4
4 files changed, 42 insertions, 197 deletions
diff --git a/ws2a/help.html b/ws2a/help.html
index a05c466..abcdf54 100644
--- a/ws2a/help.html
+++ b/ws2a/help.html
@@ -2,63 +2,36 @@
<html lang="en">
<head>
<meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
- <meta name="description" content="">
- <meta name="author" content="">
+ <title>WS2A - help</title>
- <title>WS2A</title>
-
- <!-- Bootstrap core CSS -->
- <link href="../css/bootstrap.min.css" rel="stylesheet">
-
- <!-- Custom styles for this template -->
- <link href="jumbotron-narrow.css" rel="stylesheet">
+ <link href="../css/milligram.min.css" rel="stylesheet">
+ <link href="style.css" rel="stylesheet">
+
<link href="./help.css" rel="stylesheet">
- <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
</head>
<body>
-
- <div class="container">
- <div class="header clearfix">
- <nav>
- <ul class="nav nav-pills pull-right">
- <li role="presentation"><a href="">Home</a></li>
- <li role="presentation"><a href="./bugs/">Bugs</a></li>
- <li role="presentation" class="active"><a href="./help.html">Help</a></li>
- </ul>
- </nav>
- <h3 class="text-muted">Winter Survival 2 - Anarchy</h3>
- </div>
-
- <div class="masthead">
- <nav>
- <ul class="nav nav-justified">
- <li><a href="#s1">For Server Owners</a></li>
- <li><a href="#s2">For Server Admins</a></li>
- <li><a href="#s3">For Developers</a></li>
- </ul>
- </nav>
- </div>
-
- <div id="s1">
- <h2>For Server Owners</h2>
+ <main class="wrapper">
+ <section class="container">
+ <h1 class="title">Winter Survival 2 - Extended</h1>
+ <ul class="row">
+ <li class="column"><a href="#for-owners">For Server Owners</a></li>
+ <li class="column"><a href="#for-admins">For Server Admins</a></li>
+ <li class="column"><a href="#for-devs">For Developers</a></li>
+ </ul>
+ </section>
+ <section class="container" id="for-owners">
+ <h2 class="title">For Server Owners</h2>
<p>You can download Winter Survival 2 either useing git (recommended) by installing <a href="https://www.git-scm.com/">git</a> on your server, and executing
<p><pre>
-cd C:/path/to/server
+cd C:/path/to/server/garrysmod/gamemodes/
git clone https://cogarr.net/source/cgit.cgi/wintersurvival2.git
git clone https://cogarr.net/source/cgit.cgi/gearfox.git/</pre>
<p>or by downloading <a href="http://cogarr.net/source/cgit.cgi/gearfox.git/">gearfox</a> and <a href="http://cogarr.net/source/cgit.cgi/wintersurvival2.git/"> Winter survival 2 </a> and dropping both into your /gamemode/ directory.
<p>To intall, simply drop the wintersurvival2 folder into the /gamemodes/ folder of your server, located at /garrysmod/gamemodes/. Then, add the folowing line to /garrysmod/cfg/server.cfg
<p><pre>gamemode wintersurvival2</pre>
- <p>The gamemode should be able to use admin mods like ULX, but they haven't been tested. In addition, Winter Survival 2 - Anarchy comes with it's own admin system, see "For Server Admins" below
+ <p>The gamemode should be able to use admin mods like ULX, but they haven't been tested. In addition, Winter Survival 2 - Extended comes with it's own admin system, see "For Server Admins" below
<p>Admins must be added by adding the name/steamid to the garrysmod/settings/users.txt file like so
<pre>
"admin"
@@ -66,15 +39,14 @@ git clone https://cogarr.net/source/cgit.cgi/gearfox.git/</pre>
"Apickx" "STEAM_0:0:13641699"
}
</pre>
- </div>
-
- <div id="s2">
- <h2>For Server Admins</h2>
+ </section>
+ <section class="container" id="for-admins">
+ <h2 class="title">For Server Admins</h2>
<h5>This is a breif list of admin commands that can be used.</h5>
<br/><code>mas_goto string_playername</code><br/>
Teleports you to another player<br/>
<br/><code>mas_sethp string_playername number_health</code><br/>
- Sets a player health<br/>
+ Sets a players health<br/>
<br/><code>mas_bring string_playername</code><br/>
Teleports another player to you<br/>
<br/><code>mas_god string_playername</code><br/>
@@ -90,10 +62,10 @@ git clone https://cogarr.net/source/cgit.cgi/gearfox.git/</pre>
<br/><code>mas_banplayer string_playername</code><br/>
Bans a player with the given playername. Translates the player's name to their steamid. If a player has a name changer, use mas_bansteamid instead. You can find a player's steamid with <code>status</code><br/>
</pre></code><br/>
- </div>
+ </section>
- <div id="s3">
- <h2>For Developers</h2>
+ <section class="container" id="for-devs">
+ <h2 class="title">For Developers</h2>
<h5>Stuff about how to add to this gamemode</h5>
<h3>Items</h3>
<p>All items are located in gamemode/itemsystem/items, you can find an example item in base.lua
@@ -126,13 +98,10 @@ git clone https://cogarr.net/source/cgit.cgi/gearfox.git/</pre>
<br/><code>ws_generaterecipes</code><br/>
<p>Generates a cheetsheet in HTML for you! the file is saved in garrysmod/data<br/>
- </div>
+ </section>
- <footer class="footer">
- <p>Contact the admin at <a href="mailto:apickx@cogarr.org">Apickx@cogarr.org</a></p>
- </footer>
- </div> <!-- /container -->
+ </main>
</body>
</html>
diff --git a/ws2a/index.html b/ws2a/index.html
index 8f5a21c..3f583e3 100644
--- a/ws2a/index.html
+++ b/ws2a/index.html
@@ -2,73 +2,24 @@
<html lang="en">
<head>
<meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
- <meta name="description" content="">
- <meta name="author" content="">
-
<title>WS2A</title>
- <!-- Bootstrap core CSS -->
- <link href="../css/bootstrap.min.css" rel="stylesheet">
- <!-- Custom styles for this template -->
- <link href="jumbotron-narrow.css" rel="stylesheet">
+ <link href="../css/milligram.min.css" rel="stylesheet">
+ <link href="style.css" rel="stylesheet">
- <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
</head>
<body>
-
- <div class="container">
- <div class="header clearfix">
- <nav>
- <ul class="nav nav-pills pull-right">
- <li role="presentation" class="active"><a href="">Home</a></li>
- <li role="presentation"><a href="./bugs/">Bugs</a></li>
- <li role="presentation"><a href="./help.html">Help</a></li>
- </ul>
- </nav>
- <h3 class="text-muted">Winter Survival 2 - Anarchy</h3>
- </div>
-
- <div class="jumbotron">
- <h1>WS2A</h1>
- <p class="lead">The first gamemode in the extended Winter Survival series!</p>
- <p><a class="btn btn-lg btn-info" href="steam://connect/73.79.25.203" role="button">Join server!</a></p>
- </div>
-
- <div class="row marketing">
- <div class="col-lg-6">
- <h4>What is it?</h4>
- <p>Winter Survival 2 - Anarchy is the first installment of my extenstions to Winter Survival 2</p>
-
- <h4>History</h4>
- <p>Winter Survival 2 was originally created by The Maw, and a few other helpers. It has been dead for a little while, until some guy on the internet with fond memorires of playing it during his nights in highschool decided to revive it!</p>
-
- <h4>It's so fucking broken!</h4>
- <p>Consider fileing a bug in the bugs tab, then wait patiently until it gets fixed!</p>
- </div>
-
- <div class="col-lg-6">
- <h4>I want to help!</h4>
- <p>Feel free to get a copy of the source code and start hacking away <a href="http://cogarr.net/source/cgit.cgi/wintersurvival2/">here</a></p>
-
- <h4>Where's the liscense?</h4>
- <p>Although I like useing and publishing under copyleft liscenses, other people involved in development didn't give me much to work with! I can't bind their code under a liscense of my choice, but my code is free to use under the BSD 2-clause, and assets under Creative Commons Attribution</p>
- </div>
- </div>
-
- <footer class="footer">
- <p>Contact the admin at <a href="mailto:apickx@cogarr.org">Apickx@cogarr.org</a></p>
- </footer>
-
- </div> <!-- /container -->
-
+ <main class="wrapper">
+ <section class="container">
+ <h1 class="title">Winter Survival 2 Extended</h1>
+ <p>Winter survival 2, this version has vaious bugfixes, updates, and usability improvements, while still keeping faithful to the gameplay of old.
+ <p>If you find a bug, feel free to report it at <a href="cogarr.net/bugs/ws2a/">cogarr.net/bugs/ws2a</a>, or if you just want to talk about the gamemode, head over to <a href="cogarr.com/ws2a/">cogarr.com/ws2a</a>
+ <p>If you want to host your own winter survival 2 server, head over to <a href="cogarr.net/source/">cogarr.net/source</a> to get the code, and check out the <a href="help.html">help</a> page.
+ <p>Winter survival 2 was originally written by TheMaw, this version has updates by Apickx and Wolly.
+ </section>
+
+ </main> <!-- /container -->
</body>
</html>
diff --git a/ws2a/jumbotron-narrow.css b/ws2a/jumbotron-narrow.css
deleted file mode 100644
index 952adc5..0000000
--- a/ws2a/jumbotron-narrow.css
+++ /dev/null
@@ -1,79 +0,0 @@
-/* Space out content a bit */
-body {
- padding-top: 20px;
- padding-bottom: 20px;
-}
-
-/* Everything but the jumbotron gets side spacing for mobile first views */
-.header,
-.marketing,
-.footer {
- padding-right: 15px;
- padding-left: 15px;
-}
-
-/* Custom page header */
-.header {
- padding-bottom: 20px;
- border-bottom: 1px solid #e5e5e5;
-}
-/* Make the masthead heading the same height as the navigation */
-.header h3 {
- margin-top: 0;
- margin-bottom: 0;
- line-height: 40px;
-}
-
-/* Custom page footer */
-.footer {
- padding-top: 19px;
- color: #777;
- border-top: 1px solid #e5e5e5;
-}
-
-/* Customize container */
-@media (min-width: 768px) {
- .container {
- max-width: 730px;
- }
-}
-.container-narrow > hr {
- margin: 30px 0;
-}
-
-/* Main marketing message and sign up button */
-.jumbotron {
- text-align: center;
- border-bottom: 1px solid #e5e5e5;
-}
-.jumbotron .btn {
- padding: 14px 24px;
- font-size: 21px;
-}
-
-/* Supporting marketing content */
-.marketing {
- margin: 40px 0;
-}
-.marketing p + h4 {
- margin-top: 28px;
-}
-
-/* Responsive: Portrait tablets and up */
-@media screen and (min-width: 768px) {
- /* Remove the padding we set earlier */
- .header,
- .marketing,
- .footer {
- padding-right: 0;
- padding-left: 0;
- }
- /* Space out the masthead */
- .header {
- margin-bottom: 30px;
- }
- /* Remove the bottom border on the jumbotron for visual effect */
- .jumbotron {
- border-bottom: 0;
- }
-}
diff --git a/ws2a/style.css b/ws2a/style.css
new file mode 100644
index 0000000..173161e
--- /dev/null
+++ b/ws2a/style.css
@@ -0,0 +1,4 @@
+
+.wrapper .container{
+ max-width:80rem
+}