-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
executable file
·351 lines (316 loc) · 14.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Welcome to SpaceStation 13 - /tg/station 13</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png?v=vMMm9050Gy">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png?v=vMMm9050Gy">
<link rel="icon" type="image/png" href="/favicon-32x32.png?v=vMMm9050Gy" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png?v=vMMm9050Gy" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png?v=vMMm9050Gy" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png?v=vMMm9050Gy" sizes="16x16">
<link rel="manifest" href="/manifest.json?v=vMMm9050Gy">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=vMMm9050Gy" color="#082338">
<link rel="shortcut icon" href="/favicon.ico?v=vMMm9050Gy">
<meta name="msapplication-TileColor" content="#082338">
<meta name="msapplication-TileImage" content="/mstile-144x144.png?v=vMMm9050Gy">
<meta name="theme-color" content="#082338">
<link href="tg.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript">
function getCookie (cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i].trim();
if (c.indexOf(name)==0) return c.substring(name.length,c.length);
}
return "";
}
var refreshjobs = [];
function setupreloader (servernum, target, refreshtime) {
if (refreshjobs.length <= servernum)
refreshjobs.length = servernum+1;
if (refreshjobs[servernum])
return
var refreshjob = {
num: servernum,
timer: null,
target: target,
refreshtime: refreshtime
};
refreshjobs[servernum] = refreshjob;
reloadimg(refreshjob);
}
function displayrefreshstatus () {
if (getCookie("disablerefresh")) {
document.getElementById("refreshstatus").innerHTML="<span style=\"color:red;font-weight:bold;\">Disabled</span>";
return;
}
document.getElementById("refreshstatus").innerHTML="<span style=\"color:green;font-weight:bold;\">Enabled</span>";
return;
}
function kick_reload_jobs() {
var arrayLength = refreshjobs.length;
for (var i = 0; i < arrayLength; i++) {
var refreshjob = refreshjobs[i];
if (refreshjob && refreshjob.timer)
reloadimg(refreshjob);
}
}
function refreshtoggleclick () {
if (getCookie("disablerefresh")) {
document.cookie="disablerefresh=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
kick_reload_jobs();
displayrefreshstatus();
return;
}
document.cookie="disablerefresh=1; expires=Thu, 2038-01-19 04:14:00 GMT; path=/";
displayrefreshstatus();
}
function reloadimg (refreshjob) {
var target = refreshjob.target;
var refreshtime = refreshjob.refreshtime;
var servernum = refreshjob.num
if (!getCookie("disablerefresh"))
target.src = "gamebanner.php?servernum=" + servernum + "&rand=" + Math.random();
else
refreshtime = refreshtime*60;
if (document.hidden || !iSeeYou)
refreshtime = refreshtime*60;
if (DevilsWorkshopLvl)
refreshtime = refreshtime*DevilsWorkshopLvl;
clearTimeout(refreshjob.timer);
refreshjob.timer = setTimeout(function () {reloadimg(refreshjob)}, Math.floor((Math.random() * (refreshtime*1.5)) + refreshtime));
}
var devilInterval = 0;
var DevilsWorkshopLvl = 0;
document.onmousemove = function () {
if (DevilsWorkshopLvl) {
kick_reload_jobs();
}
clearInterval(devilInterval);
DevilsWorkshopLvl = 0;
devilInterval = setInterval(function(){isDevilsWorkshop++;}, 60000);
}
var iSeeYou = 1;
window.onfocus = function () {
iSeeYou = 1;
kick_reload_jobs();
};
window.onblur = function () {
iSeeYou = 0;
};
</script>
<style type="text/css">
.container {
margin: 0 auto;
/*max-width: 960px;*/
}
.navbar .navbar-nav {
display: inline-block;
float: none;
}
.navbar .navbar-collapse {
text-align: center;
}
.dropdown-submenu {
position:relative;
}
.dropdown-submenu>.dropdown-menu {
top:0;
left:100%;
margin-top:-6px;
margin-left:-1px;
-webkit-border-radius:0 6px 6px 6px;
-moz-border-radius:0 6px 6px 6px;
border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display:block;
}
.dropdown-submenu>a:after {
display:block;
content:" ";
float:right;
width:0;
height:0;
border-color:transparent;
border-style:solid;
border-width:5px 0 5px 5px;
border-left-color:#cccccc;
margin-top:5px;
margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left:-100%;
margin-left:10px;
-webkit-border-radius:6px 0 6px 6px;
-moz-border-radius:6px 0 6px 6px;
border-radius:6px 0 6px 6px;
}
.nav > li > a {
padding: 17px 7px;
min-width: 40px;
text-align: center;
}
</style>
</head>
<body onload="displayrefreshstatus();">
<div class="navbar navbar-inverse center text-center">
<div class="container-fluid center text-center">
<ul class="nav navbar-nav center text-center">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="/media.html">Media</a></li>
<li><a href="http://singulo.io/tg/">/tg/station Outcasts</a></li>
<li><a href="/phpBB">Forum</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="/wiki">Wiki<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/wiki">Main Page</a></li>
<li><a href="/wiki/Starter_guide">New Player Tutorial</a></li>
<li><a href="/wiki/Rules">Rules</a></li>
<li><a href="/wiki/Jobs">Jobs</a></li>
<li><a href="/wiki/Objects">Objects</a></li>
<li><a href="/wiki/Locations">Locations</a></li>
<li><a href="/wiki/Game_Mode">Game Modes</a></li>
<li><a href="/wiki/Space_Law">Space Law</a></li>
<li class="dropdown-submenu">
<a tabindex="-1" href="/wiki/Guides">Guides</a>
<ul class="dropdown-menu">
<li><a href="/wiki/Guide">Guides</a></li>
<li><a href="/wiki/Guide_to_food_and_drinks">Guide to Food and Drinks</a></li>
<li><a href="/wiki/Guide_to_construction">Guide to Construction</a></li>
<li><a href="/wiki/Guide_to_advanced_construction">Guide to Advanced Construction</a></li>
<li><a href="/wiki/Guide_to_medicine">Guide to Medicine</a></li>
<li><a href="/wiki/Guide_to_chemistry">Guide to Chemistry</a></li>
<li><a href="/wiki/Surgery">Guide to Surgery</a></li>
<li><a href="/wiki/Guide_to_genetics">Guide to Genetics</a></li>
<li><a href="/wiki/Guide_to_Research_and_Development">Guide to Research</a></li>
<li><a href="/wiki/Guide_to_robotics">Guide to Robotics</a></li>
<li><a href="/wiki/Guide_to_xenobiology">Guide to Xenobiology</a></li>
<li><a href="/wiki/Guide_to_hydroponics">Guide to hydroponics</a></li>
</ul>
</li>
</ul>
</li>
<li class = "dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="https://github.com/tgstation/tgstation">Development<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://github.com/tgstation/tgstation">/tg/ Github</a></li>
<li><a href="https://github.com/tgstation/tgstation13.org">/tg/station13.org Github</a></li>
<li><a href="/findshit.php">/tg/ Github Declaration Finder</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">IRC Channels<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="irc://irc.rizon.net/tgstation13">#tgstation13</a></li>
<li><a href="irc://irc.rizon.net/devbus">#devbus</a></li>
<li><a href="irc://irc.rizon.net/coderbus">#coderbus</a></li>
<li><a href="irc://irc.rizon.net/supportbus">#supportbus</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Related sites<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><b>May Mays</b></li>
<li><a href="http://boards.4chan.org/tg/">/tg/ (4chan)</a></li>
<li><a href="http://boards.4chan.org/vg/">/vg/ (4chan)</a></li>
<li><a href="http://reddit.com/r/ss13/">/r/ss13 (le reddit)</a></li>
<li><a href="http://singulo.io/tg/">/tg/ (singulo)</a></li>
<li><a href="https://8ch.net/spess/">/spess/ (8chan)</a></li>
<li><a href="https://8ch.net/tg/">/tg/ (8chan)</a></li>
<li><a href="https://8ch.net/vg/">/vg/ (8chan)</a></li>
<li><b>Other stations</b></li>
<li><a href="http://baystation12.net/">Bay Station</a></li>
<li><a href="http://wiki.ss13.co/Main_Page">Goon Station</a></li>
<li><a href="https://www.yogstation.net/">Yog Station</a></li>
<li><a href="https://www.paradisestation.org/">Paradise Station</a></li>
<li><a href="http://www.colonial-marines.com/">Colonial Marines</a></li>
<li><a href="http://hippiestation.com/">Hippie Station</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!--
<div class="alert alert-danger text-center">
<strong>Hey! Listen!</strong><br>
The latest beta (511.1356) has a bug that breaks interfaces, stick to 511.1355 or the latest stable (510.1347) for the mean time. If you already updated to 511.1356, you may download 511.1355 here: <a href="http://www.byond.com/download/build/511/511.1355_byond.exe">http://www.byond.com/download/build/511/511.1355_byond.exe</a>
</div>
-->
<!--
<div class="alert alert-warning text-center">
<strong>Hey! Listen!</strong> <br> The Almighty StonerOne got high and is messing with the web server's inners. Shit may act odd or go down
</div>
<div class="alert alert-info text-center">
<strong>Hey! Listen!</strong> This is the official website of /tg/station13. Enjoy your stay!
</div>
-->
<div class="container">
<!-- alert-* classes: info, warning, danger
<div class="alert alert-info text-center">
<strong>Hey! Listen!</strong> This is the official website of /tg/station13. Enjoy your stay!
</div>
-->
<div align="center">
<small>And now, a word from one of our players:</small><br>
<img class="gamebanner" src="gamebanner.php?servernum=0" onload="setupreloader(0, event.target)"/><br>
<small><a href="/phpBB/viewtopic.php?f=2&t=3371">Find out how to get your banner up here.</a></small>
</div>
<P> </p><br>
<div align="center">
<img src="getlogo.php" border="0">
</div>
<div class="jumbotron text-center">
<p class="lead">Already have BYOND? Choose a server below to join!</p>
<a href=byond://bagil.aws.tgstation13.org:2337><img class="gamebanner" src="gamebanner.php?servernum=1" onload="setupreloader(1, event.target, 1117)"></a>
<a href=byond://sybil.aws.tgstation13.org:1337><img class="gamebanner" src="gamebanner.php?servernum=2" onload="setupreloader(2, event.target, 1117)"></a>
<a href=byond://terry.tgstation13.org:3337><img class="gamebanner" src="gamebanner.php?servernum=6" onload="setupreloader(6, event.target, 3000)"></a></p>
<a href=byond://linuxtest.game.tgstation13.org:9337><img class="gamebanner" src="gamebanner.php?servernum=5" onload="setupreloader(5, event.target, 10000)"></a></p>
<p align="center">Game Banner Auto Update: <span id='refreshstatus'>Not Supported by Your Browser</span> <a href='#' onclick='refreshtoggleclick();return false;'>(toggle)</a></p>
<p class="text-success">Sybil, Bagil, Terry, and Manuel run <a href="https://github.com/tgstation/tgstation">/tg/station13</a> code.</p>
<p><a class="btn btn-primary btn-lg" href="http://www.byond.com/download/" target="ext">Get BYOND</a>
<a class="btn btn-primary btn-lg" href="/wiki/Downloading_the_source_code#Hosting_a_server" target="ext">Host a Server</a>
<a class="btn btn-primary btn-lg" href="/wiki/The_history_of_SS13" target="ext">History of SS13</a></p>
</div>
<div class="jumbotron">
<center><h2>What is Space Station 13?</h2></center><br/>
<p>Space Station 13 is a paranoia-laden round-based roleplaying game set against the backdrop of a nonsensical, metal death trap masquerading as a space station, with charming spritework designed to represent the sci-fi setting and its dangerous undertones. Have fun, and survive!</p>
</div>
<p align="right">Special thanks to Jeb! for the site design and game banners</p>
</div>
<!-- /container -->
<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type='text/javascript' src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type='text/javascript'>
$(document).ready(function() {
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55954246-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>